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 */
77 #ifdef CONFIG_SND_DEBUG
81 ALC260_MODEL_LAST /* last tag */
91 ALC262_HP_BPC_D7000_WL,
92 ALC262_HP_BPC_D7000_WF,
95 ALC262_MODEL_LAST /* last tag */
112 /* ALC861-VD models */
139 ALC883_TARGA_2ch_DIG,
149 #define GPIO_MASK 0x03
152 /* codec parameterization */
153 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
154 unsigned int num_mixers;
156 const struct hda_verb *init_verbs[5]; /* initialization verbs
160 unsigned int num_init_verbs;
162 char *stream_name_analog; /* analog PCM stream */
163 struct hda_pcm_stream *stream_analog_playback;
164 struct hda_pcm_stream *stream_analog_capture;
166 char *stream_name_digital; /* digital PCM stream */
167 struct hda_pcm_stream *stream_digital_playback;
168 struct hda_pcm_stream *stream_digital_capture;
171 struct hda_multi_out multiout; /* playback set-up
172 * max_channels, dacs must be set
173 * dig_out_nid and hp_nid are optional
177 unsigned int num_adc_nids;
179 hda_nid_t dig_in_nid; /* digital-in NID; optional */
182 unsigned int num_mux_defs;
183 const struct hda_input_mux *input_mux;
184 unsigned int cur_mux[3];
187 const struct hda_channel_mode *channel_mode;
188 int num_channel_mode;
191 /* PCM information */
192 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
194 /* dynamic controls, init_verbs and input_mux */
195 struct auto_pin_cfg autocfg;
196 unsigned int num_kctl_alloc, num_kctl_used;
197 struct snd_kcontrol_new *kctl_alloc;
198 struct hda_input_mux private_imux;
199 hda_nid_t private_dac_nids[5];
202 void (*init_hook)(struct hda_codec *codec);
203 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
205 /* for pin sensing */
206 unsigned int sense_updated: 1;
207 unsigned int jack_present: 1;
211 * configuration template - to be copied to the spec instance
213 struct alc_config_preset {
214 struct snd_kcontrol_new *mixers[5]; /* should be identical size
217 const struct hda_verb *init_verbs[5];
218 unsigned int num_dacs;
220 hda_nid_t dig_out_nid; /* optional */
221 hda_nid_t hp_nid; /* optional */
222 unsigned int num_adc_nids;
224 hda_nid_t dig_in_nid;
225 unsigned int num_channel_mode;
226 const struct hda_channel_mode *channel_mode;
228 unsigned int num_mux_defs;
229 const struct hda_input_mux *input_mux;
230 void (*unsol_event)(struct hda_codec *, unsigned int);
231 void (*init_hook)(struct hda_codec *);
238 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
239 struct snd_ctl_elem_info *uinfo)
241 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
242 struct alc_spec *spec = codec->spec;
243 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
244 if (mux_idx >= spec->num_mux_defs)
246 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
249 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
250 struct snd_ctl_elem_value *ucontrol)
252 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
253 struct alc_spec *spec = codec->spec;
254 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
256 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
260 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
261 struct snd_ctl_elem_value *ucontrol)
263 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
264 struct alc_spec *spec = codec->spec;
265 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
266 unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
267 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
268 spec->adc_nids[adc_idx],
269 &spec->cur_mux[adc_idx]);
274 * channel mode setting
276 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
277 struct snd_ctl_elem_info *uinfo)
279 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
280 struct alc_spec *spec = codec->spec;
281 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
282 spec->num_channel_mode);
285 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
286 struct snd_ctl_elem_value *ucontrol)
288 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
289 struct alc_spec *spec = codec->spec;
290 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
291 spec->num_channel_mode,
292 spec->multiout.max_channels);
295 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
296 struct snd_ctl_elem_value *ucontrol)
298 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
299 struct alc_spec *spec = codec->spec;
300 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
301 spec->num_channel_mode,
302 &spec->multiout.max_channels);
303 if (err >= 0 && spec->need_dac_fix)
304 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
309 * Control the mode of pin widget settings via the mixer. "pc" is used
310 * instead of "%" to avoid consequences of accidently treating the % as
311 * being part of a format specifier. Maximum allowed length of a value is
312 * 63 characters plus NULL terminator.
314 * Note: some retasking pin complexes seem to ignore requests for input
315 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
316 * are requested. Therefore order this list so that this behaviour will not
317 * cause problems when mixer clients move through the enum sequentially.
318 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
321 static char *alc_pin_mode_names[] = {
322 "Mic 50pc bias", "Mic 80pc bias",
323 "Line in", "Line out", "Headphone out",
325 static unsigned char alc_pin_mode_values[] = {
326 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
328 /* The control can present all 5 options, or it can limit the options based
329 * in the pin being assumed to be exclusively an input or an output pin. In
330 * addition, "input" pins may or may not process the mic bias option
331 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
332 * accept requests for bias as of chip versions up to March 2006) and/or
333 * wiring in the computer.
335 #define ALC_PIN_DIR_IN 0x00
336 #define ALC_PIN_DIR_OUT 0x01
337 #define ALC_PIN_DIR_INOUT 0x02
338 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
339 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
341 /* Info about the pin modes supported by the different pin direction modes.
342 * For each direction the minimum and maximum values are given.
344 static signed char alc_pin_mode_dir_info[5][2] = {
345 { 0, 2 }, /* ALC_PIN_DIR_IN */
346 { 3, 4 }, /* ALC_PIN_DIR_OUT */
347 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
348 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
349 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
351 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
352 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
353 #define alc_pin_mode_n_items(_dir) \
354 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
356 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
357 struct snd_ctl_elem_info *uinfo)
359 unsigned int item_num = uinfo->value.enumerated.item;
360 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
362 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
364 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
366 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
367 item_num = alc_pin_mode_min(dir);
368 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
372 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
373 struct snd_ctl_elem_value *ucontrol)
376 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
377 hda_nid_t nid = kcontrol->private_value & 0xffff;
378 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
379 long *valp = ucontrol->value.integer.value;
380 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
381 AC_VERB_GET_PIN_WIDGET_CONTROL,
384 /* Find enumerated value for current pinctl setting */
385 i = alc_pin_mode_min(dir);
386 while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
388 *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
392 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
393 struct snd_ctl_elem_value *ucontrol)
396 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
397 hda_nid_t nid = kcontrol->private_value & 0xffff;
398 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
399 long val = *ucontrol->value.integer.value;
400 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
401 AC_VERB_GET_PIN_WIDGET_CONTROL,
404 if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
405 val = alc_pin_mode_min(dir);
407 change = pinctl != alc_pin_mode_values[val];
409 /* Set pin mode to that requested */
410 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_PIN_WIDGET_CONTROL,
411 alc_pin_mode_values[val]);
413 /* Also enable the retasking pin's input/output as required
414 * for the requested pin mode. Enum values of 2 or less are
417 * Dynamically switching the input/output buffers probably
418 * reduces noise slightly (particularly on input) so we'll
419 * do it. However, having both input and output buffers
420 * enabled simultaneously doesn't seem to be problematic if
421 * this turns out to be necessary in the future.
424 snd_hda_codec_write(codec, nid, 0,
425 AC_VERB_SET_AMP_GAIN_MUTE,
427 snd_hda_codec_write(codec, nid, 0,
428 AC_VERB_SET_AMP_GAIN_MUTE,
431 snd_hda_codec_write(codec, nid, 0,
432 AC_VERB_SET_AMP_GAIN_MUTE,
434 snd_hda_codec_write(codec, nid, 0,
435 AC_VERB_SET_AMP_GAIN_MUTE,
442 #define ALC_PIN_MODE(xname, nid, dir) \
443 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
444 .info = alc_pin_mode_info, \
445 .get = alc_pin_mode_get, \
446 .put = alc_pin_mode_put, \
447 .private_value = nid | (dir<<16) }
449 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
450 * together using a mask with more than one bit set. This control is
451 * currently used only by the ALC260 test model. At this stage they are not
452 * needed for any "production" models.
454 #ifdef CONFIG_SND_DEBUG
455 static int alc_gpio_data_info(struct snd_kcontrol *kcontrol,
456 struct snd_ctl_elem_info *uinfo)
458 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
460 uinfo->value.integer.min = 0;
461 uinfo->value.integer.max = 1;
464 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
465 struct snd_ctl_elem_value *ucontrol)
467 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
468 hda_nid_t nid = kcontrol->private_value & 0xffff;
469 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
470 long *valp = ucontrol->value.integer.value;
471 unsigned int val = snd_hda_codec_read(codec, nid, 0,
472 AC_VERB_GET_GPIO_DATA, 0x00);
474 *valp = (val & mask) != 0;
477 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
478 struct snd_ctl_elem_value *ucontrol)
481 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
482 hda_nid_t nid = kcontrol->private_value & 0xffff;
483 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
484 long val = *ucontrol->value.integer.value;
485 unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
486 AC_VERB_GET_GPIO_DATA,
489 /* Set/unset the masked GPIO bit(s) as needed */
490 change = (val == 0 ? 0 : mask) != (gpio_data & mask);
495 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_GPIO_DATA, gpio_data);
499 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
500 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
501 .info = alc_gpio_data_info, \
502 .get = alc_gpio_data_get, \
503 .put = alc_gpio_data_put, \
504 .private_value = nid | (mask<<16) }
505 #endif /* CONFIG_SND_DEBUG */
507 /* A switch control to allow the enabling of the digital IO pins on the
508 * ALC260. This is incredibly simplistic; the intention of this control is
509 * to provide something in the test model allowing digital outputs to be
510 * identified if present. If models are found which can utilise these
511 * outputs a more complete mixer control can be devised for those models if
514 #ifdef CONFIG_SND_DEBUG
515 static int alc_spdif_ctrl_info(struct snd_kcontrol *kcontrol,
516 struct snd_ctl_elem_info *uinfo)
518 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
520 uinfo->value.integer.min = 0;
521 uinfo->value.integer.max = 1;
524 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
525 struct snd_ctl_elem_value *ucontrol)
527 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
528 hda_nid_t nid = kcontrol->private_value & 0xffff;
529 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
530 long *valp = ucontrol->value.integer.value;
531 unsigned int val = snd_hda_codec_read(codec, nid, 0,
532 AC_VERB_GET_DIGI_CONVERT, 0x00);
534 *valp = (val & mask) != 0;
537 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
538 struct snd_ctl_elem_value *ucontrol)
541 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
542 hda_nid_t nid = kcontrol->private_value & 0xffff;
543 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
544 long val = *ucontrol->value.integer.value;
545 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
546 AC_VERB_GET_DIGI_CONVERT,
549 /* Set/unset the masked control bit(s) as needed */
550 change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
555 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
560 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
561 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
562 .info = alc_spdif_ctrl_info, \
563 .get = alc_spdif_ctrl_get, \
564 .put = alc_spdif_ctrl_put, \
565 .private_value = nid | (mask<<16) }
566 #endif /* CONFIG_SND_DEBUG */
569 * set up from the preset table
571 static void setup_preset(struct alc_spec *spec,
572 const struct alc_config_preset *preset)
576 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
577 spec->mixers[spec->num_mixers++] = preset->mixers[i];
578 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
580 spec->init_verbs[spec->num_init_verbs++] =
581 preset->init_verbs[i];
583 spec->channel_mode = preset->channel_mode;
584 spec->num_channel_mode = preset->num_channel_mode;
585 spec->need_dac_fix = preset->need_dac_fix;
587 spec->multiout.max_channels = spec->channel_mode[0].channels;
589 spec->multiout.num_dacs = preset->num_dacs;
590 spec->multiout.dac_nids = preset->dac_nids;
591 spec->multiout.dig_out_nid = preset->dig_out_nid;
592 spec->multiout.hp_nid = preset->hp_nid;
594 spec->num_mux_defs = preset->num_mux_defs;
595 if (! spec->num_mux_defs)
596 spec->num_mux_defs = 1;
597 spec->input_mux = preset->input_mux;
599 spec->num_adc_nids = preset->num_adc_nids;
600 spec->adc_nids = preset->adc_nids;
601 spec->dig_in_nid = preset->dig_in_nid;
603 spec->unsol_event = preset->unsol_event;
604 spec->init_hook = preset->init_hook;
608 * ALC880 3-stack model
610 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
611 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
612 * F-Mic = 0x1b, HP = 0x19
615 static hda_nid_t alc880_dac_nids[4] = {
616 /* front, rear, clfe, rear_surr */
617 0x02, 0x05, 0x04, 0x03
620 static hda_nid_t alc880_adc_nids[3] = {
625 /* The datasheet says the node 0x07 is connected from inputs,
626 * but it shows zero connection in the real implementation on some devices.
627 * Note: this is a 915GAV bug, fixed on 915GLV
629 static hda_nid_t alc880_adc_nids_alt[2] = {
634 #define ALC880_DIGOUT_NID 0x06
635 #define ALC880_DIGIN_NID 0x0a
637 static struct hda_input_mux alc880_capture_source = {
641 { "Front Mic", 0x3 },
647 /* channel source setting (2/6 channel selection for 3-stack) */
649 static struct hda_verb alc880_threestack_ch2_init[] = {
650 /* set line-in to input, mute it */
651 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
652 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
653 /* set mic-in to input vref 80%, mute it */
654 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
655 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
660 static struct hda_verb alc880_threestack_ch6_init[] = {
661 /* set line-in to output, unmute it */
662 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
663 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
664 /* set mic-in to output, unmute it */
665 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
666 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
670 static struct hda_channel_mode alc880_threestack_modes[2] = {
671 { 2, alc880_threestack_ch2_init },
672 { 6, alc880_threestack_ch6_init },
675 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
676 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
677 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
678 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
679 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
680 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
681 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
682 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
683 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
684 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
685 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
686 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
687 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
688 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
689 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
690 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
691 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
692 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
693 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
694 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
696 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
697 .name = "Channel Mode",
698 .info = alc_ch_mode_info,
699 .get = alc_ch_mode_get,
700 .put = alc_ch_mode_put,
705 /* capture mixer elements */
706 static struct snd_kcontrol_new alc880_capture_mixer[] = {
707 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
708 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
709 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
710 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
711 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
712 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
714 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
715 /* The multiple "Capture Source" controls confuse alsamixer
716 * So call somewhat different..
717 * FIXME: the controls appear in the "playback" view!
719 /* .name = "Capture Source", */
720 .name = "Input Source",
722 .info = alc_mux_enum_info,
723 .get = alc_mux_enum_get,
724 .put = alc_mux_enum_put,
729 /* capture mixer elements (in case NID 0x07 not available) */
730 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
731 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
732 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
733 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
734 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
736 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
737 /* The multiple "Capture Source" controls confuse alsamixer
738 * So call somewhat different..
739 * FIXME: the controls appear in the "playback" view!
741 /* .name = "Capture Source", */
742 .name = "Input Source",
744 .info = alc_mux_enum_info,
745 .get = alc_mux_enum_get,
746 .put = alc_mux_enum_put,
754 * ALC880 5-stack model
756 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
758 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
759 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
762 /* additional mixers to alc880_three_stack_mixer */
763 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
764 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
765 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
769 /* channel source setting (6/8 channel selection for 5-stack) */
771 static struct hda_verb alc880_fivestack_ch6_init[] = {
772 /* set line-in to input, mute it */
773 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
774 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
779 static struct hda_verb alc880_fivestack_ch8_init[] = {
780 /* set line-in to output, unmute it */
781 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
782 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
786 static struct hda_channel_mode alc880_fivestack_modes[2] = {
787 { 6, alc880_fivestack_ch6_init },
788 { 8, alc880_fivestack_ch8_init },
793 * ALC880 6-stack model
795 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
797 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
798 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
801 static hda_nid_t alc880_6st_dac_nids[4] = {
802 /* front, rear, clfe, rear_surr */
803 0x02, 0x03, 0x04, 0x05
806 static struct hda_input_mux alc880_6stack_capture_source = {
810 { "Front Mic", 0x1 },
816 /* fixed 8-channels */
817 static struct hda_channel_mode alc880_sixstack_modes[1] = {
821 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
822 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
823 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
824 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
825 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
826 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
827 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
828 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
829 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
830 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
831 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
832 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
833 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
834 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
835 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
836 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
837 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
838 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
839 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
840 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
841 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
843 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
844 .name = "Channel Mode",
845 .info = alc_ch_mode_info,
846 .get = alc_ch_mode_get,
847 .put = alc_ch_mode_put,
856 * W810 has rear IO for:
859 * Center/LFE (DAC 04)
862 * The system also has a pair of internal speakers, and a headphone jack.
863 * These are both connected to Line2 on the codec, hence to DAC 02.
865 * There is a variable resistor to control the speaker or headphone
866 * volume. This is a hardware-only device without a software API.
868 * Plugging headphones in will disable the internal speakers. This is
869 * implemented in hardware, not via the driver using jack sense. In
870 * a similar fashion, plugging into the rear socket marked "front" will
871 * disable both the speakers and headphones.
873 * For input, there's a microphone jack, and an "audio in" jack.
874 * These may not do anything useful with this driver yet, because I
875 * haven't setup any initialization verbs for these yet...
878 static hda_nid_t alc880_w810_dac_nids[3] = {
879 /* front, rear/surround, clfe */
883 /* fixed 6 channels */
884 static struct hda_channel_mode alc880_w810_modes[1] = {
888 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
889 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
890 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
891 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
892 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
893 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
894 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
895 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
896 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
897 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
898 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
906 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
907 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
911 static hda_nid_t alc880_z71v_dac_nids[1] = {
914 #define ALC880_Z71V_HP_DAC 0x03
916 /* fixed 2 channels */
917 static struct hda_channel_mode alc880_2_jack_modes[1] = {
921 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
922 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
923 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
924 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
925 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
926 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
927 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
928 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
929 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
938 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
939 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
942 static hda_nid_t alc880_f1734_dac_nids[1] = {
945 #define ALC880_F1734_HP_DAC 0x02
947 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
948 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
949 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
950 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
951 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
952 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
953 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
954 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
955 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
964 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
965 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
966 * Mic = 0x18, Line = 0x1a
969 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
970 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
972 static struct snd_kcontrol_new alc880_asus_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("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
982 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
983 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
984 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
985 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
986 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
988 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
989 .name = "Channel Mode",
990 .info = alc_ch_mode_info,
991 .get = alc_ch_mode_get,
992 .put = alc_ch_mode_put,
999 * ALC880 ASUS W1V model
1001 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1002 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1003 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1006 /* additional mixers to alc880_asus_mixer */
1007 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1008 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1009 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1013 /* additional mixers to alc880_asus_mixer */
1014 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1015 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1016 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1021 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1022 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1023 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1024 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1025 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1026 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1027 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1028 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1029 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1030 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1032 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1033 /* The multiple "Capture Source" controls confuse alsamixer
1034 * So call somewhat different..
1035 * FIXME: the controls appear in the "playback" view!
1037 /* .name = "Capture Source", */
1038 .name = "Input Source",
1040 .info = alc_mux_enum_info,
1041 .get = alc_mux_enum_get,
1042 .put = alc_mux_enum_put,
1048 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1049 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1050 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1051 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1052 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1053 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1054 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1055 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1056 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1057 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1058 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1059 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1060 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1061 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1062 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1063 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1064 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1065 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1066 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1068 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1069 .name = "Channel Mode",
1070 .info = alc_ch_mode_info,
1071 .get = alc_ch_mode_get,
1072 .put = alc_ch_mode_put,
1077 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1078 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1079 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1080 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1081 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1082 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1083 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1084 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1085 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1086 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1087 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1091 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1092 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1093 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1094 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1095 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1096 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1097 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1102 * build control elements
1104 static int alc_build_controls(struct hda_codec *codec)
1106 struct alc_spec *spec = codec->spec;
1110 for (i = 0; i < spec->num_mixers; i++) {
1111 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1116 if (spec->multiout.dig_out_nid) {
1117 err = snd_hda_create_spdif_out_ctls(codec,
1118 spec->multiout.dig_out_nid);
1122 if (spec->dig_in_nid) {
1123 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1132 * initialize the codec volumes, etc
1136 * generic initialization of ADC, input mixers and output mixers
1138 static struct hda_verb alc880_volume_init_verbs[] = {
1140 * Unmute ADC0-2 and set the default input to mic-in
1142 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1143 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1144 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1145 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1146 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1147 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1149 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1151 * Note: PASD motherboards uses the Line In 2 as the input for front
1154 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1155 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1156 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1157 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
1158 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
1159 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
1162 * Set up output mixers (0x0c - 0x0f)
1164 /* set vol=0 to output mixers */
1165 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1166 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1167 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1168 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1169 /* set up input amps for analog loopback */
1170 /* Amp Indices: DAC = 0, mixer = 1 */
1171 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1172 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1173 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1174 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1175 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1176 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1177 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1178 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1184 * 3-stack pin configuration:
1185 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1187 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1189 * preset connection lists of input pins
1190 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1192 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1193 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1194 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1197 * Set pin mode and muting
1199 /* set front pin widgets 0x14 for output */
1200 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1201 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1202 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1203 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1204 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1205 /* Mic2 (as headphone out) for HP output */
1206 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1207 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1208 /* Line In pin widget for input */
1209 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1210 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1211 /* Line2 (as front mic) pin widget for input and vref at 80% */
1212 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1213 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1214 /* CD pin widget for input */
1215 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1221 * 5-stack pin configuration:
1222 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1223 * line-in/side = 0x1a, f-mic = 0x1b
1225 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1227 * preset connection lists of input pins
1228 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1230 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1231 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1234 * Set pin mode and muting
1236 /* set pin widgets 0x14-0x17 for output */
1237 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1238 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1239 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1240 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1241 /* unmute pins for output (no gain on this amp) */
1242 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1243 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1244 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1245 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1247 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1248 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1249 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1250 /* Mic2 (as headphone out) for HP output */
1251 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1252 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1253 /* Line In pin widget for input */
1254 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1255 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1256 /* Line2 (as front mic) pin widget for input and vref at 80% */
1257 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1258 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1259 /* CD pin widget for input */
1260 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1266 * W810 pin configuration:
1267 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1269 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1270 /* hphone/speaker input selector: front DAC */
1271 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1273 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1274 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1275 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1276 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1277 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1278 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1280 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1281 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1287 * Z71V pin configuration:
1288 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1290 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1291 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1292 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1293 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1294 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1296 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1297 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1298 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1299 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1305 * 6-stack pin configuration:
1306 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1307 * f-mic = 0x19, line = 0x1a, HP = 0x1b
1309 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1310 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1312 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1313 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1314 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1315 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1316 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1317 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1318 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1319 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1321 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1322 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1323 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1324 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1325 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1326 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1327 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1328 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1329 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1335 * Uniwill pin configuration:
1336 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1339 static struct hda_verb alc880_uniwill_init_verbs[] = {
1340 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1342 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1343 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1344 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1345 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1346 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1347 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1348 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1349 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1350 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1351 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1352 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1353 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1354 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1355 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1357 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1358 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1359 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1360 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1361 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1362 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1363 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1364 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1365 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1367 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1368 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1375 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
1377 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1378 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1380 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1381 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1382 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1383 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1384 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1385 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1386 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1387 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1388 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1389 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1390 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1391 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1393 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1394 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1395 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1396 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1397 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1398 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1400 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1401 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1406 static struct hda_verb alc880_beep_init_verbs[] = {
1407 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1411 /* toggle speaker-output according to the hp-jack state */
1412 static void alc880_uniwill_automute(struct hda_codec *codec)
1414 unsigned int present;
1416 present = snd_hda_codec_read(codec, 0x14, 0,
1417 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1418 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
1419 0x80, present ? 0x80 : 0);
1420 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
1421 0x80, present ? 0x80 : 0);
1422 snd_hda_codec_amp_update(codec, 0x16, 0, HDA_OUTPUT, 0,
1423 0x80, present ? 0x80 : 0);
1424 snd_hda_codec_amp_update(codec, 0x16, 1, HDA_OUTPUT, 0,
1425 0x80, present ? 0x80 : 0);
1427 present = snd_hda_codec_read(codec, 0x18, 0,
1428 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1429 snd_hda_codec_write(codec, 0x0b, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1430 0x7000 | (0x01 << 8) | (present ? 0x80 : 0));
1433 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1436 /* Looks like the unsol event is incompatible with the standard
1437 * definition. 4bit tag is placed at 28 bit!
1439 if ((res >> 28) == ALC880_HP_EVENT ||
1440 (res >> 28) == ALC880_MIC_EVENT)
1441 alc880_uniwill_automute(codec);
1444 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1446 unsigned int present;
1448 present = snd_hda_codec_read(codec, 0x14, 0,
1449 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1451 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_INPUT, 0,
1452 0x80, present ? 0x80 : 0);
1453 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_INPUT, 0,
1454 0x80, present ? 0x80 : 0);
1457 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1459 unsigned int present;
1461 present = snd_hda_codec_read(codec, 0x21, 0,
1462 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0) & 0x7f;
1464 snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
1466 snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
1469 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
1471 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
1475 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1478 /* Looks like the unsol event is incompatible with the standard
1479 * definition. 4bit tag is placed at 28 bit!
1481 if ((res >> 28) == ALC880_HP_EVENT)
1482 alc880_uniwill_p53_hp_automute(codec);
1483 if ((res >> 28) == ALC880_DCVOL_EVENT)
1484 alc880_uniwill_p53_dcvol_automute(codec);
1489 * F1734 pin configuration:
1490 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1492 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1493 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1494 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1495 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1496 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1498 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1499 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1500 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1501 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1503 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1504 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1505 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1506 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1507 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1508 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1509 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1510 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1511 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1518 * ASUS pin configuration:
1519 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1521 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1522 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1523 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1524 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1525 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1527 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1528 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1529 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1530 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1531 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1532 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1533 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1534 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1536 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1537 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1538 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1539 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1540 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1541 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1542 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1543 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1544 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1549 /* Enable GPIO mask and set output */
1550 static struct hda_verb alc880_gpio1_init_verbs[] = {
1551 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
1552 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
1553 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
1558 /* Enable GPIO mask and set output */
1559 static struct hda_verb alc880_gpio2_init_verbs[] = {
1560 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
1561 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
1562 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
1567 /* Clevo m520g init */
1568 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1569 /* headphone output */
1570 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1572 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1573 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1575 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1576 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1578 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1579 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1580 /* Mic1 (rear panel) */
1581 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1582 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1583 /* Mic2 (front panel) */
1584 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1585 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1587 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1588 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1589 /* change to EAPD mode */
1590 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1591 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1596 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1597 /* change to EAPD mode */
1598 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1599 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1601 /* Headphone output */
1602 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1604 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1605 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1607 /* Line In pin widget for input */
1608 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1609 /* CD pin widget for input */
1610 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1611 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1612 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1614 /* change to EAPD mode */
1615 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1616 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1622 * LG m1 express dual
1625 * Rear Line-In/Out (blue): 0x14
1626 * Build-in Mic-In: 0x15
1628 * HP-Out (green): 0x1b
1629 * Mic-In/Out (red): 0x19
1633 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1634 static hda_nid_t alc880_lg_dac_nids[3] = {
1638 /* seems analog CD is not working */
1639 static struct hda_input_mux alc880_lg_capture_source = {
1644 { "Internal Mic", 0x6 },
1648 /* 2,4,6 channel modes */
1649 static struct hda_verb alc880_lg_ch2_init[] = {
1650 /* set line-in and mic-in to input */
1651 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1652 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1656 static struct hda_verb alc880_lg_ch4_init[] = {
1657 /* set line-in to out and mic-in to input */
1658 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1659 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1663 static struct hda_verb alc880_lg_ch6_init[] = {
1664 /* set line-in and mic-in to output */
1665 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1666 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1670 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1671 { 2, alc880_lg_ch2_init },
1672 { 4, alc880_lg_ch4_init },
1673 { 6, alc880_lg_ch6_init },
1676 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1677 /* FIXME: it's not really "master" but front channels */
1678 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1679 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1680 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1681 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1682 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1683 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1684 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1685 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1686 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1687 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1688 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1689 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1690 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1691 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1693 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1694 .name = "Channel Mode",
1695 .info = alc_ch_mode_info,
1696 .get = alc_ch_mode_get,
1697 .put = alc_ch_mode_put,
1702 static struct hda_verb alc880_lg_init_verbs[] = {
1703 /* set capture source to mic-in */
1704 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1705 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1706 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1707 /* mute all amp mixer inputs */
1708 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1709 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
1710 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1711 /* line-in to input */
1712 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1713 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1715 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1716 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1718 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1719 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1720 /* mic-in to input */
1721 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1722 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1723 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1725 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1726 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1727 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1729 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1733 /* toggle speaker-output according to the hp-jack state */
1734 static void alc880_lg_automute(struct hda_codec *codec)
1736 unsigned int present;
1738 present = snd_hda_codec_read(codec, 0x1b, 0,
1739 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1740 snd_hda_codec_amp_update(codec, 0x17, 0, HDA_OUTPUT, 0,
1741 0x80, present ? 0x80 : 0);
1742 snd_hda_codec_amp_update(codec, 0x17, 1, HDA_OUTPUT, 0,
1743 0x80, present ? 0x80 : 0);
1746 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1748 /* Looks like the unsol event is incompatible with the standard
1749 * definition. 4bit tag is placed at 28 bit!
1751 if ((res >> 28) == 0x01)
1752 alc880_lg_automute(codec);
1761 * Built-in Mic-In: 0x19 (?)
1766 /* seems analog CD is not working */
1767 static struct hda_input_mux alc880_lg_lw_capture_source = {
1771 { "Internal Mic", 0x1 },
1775 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1776 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1777 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT),
1778 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1779 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1780 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1781 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1785 static struct hda_verb alc880_lg_lw_init_verbs[] = {
1786 /* set capture source to mic-in */
1787 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1788 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1789 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1790 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1792 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1793 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1795 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1796 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1797 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1798 /* mic-in to input */
1799 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1800 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1802 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1803 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1805 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1809 /* toggle speaker-output according to the hp-jack state */
1810 static void alc880_lg_lw_automute(struct hda_codec *codec)
1812 unsigned int present;
1814 present = snd_hda_codec_read(codec, 0x1b, 0,
1815 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1816 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
1817 0x80, present ? 0x80 : 0);
1818 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
1819 0x80, present ? 0x80 : 0);
1822 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1824 /* Looks like the unsol event is incompatible with the standard
1825 * definition. 4bit tag is placed at 28 bit!
1827 if ((res >> 28) == 0x01)
1828 alc880_lg_lw_automute(codec);
1835 static int alc_init(struct hda_codec *codec)
1837 struct alc_spec *spec = codec->spec;
1840 for (i = 0; i < spec->num_init_verbs; i++)
1841 snd_hda_sequence_write(codec, spec->init_verbs[i]);
1843 if (spec->init_hook)
1844 spec->init_hook(codec);
1849 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
1851 struct alc_spec *spec = codec->spec;
1853 if (spec->unsol_event)
1854 spec->unsol_event(codec, res);
1861 static int alc_resume(struct hda_codec *codec)
1863 struct alc_spec *spec = codec->spec;
1867 for (i = 0; i < spec->num_mixers; i++)
1868 snd_hda_resume_ctls(codec, spec->mixers[i]);
1869 if (spec->multiout.dig_out_nid)
1870 snd_hda_resume_spdif_out(codec);
1871 if (spec->dig_in_nid)
1872 snd_hda_resume_spdif_in(codec);
1879 * Analog playback callbacks
1881 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
1882 struct hda_codec *codec,
1883 struct snd_pcm_substream *substream)
1885 struct alc_spec *spec = codec->spec;
1886 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
1889 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1890 struct hda_codec *codec,
1891 unsigned int stream_tag,
1892 unsigned int format,
1893 struct snd_pcm_substream *substream)
1895 struct alc_spec *spec = codec->spec;
1896 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
1897 stream_tag, format, substream);
1900 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1901 struct hda_codec *codec,
1902 struct snd_pcm_substream *substream)
1904 struct alc_spec *spec = codec->spec;
1905 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
1911 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1912 struct hda_codec *codec,
1913 struct snd_pcm_substream *substream)
1915 struct alc_spec *spec = codec->spec;
1916 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1919 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
1920 struct hda_codec *codec,
1921 struct snd_pcm_substream *substream)
1923 struct alc_spec *spec = codec->spec;
1924 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1930 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
1931 struct hda_codec *codec,
1932 unsigned int stream_tag,
1933 unsigned int format,
1934 struct snd_pcm_substream *substream)
1936 struct alc_spec *spec = codec->spec;
1938 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
1939 stream_tag, 0, format);
1943 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1944 struct hda_codec *codec,
1945 struct snd_pcm_substream *substream)
1947 struct alc_spec *spec = codec->spec;
1949 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
1957 static struct hda_pcm_stream alc880_pcm_analog_playback = {
1961 /* NID is set in alc_build_pcms */
1963 .open = alc880_playback_pcm_open,
1964 .prepare = alc880_playback_pcm_prepare,
1965 .cleanup = alc880_playback_pcm_cleanup
1969 static struct hda_pcm_stream alc880_pcm_analog_capture = {
1973 /* NID is set in alc_build_pcms */
1975 .prepare = alc880_capture_pcm_prepare,
1976 .cleanup = alc880_capture_pcm_cleanup
1980 static struct hda_pcm_stream alc880_pcm_digital_playback = {
1984 /* NID is set in alc_build_pcms */
1986 .open = alc880_dig_playback_pcm_open,
1987 .close = alc880_dig_playback_pcm_close
1991 static struct hda_pcm_stream alc880_pcm_digital_capture = {
1995 /* NID is set in alc_build_pcms */
1998 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
1999 static struct hda_pcm_stream alc_pcm_null_playback = {
2005 static int alc_build_pcms(struct hda_codec *codec)
2007 struct alc_spec *spec = codec->spec;
2008 struct hda_pcm *info = spec->pcm_rec;
2011 codec->num_pcms = 1;
2012 codec->pcm_info = info;
2014 info->name = spec->stream_name_analog;
2015 if (spec->stream_analog_playback) {
2016 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2017 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2018 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2020 if (spec->stream_analog_capture) {
2021 snd_assert(spec->adc_nids, return -EINVAL);
2022 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2023 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2026 if (spec->channel_mode) {
2027 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2028 for (i = 0; i < spec->num_channel_mode; i++) {
2029 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2030 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2035 /* SPDIF for stream index #1 */
2036 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2037 codec->num_pcms = 2;
2038 info = spec->pcm_rec + 1;
2039 info->name = spec->stream_name_digital;
2040 if (spec->multiout.dig_out_nid &&
2041 spec->stream_digital_playback) {
2042 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2043 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2045 if (spec->dig_in_nid &&
2046 spec->stream_digital_capture) {
2047 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2048 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2052 /* If the use of more than one ADC is requested for the current
2053 * model, configure a second analog capture-only PCM.
2055 /* Additional Analaog capture for index #2 */
2056 if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2058 codec->num_pcms = 3;
2059 info = spec->pcm_rec + 2;
2060 info->name = spec->stream_name_analog;
2061 /* No playback stream for second PCM */
2062 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2063 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2064 if (spec->stream_analog_capture) {
2065 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2066 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2073 static void alc_free(struct hda_codec *codec)
2075 struct alc_spec *spec = codec->spec;
2081 if (spec->kctl_alloc) {
2082 for (i = 0; i < spec->num_kctl_used; i++)
2083 kfree(spec->kctl_alloc[i].name);
2084 kfree(spec->kctl_alloc);
2091 static struct hda_codec_ops alc_patch_ops = {
2092 .build_controls = alc_build_controls,
2093 .build_pcms = alc_build_pcms,
2096 .unsol_event = alc_unsol_event,
2098 .resume = alc_resume,
2104 * Test configuration for debugging
2106 * Almost all inputs/outputs are enabled. I/O pins can be configured via
2109 #ifdef CONFIG_SND_DEBUG
2110 static hda_nid_t alc880_test_dac_nids[4] = {
2111 0x02, 0x03, 0x04, 0x05
2114 static struct hda_input_mux alc880_test_capture_source = {
2123 { "Surround", 0x6 },
2127 static struct hda_channel_mode alc880_test_modes[4] = {
2134 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2135 struct snd_ctl_elem_info *uinfo)
2137 static char *texts[] = {
2138 "N/A", "Line Out", "HP Out",
2139 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2141 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2143 uinfo->value.enumerated.items = 8;
2144 if (uinfo->value.enumerated.item >= 8)
2145 uinfo->value.enumerated.item = 7;
2146 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2150 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2151 struct snd_ctl_elem_value *ucontrol)
2153 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2154 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2155 unsigned int pin_ctl, item = 0;
2157 pin_ctl = snd_hda_codec_read(codec, nid, 0,
2158 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2159 if (pin_ctl & AC_PINCTL_OUT_EN) {
2160 if (pin_ctl & AC_PINCTL_HP_EN)
2164 } else if (pin_ctl & AC_PINCTL_IN_EN) {
2165 switch (pin_ctl & AC_PINCTL_VREFEN) {
2166 case AC_PINCTL_VREF_HIZ: item = 3; break;
2167 case AC_PINCTL_VREF_50: item = 4; break;
2168 case AC_PINCTL_VREF_GRD: item = 5; break;
2169 case AC_PINCTL_VREF_80: item = 6; break;
2170 case AC_PINCTL_VREF_100: item = 7; break;
2173 ucontrol->value.enumerated.item[0] = item;
2177 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2178 struct snd_ctl_elem_value *ucontrol)
2180 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2181 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2182 static unsigned int ctls[] = {
2183 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2184 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2185 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2186 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2187 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2188 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2190 unsigned int old_ctl, new_ctl;
2192 old_ctl = snd_hda_codec_read(codec, nid, 0,
2193 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2194 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2195 if (old_ctl != new_ctl) {
2196 snd_hda_codec_write(codec, nid, 0,
2197 AC_VERB_SET_PIN_WIDGET_CONTROL, new_ctl);
2198 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2199 (ucontrol->value.enumerated.item[0] >= 3 ?
2206 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2207 struct snd_ctl_elem_info *uinfo)
2209 static char *texts[] = {
2210 "Front", "Surround", "CLFE", "Side"
2212 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2214 uinfo->value.enumerated.items = 4;
2215 if (uinfo->value.enumerated.item >= 4)
2216 uinfo->value.enumerated.item = 3;
2217 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2221 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2222 struct snd_ctl_elem_value *ucontrol)
2224 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2225 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2228 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2229 ucontrol->value.enumerated.item[0] = sel & 3;
2233 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2234 struct snd_ctl_elem_value *ucontrol)
2236 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2237 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2240 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2241 if (ucontrol->value.enumerated.item[0] != sel) {
2242 sel = ucontrol->value.enumerated.item[0] & 3;
2243 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, sel);
2249 #define PIN_CTL_TEST(xname,nid) { \
2250 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2252 .info = alc_test_pin_ctl_info, \
2253 .get = alc_test_pin_ctl_get, \
2254 .put = alc_test_pin_ctl_put, \
2255 .private_value = nid \
2258 #define PIN_SRC_TEST(xname,nid) { \
2259 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2261 .info = alc_test_pin_src_info, \
2262 .get = alc_test_pin_src_get, \
2263 .put = alc_test_pin_src_put, \
2264 .private_value = nid \
2267 static struct snd_kcontrol_new alc880_test_mixer[] = {
2268 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2269 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2270 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2271 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2272 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2273 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2274 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2275 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2276 PIN_CTL_TEST("Front Pin Mode", 0x14),
2277 PIN_CTL_TEST("Surround Pin Mode", 0x15),
2278 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2279 PIN_CTL_TEST("Side Pin Mode", 0x17),
2280 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2281 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2282 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2283 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2284 PIN_SRC_TEST("In-1 Pin Source", 0x18),
2285 PIN_SRC_TEST("In-2 Pin Source", 0x19),
2286 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2287 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2288 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2289 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2290 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2291 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2292 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2293 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2294 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2295 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2296 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2297 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2299 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2300 .name = "Channel Mode",
2301 .info = alc_ch_mode_info,
2302 .get = alc_ch_mode_get,
2303 .put = alc_ch_mode_put,
2308 static struct hda_verb alc880_test_init_verbs[] = {
2309 /* Unmute inputs of 0x0c - 0x0f */
2310 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2311 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2312 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2313 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2314 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2315 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2316 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2317 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2318 /* Vol output for 0x0c-0x0f */
2319 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2320 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2321 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2322 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2323 /* Set output pins 0x14-0x17 */
2324 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2325 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2326 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2327 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2328 /* Unmute output pins 0x14-0x17 */
2329 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2330 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2331 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2332 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2333 /* Set input pins 0x18-0x1c */
2334 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2335 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2336 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2337 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2338 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2339 /* Mute input pins 0x18-0x1b */
2340 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2341 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2342 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2343 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2345 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2346 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2347 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2348 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2349 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2350 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2351 /* Analog input/passthru */
2352 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2353 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2354 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2355 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2356 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2364 static const char *alc880_models[ALC880_MODEL_LAST] = {
2365 [ALC880_3ST] = "3stack",
2366 [ALC880_TCL_S700] = "tcl",
2367 [ALC880_3ST_DIG] = "3stack-digout",
2368 [ALC880_CLEVO] = "clevo",
2369 [ALC880_5ST] = "5stack",
2370 [ALC880_5ST_DIG] = "5stack-digout",
2371 [ALC880_W810] = "w810",
2372 [ALC880_Z71V] = "z71v",
2373 [ALC880_6ST] = "6stack",
2374 [ALC880_6ST_DIG] = "6stack-digout",
2375 [ALC880_ASUS] = "asus",
2376 [ALC880_ASUS_W1V] = "asus-w1v",
2377 [ALC880_ASUS_DIG] = "asus-dig",
2378 [ALC880_ASUS_DIG2] = "asus-dig2",
2379 [ALC880_UNIWILL_DIG] = "uniwill",
2380 [ALC880_UNIWILL_P53] = "uniwill-p53",
2381 [ALC880_FUJITSU] = "fujitsu",
2382 [ALC880_F1734] = "F1734",
2384 [ALC880_LG_LW] = "lg-lw",
2385 #ifdef CONFIG_SND_DEBUG
2386 [ALC880_TEST] = "test",
2388 [ALC880_AUTO] = "auto",
2391 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2392 /* Broken BIOS configuration */
2393 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2394 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2396 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2397 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2398 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2399 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2400 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2401 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2402 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2403 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2404 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2406 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2407 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2409 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2410 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2411 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2412 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2413 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2414 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2415 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2416 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2417 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2418 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2419 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2420 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2421 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2422 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2423 SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2425 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2426 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2427 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2428 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2429 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2430 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2431 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2432 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2433 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2434 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2435 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2436 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2437 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2438 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2439 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2440 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2441 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2442 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2444 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2445 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2446 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2447 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2449 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2450 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2451 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2452 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2454 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2455 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2456 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2457 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2459 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2460 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2461 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2462 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2463 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2464 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2465 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2466 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2467 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2468 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2469 SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
2475 * ALC880 codec presets
2477 static struct alc_config_preset alc880_presets[] = {
2479 .mixers = { alc880_three_stack_mixer },
2480 .init_verbs = { alc880_volume_init_verbs, alc880_pin_3stack_init_verbs },
2481 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2482 .dac_nids = alc880_dac_nids,
2483 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2484 .channel_mode = alc880_threestack_modes,
2486 .input_mux = &alc880_capture_source,
2488 [ALC880_3ST_DIG] = {
2489 .mixers = { alc880_three_stack_mixer },
2490 .init_verbs = { alc880_volume_init_verbs, alc880_pin_3stack_init_verbs },
2491 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2492 .dac_nids = alc880_dac_nids,
2493 .dig_out_nid = ALC880_DIGOUT_NID,
2494 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2495 .channel_mode = alc880_threestack_modes,
2497 .input_mux = &alc880_capture_source,
2499 [ALC880_TCL_S700] = {
2500 .mixers = { alc880_tcl_s700_mixer },
2501 .init_verbs = { alc880_volume_init_verbs,
2502 alc880_pin_tcl_S700_init_verbs,
2503 alc880_gpio2_init_verbs },
2504 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2505 .dac_nids = alc880_dac_nids,
2507 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2508 .channel_mode = alc880_2_jack_modes,
2509 .input_mux = &alc880_capture_source,
2512 .mixers = { alc880_three_stack_mixer, alc880_five_stack_mixer},
2513 .init_verbs = { alc880_volume_init_verbs, alc880_pin_5stack_init_verbs },
2514 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2515 .dac_nids = alc880_dac_nids,
2516 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2517 .channel_mode = alc880_fivestack_modes,
2518 .input_mux = &alc880_capture_source,
2520 [ALC880_5ST_DIG] = {
2521 .mixers = { alc880_three_stack_mixer, alc880_five_stack_mixer },
2522 .init_verbs = { alc880_volume_init_verbs, alc880_pin_5stack_init_verbs },
2523 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2524 .dac_nids = alc880_dac_nids,
2525 .dig_out_nid = ALC880_DIGOUT_NID,
2526 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2527 .channel_mode = alc880_fivestack_modes,
2528 .input_mux = &alc880_capture_source,
2531 .mixers = { alc880_six_stack_mixer },
2532 .init_verbs = { alc880_volume_init_verbs, alc880_pin_6stack_init_verbs },
2533 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2534 .dac_nids = alc880_6st_dac_nids,
2535 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2536 .channel_mode = alc880_sixstack_modes,
2537 .input_mux = &alc880_6stack_capture_source,
2539 [ALC880_6ST_DIG] = {
2540 .mixers = { alc880_six_stack_mixer },
2541 .init_verbs = { alc880_volume_init_verbs, alc880_pin_6stack_init_verbs },
2542 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2543 .dac_nids = alc880_6st_dac_nids,
2544 .dig_out_nid = ALC880_DIGOUT_NID,
2545 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2546 .channel_mode = alc880_sixstack_modes,
2547 .input_mux = &alc880_6stack_capture_source,
2550 .mixers = { alc880_w810_base_mixer },
2551 .init_verbs = { alc880_volume_init_verbs, alc880_pin_w810_init_verbs,
2552 alc880_gpio2_init_verbs },
2553 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2554 .dac_nids = alc880_w810_dac_nids,
2555 .dig_out_nid = ALC880_DIGOUT_NID,
2556 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2557 .channel_mode = alc880_w810_modes,
2558 .input_mux = &alc880_capture_source,
2561 .mixers = { alc880_z71v_mixer },
2562 .init_verbs = { alc880_volume_init_verbs, alc880_pin_z71v_init_verbs },
2563 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2564 .dac_nids = alc880_z71v_dac_nids,
2565 .dig_out_nid = ALC880_DIGOUT_NID,
2567 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2568 .channel_mode = alc880_2_jack_modes,
2569 .input_mux = &alc880_capture_source,
2572 .mixers = { alc880_f1734_mixer },
2573 .init_verbs = { alc880_volume_init_verbs, alc880_pin_f1734_init_verbs },
2574 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2575 .dac_nids = alc880_f1734_dac_nids,
2577 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2578 .channel_mode = alc880_2_jack_modes,
2579 .input_mux = &alc880_capture_source,
2582 .mixers = { alc880_asus_mixer },
2583 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2584 alc880_gpio1_init_verbs },
2585 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2586 .dac_nids = alc880_asus_dac_nids,
2587 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2588 .channel_mode = alc880_asus_modes,
2590 .input_mux = &alc880_capture_source,
2592 [ALC880_ASUS_DIG] = {
2593 .mixers = { alc880_asus_mixer },
2594 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2595 alc880_gpio1_init_verbs },
2596 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2597 .dac_nids = alc880_asus_dac_nids,
2598 .dig_out_nid = ALC880_DIGOUT_NID,
2599 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2600 .channel_mode = alc880_asus_modes,
2602 .input_mux = &alc880_capture_source,
2604 [ALC880_ASUS_DIG2] = {
2605 .mixers = { alc880_asus_mixer },
2606 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2607 alc880_gpio2_init_verbs }, /* use GPIO2 */
2608 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2609 .dac_nids = alc880_asus_dac_nids,
2610 .dig_out_nid = ALC880_DIGOUT_NID,
2611 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2612 .channel_mode = alc880_asus_modes,
2614 .input_mux = &alc880_capture_source,
2616 [ALC880_ASUS_W1V] = {
2617 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2618 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2619 alc880_gpio1_init_verbs },
2620 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2621 .dac_nids = alc880_asus_dac_nids,
2622 .dig_out_nid = ALC880_DIGOUT_NID,
2623 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2624 .channel_mode = alc880_asus_modes,
2626 .input_mux = &alc880_capture_source,
2628 [ALC880_UNIWILL_DIG] = {
2629 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2630 .init_verbs = { alc880_volume_init_verbs,
2631 alc880_pin_asus_init_verbs },
2632 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2633 .dac_nids = alc880_asus_dac_nids,
2634 .dig_out_nid = ALC880_DIGOUT_NID,
2635 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2636 .channel_mode = alc880_asus_modes,
2638 .input_mux = &alc880_capture_source,
2640 [ALC880_UNIWILL] = {
2641 .mixers = { alc880_uniwill_mixer },
2642 .init_verbs = { alc880_volume_init_verbs,
2643 alc880_uniwill_init_verbs },
2644 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2645 .dac_nids = alc880_asus_dac_nids,
2646 .dig_out_nid = ALC880_DIGOUT_NID,
2647 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2648 .channel_mode = alc880_threestack_modes,
2650 .input_mux = &alc880_capture_source,
2651 .unsol_event = alc880_uniwill_unsol_event,
2652 .init_hook = alc880_uniwill_automute,
2654 [ALC880_UNIWILL_P53] = {
2655 .mixers = { alc880_uniwill_p53_mixer },
2656 .init_verbs = { alc880_volume_init_verbs,
2657 alc880_uniwill_p53_init_verbs },
2658 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2659 .dac_nids = alc880_asus_dac_nids,
2660 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2661 .channel_mode = alc880_threestack_modes,
2662 .input_mux = &alc880_capture_source,
2663 .unsol_event = alc880_uniwill_p53_unsol_event,
2664 .init_hook = alc880_uniwill_p53_hp_automute,
2666 [ALC880_FUJITSU] = {
2667 .mixers = { alc880_fujitsu_mixer,
2668 alc880_pcbeep_mixer, },
2669 .init_verbs = { alc880_volume_init_verbs,
2670 alc880_uniwill_p53_init_verbs,
2671 alc880_beep_init_verbs },
2672 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2673 .dac_nids = alc880_dac_nids,
2674 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2675 .channel_mode = alc880_2_jack_modes,
2676 .input_mux = &alc880_capture_source,
2677 .unsol_event = alc880_uniwill_p53_unsol_event,
2678 .init_hook = alc880_uniwill_p53_hp_automute,
2681 .mixers = { alc880_three_stack_mixer },
2682 .init_verbs = { alc880_volume_init_verbs,
2683 alc880_pin_clevo_init_verbs },
2684 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2685 .dac_nids = alc880_dac_nids,
2687 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2688 .channel_mode = alc880_threestack_modes,
2690 .input_mux = &alc880_capture_source,
2693 .mixers = { alc880_lg_mixer },
2694 .init_verbs = { alc880_volume_init_verbs,
2695 alc880_lg_init_verbs },
2696 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2697 .dac_nids = alc880_lg_dac_nids,
2698 .dig_out_nid = ALC880_DIGOUT_NID,
2699 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2700 .channel_mode = alc880_lg_ch_modes,
2702 .input_mux = &alc880_lg_capture_source,
2703 .unsol_event = alc880_lg_unsol_event,
2704 .init_hook = alc880_lg_automute,
2707 .mixers = { alc880_lg_lw_mixer },
2708 .init_verbs = { alc880_volume_init_verbs,
2709 alc880_lg_lw_init_verbs },
2711 .dac_nids = alc880_dac_nids,
2712 .dig_out_nid = ALC880_DIGOUT_NID,
2713 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2714 .channel_mode = alc880_2_jack_modes,
2715 .input_mux = &alc880_lg_lw_capture_source,
2716 .unsol_event = alc880_lg_lw_unsol_event,
2717 .init_hook = alc880_lg_lw_automute,
2719 #ifdef CONFIG_SND_DEBUG
2721 .mixers = { alc880_test_mixer },
2722 .init_verbs = { alc880_test_init_verbs },
2723 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2724 .dac_nids = alc880_test_dac_nids,
2725 .dig_out_nid = ALC880_DIGOUT_NID,
2726 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2727 .channel_mode = alc880_test_modes,
2728 .input_mux = &alc880_test_capture_source,
2734 * Automatic parse of I/O pins from the BIOS configuration
2737 #define NUM_CONTROL_ALLOC 32
2738 #define NUM_VERB_ALLOC 32
2742 ALC_CTL_WIDGET_MUTE,
2745 static struct snd_kcontrol_new alc880_control_templates[] = {
2746 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2747 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2748 HDA_BIND_MUTE(NULL, 0, 0, 0),
2751 /* add dynamic controls */
2752 static int add_control(struct alc_spec *spec, int type, const char *name, unsigned long val)
2754 struct snd_kcontrol_new *knew;
2756 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2757 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2759 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2762 if (spec->kctl_alloc) {
2763 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2764 kfree(spec->kctl_alloc);
2766 spec->kctl_alloc = knew;
2767 spec->num_kctl_alloc = num;
2770 knew = &spec->kctl_alloc[spec->num_kctl_used];
2771 *knew = alc880_control_templates[type];
2772 knew->name = kstrdup(name, GFP_KERNEL);
2775 knew->private_value = val;
2776 spec->num_kctl_used++;
2780 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2781 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2782 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2783 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2784 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
2785 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
2786 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
2787 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
2788 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
2789 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
2790 #define ALC880_PIN_CD_NID 0x1c
2792 /* fill in the dac_nids table from the parsed pin configuration */
2793 static int alc880_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
2799 memset(assigned, 0, sizeof(assigned));
2800 spec->multiout.dac_nids = spec->private_dac_nids;
2802 /* check the pins hardwired to audio widget */
2803 for (i = 0; i < cfg->line_outs; i++) {
2804 nid = cfg->line_out_pins[i];
2805 if (alc880_is_fixed_pin(nid)) {
2806 int idx = alc880_fixed_pin_idx(nid);
2807 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
2811 /* left pins can be connect to any audio widget */
2812 for (i = 0; i < cfg->line_outs; i++) {
2813 nid = cfg->line_out_pins[i];
2814 if (alc880_is_fixed_pin(nid))
2816 /* search for an empty channel */
2817 for (j = 0; j < cfg->line_outs; j++) {
2818 if (! assigned[j]) {
2819 spec->multiout.dac_nids[i] = alc880_idx_to_dac(j);
2825 spec->multiout.num_dacs = cfg->line_outs;
2829 /* add playback controls from the parsed DAC table */
2830 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
2831 const struct auto_pin_cfg *cfg)
2834 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2838 for (i = 0; i < cfg->line_outs; i++) {
2839 if (! spec->multiout.dac_nids[i])
2841 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
2844 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Center Playback Volume",
2845 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
2847 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "LFE Playback Volume",
2848 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
2850 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "Center Playback Switch",
2851 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT))) < 0)
2853 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "LFE Playback Switch",
2854 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT))) < 0)
2857 sprintf(name, "%s Playback Volume", chname[i]);
2858 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2859 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2861 sprintf(name, "%s Playback Switch", chname[i]);
2862 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2863 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2870 /* add playback controls for speaker and HP outputs */
2871 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
2881 if (alc880_is_fixed_pin(pin)) {
2882 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
2883 /* specify the DAC as the extra output */
2884 if (! spec->multiout.hp_nid)
2885 spec->multiout.hp_nid = nid;
2887 spec->multiout.extra_out_nid[0] = nid;
2888 /* control HP volume/switch on the output mixer amp */
2889 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
2890 sprintf(name, "%s Playback Volume", pfx);
2891 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2892 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2894 sprintf(name, "%s Playback Switch", pfx);
2895 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2896 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2898 } else if (alc880_is_multi_pin(pin)) {
2899 /* set manual connection */
2900 /* we have only a switch on HP-out PIN */
2901 sprintf(name, "%s Playback Switch", pfx);
2902 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
2903 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT))) < 0)
2909 /* create input playback/capture controls for the given pin */
2910 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin, const char *ctlname,
2911 int idx, hda_nid_t mix_nid)
2916 sprintf(name, "%s Playback Volume", ctlname);
2917 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2918 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT))) < 0)
2920 sprintf(name, "%s Playback Switch", ctlname);
2921 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
2922 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT))) < 0)
2927 /* create playback/capture controls for input pins */
2928 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
2929 const struct auto_pin_cfg *cfg)
2931 struct hda_input_mux *imux = &spec->private_imux;
2934 for (i = 0; i < AUTO_PIN_LAST; i++) {
2935 if (alc880_is_input_pin(cfg->input_pins[i])) {
2936 idx = alc880_input_pin_idx(cfg->input_pins[i]);
2937 err = new_analog_input(spec, cfg->input_pins[i],
2938 auto_pin_cfg_labels[i],
2942 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
2943 imux->items[imux->num_items].index = alc880_input_pin_idx(cfg->input_pins[i]);
2950 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
2951 hda_nid_t nid, int pin_type,
2955 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2956 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2957 /* need the manual connection? */
2958 if (alc880_is_multi_pin(nid)) {
2959 struct alc_spec *spec = codec->spec;
2960 int idx = alc880_multi_pin_idx(nid);
2961 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
2962 AC_VERB_SET_CONNECT_SEL,
2963 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
2967 static void alc880_auto_init_multi_out(struct hda_codec *codec)
2969 struct alc_spec *spec = codec->spec;
2972 for (i = 0; i < spec->autocfg.line_outs; i++) {
2973 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2974 alc880_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2978 static void alc880_auto_init_extra_out(struct hda_codec *codec)
2980 struct alc_spec *spec = codec->spec;
2983 pin = spec->autocfg.speaker_pins[0];
2984 if (pin) /* connect to front */
2985 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
2986 pin = spec->autocfg.hp_pins[0];
2987 if (pin) /* connect to front */
2988 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2991 static void alc880_auto_init_analog_input(struct hda_codec *codec)
2993 struct alc_spec *spec = codec->spec;
2996 for (i = 0; i < AUTO_PIN_LAST; i++) {
2997 hda_nid_t nid = spec->autocfg.input_pins[i];
2998 if (alc880_is_input_pin(nid)) {
2999 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3000 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
3001 if (nid != ALC880_PIN_CD_NID)
3002 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3008 /* parse the BIOS configuration and set up the alc_spec */
3009 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
3010 static int alc880_parse_auto_config(struct hda_codec *codec)
3012 struct alc_spec *spec = codec->spec;
3014 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3016 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3017 alc880_ignore)) < 0)
3019 if (! spec->autocfg.line_outs)
3020 return 0; /* can't find valid BIOS pin config */
3022 if ((err = alc880_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
3023 (err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
3024 (err = alc880_auto_create_extra_out(spec,
3025 spec->autocfg.speaker_pins[0],
3027 (err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3028 "Headphone")) < 0 ||
3029 (err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
3032 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3034 if (spec->autocfg.dig_out_pin)
3035 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3036 if (spec->autocfg.dig_in_pin)
3037 spec->dig_in_nid = ALC880_DIGIN_NID;
3039 if (spec->kctl_alloc)
3040 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3042 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3044 spec->num_mux_defs = 1;
3045 spec->input_mux = &spec->private_imux;
3050 /* additional initialization for auto-configuration model */
3051 static void alc880_auto_init(struct hda_codec *codec)
3053 alc880_auto_init_multi_out(codec);
3054 alc880_auto_init_extra_out(codec);
3055 alc880_auto_init_analog_input(codec);
3059 * OK, here we have finally the patch for ALC880
3062 static int patch_alc880(struct hda_codec *codec)
3064 struct alc_spec *spec;
3068 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3074 board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3077 if (board_config < 0) {
3078 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3079 "trying auto-probe from BIOS...\n");
3080 board_config = ALC880_AUTO;
3083 if (board_config == ALC880_AUTO) {
3084 /* automatic parse from the BIOS config */
3085 err = alc880_parse_auto_config(codec);
3091 "hda_codec: Cannot set up configuration "
3092 "from BIOS. Using 3-stack mode...\n");
3093 board_config = ALC880_3ST;
3097 if (board_config != ALC880_AUTO)
3098 setup_preset(spec, &alc880_presets[board_config]);
3100 spec->stream_name_analog = "ALC880 Analog";
3101 spec->stream_analog_playback = &alc880_pcm_analog_playback;
3102 spec->stream_analog_capture = &alc880_pcm_analog_capture;
3104 spec->stream_name_digital = "ALC880 Digital";
3105 spec->stream_digital_playback = &alc880_pcm_digital_playback;
3106 spec->stream_digital_capture = &alc880_pcm_digital_capture;
3108 if (! spec->adc_nids && spec->input_mux) {
3109 /* check whether NID 0x07 is valid */
3110 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3111 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
3112 if (wcap != AC_WID_AUD_IN) {
3113 spec->adc_nids = alc880_adc_nids_alt;
3114 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3115 spec->mixers[spec->num_mixers] = alc880_capture_alt_mixer;
3118 spec->adc_nids = alc880_adc_nids;
3119 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3120 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3125 codec->patch_ops = alc_patch_ops;
3126 if (board_config == ALC880_AUTO)
3127 spec->init_hook = alc880_auto_init;
3137 static hda_nid_t alc260_dac_nids[1] = {
3142 static hda_nid_t alc260_adc_nids[1] = {
3147 static hda_nid_t alc260_adc_nids_alt[1] = {
3152 static hda_nid_t alc260_hp_adc_nids[2] = {
3157 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
3158 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3160 static hda_nid_t alc260_dual_adc_nids[2] = {
3165 #define ALC260_DIGOUT_NID 0x03
3166 #define ALC260_DIGIN_NID 0x06
3168 static struct hda_input_mux alc260_capture_source = {
3172 { "Front Mic", 0x1 },
3178 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
3179 * headphone jack and the internal CD lines since these are the only pins at
3180 * which audio can appear. For flexibility, also allow the option of
3181 * recording the mixer output on the second ADC (ADC0 doesn't have a
3182 * connection to the mixer output).
3184 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3188 { "Mic/Line", 0x0 },
3190 { "Headphone", 0x2 },
3196 { "Mic/Line", 0x0 },
3198 { "Headphone", 0x2 },
3205 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3206 * the Fujitsu S702x, but jacks are marked differently.
3208 static struct hda_input_mux alc260_acer_capture_sources[2] = {
3215 { "Headphone", 0x5 },
3224 { "Headphone", 0x6 },
3230 * This is just place-holder, so there's something for alc_build_pcms to look
3231 * at when it calculates the maximum number of channels. ALC260 has no mixer
3232 * element which allows changing the channel mode, so the verb list is
3235 static struct hda_channel_mode alc260_modes[1] = {
3240 /* Mixer combinations
3242 * basic: base_output + input + pc_beep + capture
3243 * HP: base_output + input + capture_alt
3244 * HP_3013: hp_3013 + input + capture
3245 * fujitsu: fujitsu + capture
3246 * acer: acer + capture
3249 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
3250 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3251 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3252 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3253 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3254 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3255 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3259 static struct snd_kcontrol_new alc260_input_mixer[] = {
3260 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3261 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3262 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3263 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3264 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3265 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3266 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3267 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
3271 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3272 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3273 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3277 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3278 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3279 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3280 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3281 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3282 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3283 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3284 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3285 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
3289 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
3290 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
3292 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
3293 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3294 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
3295 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3296 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3297 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3298 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3299 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
3300 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
3301 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3302 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3303 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3304 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
3308 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
3309 * versions of the ALC260 don't act on requests to enable mic bias from NID
3310 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
3311 * datasheet doesn't mention this restriction. At this stage it's not clear
3312 * whether this behaviour is intentional or is a hardware bug in chip
3313 * revisions available in early 2006. Therefore for now allow the
3314 * "Headphone Jack Mode" control to span all choices, but if it turns out
3315 * that the lack of mic bias for this NID is intentional we could change the
3316 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3318 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3319 * don't appear to make the mic bias available from the "line" jack, even
3320 * though the NID used for this jack (0x14) can supply it. The theory is
3321 * that perhaps Acer have included blocking capacitors between the ALC260
3322 * and the output jack. If this turns out to be the case for all such
3323 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3324 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
3326 * The C20x Tablet series have a mono internal speaker which is controlled
3327 * via the chip's Mono sum widget and pin complex, so include the necessary
3328 * controls for such models. On models without a "mono speaker" the control
3329 * won't do anything.
3331 static struct snd_kcontrol_new alc260_acer_mixer[] = {
3332 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3333 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
3334 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
3335 HDA_CODEC_VOLUME_MONO("Mono Speaker Playback Volume", 0x0a, 1, 0x0,
3337 HDA_BIND_MUTE_MONO("Mono Speaker Playback Switch", 0x0a, 1, 2,
3339 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3340 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3341 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3342 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3343 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3344 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3345 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3346 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3347 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3348 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3352 /* capture mixer elements */
3353 static struct snd_kcontrol_new alc260_capture_mixer[] = {
3354 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
3355 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
3356 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
3357 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
3359 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3360 /* The multiple "Capture Source" controls confuse alsamixer
3361 * So call somewhat different..
3362 * FIXME: the controls appear in the "playback" view!
3364 /* .name = "Capture Source", */
3365 .name = "Input Source",
3367 .info = alc_mux_enum_info,
3368 .get = alc_mux_enum_get,
3369 .put = alc_mux_enum_put,
3374 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
3375 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
3376 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
3378 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3379 /* The multiple "Capture Source" controls confuse alsamixer
3380 * So call somewhat different..
3381 * FIXME: the controls appear in the "playback" view!
3383 /* .name = "Capture Source", */
3384 .name = "Input Source",
3386 .info = alc_mux_enum_info,
3387 .get = alc_mux_enum_get,
3388 .put = alc_mux_enum_put,
3394 * initialization verbs
3396 static struct hda_verb alc260_init_verbs[] = {
3397 /* Line In pin widget for input */
3398 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3399 /* CD pin widget for input */
3400 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3401 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3402 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3403 /* Mic2 (front panel) pin widget for input and vref at 80% */
3404 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3405 /* LINE-2 is used for line-out in rear */
3406 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3407 /* select line-out */
3408 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
3410 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3412 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3414 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3415 /* mute capture amp left and right */
3416 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3417 /* set connection select to line in (default select for this ADC) */
3418 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3419 /* mute capture amp left and right */
3420 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3421 /* set connection select to line in (default select for this ADC) */
3422 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3423 /* set vol=0 Line-Out mixer amp left and right */
3424 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3425 /* unmute pin widget amp left and right (no gain on this amp) */
3426 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3427 /* set vol=0 HP mixer amp left and right */
3428 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3429 /* unmute pin widget amp left and right (no gain on this amp) */
3430 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3431 /* set vol=0 Mono mixer amp left and right */
3432 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3433 /* unmute pin widget amp left and right (no gain on this amp) */
3434 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3435 /* unmute LINE-2 out pin */
3436 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3437 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
3439 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3441 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3443 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3444 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3445 /* mute Front out path */
3446 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3447 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3448 /* mute Headphone out path */
3449 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3450 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3451 /* mute Mono out path */
3452 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3453 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3457 #if 0 /* should be identical with alc260_init_verbs? */
3458 static struct hda_verb alc260_hp_init_verbs[] = {
3459 /* Headphone and output */
3460 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3462 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3463 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3464 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3465 /* Mic2 (front panel) pin widget for input and vref at 80% */
3466 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3467 /* Line In pin widget for input */
3468 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3469 /* Line-2 pin widget for output */
3470 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3471 /* CD pin widget for input */
3472 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3473 /* unmute amp left and right */
3474 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3475 /* set connection select to line in (default select for this ADC) */
3476 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3477 /* unmute Line-Out mixer amp left and right (volume = 0) */
3478 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3479 /* mute pin widget amp left and right (no gain on this amp) */
3480 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3481 /* unmute HP mixer amp left and right (volume = 0) */
3482 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3483 /* mute pin widget amp left and right (no gain on this amp) */
3484 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3485 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
3487 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3488 /* unmute Line In */
3489 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3491 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3492 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3493 /* Unmute Front out path */
3494 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3495 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3496 /* Unmute Headphone out path */
3497 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3498 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3499 /* Unmute Mono out path */
3500 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3501 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3506 static struct hda_verb alc260_hp_3013_init_verbs[] = {
3507 /* Line out and output */
3508 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3510 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3511 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3512 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3513 /* Mic2 (front panel) pin widget for input and vref at 80% */
3514 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3515 /* Line In pin widget for input */
3516 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3517 /* Headphone pin widget for output */
3518 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3519 /* CD pin widget for input */
3520 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3521 /* unmute amp left and right */
3522 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3523 /* set connection select to line in (default select for this ADC) */
3524 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3525 /* unmute Line-Out mixer amp left and right (volume = 0) */
3526 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3527 /* mute pin widget amp left and right (no gain on this amp) */
3528 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3529 /* unmute HP mixer amp left and right (volume = 0) */
3530 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3531 /* mute pin widget amp left and right (no gain on this amp) */
3532 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3533 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
3535 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3536 /* unmute Line In */
3537 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3539 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3540 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3541 /* Unmute Front out path */
3542 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3543 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3544 /* Unmute Headphone out path */
3545 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3546 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3547 /* Unmute Mono out path */
3548 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3549 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3553 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3554 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
3555 * audio = 0x16, internal speaker = 0x10.
3557 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3558 /* Disable all GPIOs */
3559 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3560 /* Internal speaker is connected to headphone pin */
3561 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3562 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3563 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3564 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3565 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3566 /* Ensure all other unused pins are disabled and muted. */
3567 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3568 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3569 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3570 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3571 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3572 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3573 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3574 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3576 /* Disable digital (SPDIF) pins */
3577 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3578 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3580 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3581 * when acting as an output.
3583 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3585 /* Start with output sum widgets muted and their output gains at min */
3586 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3587 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3588 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3589 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3590 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3591 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3592 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3593 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3594 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3596 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3597 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3598 /* Unmute Line1 pin widget output buffer since it starts as an output.
3599 * If the pin mode is changed by the user the pin mode control will
3600 * take care of enabling the pin's input/output buffers as needed.
3601 * Therefore there's no need to enable the input buffer at this
3604 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3605 /* Unmute input buffer of pin widget used for Line-in (no equiv
3608 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3610 /* Mute capture amp left and right */
3611 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3612 /* Set ADC connection select to match default mixer setting - line
3615 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3617 /* Do the same for the second ADC: mute capture input amp and
3618 * set ADC connection to line in (on mic1 pin)
3620 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3621 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3623 /* Mute all inputs to mixer widget (even unconnected ones) */
3624 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3625 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3626 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3627 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3628 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3629 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3630 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3631 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3636 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3637 * similar laptops (adapted from Fujitsu init verbs).
3639 static struct hda_verb alc260_acer_init_verbs[] = {
3640 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3641 * the headphone jack. Turn this on and rely on the standard mute
3642 * methods whenever the user wants to turn these outputs off.
3644 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3645 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3646 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3647 /* Internal speaker/Headphone jack is connected to Line-out pin */
3648 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3649 /* Internal microphone/Mic jack is connected to Mic1 pin */
3650 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3651 /* Line In jack is connected to Line1 pin */
3652 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3653 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
3654 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3655 /* Ensure all other unused pins are disabled and muted. */
3656 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3657 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3658 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3659 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3660 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3661 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3662 /* Disable digital (SPDIF) pins */
3663 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3664 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3666 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3667 * bus when acting as outputs.
3669 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3670 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3672 /* Start with output sum widgets muted and their output gains at min */
3673 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3674 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3675 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3676 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3677 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3678 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3679 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3680 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3681 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3683 /* Unmute Line-out pin widget amp left and right (no equiv mixer ctrl) */
3684 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3685 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
3686 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3687 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
3688 * inputs. If the pin mode is changed by the user the pin mode control
3689 * will take care of enabling the pin's input/output buffers as needed.
3690 * Therefore there's no need to enable the input buffer at this
3693 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3694 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3696 /* Mute capture amp left and right */
3697 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3698 /* Set ADC connection select to match default mixer setting - mic
3701 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3703 /* Do similar with the second ADC: mute capture input amp and
3704 * set ADC connection to mic to match ALSA's default state.
3706 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3707 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3709 /* Mute all inputs to mixer widget (even unconnected ones) */
3710 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3711 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3712 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3713 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3714 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3715 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3716 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3717 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3722 /* Test configuration for debugging, modelled after the ALC880 test
3725 #ifdef CONFIG_SND_DEBUG
3726 static hda_nid_t alc260_test_dac_nids[1] = {
3729 static hda_nid_t alc260_test_adc_nids[2] = {
3732 /* For testing the ALC260, each input MUX needs its own definition since
3733 * the signal assignments are different. This assumes that the first ADC
3736 static struct hda_input_mux alc260_test_capture_sources[2] = {
3740 { "MIC1 pin", 0x0 },
3741 { "MIC2 pin", 0x1 },
3742 { "LINE1 pin", 0x2 },
3743 { "LINE2 pin", 0x3 },
3745 { "LINE-OUT pin", 0x5 },
3746 { "HP-OUT pin", 0x6 },
3752 { "MIC1 pin", 0x0 },
3753 { "MIC2 pin", 0x1 },
3754 { "LINE1 pin", 0x2 },
3755 { "LINE2 pin", 0x3 },
3758 { "LINE-OUT pin", 0x6 },
3759 { "HP-OUT pin", 0x7 },
3763 static struct snd_kcontrol_new alc260_test_mixer[] = {
3764 /* Output driver widgets */
3765 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3766 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3767 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3768 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
3769 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3770 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
3772 /* Modes for retasking pin widgets
3773 * Note: the ALC260 doesn't seem to act on requests to enable mic
3774 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
3775 * mention this restriction. At this stage it's not clear whether
3776 * this behaviour is intentional or is a hardware bug in chip
3777 * revisions available at least up until early 2006. Therefore for
3778 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
3779 * choices, but if it turns out that the lack of mic bias for these
3780 * NIDs is intentional we could change their modes from
3781 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3783 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
3784 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
3785 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
3786 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
3787 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
3788 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
3790 /* Loopback mixer controls */
3791 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
3792 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
3793 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
3794 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
3795 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
3796 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
3797 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
3798 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
3799 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3800 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3801 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3802 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3803 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
3804 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
3805 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
3806 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
3808 /* Controls for GPIO pins, assuming they are configured as outputs */
3809 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
3810 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
3811 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
3812 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
3814 /* Switches to allow the digital IO pins to be enabled. The datasheet
3815 * is ambigious as to which NID is which; testing on laptops which
3816 * make this output available should provide clarification.
3818 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
3819 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
3823 static struct hda_verb alc260_test_init_verbs[] = {
3824 /* Enable all GPIOs as outputs with an initial value of 0 */
3825 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
3826 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3827 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
3829 /* Enable retasking pins as output, initially without power amp */
3830 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3831 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3832 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3833 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3834 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3835 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3837 /* Disable digital (SPDIF) pins initially, but users can enable
3838 * them via a mixer switch. In the case of SPDIF-out, this initverb
3839 * payload also sets the generation to 0, output to be in "consumer"
3840 * PCM format, copyright asserted, no pre-emphasis and no validity
3843 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3844 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3846 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
3847 * OUT1 sum bus when acting as an output.
3849 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3850 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
3851 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3852 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
3854 /* Start with output sum widgets muted and their output gains at min */
3855 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3856 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3857 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3858 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3859 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3860 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3861 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3862 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3863 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3865 /* Unmute retasking pin widget output buffers since the default
3866 * state appears to be output. As the pin mode is changed by the
3867 * user the pin mode control will take care of enabling the pin's
3868 * input/output buffers as needed.
3870 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3871 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3872 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3873 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3874 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3875 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3876 /* Also unmute the mono-out pin widget */
3877 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3879 /* Mute capture amp left and right */
3880 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3881 /* Set ADC connection select to match default mixer setting (mic1
3884 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3886 /* Do the same for the second ADC: mute capture input amp and
3887 * set ADC connection to mic1 pin
3889 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3890 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3892 /* Mute all inputs to mixer widget (even unconnected ones) */
3893 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3894 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3895 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3896 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3897 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3898 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3899 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3900 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3906 static struct hda_pcm_stream alc260_pcm_analog_playback = {
3912 static struct hda_pcm_stream alc260_pcm_analog_capture = {
3918 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
3919 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
3922 * for BIOS auto-configuration
3925 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
3929 unsigned long vol_val, sw_val;
3933 if (nid >= 0x0f && nid < 0x11) {
3934 nid_vol = nid - 0x7;
3935 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
3936 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3937 } else if (nid == 0x11) {
3938 nid_vol = nid - 0x7;
3939 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
3940 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
3941 } else if (nid >= 0x12 && nid <= 0x15) {
3943 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
3944 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3948 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3949 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val)) < 0)
3951 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3952 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val)) < 0)
3957 /* add playback controls from the parsed DAC table */
3958 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
3959 const struct auto_pin_cfg *cfg)
3964 spec->multiout.num_dacs = 1;
3965 spec->multiout.dac_nids = spec->private_dac_nids;
3966 spec->multiout.dac_nids[0] = 0x02;
3968 nid = cfg->line_out_pins[0];
3970 err = alc260_add_playback_controls(spec, nid, "Front");
3975 nid = cfg->speaker_pins[0];
3977 err = alc260_add_playback_controls(spec, nid, "Speaker");
3982 nid = cfg->hp_pins[0];
3984 err = alc260_add_playback_controls(spec, nid, "Headphone");
3991 /* create playback/capture controls for input pins */
3992 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
3993 const struct auto_pin_cfg *cfg)
3995 struct hda_input_mux *imux = &spec->private_imux;
3998 for (i = 0; i < AUTO_PIN_LAST; i++) {
3999 if (cfg->input_pins[i] >= 0x12) {
4000 idx = cfg->input_pins[i] - 0x12;
4001 err = new_analog_input(spec, cfg->input_pins[i],
4002 auto_pin_cfg_labels[i], idx, 0x07);
4005 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
4006 imux->items[imux->num_items].index = idx;
4009 if ((cfg->input_pins[i] >= 0x0f) && (cfg->input_pins[i] <= 0x10)){
4010 idx = cfg->input_pins[i] - 0x09;
4011 err = new_analog_input(spec, cfg->input_pins[i],
4012 auto_pin_cfg_labels[i], idx, 0x07);
4015 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
4016 imux->items[imux->num_items].index = idx;
4023 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4024 hda_nid_t nid, int pin_type,
4028 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
4029 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4030 /* need the manual connection? */
4032 int idx = nid - 0x12;
4033 snd_hda_codec_write(codec, idx + 0x0b, 0,
4034 AC_VERB_SET_CONNECT_SEL, sel_idx);
4039 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4041 struct alc_spec *spec = codec->spec;
4044 nid = spec->autocfg.line_out_pins[0];
4046 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4048 nid = spec->autocfg.speaker_pins[0];
4050 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4052 nid = spec->autocfg.hp_pins[0];
4054 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4057 #define ALC260_PIN_CD_NID 0x16
4058 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4060 struct alc_spec *spec = codec->spec;
4063 for (i = 0; i < AUTO_PIN_LAST; i++) {
4064 hda_nid_t nid = spec->autocfg.input_pins[i];
4066 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4067 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
4068 if (nid != ALC260_PIN_CD_NID)
4069 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4076 * generic initialization of ADC, input mixers and output mixers
4078 static struct hda_verb alc260_volume_init_verbs[] = {
4080 * Unmute ADC0-1 and set the default input to mic-in
4082 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4083 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4084 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4085 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4087 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4089 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4092 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4093 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4094 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4095 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4096 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4097 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4100 * Set up output mixers (0x08 - 0x0a)
4102 /* set vol=0 to output mixers */
4103 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4104 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4105 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4106 /* set up input amps for analog loopback */
4107 /* Amp Indices: DAC = 0, mixer = 1 */
4108 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4109 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4110 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4111 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4112 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4113 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4118 static int alc260_parse_auto_config(struct hda_codec *codec)
4120 struct alc_spec *spec = codec->spec;
4123 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4125 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4126 alc260_ignore)) < 0)
4128 if ((err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0)
4130 if (! spec->kctl_alloc)
4131 return 0; /* can't find valid BIOS pin config */
4132 if ((err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
4135 spec->multiout.max_channels = 2;
4137 if (spec->autocfg.dig_out_pin)
4138 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4139 if (spec->kctl_alloc)
4140 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4142 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4144 spec->num_mux_defs = 1;
4145 spec->input_mux = &spec->private_imux;
4147 /* check whether NID 0x04 is valid */
4148 wcap = get_wcaps(codec, 0x04);
4149 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4150 if (wcap != AC_WID_AUD_IN) {
4151 spec->adc_nids = alc260_adc_nids_alt;
4152 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4153 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4155 spec->adc_nids = alc260_adc_nids;
4156 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4157 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4164 /* additional initialization for auto-configuration model */
4165 static void alc260_auto_init(struct hda_codec *codec)
4167 alc260_auto_init_multi_out(codec);
4168 alc260_auto_init_analog_input(codec);
4172 * ALC260 configurations
4174 static const char *alc260_models[ALC260_MODEL_LAST] = {
4175 [ALC260_BASIC] = "basic",
4177 [ALC260_HP_3013] = "hp-3013",
4178 [ALC260_FUJITSU_S702X] = "fujitsu",
4179 [ALC260_ACER] = "acer",
4180 #ifdef CONFIG_SND_DEBUG
4181 [ALC260_TEST] = "test",
4183 [ALC260_AUTO] = "auto",
4186 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4187 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4188 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4189 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4190 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4191 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4192 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4193 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4194 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4195 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4196 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4197 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4198 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4199 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4200 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4201 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4202 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4206 static struct alc_config_preset alc260_presets[] = {
4208 .mixers = { alc260_base_output_mixer,
4210 alc260_pc_beep_mixer,
4211 alc260_capture_mixer },
4212 .init_verbs = { alc260_init_verbs },
4213 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4214 .dac_nids = alc260_dac_nids,
4215 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4216 .adc_nids = alc260_adc_nids,
4217 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4218 .channel_mode = alc260_modes,
4219 .input_mux = &alc260_capture_source,
4222 .mixers = { alc260_base_output_mixer,
4224 alc260_capture_alt_mixer },
4225 .init_verbs = { alc260_init_verbs },
4226 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4227 .dac_nids = alc260_dac_nids,
4228 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4229 .adc_nids = alc260_hp_adc_nids,
4230 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4231 .channel_mode = alc260_modes,
4232 .input_mux = &alc260_capture_source,
4234 [ALC260_HP_3013] = {
4235 .mixers = { alc260_hp_3013_mixer,
4237 alc260_capture_alt_mixer },
4238 .init_verbs = { alc260_hp_3013_init_verbs },
4239 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4240 .dac_nids = alc260_dac_nids,
4241 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4242 .adc_nids = alc260_hp_adc_nids,
4243 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4244 .channel_mode = alc260_modes,
4245 .input_mux = &alc260_capture_source,
4247 [ALC260_FUJITSU_S702X] = {
4248 .mixers = { alc260_fujitsu_mixer,
4249 alc260_capture_mixer },
4250 .init_verbs = { alc260_fujitsu_init_verbs },
4251 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4252 .dac_nids = alc260_dac_nids,
4253 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4254 .adc_nids = alc260_dual_adc_nids,
4255 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4256 .channel_mode = alc260_modes,
4257 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4258 .input_mux = alc260_fujitsu_capture_sources,
4261 .mixers = { alc260_acer_mixer,
4262 alc260_capture_mixer },
4263 .init_verbs = { alc260_acer_init_verbs },
4264 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4265 .dac_nids = alc260_dac_nids,
4266 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4267 .adc_nids = alc260_dual_adc_nids,
4268 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4269 .channel_mode = alc260_modes,
4270 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4271 .input_mux = alc260_acer_capture_sources,
4273 #ifdef CONFIG_SND_DEBUG
4275 .mixers = { alc260_test_mixer,
4276 alc260_capture_mixer },
4277 .init_verbs = { alc260_test_init_verbs },
4278 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4279 .dac_nids = alc260_test_dac_nids,
4280 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4281 .adc_nids = alc260_test_adc_nids,
4282 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4283 .channel_mode = alc260_modes,
4284 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4285 .input_mux = alc260_test_capture_sources,
4290 static int patch_alc260(struct hda_codec *codec)
4292 struct alc_spec *spec;
4293 int err, board_config;
4295 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4301 board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4304 if (board_config < 0) {
4305 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4306 "trying auto-probe from BIOS...\n");
4307 board_config = ALC260_AUTO;
4310 if (board_config == ALC260_AUTO) {
4311 /* automatic parse from the BIOS config */
4312 err = alc260_parse_auto_config(codec);
4318 "hda_codec: Cannot set up configuration "
4319 "from BIOS. Using base mode...\n");
4320 board_config = ALC260_BASIC;
4324 if (board_config != ALC260_AUTO)
4325 setup_preset(spec, &alc260_presets[board_config]);
4327 spec->stream_name_analog = "ALC260 Analog";
4328 spec->stream_analog_playback = &alc260_pcm_analog_playback;
4329 spec->stream_analog_capture = &alc260_pcm_analog_capture;
4331 spec->stream_name_digital = "ALC260 Digital";
4332 spec->stream_digital_playback = &alc260_pcm_digital_playback;
4333 spec->stream_digital_capture = &alc260_pcm_digital_capture;
4335 codec->patch_ops = alc_patch_ops;
4336 if (board_config == ALC260_AUTO)
4337 spec->init_hook = alc260_auto_init;
4346 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4347 * configuration. Each pin widget can choose any input DACs and a mixer.
4348 * Each ADC is connected from a mixer of all inputs. This makes possible
4349 * 6-channel independent captures.
4351 * In addition, an independent DAC for the multi-playback (not used in this
4354 #define ALC882_DIGOUT_NID 0x06
4355 #define ALC882_DIGIN_NID 0x0a
4357 static struct hda_channel_mode alc882_ch_modes[1] = {
4361 static hda_nid_t alc882_dac_nids[4] = {
4362 /* front, rear, clfe, rear_surr */
4363 0x02, 0x03, 0x04, 0x05
4366 /* identical with ALC880 */
4367 #define alc882_adc_nids alc880_adc_nids
4368 #define alc882_adc_nids_alt alc880_adc_nids_alt
4371 /* FIXME: should be a matrix-type input source selection */
4373 static struct hda_input_mux alc882_capture_source = {
4377 { "Front Mic", 0x1 },
4382 #define alc882_mux_enum_info alc_mux_enum_info
4383 #define alc882_mux_enum_get alc_mux_enum_get
4385 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
4387 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4388 struct alc_spec *spec = codec->spec;
4389 const struct hda_input_mux *imux = spec->input_mux;
4390 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4391 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4392 hda_nid_t nid = capture_mixers[adc_idx];
4393 unsigned int *cur_val = &spec->cur_mux[adc_idx];
4394 unsigned int i, idx;
4396 idx = ucontrol->value.enumerated.item[0];
4397 if (idx >= imux->num_items)
4398 idx = imux->num_items - 1;
4399 if (*cur_val == idx && ! codec->in_resume)
4401 for (i = 0; i < imux->num_items; i++) {
4402 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
4403 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4404 v | (imux->items[i].index << 8));
4413 static struct hda_verb alc882_sixstack_ch6_init[] = {
4414 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4415 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4416 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4417 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4424 static struct hda_verb alc882_sixstack_ch8_init[] = {
4425 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4426 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4427 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4428 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4432 static struct hda_channel_mode alc882_sixstack_modes[2] = {
4433 { 6, alc882_sixstack_ch6_init },
4434 { 8, alc882_sixstack_ch8_init },
4437 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4438 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4440 static struct snd_kcontrol_new alc882_base_mixer[] = {
4441 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4442 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4443 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
4444 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
4445 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4446 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4447 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4448 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
4449 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
4450 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
4451 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4452 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4453 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4454 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4455 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4456 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4457 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4458 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4459 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4460 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
4461 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4462 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4463 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4467 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
4469 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4470 .name = "Channel Mode",
4471 .info = alc_ch_mode_info,
4472 .get = alc_ch_mode_get,
4473 .put = alc_ch_mode_put,
4478 static struct hda_verb alc882_init_verbs[] = {
4479 /* Front mixer: unmute input/output amp left and right (volume = 0) */
4480 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4481 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4482 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4484 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4485 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4486 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4488 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4489 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4490 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4492 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4493 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4494 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4496 /* Front Pin: output 0 (0x0c) */
4497 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4498 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4499 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
4500 /* Rear Pin: output 1 (0x0d) */
4501 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4502 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4503 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
4504 /* CLFE Pin: output 2 (0x0e) */
4505 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4506 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4507 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
4508 /* Side Pin: output 3 (0x0f) */
4509 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4510 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4511 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
4512 /* Mic (rear) pin: input vref at 80% */
4513 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4514 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4515 /* Front Mic pin: input vref at 80% */
4516 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4517 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4518 /* Line In pin: input */
4519 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4520 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4521 /* Line-2 In: Headphone output (output 0 - 0x0c) */
4522 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4523 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4524 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
4525 /* CD pin widget for input */
4526 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4528 /* FIXME: use matrix-type input source selection */
4529 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4530 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4531 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4532 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4533 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4534 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4536 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4537 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4538 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4539 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4541 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4542 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4543 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4544 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4545 /* ADC1: mute amp left and right */
4546 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4547 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4548 /* ADC2: mute amp left and right */
4549 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4550 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4551 /* ADC3: mute amp left and right */
4552 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4553 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4558 static struct hda_verb alc882_eapd_verbs[] = {
4559 /* change to EAPD mode */
4560 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
4561 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
4566 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
4567 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4568 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4569 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
4570 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
4571 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
4572 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
4573 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
4577 static struct hda_verb alc882_macpro_init_verbs[] = {
4578 /* Front mixer: unmute input/output amp left and right (volume = 0) */
4579 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4580 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4581 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4582 /* Front Pin: output 0 (0x0c) */
4583 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4584 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4585 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
4586 /* Front Mic pin: input vref at 80% */
4587 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4588 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
4589 /* Speaker: output */
4590 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4591 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4592 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
4593 /* Headphone output (output 0 - 0x0c) */
4594 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4595 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4596 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
4598 /* FIXME: use matrix-type input source selection */
4599 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4600 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4601 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4602 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4603 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4604 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4606 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4607 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4608 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4609 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4611 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4612 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4613 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4614 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4615 /* ADC1: mute amp left and right */
4616 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4617 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4618 /* ADC2: mute amp left and right */
4619 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4620 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4621 /* ADC3: mute amp left and right */
4622 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4623 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4627 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
4629 unsigned int gpiostate, gpiomask, gpiodir;
4631 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
4632 AC_VERB_GET_GPIO_DATA, 0);
4635 gpiostate |= (1 << pin);
4637 gpiostate &= ~(1 << pin);
4639 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
4640 AC_VERB_GET_GPIO_MASK, 0);
4641 gpiomask |= (1 << pin);
4643 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
4644 AC_VERB_GET_GPIO_DIRECTION, 0);
4645 gpiodir |= (1 << pin);
4648 snd_hda_codec_write(codec, codec->afg, 0,
4649 AC_VERB_SET_GPIO_MASK, gpiomask);
4650 snd_hda_codec_write(codec, codec->afg, 0,
4651 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
4655 snd_hda_codec_write(codec, codec->afg, 0,
4656 AC_VERB_SET_GPIO_DATA, gpiostate);
4660 * generic initialization of ADC, input mixers and output mixers
4662 static struct hda_verb alc882_auto_init_verbs[] = {
4664 * Unmute ADC0-2 and set the default input to mic-in
4666 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4667 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4668 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4669 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4670 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4671 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4673 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4675 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4678 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4679 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4680 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4681 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4682 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4683 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4686 * Set up output mixers (0x0c - 0x0f)
4688 /* set vol=0 to output mixers */
4689 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4690 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4691 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4692 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4693 /* set up input amps for analog loopback */
4694 /* Amp Indices: DAC = 0, mixer = 1 */
4695 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4696 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4697 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4698 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4699 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4700 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4701 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4702 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4703 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4704 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4706 /* FIXME: use matrix-type input source selection */
4707 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4708 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4709 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4710 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4711 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4712 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4714 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4715 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4716 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4717 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4719 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4720 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4721 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4722 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4727 /* capture mixer elements */
4728 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
4729 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
4730 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
4731 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
4732 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
4734 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4735 /* The multiple "Capture Source" controls confuse alsamixer
4736 * So call somewhat different..
4737 * FIXME: the controls appear in the "playback" view!
4739 /* .name = "Capture Source", */
4740 .name = "Input Source",
4742 .info = alc882_mux_enum_info,
4743 .get = alc882_mux_enum_get,
4744 .put = alc882_mux_enum_put,
4749 static struct snd_kcontrol_new alc882_capture_mixer[] = {
4750 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
4751 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
4752 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
4753 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
4754 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
4755 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
4757 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4758 /* The multiple "Capture Source" controls confuse alsamixer
4759 * So call somewhat different..
4760 * FIXME: the controls appear in the "playback" view!
4762 /* .name = "Capture Source", */
4763 .name = "Input Source",
4765 .info = alc882_mux_enum_info,
4766 .get = alc882_mux_enum_get,
4767 .put = alc882_mux_enum_put,
4772 /* pcm configuration: identiacal with ALC880 */
4773 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
4774 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
4775 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
4776 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
4779 * configuration and preset
4781 static const char *alc882_models[ALC882_MODEL_LAST] = {
4782 [ALC882_3ST_DIG] = "3stack-dig",
4783 [ALC882_6ST_DIG] = "6stack-dig",
4784 [ALC882_ARIMA] = "arima",
4785 [ALC885_MACPRO] = "macpro",
4786 [ALC882_AUTO] = "auto",
4789 static struct snd_pci_quirk alc882_cfg_tbl[] = {
4790 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
4791 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
4792 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
4793 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
4794 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
4798 static struct alc_config_preset alc882_presets[] = {
4799 [ALC882_3ST_DIG] = {
4800 .mixers = { alc882_base_mixer },
4801 .init_verbs = { alc882_init_verbs },
4802 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4803 .dac_nids = alc882_dac_nids,
4804 .dig_out_nid = ALC882_DIGOUT_NID,
4805 .dig_in_nid = ALC882_DIGIN_NID,
4806 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
4807 .channel_mode = alc882_ch_modes,
4809 .input_mux = &alc882_capture_source,
4811 [ALC882_6ST_DIG] = {
4812 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
4813 .init_verbs = { alc882_init_verbs },
4814 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4815 .dac_nids = alc882_dac_nids,
4816 .dig_out_nid = ALC882_DIGOUT_NID,
4817 .dig_in_nid = ALC882_DIGIN_NID,
4818 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
4819 .channel_mode = alc882_sixstack_modes,
4820 .input_mux = &alc882_capture_source,
4823 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
4824 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
4825 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4826 .dac_nids = alc882_dac_nids,
4827 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
4828 .channel_mode = alc882_sixstack_modes,
4829 .input_mux = &alc882_capture_source,
4832 .mixers = { alc882_macpro_mixer },
4833 .init_verbs = { alc882_macpro_init_verbs },
4834 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4835 .dac_nids = alc882_dac_nids,
4836 .dig_out_nid = ALC882_DIGOUT_NID,
4837 .dig_in_nid = ALC882_DIGIN_NID,
4838 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
4839 .channel_mode = alc882_ch_modes,
4840 .input_mux = &alc882_capture_source,
4846 * BIOS auto configuration
4848 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
4849 hda_nid_t nid, int pin_type,
4853 struct alc_spec *spec = codec->spec;
4856 if (spec->multiout.dac_nids[dac_idx] == 0x25)
4859 idx = spec->multiout.dac_nids[dac_idx] - 2;
4861 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
4862 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4863 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
4867 static void alc882_auto_init_multi_out(struct hda_codec *codec)
4869 struct alc_spec *spec = codec->spec;
4872 for (i = 0; i <= HDA_SIDE; i++) {
4873 hda_nid_t nid = spec->autocfg.line_out_pins[i];
4875 alc882_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
4879 static void alc882_auto_init_hp_out(struct hda_codec *codec)
4881 struct alc_spec *spec = codec->spec;
4884 pin = spec->autocfg.hp_pins[0];
4885 if (pin) /* connect to front */
4886 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0); /* use dac 0 */
4889 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
4890 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
4892 static void alc882_auto_init_analog_input(struct hda_codec *codec)
4894 struct alc_spec *spec = codec->spec;
4897 for (i = 0; i < AUTO_PIN_LAST; i++) {
4898 hda_nid_t nid = spec->autocfg.input_pins[i];
4899 if (alc882_is_input_pin(nid)) {
4900 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4901 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
4902 if (nid != ALC882_PIN_CD_NID)
4903 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4909 /* almost identical with ALC880 parser... */
4910 static int alc882_parse_auto_config(struct hda_codec *codec)
4912 struct alc_spec *spec = codec->spec;
4913 int err = alc880_parse_auto_config(codec);
4918 /* hack - override the init verbs */
4919 spec->init_verbs[0] = alc882_auto_init_verbs;
4923 /* additional initialization for auto-configuration model */
4924 static void alc882_auto_init(struct hda_codec *codec)
4926 alc882_auto_init_multi_out(codec);
4927 alc882_auto_init_hp_out(codec);
4928 alc882_auto_init_analog_input(codec);
4931 static int patch_alc882(struct hda_codec *codec)
4933 struct alc_spec *spec;
4934 int err, board_config;
4936 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4942 board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
4946 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
4947 /* Pick up systems that don't supply PCI SSID */
4948 switch (codec->subsystem_id) {
4949 case 0x106b0c00: /* Mac Pro */
4950 board_config = ALC885_MACPRO;
4953 printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
4954 "trying auto-probe from BIOS...\n");
4955 board_config = ALC882_AUTO;
4959 if (board_config == ALC882_AUTO) {
4960 /* automatic parse from the BIOS config */
4961 err = alc882_parse_auto_config(codec);
4967 "hda_codec: Cannot set up configuration "
4968 "from BIOS. Using base mode...\n");
4969 board_config = ALC882_3ST_DIG;
4973 if (board_config != ALC882_AUTO)
4974 setup_preset(spec, &alc882_presets[board_config]);
4976 if (board_config == ALC885_MACPRO) {
4977 alc882_gpio_mute(codec, 0, 0);
4978 alc882_gpio_mute(codec, 1, 0);
4981 spec->stream_name_analog = "ALC882 Analog";
4982 spec->stream_analog_playback = &alc882_pcm_analog_playback;
4983 spec->stream_analog_capture = &alc882_pcm_analog_capture;
4985 spec->stream_name_digital = "ALC882 Digital";
4986 spec->stream_digital_playback = &alc882_pcm_digital_playback;
4987 spec->stream_digital_capture = &alc882_pcm_digital_capture;
4989 if (! spec->adc_nids && spec->input_mux) {
4990 /* check whether NID 0x07 is valid */
4991 unsigned int wcap = get_wcaps(codec, 0x07);
4992 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4993 if (wcap != AC_WID_AUD_IN) {
4994 spec->adc_nids = alc882_adc_nids_alt;
4995 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
4996 spec->mixers[spec->num_mixers] = alc882_capture_alt_mixer;
4999 spec->adc_nids = alc882_adc_nids;
5000 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5001 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5006 codec->patch_ops = alc_patch_ops;
5007 if (board_config == ALC882_AUTO)
5008 spec->init_hook = alc882_auto_init;
5016 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5017 * configuration. Each pin widget can choose any input DACs and a mixer.
5018 * Each ADC is connected from a mixer of all inputs. This makes possible
5019 * 6-channel independent captures.
5021 * In addition, an independent DAC for the multi-playback (not used in this
5024 #define ALC883_DIGOUT_NID 0x06
5025 #define ALC883_DIGIN_NID 0x0a
5027 static hda_nid_t alc883_dac_nids[4] = {
5028 /* front, rear, clfe, rear_surr */
5029 0x02, 0x04, 0x03, 0x05
5032 static hda_nid_t alc883_adc_nids[2] = {
5037 /* FIXME: should be a matrix-type input source selection */
5039 static struct hda_input_mux alc883_capture_source = {
5043 { "Front Mic", 0x1 },
5048 #define alc883_mux_enum_info alc_mux_enum_info
5049 #define alc883_mux_enum_get alc_mux_enum_get
5051 static int alc883_mux_enum_put(struct snd_kcontrol *kcontrol,
5052 struct snd_ctl_elem_value *ucontrol)
5054 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5055 struct alc_spec *spec = codec->spec;
5056 const struct hda_input_mux *imux = spec->input_mux;
5057 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5058 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
5059 hda_nid_t nid = capture_mixers[adc_idx];
5060 unsigned int *cur_val = &spec->cur_mux[adc_idx];
5061 unsigned int i, idx;
5063 idx = ucontrol->value.enumerated.item[0];
5064 if (idx >= imux->num_items)
5065 idx = imux->num_items - 1;
5066 if (*cur_val == idx && ! codec->in_resume)
5068 for (i = 0; i < imux->num_items; i++) {
5069 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
5070 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5071 v | (imux->items[i].index << 8));
5079 static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
5086 static struct hda_verb alc883_3ST_ch2_init[] = {
5087 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5088 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5089 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5090 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5097 static struct hda_verb alc883_3ST_ch6_init[] = {
5098 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5099 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5100 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
5101 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5102 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5103 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5107 static struct hda_channel_mode alc883_3ST_6ch_modes[2] = {
5108 { 2, alc883_3ST_ch2_init },
5109 { 6, alc883_3ST_ch6_init },
5115 static struct hda_verb alc883_sixstack_ch6_init[] = {
5116 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5117 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5118 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5119 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5126 static struct hda_verb alc883_sixstack_ch8_init[] = {
5127 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5128 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5129 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5130 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5134 static struct hda_channel_mode alc883_sixstack_modes[2] = {
5135 { 6, alc883_sixstack_ch6_init },
5136 { 8, alc883_sixstack_ch8_init },
5139 static struct hda_verb alc883_medion_eapd_verbs[] = {
5140 /* eanable EAPD on medion laptop */
5141 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5142 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
5146 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
5147 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
5150 static struct snd_kcontrol_new alc883_base_mixer[] = {
5151 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5152 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5153 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5154 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5155 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5156 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5157 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5158 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5159 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
5160 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
5161 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5162 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5163 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5164 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5165 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5166 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5167 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5168 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5169 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5170 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5171 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5172 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5173 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5174 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5175 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5176 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5177 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5179 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5180 /* .name = "Capture Source", */
5181 .name = "Input Source",
5183 .info = alc883_mux_enum_info,
5184 .get = alc883_mux_enum_get,
5185 .put = alc883_mux_enum_put,
5190 static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
5191 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5192 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5193 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5194 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5195 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5196 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5197 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5198 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5199 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5200 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5201 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5202 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5203 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5204 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5205 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5206 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5207 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5208 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5209 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5211 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5212 /* .name = "Capture Source", */
5213 .name = "Input Source",
5215 .info = alc883_mux_enum_info,
5216 .get = alc883_mux_enum_get,
5217 .put = alc883_mux_enum_put,
5222 static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
5223 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5224 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5225 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5226 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5227 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5228 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5229 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5230 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5231 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5232 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5233 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5234 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5235 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5236 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5237 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5238 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5239 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5240 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5241 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5242 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5243 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5244 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5245 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5246 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5247 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5249 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5250 /* .name = "Capture Source", */
5251 .name = "Input Source",
5253 .info = alc883_mux_enum_info,
5254 .get = alc883_mux_enum_get,
5255 .put = alc883_mux_enum_put,
5260 static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
5261 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5262 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5263 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5264 HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5265 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5266 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5267 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
5268 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
5269 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5270 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5271 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5272 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5273 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5274 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5275 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5276 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5277 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5278 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5279 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5280 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5281 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5282 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5283 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5286 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5287 /* .name = "Capture Source", */
5288 .name = "Input Source",
5290 .info = alc883_mux_enum_info,
5291 .get = alc883_mux_enum_get,
5292 .put = alc883_mux_enum_put,
5297 static struct snd_kcontrol_new alc883_tagra_mixer[] = {
5298 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5299 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5300 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5301 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5302 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5303 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5304 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5305 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5306 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5307 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5308 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5309 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5310 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5311 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5312 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5313 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5314 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5315 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5316 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5317 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5319 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5320 /* .name = "Capture Source", */
5321 .name = "Input Source",
5323 .info = alc883_mux_enum_info,
5324 .get = alc883_mux_enum_get,
5325 .put = alc883_mux_enum_put,
5330 static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
5331 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5332 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5333 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5334 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5335 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5336 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5337 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5338 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5339 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5340 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5341 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5342 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5344 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5345 /* .name = "Capture Source", */
5346 .name = "Input Source",
5348 .info = alc883_mux_enum_info,
5349 .get = alc883_mux_enum_get,
5350 .put = alc883_mux_enum_put,
5355 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
5357 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5358 .name = "Channel Mode",
5359 .info = alc_ch_mode_info,
5360 .get = alc_ch_mode_get,
5361 .put = alc_ch_mode_put,
5366 static struct hda_verb alc883_init_verbs[] = {
5367 /* ADC1: mute amp left and right */
5368 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5369 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5370 /* ADC2: mute amp left and right */
5371 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5372 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5373 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5374 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5375 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5376 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5378 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5379 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5380 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5382 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5383 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5384 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5386 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5387 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5388 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5390 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5391 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5392 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5393 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5394 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5396 /* Front Pin: output 0 (0x0c) */
5397 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5398 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5399 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5400 /* Rear Pin: output 1 (0x0d) */
5401 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5402 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5403 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5404 /* CLFE Pin: output 2 (0x0e) */
5405 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5406 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5407 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5408 /* Side Pin: output 3 (0x0f) */
5409 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5410 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5411 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5412 /* Mic (rear) pin: input vref at 80% */
5413 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5414 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5415 /* Front Mic pin: input vref at 80% */
5416 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5417 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5418 /* Line In pin: input */
5419 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5420 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5421 /* Line-2 In: Headphone output (output 0 - 0x0c) */
5422 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5423 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5424 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5425 /* CD pin widget for input */
5426 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5428 /* FIXME: use matrix-type input source selection */
5429 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5431 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5432 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5433 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5434 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5436 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5437 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5438 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5439 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5443 static struct hda_verb alc883_tagra_verbs[] = {
5444 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5445 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5447 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5448 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5450 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5451 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5452 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5454 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5455 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5456 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5457 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5462 /* toggle speaker-output according to the hp-jack state */
5463 static void alc883_tagra_automute(struct hda_codec *codec)
5465 unsigned int present;
5467 present = snd_hda_codec_read(codec, 0x14, 0,
5468 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5469 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
5470 0x80, present ? 0x80 : 0);
5471 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
5472 0x80, present ? 0x80 : 0);
5473 snd_hda_codec_write(codec, 1, 0, AC_VERB_SET_GPIO_DATA, present ? 1 : 3);
5476 static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
5478 if ((res >> 26) == ALC880_HP_EVENT)
5479 alc883_tagra_automute(codec);
5483 * generic initialization of ADC, input mixers and output mixers
5485 static struct hda_verb alc883_auto_init_verbs[] = {
5487 * Unmute ADC0-2 and set the default input to mic-in
5489 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5490 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5491 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5492 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5494 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5496 * Note: PASD motherboards uses the Line In 2 as the input for front panel
5499 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5500 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5501 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5502 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5503 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5504 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5507 * Set up output mixers (0x0c - 0x0f)
5509 /* set vol=0 to output mixers */
5510 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5511 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5512 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5513 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5514 /* set up input amps for analog loopback */
5515 /* Amp Indices: DAC = 0, mixer = 1 */
5516 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5517 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5518 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5519 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5520 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5521 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5522 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5523 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5524 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5525 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5527 /* FIXME: use matrix-type input source selection */
5528 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5530 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5531 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5532 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5533 //{0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5534 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5536 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5537 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5538 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5539 //{0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5540 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
5545 /* capture mixer elements */
5546 static struct snd_kcontrol_new alc883_capture_mixer[] = {
5547 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5548 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5549 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5550 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5552 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5553 /* The multiple "Capture Source" controls confuse alsamixer
5554 * So call somewhat different..
5555 * FIXME: the controls appear in the "playback" view!
5557 /* .name = "Capture Source", */
5558 .name = "Input Source",
5560 .info = alc882_mux_enum_info,
5561 .get = alc882_mux_enum_get,
5562 .put = alc882_mux_enum_put,
5567 /* pcm configuration: identiacal with ALC880 */
5568 #define alc883_pcm_analog_playback alc880_pcm_analog_playback
5569 #define alc883_pcm_analog_capture alc880_pcm_analog_capture
5570 #define alc883_pcm_digital_playback alc880_pcm_digital_playback
5571 #define alc883_pcm_digital_capture alc880_pcm_digital_capture
5574 * configuration and preset
5576 static const char *alc883_models[ALC883_MODEL_LAST] = {
5577 [ALC883_3ST_2ch_DIG] = "3stack-dig",
5578 [ALC883_3ST_6ch_DIG] = "3stack-6ch-dig",
5579 [ALC883_3ST_6ch] = "3stack-6ch",
5580 [ALC883_6ST_DIG] = "6stack-dig",
5581 [ALC883_TARGA_DIG] = "targa-dig",
5582 [ALC883_TARGA_2ch_DIG] = "targa-2ch-dig",
5583 [ALC888_DEMO_BOARD] = "6stack-dig-demo",
5584 [ALC883_ACER] = "acer",
5585 [ALC883_MEDION] = "medion",
5586 [ALC883_LAPTOP_EAPD] = "laptop-eapd",
5587 [ALC883_AUTO] = "auto",
5590 static struct snd_pci_quirk alc883_cfg_tbl[] = {
5591 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
5592 SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
5593 SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
5594 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
5595 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
5596 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
5597 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
5598 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
5599 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
5600 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
5601 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
5602 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
5603 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
5604 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
5605 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
5606 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
5607 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
5608 SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER),
5609 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
5610 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
5611 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
5615 static struct alc_config_preset alc883_presets[] = {
5616 [ALC883_3ST_2ch_DIG] = {
5617 .mixers = { alc883_3ST_2ch_mixer },
5618 .init_verbs = { alc883_init_verbs },
5619 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5620 .dac_nids = alc883_dac_nids,
5621 .dig_out_nid = ALC883_DIGOUT_NID,
5622 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5623 .adc_nids = alc883_adc_nids,
5624 .dig_in_nid = ALC883_DIGIN_NID,
5625 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
5626 .channel_mode = alc883_3ST_2ch_modes,
5627 .input_mux = &alc883_capture_source,
5629 [ALC883_3ST_6ch_DIG] = {
5630 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
5631 .init_verbs = { alc883_init_verbs },
5632 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5633 .dac_nids = alc883_dac_nids,
5634 .dig_out_nid = ALC883_DIGOUT_NID,
5635 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5636 .adc_nids = alc883_adc_nids,
5637 .dig_in_nid = ALC883_DIGIN_NID,
5638 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
5639 .channel_mode = alc883_3ST_6ch_modes,
5641 .input_mux = &alc883_capture_source,
5643 [ALC883_3ST_6ch] = {
5644 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
5645 .init_verbs = { alc883_init_verbs },
5646 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5647 .dac_nids = alc883_dac_nids,
5648 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5649 .adc_nids = alc883_adc_nids,
5650 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
5651 .channel_mode = alc883_3ST_6ch_modes,
5653 .input_mux = &alc883_capture_source,
5655 [ALC883_6ST_DIG] = {
5656 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
5657 .init_verbs = { alc883_init_verbs },
5658 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5659 .dac_nids = alc883_dac_nids,
5660 .dig_out_nid = ALC883_DIGOUT_NID,
5661 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5662 .adc_nids = alc883_adc_nids,
5663 .dig_in_nid = ALC883_DIGIN_NID,
5664 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
5665 .channel_mode = alc883_sixstack_modes,
5666 .input_mux = &alc883_capture_source,
5668 [ALC883_TARGA_DIG] = {
5669 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
5670 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
5671 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5672 .dac_nids = alc883_dac_nids,
5673 .dig_out_nid = ALC883_DIGOUT_NID,
5674 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5675 .adc_nids = alc883_adc_nids,
5676 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
5677 .channel_mode = alc883_3ST_6ch_modes,
5679 .input_mux = &alc883_capture_source,
5680 .unsol_event = alc883_tagra_unsol_event,
5681 .init_hook = alc883_tagra_automute,
5683 [ALC883_TARGA_2ch_DIG] = {
5684 .mixers = { alc883_tagra_2ch_mixer},
5685 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
5686 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5687 .dac_nids = alc883_dac_nids,
5688 .dig_out_nid = ALC883_DIGOUT_NID,
5689 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5690 .adc_nids = alc883_adc_nids,
5691 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
5692 .channel_mode = alc883_3ST_2ch_modes,
5693 .input_mux = &alc883_capture_source,
5694 .unsol_event = alc883_tagra_unsol_event,
5695 .init_hook = alc883_tagra_automute,
5697 [ALC888_DEMO_BOARD] = {
5698 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
5699 .init_verbs = { alc883_init_verbs },
5700 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5701 .dac_nids = alc883_dac_nids,
5702 .dig_out_nid = ALC883_DIGOUT_NID,
5703 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5704 .adc_nids = alc883_adc_nids,
5705 .dig_in_nid = ALC883_DIGIN_NID,
5706 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
5707 .channel_mode = alc883_sixstack_modes,
5708 .input_mux = &alc883_capture_source,
5711 .mixers = { alc883_base_mixer,
5712 alc883_chmode_mixer },
5713 /* On TravelMate laptops, GPIO 0 enables the internal speaker
5714 * and the headphone jack. Turn this on and rely on the
5715 * standard mute methods whenever the user wants to turn
5716 * these outputs off.
5718 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
5719 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5720 .dac_nids = alc883_dac_nids,
5721 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5722 .adc_nids = alc883_adc_nids,
5723 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
5724 .channel_mode = alc883_3ST_2ch_modes,
5725 .input_mux = &alc883_capture_source,
5728 .mixers = { alc883_fivestack_mixer,
5729 alc883_chmode_mixer },
5730 .init_verbs = { alc883_init_verbs,
5731 alc883_medion_eapd_verbs },
5732 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5733 .dac_nids = alc883_dac_nids,
5734 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5735 .adc_nids = alc883_adc_nids,
5736 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
5737 .channel_mode = alc883_sixstack_modes,
5738 .input_mux = &alc883_capture_source,
5740 [ALC883_LAPTOP_EAPD] = {
5741 .mixers = { alc883_base_mixer,
5742 alc883_chmode_mixer },
5743 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
5744 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
5745 .dac_nids = alc883_dac_nids,
5746 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
5747 .adc_nids = alc883_adc_nids,
5748 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
5749 .channel_mode = alc883_3ST_2ch_modes,
5750 .input_mux = &alc883_capture_source,
5756 * BIOS auto configuration
5758 static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
5759 hda_nid_t nid, int pin_type,
5763 struct alc_spec *spec = codec->spec;
5766 if (spec->multiout.dac_nids[dac_idx] == 0x25)
5769 idx = spec->multiout.dac_nids[dac_idx] - 2;
5771 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5773 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5775 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5779 static void alc883_auto_init_multi_out(struct hda_codec *codec)
5781 struct alc_spec *spec = codec->spec;
5784 for (i = 0; i <= HDA_SIDE; i++) {
5785 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5787 alc883_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
5791 static void alc883_auto_init_hp_out(struct hda_codec *codec)
5793 struct alc_spec *spec = codec->spec;
5796 pin = spec->autocfg.hp_pins[0];
5797 if (pin) /* connect to front */
5799 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
5802 #define alc883_is_input_pin(nid) alc880_is_input_pin(nid)
5803 #define ALC883_PIN_CD_NID ALC880_PIN_CD_NID
5805 static void alc883_auto_init_analog_input(struct hda_codec *codec)
5807 struct alc_spec *spec = codec->spec;
5810 for (i = 0; i < AUTO_PIN_LAST; i++) {
5811 hda_nid_t nid = spec->autocfg.input_pins[i];
5812 if (alc883_is_input_pin(nid)) {
5813 snd_hda_codec_write(codec, nid, 0,
5814 AC_VERB_SET_PIN_WIDGET_CONTROL,
5815 (i <= AUTO_PIN_FRONT_MIC ?
5816 PIN_VREF80 : PIN_IN));
5817 if (nid != ALC883_PIN_CD_NID)
5818 snd_hda_codec_write(codec, nid, 0,
5819 AC_VERB_SET_AMP_GAIN_MUTE,
5825 /* almost identical with ALC880 parser... */
5826 static int alc883_parse_auto_config(struct hda_codec *codec)
5828 struct alc_spec *spec = codec->spec;
5829 int err = alc880_parse_auto_config(codec);
5834 /* hack - override the init verbs */
5835 spec->init_verbs[0] = alc883_auto_init_verbs;
5836 spec->mixers[spec->num_mixers] = alc883_capture_mixer;
5841 /* additional initialization for auto-configuration model */
5842 static void alc883_auto_init(struct hda_codec *codec)
5844 alc883_auto_init_multi_out(codec);
5845 alc883_auto_init_hp_out(codec);
5846 alc883_auto_init_analog_input(codec);
5849 static int patch_alc883(struct hda_codec *codec)
5851 struct alc_spec *spec;
5852 int err, board_config;
5854 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5860 board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
5863 if (board_config < 0) {
5864 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
5865 "trying auto-probe from BIOS...\n");
5866 board_config = ALC883_AUTO;
5869 if (board_config == ALC883_AUTO) {
5870 /* automatic parse from the BIOS config */
5871 err = alc883_parse_auto_config(codec);
5877 "hda_codec: Cannot set up configuration "
5878 "from BIOS. Using base mode...\n");
5879 board_config = ALC883_3ST_2ch_DIG;
5883 if (board_config != ALC883_AUTO)
5884 setup_preset(spec, &alc883_presets[board_config]);
5886 spec->stream_name_analog = "ALC883 Analog";
5887 spec->stream_analog_playback = &alc883_pcm_analog_playback;
5888 spec->stream_analog_capture = &alc883_pcm_analog_capture;
5890 spec->stream_name_digital = "ALC883 Digital";
5891 spec->stream_digital_playback = &alc883_pcm_digital_playback;
5892 spec->stream_digital_capture = &alc883_pcm_digital_capture;
5894 if (! spec->adc_nids && spec->input_mux) {
5895 spec->adc_nids = alc883_adc_nids;
5896 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
5899 codec->patch_ops = alc_patch_ops;
5900 if (board_config == ALC883_AUTO)
5901 spec->init_hook = alc883_auto_init;
5910 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
5911 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
5913 #define alc262_dac_nids alc260_dac_nids
5914 #define alc262_adc_nids alc882_adc_nids
5915 #define alc262_adc_nids_alt alc882_adc_nids_alt
5917 #define alc262_modes alc260_modes
5918 #define alc262_capture_source alc882_capture_source
5920 static struct snd_kcontrol_new alc262_base_mixer[] = {
5921 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5922 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5923 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5924 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5925 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5926 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5927 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5928 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5929 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5930 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
5931 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
5932 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5933 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
5934 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
5935 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
5936 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5937 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5938 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
5942 static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
5943 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5944 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5945 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5946 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5947 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5948 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5949 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5950 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5951 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5952 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
5953 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
5954 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5955 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
5956 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
5957 /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
5958 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5962 static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
5963 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5964 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5965 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5966 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5967 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
5969 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5970 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5971 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5972 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
5973 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
5974 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5975 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5976 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5977 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5978 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5979 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
5980 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
5981 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
5982 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
5986 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
5987 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5988 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5989 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5990 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5991 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5992 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
5993 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
5994 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
5995 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
5996 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5997 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5998 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5999 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6000 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
6001 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
6005 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
6006 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6007 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6008 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
6012 #define alc262_capture_mixer alc882_capture_mixer
6013 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
6016 * generic initialization of ADC, input mixers and output mixers
6018 static struct hda_verb alc262_init_verbs[] = {
6020 * Unmute ADC0-2 and set the default input to mic-in
6022 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6023 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6024 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6025 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6026 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6027 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6029 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6031 * Note: PASD motherboards uses the Line In 2 as the input for front panel
6034 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6035 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6036 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6037 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6038 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6039 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6042 * Set up output mixers (0x0c - 0x0e)
6044 /* set vol=0 to output mixers */
6045 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6046 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6047 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6048 /* set up input amps for analog loopback */
6049 /* Amp Indices: DAC = 0, mixer = 1 */
6050 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6051 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6052 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6053 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6054 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6055 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6057 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
6058 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6059 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
6060 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6061 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6062 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6064 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6065 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6066 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6067 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6068 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6070 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6071 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6073 /* FIXME: use matrix-type input source selection */
6074 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6075 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6076 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6077 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6078 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6079 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6081 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6082 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6083 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6084 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6086 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6087 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6088 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6089 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6094 static struct hda_verb alc262_hippo_unsol_verbs[] = {
6095 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6096 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6100 static struct hda_verb alc262_hippo1_unsol_verbs[] = {
6101 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6102 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6103 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
6105 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
6106 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6110 /* mute/unmute internal speaker according to the hp jack and mute state */
6111 static void alc262_hippo_automute(struct hda_codec *codec, int force)
6113 struct alc_spec *spec = codec->spec;
6116 if (force || ! spec->sense_updated) {
6117 unsigned int present;
6118 /* need to execute and sync at first */
6119 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
6120 present = snd_hda_codec_read(codec, 0x15, 0,
6121 AC_VERB_GET_PIN_SENSE, 0);
6122 spec->jack_present = (present & 0x80000000) != 0;
6123 spec->sense_updated = 1;
6125 if (spec->jack_present) {
6126 /* mute internal speaker */
6127 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6129 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6132 /* unmute internal speaker if necessary */
6133 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
6134 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6136 mute = snd_hda_codec_amp_read(codec, 0x15, 1, HDA_OUTPUT, 0);
6137 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6142 /* unsolicited event for HP jack sensing */
6143 static void alc262_hippo_unsol_event(struct hda_codec *codec,
6146 if ((res >> 26) != ALC880_HP_EVENT)
6148 alc262_hippo_automute(codec, 1);
6151 static void alc262_hippo1_automute(struct hda_codec *codec, int force)
6153 struct alc_spec *spec = codec->spec;
6156 if (force || ! spec->sense_updated) {
6157 unsigned int present;
6158 /* need to execute and sync at first */
6159 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
6160 present = snd_hda_codec_read(codec, 0x1b, 0,
6161 AC_VERB_GET_PIN_SENSE, 0);
6162 spec->jack_present = (present & 0x80000000) != 0;
6163 spec->sense_updated = 1;
6165 if (spec->jack_present) {
6166 /* mute internal speaker */
6167 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6169 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6172 /* unmute internal speaker if necessary */
6173 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
6174 snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6176 mute = snd_hda_codec_amp_read(codec, 0x1b, 1, HDA_OUTPUT, 0);
6177 snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6182 /* unsolicited event for HP jack sensing */
6183 static void alc262_hippo1_unsol_event(struct hda_codec *codec,
6186 if ((res >> 26) != ALC880_HP_EVENT)
6188 alc262_hippo1_automute(codec, 1);
6193 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
6196 #define ALC_HP_EVENT 0x37
6198 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
6199 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
6200 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6204 static struct hda_input_mux alc262_fujitsu_capture_source = {
6212 static struct hda_input_mux alc262_HP_capture_source = {
6216 { "Front Mic", 0x3 },
6223 /* mute/unmute internal speaker according to the hp jack and mute state */
6224 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
6226 struct alc_spec *spec = codec->spec;
6229 if (force || ! spec->sense_updated) {
6230 unsigned int present;
6231 /* need to execute and sync at first */
6232 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
6233 present = snd_hda_codec_read(codec, 0x14, 0,
6234 AC_VERB_GET_PIN_SENSE, 0);
6235 spec->jack_present = (present & 0x80000000) != 0;
6236 spec->sense_updated = 1;
6238 if (spec->jack_present) {
6239 /* mute internal speaker */
6240 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6242 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6245 /* unmute internal speaker if necessary */
6246 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
6247 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
6249 mute = snd_hda_codec_amp_read(codec, 0x14, 1, HDA_OUTPUT, 0);
6250 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
6255 /* unsolicited event for HP jack sensing */
6256 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
6259 if ((res >> 26) != ALC_HP_EVENT)
6261 alc262_fujitsu_automute(codec, 1);
6264 /* bind volumes of both NID 0x0c and 0x0d */
6265 static int alc262_fujitsu_master_vol_put(struct snd_kcontrol *kcontrol,
6266 struct snd_ctl_elem_value *ucontrol)
6268 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
6269 long *valp = ucontrol->value.integer.value;
6272 change = snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
6273 0x7f, valp[0] & 0x7f);
6274 change |= snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
6275 0x7f, valp[1] & 0x7f);
6276 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
6277 0x7f, valp[0] & 0x7f);
6278 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
6279 0x7f, valp[1] & 0x7f);
6283 /* bind hp and internal speaker mute (with plug check) */
6284 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
6285 struct snd_ctl_elem_value *ucontrol)
6287 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
6288 long *valp = ucontrol->value.integer.value;
6291 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
6292 0x80, valp[0] ? 0 : 0x80);
6293 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
6294 0x80, valp[1] ? 0 : 0x80);
6295 if (change || codec->in_resume)
6296 alc262_fujitsu_automute(codec, codec->in_resume);
6300 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
6302 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6303 .name = "Master Playback Volume",
6304 .info = snd_hda_mixer_amp_volume_info,
6305 .get = snd_hda_mixer_amp_volume_get,
6306 .put = alc262_fujitsu_master_vol_put,
6307 .tlv = { .c = snd_hda_mixer_amp_tlv },
6308 .private_value = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
6311 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6312 .name = "Master Playback Switch",
6313 .info = snd_hda_mixer_amp_switch_info,
6314 .get = snd_hda_mixer_amp_switch_get,
6315 .put = alc262_fujitsu_master_sw_put,
6316 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
6318 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6319 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6320 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6321 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6322 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6326 /* additional init verbs for Benq laptops */
6327 static struct hda_verb alc262_EAPD_verbs[] = {
6328 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6329 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
6333 /* add playback controls from the parsed DAC table */
6334 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
6339 spec->multiout.num_dacs = 1; /* only use one dac */
6340 spec->multiout.dac_nids = spec->private_dac_nids;
6341 spec->multiout.dac_nids[0] = 2;
6343 nid = cfg->line_out_pins[0];
6345 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Front Playback Volume",
6346 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT))) < 0)
6348 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Front Playback Switch",
6349 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
6353 nid = cfg->speaker_pins[0];
6356 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Speaker Playback Volume",
6357 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT))) < 0)
6359 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Speaker Playback Switch",
6360 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
6363 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Speaker Playback Switch",
6364 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
6368 nid = cfg->hp_pins[0];
6370 /* spec->multiout.hp_nid = 2; */
6372 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Headphone Playback Volume",
6373 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT))) < 0)
6375 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
6376 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
6379 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
6380 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
6387 /* identical with ALC880 */
6388 #define alc262_auto_create_analog_input_ctls alc880_auto_create_analog_input_ctls
6391 * generic initialization of ADC, input mixers and output mixers
6393 static struct hda_verb alc262_volume_init_verbs[] = {
6395 * Unmute ADC0-2 and set the default input to mic-in
6397 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6398 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6399 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6400 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6401 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6402 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6404 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6406 * Note: PASD motherboards uses the Line In 2 as the input for front panel
6409 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6410 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6411 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6412 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6413 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6414 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6417 * Set up output mixers (0x0c - 0x0f)
6419 /* set vol=0 to output mixers */
6420 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6421 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6422 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6424 /* set up input amps for analog loopback */
6425 /* Amp Indices: DAC = 0, mixer = 1 */
6426 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6427 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6428 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6429 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6430 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6431 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6433 /* FIXME: use matrix-type input source selection */
6434 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6435 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6436 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6437 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6438 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6439 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6441 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6442 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6443 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6444 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6446 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6447 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6448 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6449 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6454 static struct hda_verb alc262_HP_BPC_init_verbs[] = {
6456 * Unmute ADC0-2 and set the default input to mic-in
6458 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6459 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6460 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6461 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6462 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6463 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6465 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6467 * Note: PASD motherboards uses the Line In 2 as the input for front panel
6470 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6471 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6472 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6473 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6474 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6475 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6476 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
6477 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
6480 * Set up output mixers (0x0c - 0x0e)
6482 /* set vol=0 to output mixers */
6483 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6484 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6485 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6487 /* set up input amps for analog loopback */
6488 /* Amp Indices: DAC = 0, mixer = 1 */
6489 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6490 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6491 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6492 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6493 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6494 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6496 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
6497 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6498 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6500 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6501 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6503 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6504 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6506 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6507 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6508 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
6509 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6510 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
6512 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
6513 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6514 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6515 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
6516 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6517 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6520 /* FIXME: use matrix-type input source selection */
6521 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6522 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6523 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6524 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6525 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6526 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6528 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6529 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6530 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6531 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6533 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6534 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6535 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6536 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6541 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
6543 * Unmute ADC0-2 and set the default input to mic-in
6545 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6546 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6547 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6548 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6549 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6550 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6552 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6554 * Note: PASD motherboards uses the Line In 2 as the input for front
6557 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6558 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6559 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6560 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6561 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
6562 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6563 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
6564 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
6565 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
6567 * Set up output mixers (0x0c - 0x0e)
6569 /* set vol=0 to output mixers */
6570 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6571 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6572 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6574 /* set up input amps for analog loopback */
6575 /* Amp Indices: DAC = 0, mixer = 1 */
6576 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6577 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6578 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6579 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6580 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6581 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6584 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP */
6585 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Mono */
6586 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* rear MIC */
6587 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* Line in */
6588 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Front MIC */
6589 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Line out */
6590 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD in */
6592 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6593 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6595 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6596 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6598 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
6599 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6600 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6601 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
6602 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6603 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
6605 /* FIXME: use matrix-type input source selection */
6606 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6607 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6608 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
6609 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
6610 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
6611 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
6612 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
6613 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
6614 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
6616 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6617 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
6618 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6619 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6620 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6621 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
6622 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
6624 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6625 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
6626 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
6627 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
6628 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
6629 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
6630 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
6635 /* pcm configuration: identiacal with ALC880 */
6636 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
6637 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
6638 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
6639 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
6642 * BIOS auto configuration
6644 static int alc262_parse_auto_config(struct hda_codec *codec)
6646 struct alc_spec *spec = codec->spec;
6648 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
6650 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
6651 alc262_ignore)) < 0)
6653 if (! spec->autocfg.line_outs)
6654 return 0; /* can't find valid BIOS pin config */
6655 if ((err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
6656 (err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
6659 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
6661 if (spec->autocfg.dig_out_pin)
6662 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
6663 if (spec->autocfg.dig_in_pin)
6664 spec->dig_in_nid = ALC262_DIGIN_NID;
6666 if (spec->kctl_alloc)
6667 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
6669 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
6670 spec->num_mux_defs = 1;
6671 spec->input_mux = &spec->private_imux;
6676 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
6677 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
6678 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
6681 /* init callback for auto-configuration model -- overriding the default init */
6682 static void alc262_auto_init(struct hda_codec *codec)
6684 alc262_auto_init_multi_out(codec);
6685 alc262_auto_init_hp_out(codec);
6686 alc262_auto_init_analog_input(codec);
6690 * configuration and preset
6692 static const char *alc262_models[ALC262_MODEL_LAST] = {
6693 [ALC262_BASIC] = "basic",
6694 [ALC262_HIPPO] = "hippo",
6695 [ALC262_HIPPO_1] = "hippo_1",
6696 [ALC262_FUJITSU] = "fujitsu",
6697 [ALC262_HP_BPC] = "hp-bpc",
6698 [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
6699 [ALC262_BENQ_ED8] = "benq",
6700 [ALC262_AUTO] = "auto",
6703 static struct snd_pci_quirk alc262_cfg_tbl[] = {
6704 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
6705 SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
6706 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
6707 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
6708 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
6709 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
6710 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
6711 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
6712 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
6713 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
6714 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
6715 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
6716 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
6717 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
6718 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
6719 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
6720 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
6724 static struct alc_config_preset alc262_presets[] = {
6726 .mixers = { alc262_base_mixer },
6727 .init_verbs = { alc262_init_verbs },
6728 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
6729 .dac_nids = alc262_dac_nids,
6731 .num_channel_mode = ARRAY_SIZE(alc262_modes),
6732 .channel_mode = alc262_modes,
6733 .input_mux = &alc262_capture_source,
6736 .mixers = { alc262_base_mixer },
6737 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
6738 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
6739 .dac_nids = alc262_dac_nids,
6741 .dig_out_nid = ALC262_DIGOUT_NID,
6742 .num_channel_mode = ARRAY_SIZE(alc262_modes),
6743 .channel_mode = alc262_modes,
6744 .input_mux = &alc262_capture_source,
6745 .unsol_event = alc262_hippo_unsol_event,
6747 [ALC262_HIPPO_1] = {
6748 .mixers = { alc262_hippo1_mixer },
6749 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
6750 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
6751 .dac_nids = alc262_dac_nids,
6753 .dig_out_nid = ALC262_DIGOUT_NID,
6754 .num_channel_mode = ARRAY_SIZE(alc262_modes),
6755 .channel_mode = alc262_modes,
6756 .input_mux = &alc262_capture_source,
6757 .unsol_event = alc262_hippo1_unsol_event,
6759 [ALC262_FUJITSU] = {
6760 .mixers = { alc262_fujitsu_mixer },
6761 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
6762 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
6763 .dac_nids = alc262_dac_nids,
6765 .dig_out_nid = ALC262_DIGOUT_NID,
6766 .num_channel_mode = ARRAY_SIZE(alc262_modes),
6767 .channel_mode = alc262_modes,
6768 .input_mux = &alc262_fujitsu_capture_source,
6769 .unsol_event = alc262_fujitsu_unsol_event,
6772 .mixers = { alc262_HP_BPC_mixer },
6773 .init_verbs = { alc262_HP_BPC_init_verbs },
6774 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
6775 .dac_nids = alc262_dac_nids,
6777 .num_channel_mode = ARRAY_SIZE(alc262_modes),
6778 .channel_mode = alc262_modes,
6779 .input_mux = &alc262_HP_capture_source,
6781 [ALC262_HP_BPC_D7000_WF] = {
6782 .mixers = { alc262_HP_BPC_WildWest_mixer },
6783 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
6784 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
6785 .dac_nids = alc262_dac_nids,
6787 .num_channel_mode = ARRAY_SIZE(alc262_modes),
6788 .channel_mode = alc262_modes,
6789 .input_mux = &alc262_HP_capture_source,
6791 [ALC262_HP_BPC_D7000_WL] = {
6792 .mixers = { alc262_HP_BPC_WildWest_mixer,
6793 alc262_HP_BPC_WildWest_option_mixer },
6794 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
6795 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
6796 .dac_nids = alc262_dac_nids,
6798 .num_channel_mode = ARRAY_SIZE(alc262_modes),
6799 .channel_mode = alc262_modes,
6800 .input_mux = &alc262_HP_capture_source,
6802 [ALC262_BENQ_ED8] = {
6803 .mixers = { alc262_base_mixer },
6804 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
6805 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
6806 .dac_nids = alc262_dac_nids,
6808 .num_channel_mode = ARRAY_SIZE(alc262_modes),
6809 .channel_mode = alc262_modes,
6810 .input_mux = &alc262_capture_source,
6814 static int patch_alc262(struct hda_codec *codec)
6816 struct alc_spec *spec;
6820 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6826 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is under-run */
6829 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
6830 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
6831 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
6832 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
6836 board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
6840 if (board_config < 0) {
6841 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
6842 "trying auto-probe from BIOS...\n");
6843 board_config = ALC262_AUTO;
6846 if (board_config == ALC262_AUTO) {
6847 /* automatic parse from the BIOS config */
6848 err = alc262_parse_auto_config(codec);
6854 "hda_codec: Cannot set up configuration "
6855 "from BIOS. Using base mode...\n");
6856 board_config = ALC262_BASIC;
6860 if (board_config != ALC262_AUTO)
6861 setup_preset(spec, &alc262_presets[board_config]);
6863 spec->stream_name_analog = "ALC262 Analog";
6864 spec->stream_analog_playback = &alc262_pcm_analog_playback;
6865 spec->stream_analog_capture = &alc262_pcm_analog_capture;
6867 spec->stream_name_digital = "ALC262 Digital";
6868 spec->stream_digital_playback = &alc262_pcm_digital_playback;
6869 spec->stream_digital_capture = &alc262_pcm_digital_capture;
6871 if (! spec->adc_nids && spec->input_mux) {
6872 /* check whether NID 0x07 is valid */
6873 unsigned int wcap = get_wcaps(codec, 0x07);
6875 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
6876 if (wcap != AC_WID_AUD_IN) {
6877 spec->adc_nids = alc262_adc_nids_alt;
6878 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
6879 spec->mixers[spec->num_mixers] = alc262_capture_alt_mixer;
6882 spec->adc_nids = alc262_adc_nids;
6883 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
6884 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
6889 codec->patch_ops = alc_patch_ops;
6890 if (board_config == ALC262_AUTO)
6891 spec->init_hook = alc262_auto_init;
6897 * ALC861 channel source setting (2/6 channel selection for 3-stack)
6901 * set the path ways for 2 channel output
6902 * need to set the codec line out and mic 1 pin widgets to inputs
6904 static struct hda_verb alc861_threestack_ch2_init[] = {
6905 /* set pin widget 1Ah (line in) for input */
6906 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
6907 /* set pin widget 18h (mic1/2) for input, for mic also enable the vref */
6908 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
6910 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
6912 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
6913 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
6919 * need to set the codec line out and mic 1 pin widgets to outputs
6921 static struct hda_verb alc861_threestack_ch6_init[] = {
6922 /* set pin widget 1Ah (line in) for output (Back Surround)*/
6923 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
6924 /* set pin widget 18h (mic1) for output (CLFE)*/
6925 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
6927 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
6928 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
6930 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
6932 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
6933 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
6938 static struct hda_channel_mode alc861_threestack_modes[2] = {
6939 { 2, alc861_threestack_ch2_init },
6940 { 6, alc861_threestack_ch6_init },
6942 /* Set mic1 as input and unmute the mixer */
6943 static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
6944 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
6945 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
6948 /* Set mic1 as output and mute mixer */
6949 static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
6950 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
6951 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
6955 static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
6956 { 2, alc861_uniwill_m31_ch2_init },
6957 { 4, alc861_uniwill_m31_ch4_init },
6960 /* Set mic1 and line-in as input and unmute the mixer */
6961 static struct hda_verb alc861_asus_ch2_init[] = {
6962 /* set pin widget 1Ah (line in) for input */
6963 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
6964 /* set pin widget 18h (mic1/2) for input, for mic also enable the vref */
6965 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
6967 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
6969 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
6970 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
6974 /* Set mic1 nad line-in as output and mute mixer */
6975 static struct hda_verb alc861_asus_ch6_init[] = {
6976 /* set pin widget 1Ah (line in) for output (Back Surround)*/
6977 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
6978 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
6979 /* set pin widget 18h (mic1) for output (CLFE)*/
6980 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
6981 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
6982 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
6983 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
6985 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
6987 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
6988 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
6993 static struct hda_channel_mode alc861_asus_modes[2] = {
6994 { 2, alc861_asus_ch2_init },
6995 { 6, alc861_asus_ch6_init },
7000 static struct snd_kcontrol_new alc861_base_mixer[] = {
7001 /* output mixer control */
7002 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7003 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7004 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7005 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7006 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
7008 /*Input mixer control */
7009 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7010 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7011 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7012 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7013 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7014 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7015 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7016 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7017 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7018 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7020 /* Capture mixer control */
7021 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7022 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7024 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7025 .name = "Capture Source",
7027 .info = alc_mux_enum_info,
7028 .get = alc_mux_enum_get,
7029 .put = alc_mux_enum_put,
7034 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
7035 /* output mixer control */
7036 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7037 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7038 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7039 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7040 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
7042 /* Input mixer control */
7043 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7044 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7045 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7046 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7047 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7048 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7049 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7050 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7051 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7052 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7054 /* Capture mixer control */
7055 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7056 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7058 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7059 .name = "Capture Source",
7061 .info = alc_mux_enum_info,
7062 .get = alc_mux_enum_get,
7063 .put = alc_mux_enum_put,
7066 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7067 .name = "Channel Mode",
7068 .info = alc_ch_mode_info,
7069 .get = alc_ch_mode_get,
7070 .put = alc_ch_mode_put,
7071 .private_value = ARRAY_SIZE(alc861_threestack_modes),
7076 static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
7077 /* output mixer control */
7078 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7079 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7080 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7082 /*Capture mixer control */
7083 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7084 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7086 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7087 .name = "Capture Source",
7089 .info = alc_mux_enum_info,
7090 .get = alc_mux_enum_get,
7091 .put = alc_mux_enum_put,
7097 static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
7098 /* output mixer control */
7099 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7100 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7101 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7102 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7103 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
7105 /* Input mixer control */
7106 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7107 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
7108 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7109 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7110 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7111 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7112 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7113 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7114 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7115 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
7117 /* Capture mixer control */
7118 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7119 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7121 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7122 .name = "Capture Source",
7124 .info = alc_mux_enum_info,
7125 .get = alc_mux_enum_get,
7126 .put = alc_mux_enum_put,
7129 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7130 .name = "Channel Mode",
7131 .info = alc_ch_mode_info,
7132 .get = alc_ch_mode_get,
7133 .put = alc_ch_mode_put,
7134 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
7139 static struct snd_kcontrol_new alc861_asus_mixer[] = {
7140 /* output mixer control */
7141 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
7142 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
7143 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
7144 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
7145 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
7147 /* Input mixer control */
7148 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
7149 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7150 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7151 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7152 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
7153 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
7154 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
7155 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
7156 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
7157 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT), /* was HDA_INPUT (why?) */
7159 /* Capture mixer control */
7160 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7161 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7163 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7164 .name = "Capture Source",
7166 .info = alc_mux_enum_info,
7167 .get = alc_mux_enum_get,
7168 .put = alc_mux_enum_put,
7171 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7172 .name = "Channel Mode",
7173 .info = alc_ch_mode_info,
7174 .get = alc_ch_mode_get,
7175 .put = alc_ch_mode_put,
7176 .private_value = ARRAY_SIZE(alc861_asus_modes),
7181 /* additional mixer */
7182 static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
7183 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
7184 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
7185 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
7186 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
7191 * generic initialization of ADC, input mixers and output mixers
7193 static struct hda_verb alc861_base_init_verbs[] = {
7195 * Unmute ADC0 and set the default input to mic-in
7197 /* port-A for surround (rear panel) */
7198 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7199 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
7200 /* port-B for mic-in (rear panel) with vref */
7201 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7202 /* port-C for line-in (rear panel) */
7203 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7204 /* port-D for Front */
7205 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7206 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7207 /* port-E for HP out (front panel) */
7208 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
7209 /* route front PCM to HP */
7210 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7211 /* port-F for mic-in (front panel) with vref */
7212 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7213 /* port-G for CLFE (rear panel) */
7214 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7215 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7216 /* port-H for side (rear panel) */
7217 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7218 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
7220 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7221 /* route front mic to ADC1*/
7222 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7223 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7225 /* Unmute DAC0~3 & spdif out*/
7226 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7227 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7228 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7229 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7230 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7232 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7233 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7234 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7235 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7236 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7238 /* Unmute Stereo Mixer 15 */
7239 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7240 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7241 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7242 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
7244 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7245 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7246 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7247 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7248 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7249 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7250 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7251 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7252 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
7253 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7258 static struct hda_verb alc861_threestack_init_verbs[] = {
7260 * Unmute ADC0 and set the default input to mic-in
7262 /* port-A for surround (rear panel) */
7263 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7264 /* port-B for mic-in (rear panel) with vref */
7265 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7266 /* port-C for line-in (rear panel) */
7267 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7268 /* port-D for Front */
7269 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7270 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7271 /* port-E for HP out (front panel) */
7272 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
7273 /* route front PCM to HP */
7274 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7275 /* port-F for mic-in (front panel) with vref */
7276 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7277 /* port-G for CLFE (rear panel) */
7278 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7279 /* port-H for side (rear panel) */
7280 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7282 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7283 /* route front mic to ADC1*/
7284 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7285 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7286 /* Unmute DAC0~3 & spdif out*/
7287 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7288 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7289 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7290 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7291 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7293 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7294 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7295 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7296 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7297 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7299 /* Unmute Stereo Mixer 15 */
7300 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7301 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7302 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7303 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
7305 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7306 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7307 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7308 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7309 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7310 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7311 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7312 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7313 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
7314 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7318 static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
7320 * Unmute ADC0 and set the default input to mic-in
7322 /* port-A for surround (rear panel) */
7323 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7324 /* port-B for mic-in (rear panel) with vref */
7325 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7326 /* port-C for line-in (rear panel) */
7327 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7328 /* port-D for Front */
7329 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7330 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7331 /* port-E for HP out (front panel) */
7332 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 }, // this has to be set to VREF80
7333 /* route front PCM to HP */
7334 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7335 /* port-F for mic-in (front panel) with vref */
7336 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7337 /* port-G for CLFE (rear panel) */
7338 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7339 /* port-H for side (rear panel) */
7340 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7342 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7343 /* route front mic to ADC1*/
7344 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7345 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7346 /* Unmute DAC0~3 & spdif out*/
7347 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7348 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7349 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7350 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7351 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7353 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7354 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7355 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7356 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7357 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7359 /* Unmute Stereo Mixer 15 */
7360 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7361 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7362 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7363 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
7365 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7366 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7367 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7368 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7369 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7370 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7371 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7372 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7373 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
7374 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7378 static struct hda_verb alc861_asus_init_verbs[] = {
7380 * Unmute ADC0 and set the default input to mic-in
7382 /* port-A for surround (rear panel) | according to codec#0 this is the HP jack*/
7383 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
7384 /* route front PCM to HP */
7385 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
7386 /* port-B for mic-in (rear panel) with vref */
7387 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7388 /* port-C for line-in (rear panel) */
7389 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7390 /* port-D for Front */
7391 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7392 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
7393 /* port-E for HP out (front panel) */
7394 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 }, /* this has to be set to VREF80 */
7395 /* route front PCM to HP */
7396 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
7397 /* port-F for mic-in (front panel) with vref */
7398 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
7399 /* port-G for CLFE (rear panel) */
7400 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7401 /* port-H for side (rear panel) */
7402 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
7404 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
7405 /* route front mic to ADC1*/
7406 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7407 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7408 /* Unmute DAC0~3 & spdif out*/
7409 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7410 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7411 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7412 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7413 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7414 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7415 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7416 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7417 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7418 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7420 /* Unmute Stereo Mixer 15 */
7421 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7422 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7423 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7424 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, /* Output 0~12 step */
7426 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7427 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7428 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7429 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7430 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7431 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7432 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7433 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7434 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, /* hp used DAC 3 (Front) */
7435 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7439 /* additional init verbs for ASUS laptops */
7440 static struct hda_verb alc861_asus_laptop_init_verbs[] = {
7441 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
7442 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
7447 * generic initialization of ADC, input mixers and output mixers
7449 static struct hda_verb alc861_auto_init_verbs[] = {
7451 * Unmute ADC0 and set the default input to mic-in
7453 // {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7454 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7456 /* Unmute DAC0~3 & spdif out*/
7457 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7458 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7459 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7460 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7461 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7463 /* Unmute Mixer 14 (mic) 1c (Line in)*/
7464 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7465 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7466 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7467 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7469 /* Unmute Stereo Mixer 15 */
7470 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7471 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7472 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7473 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
7475 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7476 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7477 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7478 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7479 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7480 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7481 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7482 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7484 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7485 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7486 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7487 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7488 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7489 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7490 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
7491 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
7493 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, // set Mic 1
7498 static struct hda_verb alc861_toshiba_init_verbs[] = {
7499 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7504 /* toggle speaker-output according to the hp-jack state */
7505 static void alc861_toshiba_automute(struct hda_codec *codec)
7507 unsigned int present;
7509 present = snd_hda_codec_read(codec, 0x0f, 0,
7510 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7511 snd_hda_codec_amp_update(codec, 0x16, 0, HDA_INPUT, 0,
7512 0x80, present ? 0x80 : 0);
7513 snd_hda_codec_amp_update(codec, 0x16, 1, HDA_INPUT, 0,
7514 0x80, present ? 0x80 : 0);
7515 snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_INPUT, 3,
7516 0x80, present ? 0 : 0x80);
7517 snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_INPUT, 3,
7518 0x80, present ? 0 : 0x80);
7521 static void alc861_toshiba_unsol_event(struct hda_codec *codec,
7524 /* Looks like the unsol event is incompatible with the standard
7525 * definition. 6bit tag is placed at 26 bit!
7527 if ((res >> 26) == ALC880_HP_EVENT)
7528 alc861_toshiba_automute(codec);
7531 /* pcm configuration: identiacal with ALC880 */
7532 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
7533 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
7534 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
7535 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
7538 #define ALC861_DIGOUT_NID 0x07
7540 static struct hda_channel_mode alc861_8ch_modes[1] = {
7544 static hda_nid_t alc861_dac_nids[4] = {
7545 /* front, surround, clfe, side */
7546 0x03, 0x06, 0x05, 0x04
7549 static hda_nid_t alc660_dac_nids[3] = {
7550 /* front, clfe, surround */
7554 static hda_nid_t alc861_adc_nids[1] = {
7559 static struct hda_input_mux alc861_capture_source = {
7563 { "Front Mic", 0x3 },
7570 /* fill in the dac_nids table from the parsed pin configuration */
7571 static int alc861_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
7576 spec->multiout.dac_nids = spec->private_dac_nids;
7577 for (i = 0; i < cfg->line_outs; i++) {
7578 nid = cfg->line_out_pins[i];
7580 if (i >= ARRAY_SIZE(alc861_dac_nids))
7582 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
7585 spec->multiout.num_dacs = cfg->line_outs;
7589 /* add playback controls from the parsed DAC table */
7590 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
7591 const struct auto_pin_cfg *cfg)
7594 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
7598 for (i = 0; i < cfg->line_outs; i++) {
7599 nid = spec->multiout.dac_nids[i];
7604 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "Center Playback Switch",
7605 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
7607 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "LFE Playback Switch",
7608 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
7611 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1; idx++)
7612 if (nid == alc861_dac_nids[idx])
7614 sprintf(name, "%s Playback Switch", chname[idx]);
7615 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
7616 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
7623 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
7631 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
7633 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
7634 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
7636 spec->multiout.hp_nid = nid;
7641 /* create playback/capture controls for input pins */
7642 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
7644 struct hda_input_mux *imux = &spec->private_imux;
7645 int i, err, idx, idx1;
7647 for (i = 0; i < AUTO_PIN_LAST; i++) {
7648 switch(cfg->input_pins[i]) {
7673 err = new_analog_input(spec, cfg->input_pins[i],
7674 auto_pin_cfg_labels[i], idx, 0x15);
7678 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
7679 imux->items[imux->num_items].index = idx1;
7685 static struct snd_kcontrol_new alc861_capture_mixer[] = {
7686 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7687 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7690 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7691 /* The multiple "Capture Source" controls confuse alsamixer
7692 * So call somewhat different..
7693 *FIXME: the controls appear in the "playback" view!
7695 /* .name = "Capture Source", */
7696 .name = "Input Source",
7698 .info = alc_mux_enum_info,
7699 .get = alc_mux_enum_get,
7700 .put = alc_mux_enum_put,
7705 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec, hda_nid_t nid,
7706 int pin_type, int dac_idx)
7710 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
7711 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
7715 static void alc861_auto_init_multi_out(struct hda_codec *codec)
7717 struct alc_spec *spec = codec->spec;
7720 for (i = 0; i < spec->autocfg.line_outs; i++) {
7721 hda_nid_t nid = spec->autocfg.line_out_pins[i];
7723 alc861_auto_set_output_and_unmute(codec, nid, PIN_OUT, spec->multiout.dac_nids[i]);
7727 static void alc861_auto_init_hp_out(struct hda_codec *codec)
7729 struct alc_spec *spec = codec->spec;
7732 pin = spec->autocfg.hp_pins[0];
7733 if (pin) /* connect to front */
7734 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP, spec->multiout.dac_nids[0]);
7737 static void alc861_auto_init_analog_input(struct hda_codec *codec)
7739 struct alc_spec *spec = codec->spec;
7742 for (i = 0; i < AUTO_PIN_LAST; i++) {
7743 hda_nid_t nid = spec->autocfg.input_pins[i];
7744 if ((nid>=0x0c) && (nid <=0x11)) {
7745 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7746 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
7751 /* parse the BIOS configuration and set up the alc_spec */
7752 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
7753 static int alc861_parse_auto_config(struct hda_codec *codec)
7755 struct alc_spec *spec = codec->spec;
7757 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
7759 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
7760 alc861_ignore)) < 0)
7762 if (! spec->autocfg.line_outs)
7763 return 0; /* can't find valid BIOS pin config */
7765 if ((err = alc861_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
7766 (err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
7767 (err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0])) < 0 ||
7768 (err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
7771 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
7773 if (spec->autocfg.dig_out_pin)
7774 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
7776 if (spec->kctl_alloc)
7777 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
7779 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
7781 spec->num_mux_defs = 1;
7782 spec->input_mux = &spec->private_imux;
7784 spec->adc_nids = alc861_adc_nids;
7785 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
7786 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
7792 /* additional initialization for auto-configuration model */
7793 static void alc861_auto_init(struct hda_codec *codec)
7795 alc861_auto_init_multi_out(codec);
7796 alc861_auto_init_hp_out(codec);
7797 alc861_auto_init_analog_input(codec);
7802 * configuration and preset
7804 static const char *alc861_models[ALC861_MODEL_LAST] = {
7805 [ALC861_3ST] = "3stack",
7806 [ALC660_3ST] = "3stack-660",
7807 [ALC861_3ST_DIG] = "3stack-dig",
7808 [ALC861_6ST_DIG] = "6stack-dig",
7809 [ALC861_UNIWILL_M31] = "uniwill-m31",
7810 [ALC861_TOSHIBA] = "toshiba",
7811 [ALC861_ASUS] = "asus",
7812 [ALC861_ASUS_LAPTOP] = "asus-laptop",
7813 [ALC861_AUTO] = "auto",
7816 static struct snd_pci_quirk alc861_cfg_tbl[] = {
7817 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
7818 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
7819 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
7820 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
7821 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660_3ST),
7822 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
7823 SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA),
7824 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
7825 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
7826 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
7830 static struct alc_config_preset alc861_presets[] = {
7832 .mixers = { alc861_3ST_mixer },
7833 .init_verbs = { alc861_threestack_init_verbs },
7834 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
7835 .dac_nids = alc861_dac_nids,
7836 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
7837 .channel_mode = alc861_threestack_modes,
7839 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
7840 .adc_nids = alc861_adc_nids,
7841 .input_mux = &alc861_capture_source,
7843 [ALC861_3ST_DIG] = {
7844 .mixers = { alc861_base_mixer },
7845 .init_verbs = { alc861_threestack_init_verbs },
7846 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
7847 .dac_nids = alc861_dac_nids,
7848 .dig_out_nid = ALC861_DIGOUT_NID,
7849 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
7850 .channel_mode = alc861_threestack_modes,
7852 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
7853 .adc_nids = alc861_adc_nids,
7854 .input_mux = &alc861_capture_source,
7856 [ALC861_6ST_DIG] = {
7857 .mixers = { alc861_base_mixer },
7858 .init_verbs = { alc861_base_init_verbs },
7859 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
7860 .dac_nids = alc861_dac_nids,
7861 .dig_out_nid = ALC861_DIGOUT_NID,
7862 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
7863 .channel_mode = alc861_8ch_modes,
7864 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
7865 .adc_nids = alc861_adc_nids,
7866 .input_mux = &alc861_capture_source,
7869 .mixers = { alc861_3ST_mixer },
7870 .init_verbs = { alc861_threestack_init_verbs },
7871 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
7872 .dac_nids = alc660_dac_nids,
7873 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
7874 .channel_mode = alc861_threestack_modes,
7876 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
7877 .adc_nids = alc861_adc_nids,
7878 .input_mux = &alc861_capture_source,
7880 [ALC861_UNIWILL_M31] = {
7881 .mixers = { alc861_uniwill_m31_mixer },
7882 .init_verbs = { alc861_uniwill_m31_init_verbs },
7883 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
7884 .dac_nids = alc861_dac_nids,
7885 .dig_out_nid = ALC861_DIGOUT_NID,
7886 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
7887 .channel_mode = alc861_uniwill_m31_modes,
7889 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
7890 .adc_nids = alc861_adc_nids,
7891 .input_mux = &alc861_capture_source,
7893 [ALC861_TOSHIBA] = {
7894 .mixers = { alc861_toshiba_mixer },
7895 .init_verbs = { alc861_base_init_verbs, alc861_toshiba_init_verbs },
7896 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
7897 .dac_nids = alc861_dac_nids,
7898 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7899 .channel_mode = alc883_3ST_2ch_modes,
7900 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
7901 .adc_nids = alc861_adc_nids,
7902 .input_mux = &alc861_capture_source,
7903 .unsol_event = alc861_toshiba_unsol_event,
7904 .init_hook = alc861_toshiba_automute,
7907 .mixers = { alc861_asus_mixer },
7908 .init_verbs = { alc861_asus_init_verbs },
7909 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
7910 .dac_nids = alc861_dac_nids,
7911 .dig_out_nid = ALC861_DIGOUT_NID,
7912 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
7913 .channel_mode = alc861_asus_modes,
7916 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
7917 .adc_nids = alc861_adc_nids,
7918 .input_mux = &alc861_capture_source,
7920 [ALC861_ASUS_LAPTOP] = {
7921 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
7922 .init_verbs = { alc861_asus_init_verbs,
7923 alc861_asus_laptop_init_verbs },
7924 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
7925 .dac_nids = alc861_dac_nids,
7926 .dig_out_nid = ALC861_DIGOUT_NID,
7927 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7928 .channel_mode = alc883_3ST_2ch_modes,
7930 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
7931 .adc_nids = alc861_adc_nids,
7932 .input_mux = &alc861_capture_source,
7937 static int patch_alc861(struct hda_codec *codec)
7939 struct alc_spec *spec;
7943 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
7949 board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
7953 if (board_config < 0) {
7954 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
7955 "trying auto-probe from BIOS...\n");
7956 board_config = ALC861_AUTO;
7959 if (board_config == ALC861_AUTO) {
7960 /* automatic parse from the BIOS config */
7961 err = alc861_parse_auto_config(codec);
7967 "hda_codec: Cannot set up configuration "
7968 "from BIOS. Using base mode...\n");
7969 board_config = ALC861_3ST_DIG;
7973 if (board_config != ALC861_AUTO)
7974 setup_preset(spec, &alc861_presets[board_config]);
7976 spec->stream_name_analog = "ALC861 Analog";
7977 spec->stream_analog_playback = &alc861_pcm_analog_playback;
7978 spec->stream_analog_capture = &alc861_pcm_analog_capture;
7980 spec->stream_name_digital = "ALC861 Digital";
7981 spec->stream_digital_playback = &alc861_pcm_digital_playback;
7982 spec->stream_digital_capture = &alc861_pcm_digital_capture;
7984 codec->patch_ops = alc_patch_ops;
7985 if (board_config == ALC861_AUTO)
7986 spec->init_hook = alc861_auto_init;
7996 * In addition, an independent DAC
7998 #define ALC861VD_DIGOUT_NID 0x06
8000 static hda_nid_t alc861vd_dac_nids[4] = {
8001 /* front, surr, clfe, side surr */
8002 0x02, 0x03, 0x04, 0x05
8005 /* dac_nids for ALC660vd are in a different order - according to
8007 * This should probably tesult in a different mixer for 6stack models
8008 * of ALC660vd codecs, but for now there is only 3stack mixer
8009 * - and it is the same as in 861vd.
8010 * adc_nids in ALC660vd are (is) the same as in 861vd
8012 static hda_nid_t alc660vd_dac_nids[3] = {
8013 /* front, rear, clfe, rear_surr */
8017 static hda_nid_t alc861vd_adc_nids[1] = {
8023 /* FIXME: should be a matrix-type input source selection */
8024 static struct hda_input_mux alc861vd_capture_source = {
8028 { "Front Mic", 0x1 },
8034 #define alc861vd_mux_enum_info alc_mux_enum_info
8035 #define alc861vd_mux_enum_get alc_mux_enum_get
8037 static int alc861vd_mux_enum_put(struct snd_kcontrol *kcontrol,
8038 struct snd_ctl_elem_value *ucontrol)
8040 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
8041 struct alc_spec *spec = codec->spec;
8042 const struct hda_input_mux *imux = spec->input_mux;
8043 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
8044 static hda_nid_t capture_mixers[1] = { 0x22 };
8045 hda_nid_t nid = capture_mixers[adc_idx];
8046 unsigned int *cur_val = &spec->cur_mux[adc_idx];
8047 unsigned int i, idx;
8049 idx = ucontrol->value.enumerated.item[0];
8050 if (idx >= imux->num_items)
8051 idx = imux->num_items - 1;
8052 if (*cur_val == idx && ! codec->in_resume)
8054 for (i = 0; i < imux->num_items; i++) {
8055 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
8056 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
8057 v | (imux->items[i].index << 8));
8066 static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
8073 static struct hda_verb alc861vd_6stack_ch6_init[] = {
8074 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
8075 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8076 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8077 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8084 static struct hda_verb alc861vd_6stack_ch8_init[] = {
8085 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8086 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8087 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8088 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8092 static struct hda_channel_mode alc861vd_6stack_modes[2] = {
8093 { 6, alc861vd_6stack_ch6_init },
8094 { 8, alc861vd_6stack_ch8_init },
8097 static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
8099 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8100 .name = "Channel Mode",
8101 .info = alc_ch_mode_info,
8102 .get = alc_ch_mode_get,
8103 .put = alc_ch_mode_put,
8108 static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
8109 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
8110 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
8113 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8114 /* The multiple "Capture Source" controls confuse alsamixer
8115 * So call somewhat different..
8116 *FIXME: the controls appear in the "playback" view!
8118 /* .name = "Capture Source", */
8119 .name = "Input Source",
8121 .info = alc861vd_mux_enum_info,
8122 .get = alc861vd_mux_enum_get,
8123 .put = alc861vd_mux_enum_put,
8128 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
8129 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
8131 static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
8132 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
8133 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
8135 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
8136 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
8138 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
8140 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
8142 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
8143 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
8145 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
8146 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
8148 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
8150 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
8151 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
8152 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
8154 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
8155 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
8156 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
8158 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
8159 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
8161 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
8162 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
8164 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
8165 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
8170 static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
8171 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
8172 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
8174 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
8176 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
8177 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
8178 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
8180 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
8181 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
8182 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
8184 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
8185 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
8187 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
8188 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
8190 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
8191 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
8197 * generic initialization of ADC, input mixers and output mixers
8199 static struct hda_verb alc861vd_volume_init_verbs[] = {
8201 * Unmute ADC0 and set the default input to mic-in
8203 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
8204 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8206 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
8207 * the analog-loopback mixer widget
8209 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8210 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8211 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8212 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8213 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
8214 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
8216 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
8217 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
8218 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
8219 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
8220 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(8)},
8223 * Set up output mixers (0x02 - 0x05)
8225 /* set vol=0 to output mixers */
8226 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8227 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8228 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8229 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8231 /* set up input amps for analog loopback */
8232 /* Amp Indices: DAC = 0, mixer = 1 */
8233 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8234 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8235 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8236 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8237 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8238 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8239 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8240 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8246 * 3-stack pin configuration:
8247 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
8249 static struct hda_verb alc861vd_3stack_init_verbs[] = {
8251 * Set pin mode and muting
8253 /* set front pin widgets 0x14 for output */
8254 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8255 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8256 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
8258 /* Mic (rear) pin: input vref at 80% */
8259 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8260 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8261 /* Front Mic pin: input vref at 80% */
8262 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8263 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8264 /* Line In pin: input */
8265 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8266 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8267 /* Line-2 In: Headphone output (output 0 - 0x0c) */
8268 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8269 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8270 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8271 /* CD pin widget for input */
8272 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8278 * 6-stack pin configuration:
8280 static struct hda_verb alc861vd_6stack_init_verbs[] = {
8282 * Set pin mode and muting
8284 /* set front pin widgets 0x14 for output */
8285 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8286 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8287 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
8289 /* Rear Pin: output 1 (0x0d) */
8290 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8291 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8292 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
8293 /* CLFE Pin: output 2 (0x0e) */
8294 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8295 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8296 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
8297 /* Side Pin: output 3 (0x0f) */
8298 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8299 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8300 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
8302 /* Mic (rear) pin: input vref at 80% */
8303 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8304 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8305 /* Front Mic pin: input vref at 80% */
8306 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
8307 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8308 /* Line In pin: input */
8309 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8310 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8311 /* Line-2 In: Headphone output (output 0 - 0x0c) */
8312 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8313 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8314 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8315 /* CD pin widget for input */
8316 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8321 /* pcm configuration: identiacal with ALC880 */
8322 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
8323 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
8324 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
8325 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
8328 * configuration and preset
8330 static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
8331 [ALC660VD_3ST] = "3stack-660",
8332 [ALC861VD_3ST] = "3stack",
8333 [ALC861VD_3ST_DIG] = "3stack-digout",
8334 [ALC861VD_6ST_DIG] = "6stack-digout",
8335 [ALC861VD_AUTO] = "auto",
8338 static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
8339 SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
8340 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
8341 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
8343 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_3ST),
8347 static struct alc_config_preset alc861vd_presets[] = {
8349 .mixers = { alc861vd_3st_mixer },
8350 .init_verbs = { alc861vd_volume_init_verbs,
8351 alc861vd_3stack_init_verbs },
8352 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
8353 .dac_nids = alc660vd_dac_nids,
8354 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
8355 .adc_nids = alc861vd_adc_nids,
8356 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8357 .channel_mode = alc861vd_3stack_2ch_modes,
8358 .input_mux = &alc861vd_capture_source,
8361 .mixers = { alc861vd_3st_mixer },
8362 .init_verbs = { alc861vd_volume_init_verbs,
8363 alc861vd_3stack_init_verbs },
8364 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8365 .dac_nids = alc861vd_dac_nids,
8366 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8367 .channel_mode = alc861vd_3stack_2ch_modes,
8368 .input_mux = &alc861vd_capture_source,
8370 [ALC861VD_3ST_DIG] = {
8371 .mixers = { alc861vd_3st_mixer },
8372 .init_verbs = { alc861vd_volume_init_verbs,
8373 alc861vd_3stack_init_verbs },
8374 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8375 .dac_nids = alc861vd_dac_nids,
8376 .dig_out_nid = ALC861VD_DIGOUT_NID,
8377 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
8378 .channel_mode = alc861vd_3stack_2ch_modes,
8379 .input_mux = &alc861vd_capture_source,
8381 [ALC861VD_6ST_DIG] = {
8382 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
8383 .init_verbs = { alc861vd_volume_init_verbs,
8384 alc861vd_6stack_init_verbs },
8385 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
8386 .dac_nids = alc861vd_dac_nids,
8387 .dig_out_nid = ALC861VD_DIGOUT_NID,
8388 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
8389 .channel_mode = alc861vd_6stack_modes,
8390 .input_mux = &alc861vd_capture_source,
8395 * BIOS auto configuration
8397 static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
8398 hda_nid_t nid, int pin_type, int dac_idx)
8401 snd_hda_codec_write(codec, nid, 0,
8402 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
8403 snd_hda_codec_write(codec, nid, 0,
8404 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
8407 static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
8409 struct alc_spec *spec = codec->spec;
8412 for (i = 0; i <= HDA_SIDE; i++) {
8413 hda_nid_t nid = spec->autocfg.line_out_pins[i];
8415 alc861vd_auto_set_output_and_unmute(codec, nid,
8421 static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
8423 struct alc_spec *spec = codec->spec;
8426 pin = spec->autocfg.hp_pins[0];
8427 if (pin) /* connect to front and use dac 0 */
8428 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
8431 #define alc861vd_is_input_pin(nid) alc880_is_input_pin(nid)
8432 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
8434 static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
8436 struct alc_spec *spec = codec->spec;
8439 for (i = 0; i < AUTO_PIN_LAST; i++) {
8440 hda_nid_t nid = spec->autocfg.input_pins[i];
8441 if (alc861vd_is_input_pin(nid)) {
8442 snd_hda_codec_write(codec, nid, 0,
8443 AC_VERB_SET_PIN_WIDGET_CONTROL,
8444 i <= AUTO_PIN_FRONT_MIC ?
8445 PIN_VREF80 : PIN_IN);
8446 if (nid != ALC861VD_PIN_CD_NID)
8447 snd_hda_codec_write(codec, nid, 0,
8448 AC_VERB_SET_AMP_GAIN_MUTE,
8454 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
8455 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
8457 /* add playback controls from the parsed DAC table */
8458 /* Based on ALC880 version. But ALC861VD has separate,
8459 * different NIDs for mute/unmute switch and volume control */
8460 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
8461 const struct auto_pin_cfg *cfg)
8464 static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
8465 hda_nid_t nid_v, nid_s;
8468 for (i = 0; i < cfg->line_outs; i++) {
8469 if (! spec->multiout.dac_nids[i])
8471 nid_v = alc861vd_idx_to_mixer_vol(
8473 spec->multiout.dac_nids[i]));
8474 nid_s = alc861vd_idx_to_mixer_switch(
8476 spec->multiout.dac_nids[i]));
8480 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL,
8481 "Center Playback Volume",
8482 HDA_COMPOSE_AMP_VAL(nid_v, 1,
8483 0, HDA_OUTPUT))) < 0)
8485 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL,
8486 "LFE Playback Volume",
8487 HDA_COMPOSE_AMP_VAL(nid_v, 2,
8488 0, HDA_OUTPUT))) < 0)
8490 if ((err = add_control(spec, ALC_CTL_BIND_MUTE,
8491 "Center Playback Switch",
8492 HDA_COMPOSE_AMP_VAL(nid_s, 1,
8493 2, HDA_INPUT))) < 0)
8495 if ((err = add_control(spec, ALC_CTL_BIND_MUTE,
8496 "LFE Playback Switch",
8497 HDA_COMPOSE_AMP_VAL(nid_s, 2,
8498 2, HDA_INPUT))) < 0)
8501 sprintf(name, "%s Playback Volume", chname[i]);
8502 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8503 HDA_COMPOSE_AMP_VAL(nid_v, 3,
8504 0, HDA_OUTPUT))) < 0)
8506 sprintf(name, "%s Playback Switch", chname[i]);
8507 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
8508 HDA_COMPOSE_AMP_VAL(nid_v, 3,
8509 2, HDA_INPUT))) < 0)
8516 /* add playback controls for speaker and HP outputs */
8517 /* Based on ALC880 version. But ALC861VD has separate,
8518 * different NIDs for mute/unmute switch and volume control */
8519 static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
8520 hda_nid_t pin, const char *pfx)
8522 hda_nid_t nid_v, nid_s;
8529 if (alc880_is_fixed_pin(pin)) {
8530 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
8531 /* specify the DAC as the extra output */
8532 if (! spec->multiout.hp_nid)
8533 spec->multiout.hp_nid = nid_v;
8535 spec->multiout.extra_out_nid[0] = nid_v;
8536 /* control HP volume/switch on the output mixer amp */
8537 nid_v = alc861vd_idx_to_mixer_vol(
8538 alc880_fixed_pin_idx(pin));
8539 nid_s = alc861vd_idx_to_mixer_switch(
8540 alc880_fixed_pin_idx(pin));
8542 sprintf(name, "%s Playback Volume", pfx);
8543 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8544 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
8547 sprintf(name, "%s Playback Switch", pfx);
8548 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
8549 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2,
8552 } else if (alc880_is_multi_pin(pin)) {
8553 /* set manual connection */
8554 /* we have only a switch on HP-out PIN */
8555 sprintf(name, "%s Playback Switch", pfx);
8556 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
8557 HDA_COMPOSE_AMP_VAL(pin, 3, 0,
8564 /* parse the BIOS configuration and set up the alc_spec
8565 * return 1 if successful, 0 if the proper config is not found,
8566 * or a negative error code
8567 * Based on ALC880 version - had to change it to override
8568 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
8569 static int alc861vd_parse_auto_config(struct hda_codec *codec)
8571 struct alc_spec *spec = codec->spec;
8573 static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
8575 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8576 alc861vd_ignore)) < 0)
8578 if (! spec->autocfg.line_outs)
8579 return 0; /* can't find valid BIOS pin config */
8581 if ((err = alc880_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
8582 (err = alc861vd_auto_create_multi_out_ctls(spec,
8583 &spec->autocfg)) < 0 ||
8584 (err = alc861vd_auto_create_extra_out(spec,
8585 spec->autocfg.speaker_pins[0], "Speaker")) < 0 ||
8586 (err = alc861vd_auto_create_extra_out(spec,
8587 spec->autocfg.hp_pins[0], "Headphone")) < 0 ||
8588 (err = alc880_auto_create_analog_input_ctls(spec,
8589 &spec->autocfg)) < 0)
8592 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
8594 if (spec->autocfg.dig_out_pin)
8595 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
8597 if (spec->kctl_alloc)
8598 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8600 spec->init_verbs[spec->num_init_verbs++]
8601 = alc861vd_volume_init_verbs;
8603 spec->num_mux_defs = 1;
8604 spec->input_mux = &spec->private_imux;
8609 /* additional initialization for auto-configuration model */
8610 static void alc861vd_auto_init(struct hda_codec *codec)
8612 alc861vd_auto_init_multi_out(codec);
8613 alc861vd_auto_init_hp_out(codec);
8614 alc861vd_auto_init_analog_input(codec);
8617 static int patch_alc861vd(struct hda_codec *codec)
8619 struct alc_spec *spec;
8620 int err, board_config;
8622 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
8628 board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
8632 if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
8633 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
8634 "ALC861VD, trying auto-probe from BIOS...\n");
8635 board_config = ALC861VD_AUTO;
8638 if (board_config == ALC861VD_AUTO) {
8639 /* automatic parse from the BIOS config */
8640 err = alc861vd_parse_auto_config(codec);
8646 "hda_codec: Cannot set up configuration "
8647 "from BIOS. Using base mode...\n");
8648 board_config = ALC861VD_3ST;
8652 if (board_config != ALC861VD_AUTO)
8653 setup_preset(spec, &alc861vd_presets[board_config]);
8655 spec->stream_name_analog = "ALC861VD Analog";
8656 spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
8657 spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
8659 spec->stream_name_digital = "ALC861VD Digital";
8660 spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
8661 spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
8663 spec->adc_nids = alc861vd_adc_nids;
8664 spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
8666 spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
8669 codec->patch_ops = alc_patch_ops;
8671 if (board_config == ALC861VD_AUTO)
8672 spec->init_hook = alc861vd_auto_init;
8680 struct hda_codec_preset snd_hda_preset_realtek[] = {
8681 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
8682 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
8683 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
8684 .patch = patch_alc861 },
8685 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
8686 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
8687 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
8688 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
8689 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
8690 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
8691 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
8692 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },