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"
36 /* ALC880 board config type */
55 #ifdef CONFIG_SND_DEBUG
59 ALC880_MODEL_LAST /* last tag */
69 #ifdef CONFIG_SND_DEBUG
73 ALC260_MODEL_LAST /* last tag */
81 ALC262_MODEL_LAST /* last tag */
102 #define GPIO_MASK 0x03
105 /* codec parameterization */
106 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
107 unsigned int num_mixers;
109 const struct hda_verb *init_verbs[5]; /* initialization verbs
110 * don't forget NULL termination!
112 unsigned int num_init_verbs;
114 char *stream_name_analog; /* analog PCM stream */
115 struct hda_pcm_stream *stream_analog_playback;
116 struct hda_pcm_stream *stream_analog_capture;
118 char *stream_name_digital; /* digital PCM stream */
119 struct hda_pcm_stream *stream_digital_playback;
120 struct hda_pcm_stream *stream_digital_capture;
123 struct hda_multi_out multiout; /* playback set-up
124 * max_channels, dacs must be set
125 * dig_out_nid and hp_nid are optional
129 unsigned int num_adc_nids;
131 hda_nid_t dig_in_nid; /* digital-in NID; optional */
134 const struct hda_input_mux *input_mux;
135 unsigned int cur_mux[3];
138 const struct hda_channel_mode *channel_mode;
139 int num_channel_mode;
141 /* PCM information */
142 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
144 /* dynamic controls, init_verbs and input_mux */
145 struct auto_pin_cfg autocfg;
146 unsigned int num_kctl_alloc, num_kctl_used;
147 struct snd_kcontrol_new *kctl_alloc;
148 struct hda_input_mux private_imux;
149 hda_nid_t private_dac_nids[5];
152 void (*init_hook)(struct hda_codec *codec);
153 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
155 /* for pin sensing */
156 unsigned int sense_updated: 1;
157 unsigned int jack_present: 1;
161 * configuration template - to be copied to the spec instance
163 struct alc_config_preset {
164 struct snd_kcontrol_new *mixers[5]; /* should be identical size with spec */
165 const struct hda_verb *init_verbs[5];
166 unsigned int num_dacs;
168 hda_nid_t dig_out_nid; /* optional */
169 hda_nid_t hp_nid; /* optional */
170 unsigned int num_adc_nids;
172 hda_nid_t dig_in_nid;
173 unsigned int num_channel_mode;
174 const struct hda_channel_mode *channel_mode;
175 const struct hda_input_mux *input_mux;
176 void (*unsol_event)(struct hda_codec *, unsigned int);
177 void (*init_hook)(struct hda_codec *);
184 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
186 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
187 struct alc_spec *spec = codec->spec;
188 return snd_hda_input_mux_info(spec->input_mux, uinfo);
191 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
193 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
194 struct alc_spec *spec = codec->spec;
195 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
197 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
201 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
203 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
204 struct alc_spec *spec = codec->spec;
205 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
206 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
207 spec->adc_nids[adc_idx], &spec->cur_mux[adc_idx]);
212 * channel mode setting
214 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
216 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
217 struct alc_spec *spec = codec->spec;
218 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
219 spec->num_channel_mode);
222 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
224 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
225 struct alc_spec *spec = codec->spec;
226 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
227 spec->num_channel_mode, spec->multiout.max_channels);
230 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
232 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
233 struct alc_spec *spec = codec->spec;
234 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
235 spec->num_channel_mode, &spec->multiout.max_channels);
239 * Control the mode of pin widget settings via the mixer. "pc" is used
240 * instead of "%" to avoid consequences of accidently treating the % as
241 * being part of a format specifier. Maximum allowed length of a value is
242 * 63 characters plus NULL terminator.
244 * Note: some retasking pin complexes seem to ignore requests for input
245 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
246 * are requested. Therefore order this list so that this behaviour will not
247 * cause problems when mixer clients move through the enum sequentially.
248 * NIDs 0x0f and 0x10 have been observed to have this behaviour.
250 static char *alc_pin_mode_names[] = {
251 "Mic 50pc bias", "Mic 80pc bias",
252 "Line in", "Line out", "Headphone out",
254 static unsigned char alc_pin_mode_values[] = {
255 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
257 /* The control can present all 5 options, or it can limit the options based
258 * in the pin being assumed to be exclusively an input or an output pin.
260 #define ALC_PIN_DIR_IN 0x00
261 #define ALC_PIN_DIR_OUT 0x01
262 #define ALC_PIN_DIR_INOUT 0x02
264 /* Info about the pin modes supported by the three different pin directions.
265 * For each direction the minimum and maximum values are given.
267 static signed char alc_pin_mode_dir_info[3][2] = {
268 { 0, 2 }, /* ALC_PIN_DIR_IN */
269 { 3, 4 }, /* ALC_PIN_DIR_OUT */
270 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
272 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
273 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
274 #define alc_pin_mode_n_items(_dir) \
275 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
277 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
279 unsigned int item_num = uinfo->value.enumerated.item;
280 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
282 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
284 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
286 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
287 item_num = alc_pin_mode_min(dir);
288 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
292 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
295 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
296 hda_nid_t nid = kcontrol->private_value & 0xffff;
297 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
298 long *valp = ucontrol->value.integer.value;
299 unsigned int pinctl = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_PIN_WIDGET_CONTROL,0x00);
301 /* Find enumerated value for current pinctl setting */
302 i = alc_pin_mode_min(dir);
303 while (alc_pin_mode_values[i]!=pinctl && i<=alc_pin_mode_max(dir))
305 *valp = i<=alc_pin_mode_max(dir)?i:alc_pin_mode_min(dir);
309 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
312 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
313 hda_nid_t nid = kcontrol->private_value & 0xffff;
314 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
315 long val = *ucontrol->value.integer.value;
316 unsigned int pinctl = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_PIN_WIDGET_CONTROL,0x00);
318 if (val<alc_pin_mode_min(dir) || val>alc_pin_mode_max(dir))
319 val = alc_pin_mode_min(dir);
321 change = pinctl != alc_pin_mode_values[val];
323 /* Set pin mode to that requested */
324 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_PIN_WIDGET_CONTROL,
325 alc_pin_mode_values[val]);
327 /* Also enable the retasking pin's input/output as required
328 * for the requested pin mode. Enum values of 2 or less are
331 * Dynamically switching the input/output buffers probably
332 * reduces noise slightly, particularly on input. However,
333 * havingboth input and output buffers enabled
334 * simultaneously doesn't seem to be problematic.
337 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
339 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
342 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
344 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_AMP_GAIN_MUTE,
351 #define ALC_PIN_MODE(xname, nid, dir) \
352 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
353 .info = alc_pin_mode_info, \
354 .get = alc_pin_mode_get, \
355 .put = alc_pin_mode_put, \
356 .private_value = nid | (dir<<16) }
358 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
359 * together using a mask with more than one bit set. This control is
360 * currently used only by the ALC260 test model. At this stage they are not
361 * needed for any "production" models.
363 #ifdef CONFIG_SND_DEBUG
364 static int alc_gpio_data_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
366 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
368 uinfo->value.integer.min = 0;
369 uinfo->value.integer.max = 1;
372 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
374 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
375 hda_nid_t nid = kcontrol->private_value & 0xffff;
376 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
377 long *valp = ucontrol->value.integer.value;
378 unsigned int val = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_GPIO_DATA,0x00);
380 *valp = (val & mask) != 0;
383 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
386 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
387 hda_nid_t nid = kcontrol->private_value & 0xffff;
388 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
389 long val = *ucontrol->value.integer.value;
390 unsigned int gpio_data = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_GPIO_DATA,0x00);
392 /* Set/unset the masked GPIO bit(s) as needed */
393 change = (val==0?0:mask) != (gpio_data & mask);
398 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_GPIO_DATA,gpio_data);
402 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
403 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
404 .info = alc_gpio_data_info, \
405 .get = alc_gpio_data_get, \
406 .put = alc_gpio_data_put, \
407 .private_value = nid | (mask<<16) }
408 #endif /* CONFIG_SND_DEBUG */
410 /* A switch control to allow the enabling of the digital IO pins on the
411 * ALC260. This is incredibly simplistic; the intention of this control is
412 * to provide something in the test model allowing digital outputs to be
413 * identified if present. If models are found which can utilise these
414 * outputs a more complete mixer control can be devised for those models if
417 #ifdef CONFIG_SND_DEBUG
418 static int alc_spdif_ctrl_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
420 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
422 uinfo->value.integer.min = 0;
423 uinfo->value.integer.max = 1;
426 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
428 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
429 hda_nid_t nid = kcontrol->private_value & 0xffff;
430 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
431 long *valp = ucontrol->value.integer.value;
432 unsigned int val = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_DIGI_CONVERT,0x00);
434 *valp = (val & mask) != 0;
437 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
440 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
441 hda_nid_t nid = kcontrol->private_value & 0xffff;
442 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
443 long val = *ucontrol->value.integer.value;
444 unsigned int ctrl_data = snd_hda_codec_read(codec,nid,0,AC_VERB_GET_DIGI_CONVERT,0x00);
446 /* Set/unset the masked control bit(s) as needed */
447 change = (val==0?0:mask) != (ctrl_data & mask);
452 snd_hda_codec_write(codec,nid,0,AC_VERB_SET_DIGI_CONVERT_1,ctrl_data);
456 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
457 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
458 .info = alc_spdif_ctrl_info, \
459 .get = alc_spdif_ctrl_get, \
460 .put = alc_spdif_ctrl_put, \
461 .private_value = nid | (mask<<16) }
462 #endif /* CONFIG_SND_DEBUG */
465 * set up from the preset table
467 static void setup_preset(struct alc_spec *spec, const struct alc_config_preset *preset)
471 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
472 spec->mixers[spec->num_mixers++] = preset->mixers[i];
473 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i]; i++)
474 spec->init_verbs[spec->num_init_verbs++] = preset->init_verbs[i];
476 spec->channel_mode = preset->channel_mode;
477 spec->num_channel_mode = preset->num_channel_mode;
479 spec->multiout.max_channels = spec->channel_mode[0].channels;
481 spec->multiout.num_dacs = preset->num_dacs;
482 spec->multiout.dac_nids = preset->dac_nids;
483 spec->multiout.dig_out_nid = preset->dig_out_nid;
484 spec->multiout.hp_nid = preset->hp_nid;
486 spec->input_mux = preset->input_mux;
488 spec->num_adc_nids = preset->num_adc_nids;
489 spec->adc_nids = preset->adc_nids;
490 spec->dig_in_nid = preset->dig_in_nid;
492 spec->unsol_event = preset->unsol_event;
493 spec->init_hook = preset->init_hook;
497 * ALC880 3-stack model
499 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
500 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18, F-Mic = 0x1b
504 static hda_nid_t alc880_dac_nids[4] = {
505 /* front, rear, clfe, rear_surr */
506 0x02, 0x05, 0x04, 0x03
509 static hda_nid_t alc880_adc_nids[3] = {
514 /* The datasheet says the node 0x07 is connected from inputs,
515 * but it shows zero connection in the real implementation on some devices.
516 * Note: this is a 915GAV bug, fixed on 915GLV
518 static hda_nid_t alc880_adc_nids_alt[2] = {
523 #define ALC880_DIGOUT_NID 0x06
524 #define ALC880_DIGIN_NID 0x0a
526 static struct hda_input_mux alc880_capture_source = {
530 { "Front Mic", 0x3 },
536 /* channel source setting (2/6 channel selection for 3-stack) */
538 static struct hda_verb alc880_threestack_ch2_init[] = {
539 /* set line-in to input, mute it */
540 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
541 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
542 /* set mic-in to input vref 80%, mute it */
543 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
544 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
549 static struct hda_verb alc880_threestack_ch6_init[] = {
550 /* set line-in to output, unmute it */
551 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
552 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
553 /* set mic-in to output, unmute it */
554 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
555 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
559 static struct hda_channel_mode alc880_threestack_modes[2] = {
560 { 2, alc880_threestack_ch2_init },
561 { 6, alc880_threestack_ch6_init },
564 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
565 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
566 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
567 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
568 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
569 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
570 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
571 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
572 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
573 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
574 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
575 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
576 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
577 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
578 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
579 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
580 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
581 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
582 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
583 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
585 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
586 .name = "Channel Mode",
587 .info = alc_ch_mode_info,
588 .get = alc_ch_mode_get,
589 .put = alc_ch_mode_put,
594 /* capture mixer elements */
595 static struct snd_kcontrol_new alc880_capture_mixer[] = {
596 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
597 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
598 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
599 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
600 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
601 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
603 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
604 /* The multiple "Capture Source" controls confuse alsamixer
605 * So call somewhat different..
606 * FIXME: the controls appear in the "playback" view!
608 /* .name = "Capture Source", */
609 .name = "Input Source",
611 .info = alc_mux_enum_info,
612 .get = alc_mux_enum_get,
613 .put = alc_mux_enum_put,
618 /* capture mixer elements (in case NID 0x07 not available) */
619 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
620 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
621 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
622 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
623 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
625 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
626 /* The multiple "Capture Source" controls confuse alsamixer
627 * So call somewhat different..
628 * FIXME: the controls appear in the "playback" view!
630 /* .name = "Capture Source", */
631 .name = "Input Source",
633 .info = alc_mux_enum_info,
634 .get = alc_mux_enum_get,
635 .put = alc_mux_enum_put,
643 * ALC880 5-stack model
645 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d), Side = 0x02 (0xd)
646 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
647 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
650 /* additional mixers to alc880_three_stack_mixer */
651 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
652 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
653 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
657 /* channel source setting (6/8 channel selection for 5-stack) */
659 static struct hda_verb alc880_fivestack_ch6_init[] = {
660 /* set line-in to input, mute it */
661 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
662 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
667 static struct hda_verb alc880_fivestack_ch8_init[] = {
668 /* set line-in to output, unmute it */
669 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
670 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
674 static struct hda_channel_mode alc880_fivestack_modes[2] = {
675 { 6, alc880_fivestack_ch6_init },
676 { 8, alc880_fivestack_ch8_init },
681 * ALC880 6-stack model
683 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e), Side = 0x05 (0x0f)
684 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
685 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
688 static hda_nid_t alc880_6st_dac_nids[4] = {
689 /* front, rear, clfe, rear_surr */
690 0x02, 0x03, 0x04, 0x05
693 static struct hda_input_mux alc880_6stack_capture_source = {
697 { "Front Mic", 0x1 },
703 /* fixed 8-channels */
704 static struct hda_channel_mode alc880_sixstack_modes[1] = {
708 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
709 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
710 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
711 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
712 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
713 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
714 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
715 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
716 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
717 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
718 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
719 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
720 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
721 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
722 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
723 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
724 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
725 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
726 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
727 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
728 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
730 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
731 .name = "Channel Mode",
732 .info = alc_ch_mode_info,
733 .get = alc_ch_mode_get,
734 .put = alc_ch_mode_put,
743 * W810 has rear IO for:
746 * Center/LFE (DAC 04)
749 * The system also has a pair of internal speakers, and a headphone jack.
750 * These are both connected to Line2 on the codec, hence to DAC 02.
752 * There is a variable resistor to control the speaker or headphone
753 * volume. This is a hardware-only device without a software API.
755 * Plugging headphones in will disable the internal speakers. This is
756 * implemented in hardware, not via the driver using jack sense. In
757 * a similar fashion, plugging into the rear socket marked "front" will
758 * disable both the speakers and headphones.
760 * For input, there's a microphone jack, and an "audio in" jack.
761 * These may not do anything useful with this driver yet, because I
762 * haven't setup any initialization verbs for these yet...
765 static hda_nid_t alc880_w810_dac_nids[3] = {
766 /* front, rear/surround, clfe */
770 /* fixed 6 channels */
771 static struct hda_channel_mode alc880_w810_modes[1] = {
775 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
776 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
777 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
778 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
779 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
780 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
781 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
782 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
783 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
784 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
785 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
793 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
794 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?), Line = 0x1a
797 static hda_nid_t alc880_z71v_dac_nids[1] = {
800 #define ALC880_Z71V_HP_DAC 0x03
802 /* fixed 2 channels */
803 static struct hda_channel_mode alc880_2_jack_modes[1] = {
807 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
808 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
809 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
810 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
811 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
812 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
813 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
814 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
815 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
824 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
825 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
828 static hda_nid_t alc880_f1734_dac_nids[1] = {
831 #define ALC880_F1734_HP_DAC 0x02
833 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
834 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
835 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
836 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
837 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
838 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
839 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
840 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
841 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
850 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
851 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
852 * Mic = 0x18, Line = 0x1a
855 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
856 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
858 static struct snd_kcontrol_new alc880_asus_mixer[] = {
859 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
860 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
861 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
862 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
863 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
864 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
865 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
866 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
867 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
868 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
869 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
870 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
871 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
872 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
874 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
875 .name = "Channel Mode",
876 .info = alc_ch_mode_info,
877 .get = alc_ch_mode_get,
878 .put = alc_ch_mode_put,
885 * ALC880 ASUS W1V model
887 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
888 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
889 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
892 /* additional mixers to alc880_asus_mixer */
893 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
894 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
895 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
899 /* additional mixers to alc880_asus_mixer */
900 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
901 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
902 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
907 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
908 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
909 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
910 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
911 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
912 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
913 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
914 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
915 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
916 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
918 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
919 /* The multiple "Capture Source" controls confuse alsamixer
920 * So call somewhat different..
921 * FIXME: the controls appear in the "playback" view!
923 /* .name = "Capture Source", */
924 .name = "Input Source",
926 .info = alc_mux_enum_info,
927 .get = alc_mux_enum_get,
928 .put = alc_mux_enum_put,
934 * build control elements
936 static int alc_build_controls(struct hda_codec *codec)
938 struct alc_spec *spec = codec->spec;
942 for (i = 0; i < spec->num_mixers; i++) {
943 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
948 if (spec->multiout.dig_out_nid) {
949 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
953 if (spec->dig_in_nid) {
954 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
963 * initialize the codec volumes, etc
967 * generic initialization of ADC, input mixers and output mixers
969 static struct hda_verb alc880_volume_init_verbs[] = {
971 * Unmute ADC0-2 and set the default input to mic-in
973 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
974 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
975 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
976 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
977 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
978 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
980 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
982 * Note: PASD motherboards uses the Line In 2 as the input for front panel
985 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
986 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
987 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
988 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
989 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
990 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
993 * Set up output mixers (0x0c - 0x0f)
995 /* set vol=0 to output mixers */
996 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
997 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
998 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
999 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1000 /* set up input amps for analog loopback */
1001 /* Amp Indices: DAC = 0, mixer = 1 */
1002 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1003 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1004 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1005 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1006 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1007 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1008 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1009 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1015 * 3-stack pin configuration:
1016 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1018 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1020 * preset connection lists of input pins
1021 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1023 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1024 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1025 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1028 * Set pin mode and muting
1030 /* set front pin widgets 0x14 for output */
1031 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1032 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1033 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1034 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1035 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1036 /* Mic2 (as headphone out) for HP output */
1037 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1038 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1039 /* Line In pin widget for input */
1040 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1041 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1042 /* Line2 (as front mic) pin widget for input and vref at 80% */
1043 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1044 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1045 /* CD pin widget for input */
1046 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1052 * 5-stack pin configuration:
1053 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1054 * line-in/side = 0x1a, f-mic = 0x1b
1056 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1058 * preset connection lists of input pins
1059 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1061 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1062 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1065 * Set pin mode and muting
1067 /* set pin widgets 0x14-0x17 for output */
1068 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1069 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1070 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1071 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1072 /* unmute pins for output (no gain on this amp) */
1073 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1074 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1075 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1076 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1078 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1079 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1080 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1081 /* Mic2 (as headphone out) for HP output */
1082 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1083 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1084 /* Line In pin widget for input */
1085 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1086 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1087 /* Line2 (as front mic) pin widget for input and vref at 80% */
1088 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1089 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1090 /* CD pin widget for input */
1091 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1097 * W810 pin configuration:
1098 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1100 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1101 /* hphone/speaker input selector: front DAC */
1102 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1104 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1105 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1106 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1107 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1108 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1109 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1111 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1112 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1118 * Z71V pin configuration:
1119 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1121 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1122 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1123 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1124 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1125 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1127 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1128 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1129 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1130 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1136 * 6-stack pin configuration:
1137 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18, f-mic = 0x19,
1138 * line = 0x1a, HP = 0x1b
1140 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1141 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1143 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1144 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1145 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1146 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1147 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1148 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1149 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1150 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1152 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1153 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1154 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1155 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1156 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1157 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1158 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1159 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1160 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1167 * F1734 pin configuration:
1168 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1170 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1171 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1172 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1173 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1174 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1176 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1177 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1178 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1179 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1181 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1182 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1183 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1184 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1185 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1186 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1187 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1188 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1189 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1196 * ASUS pin configuration:
1197 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1199 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1200 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1201 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1202 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1203 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1205 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1206 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1207 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1208 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1209 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1210 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1211 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1212 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1214 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1215 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1216 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1217 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1218 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1219 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1220 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1221 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1222 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1227 /* Enable GPIO mask and set output */
1228 static struct hda_verb alc880_gpio1_init_verbs[] = {
1229 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
1230 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
1231 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
1236 /* Enable GPIO mask and set output */
1237 static struct hda_verb alc880_gpio2_init_verbs[] = {
1238 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
1239 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
1240 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
1245 /* Clevo m520g init */
1246 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1247 /* headphone output */
1248 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1250 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1251 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1253 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1254 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1256 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1257 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1258 /* Mic1 (rear panel) */
1259 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1260 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1261 /* Mic2 (front panel) */
1262 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1263 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1265 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1266 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1267 /* change to EAPD mode */
1268 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1269 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1274 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1275 /* Headphone output */
1276 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1278 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1279 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1281 /* Line In pin widget for input */
1282 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1283 /* CD pin widget for input */
1284 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1285 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1286 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1288 /* change to EAPD mode */
1289 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1290 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1296 * LG m1 express dual
1299 * Rear Line-In/Out (blue): 0x14
1300 * Build-in Mic-In: 0x15
1302 * HP-Out (green): 0x1b
1303 * Mic-In/Out (red): 0x19
1307 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1308 static hda_nid_t alc880_lg_dac_nids[3] = {
1312 /* seems analog CD is not working */
1313 static struct hda_input_mux alc880_lg_capture_source = {
1318 { "Internal Mic", 0x6 },
1322 /* 2,4,6 channel modes */
1323 static struct hda_verb alc880_lg_ch2_init[] = {
1324 /* set line-in and mic-in to input */
1325 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1326 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1330 static struct hda_verb alc880_lg_ch4_init[] = {
1331 /* set line-in to out and mic-in to input */
1332 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1333 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1337 static struct hda_verb alc880_lg_ch6_init[] = {
1338 /* set line-in and mic-in to output */
1339 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1340 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1344 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1345 { 2, alc880_lg_ch2_init },
1346 { 4, alc880_lg_ch4_init },
1347 { 6, alc880_lg_ch6_init },
1350 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1351 /* FIXME: it's not really "master" but front channels */
1352 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1353 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1354 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1355 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1356 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1357 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1358 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1359 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1360 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1361 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1362 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1363 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1364 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1365 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1367 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1368 .name = "Channel Mode",
1369 .info = alc_ch_mode_info,
1370 .get = alc_ch_mode_get,
1371 .put = alc_ch_mode_put,
1376 static struct hda_verb alc880_lg_init_verbs[] = {
1377 /* set capture source to mic-in */
1378 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1379 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1380 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1381 /* mute all amp mixer inputs */
1382 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1383 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(6)},
1384 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(7)},
1385 /* line-in to input */
1386 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1387 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1389 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1390 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1392 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1393 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1394 /* mic-in to input */
1395 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1396 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1397 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1399 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1400 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1401 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1403 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1407 /* toggle speaker-output according to the hp-jack state */
1408 static void alc880_lg_automute(struct hda_codec *codec)
1410 unsigned int present;
1412 present = snd_hda_codec_read(codec, 0x1b, 0,
1413 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1414 snd_hda_codec_amp_update(codec, 0x17, 0, HDA_OUTPUT, 0,
1415 0x80, present ? 0x80 : 0);
1416 snd_hda_codec_amp_update(codec, 0x17, 1, HDA_OUTPUT, 0,
1417 0x80, present ? 0x80 : 0);
1420 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1422 /* Looks like the unsol event is incompatible with the standard
1423 * definition. 4bit tag is placed at 28 bit!
1425 if ((res >> 28) == 0x01)
1426 alc880_lg_automute(codec);
1433 static int alc_init(struct hda_codec *codec)
1435 struct alc_spec *spec = codec->spec;
1438 for (i = 0; i < spec->num_init_verbs; i++)
1439 snd_hda_sequence_write(codec, spec->init_verbs[i]);
1441 if (spec->init_hook)
1442 spec->init_hook(codec);
1447 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
1449 struct alc_spec *spec = codec->spec;
1451 if (spec->unsol_event)
1452 spec->unsol_event(codec, res);
1459 static int alc_resume(struct hda_codec *codec)
1461 struct alc_spec *spec = codec->spec;
1465 for (i = 0; i < spec->num_mixers; i++)
1466 snd_hda_resume_ctls(codec, spec->mixers[i]);
1467 if (spec->multiout.dig_out_nid)
1468 snd_hda_resume_spdif_out(codec);
1469 if (spec->dig_in_nid)
1470 snd_hda_resume_spdif_in(codec);
1477 * Analog playback callbacks
1479 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
1480 struct hda_codec *codec,
1481 struct snd_pcm_substream *substream)
1483 struct alc_spec *spec = codec->spec;
1484 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
1487 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1488 struct hda_codec *codec,
1489 unsigned int stream_tag,
1490 unsigned int format,
1491 struct snd_pcm_substream *substream)
1493 struct alc_spec *spec = codec->spec;
1494 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
1498 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
1499 struct hda_codec *codec,
1500 struct snd_pcm_substream *substream)
1502 struct alc_spec *spec = codec->spec;
1503 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
1509 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
1510 struct hda_codec *codec,
1511 struct snd_pcm_substream *substream)
1513 struct alc_spec *spec = codec->spec;
1514 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
1517 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
1518 struct hda_codec *codec,
1519 struct snd_pcm_substream *substream)
1521 struct alc_spec *spec = codec->spec;
1522 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
1528 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
1529 struct hda_codec *codec,
1530 unsigned int stream_tag,
1531 unsigned int format,
1532 struct snd_pcm_substream *substream)
1534 struct alc_spec *spec = codec->spec;
1536 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
1537 stream_tag, 0, format);
1541 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1542 struct hda_codec *codec,
1543 struct snd_pcm_substream *substream)
1545 struct alc_spec *spec = codec->spec;
1547 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], 0, 0, 0);
1554 static struct hda_pcm_stream alc880_pcm_analog_playback = {
1558 /* NID is set in alc_build_pcms */
1560 .open = alc880_playback_pcm_open,
1561 .prepare = alc880_playback_pcm_prepare,
1562 .cleanup = alc880_playback_pcm_cleanup
1566 static struct hda_pcm_stream alc880_pcm_analog_capture = {
1570 /* NID is set in alc_build_pcms */
1572 .prepare = alc880_capture_pcm_prepare,
1573 .cleanup = alc880_capture_pcm_cleanup
1577 static struct hda_pcm_stream alc880_pcm_digital_playback = {
1581 /* NID is set in alc_build_pcms */
1583 .open = alc880_dig_playback_pcm_open,
1584 .close = alc880_dig_playback_pcm_close
1588 static struct hda_pcm_stream alc880_pcm_digital_capture = {
1592 /* NID is set in alc_build_pcms */
1595 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
1596 static struct hda_pcm_stream alc_pcm_null_playback = {
1602 static int alc_build_pcms(struct hda_codec *codec)
1604 struct alc_spec *spec = codec->spec;
1605 struct hda_pcm *info = spec->pcm_rec;
1608 codec->num_pcms = 1;
1609 codec->pcm_info = info;
1611 info->name = spec->stream_name_analog;
1612 if (spec->stream_analog_playback) {
1613 snd_assert(spec->multiout.dac_nids, return -EINVAL);
1614 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
1615 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
1617 if (spec->stream_analog_capture) {
1618 snd_assert(spec->adc_nids, return -EINVAL);
1619 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
1620 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
1623 if (spec->channel_mode) {
1624 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
1625 for (i = 0; i < spec->num_channel_mode; i++) {
1626 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
1627 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
1632 /* If the use of more than one ADC is requested for the current
1633 * model, configure a second analog capture-only PCM.
1635 if (spec->num_adc_nids > 1) {
1638 info->name = spec->stream_name_analog;
1639 /* No playback stream for second PCM */
1640 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
1641 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
1642 if (spec->stream_analog_capture) {
1643 snd_assert(spec->adc_nids, return -EINVAL);
1644 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
1645 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
1649 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
1652 info->name = spec->stream_name_digital;
1653 if (spec->multiout.dig_out_nid &&
1654 spec->stream_digital_playback) {
1655 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
1656 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
1658 if (spec->dig_in_nid &&
1659 spec->stream_digital_capture) {
1660 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
1661 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
1668 static void alc_free(struct hda_codec *codec)
1670 struct alc_spec *spec = codec->spec;
1676 if (spec->kctl_alloc) {
1677 for (i = 0; i < spec->num_kctl_used; i++)
1678 kfree(spec->kctl_alloc[i].name);
1679 kfree(spec->kctl_alloc);
1686 static struct hda_codec_ops alc_patch_ops = {
1687 .build_controls = alc_build_controls,
1688 .build_pcms = alc_build_pcms,
1691 .unsol_event = alc_unsol_event,
1693 .resume = alc_resume,
1699 * Test configuration for debugging
1701 * Almost all inputs/outputs are enabled. I/O pins can be configured via
1704 #ifdef CONFIG_SND_DEBUG
1705 static hda_nid_t alc880_test_dac_nids[4] = {
1706 0x02, 0x03, 0x04, 0x05
1709 static struct hda_input_mux alc880_test_capture_source = {
1718 { "Surround", 0x6 },
1722 static struct hda_channel_mode alc880_test_modes[4] = {
1729 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1731 static char *texts[] = {
1732 "N/A", "Line Out", "HP Out",
1733 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
1735 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1737 uinfo->value.enumerated.items = 8;
1738 if (uinfo->value.enumerated.item >= 8)
1739 uinfo->value.enumerated.item = 7;
1740 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1744 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1746 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1747 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1748 unsigned int pin_ctl, item = 0;
1750 pin_ctl = snd_hda_codec_read(codec, nid, 0,
1751 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1752 if (pin_ctl & AC_PINCTL_OUT_EN) {
1753 if (pin_ctl & AC_PINCTL_HP_EN)
1757 } else if (pin_ctl & AC_PINCTL_IN_EN) {
1758 switch (pin_ctl & AC_PINCTL_VREFEN) {
1759 case AC_PINCTL_VREF_HIZ: item = 3; break;
1760 case AC_PINCTL_VREF_50: item = 4; break;
1761 case AC_PINCTL_VREF_GRD: item = 5; break;
1762 case AC_PINCTL_VREF_80: item = 6; break;
1763 case AC_PINCTL_VREF_100: item = 7; break;
1766 ucontrol->value.enumerated.item[0] = item;
1770 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1772 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1773 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1774 static unsigned int ctls[] = {
1775 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
1776 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
1777 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
1778 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
1779 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
1780 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
1782 unsigned int old_ctl, new_ctl;
1784 old_ctl = snd_hda_codec_read(codec, nid, 0,
1785 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1786 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
1787 if (old_ctl != new_ctl) {
1788 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, new_ctl);
1789 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1790 ucontrol->value.enumerated.item[0] >= 3 ? 0xb080 : 0xb000);
1796 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1798 static char *texts[] = {
1799 "Front", "Surround", "CLFE", "Side"
1801 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1803 uinfo->value.enumerated.items = 4;
1804 if (uinfo->value.enumerated.item >= 4)
1805 uinfo->value.enumerated.item = 3;
1806 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1810 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1812 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1813 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1816 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
1817 ucontrol->value.enumerated.item[0] = sel & 3;
1821 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1823 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1824 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
1827 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
1828 if (ucontrol->value.enumerated.item[0] != sel) {
1829 sel = ucontrol->value.enumerated.item[0] & 3;
1830 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, sel);
1836 #define PIN_CTL_TEST(xname,nid) { \
1837 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1839 .info = alc_test_pin_ctl_info, \
1840 .get = alc_test_pin_ctl_get, \
1841 .put = alc_test_pin_ctl_put, \
1842 .private_value = nid \
1845 #define PIN_SRC_TEST(xname,nid) { \
1846 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1848 .info = alc_test_pin_src_info, \
1849 .get = alc_test_pin_src_get, \
1850 .put = alc_test_pin_src_put, \
1851 .private_value = nid \
1854 static struct snd_kcontrol_new alc880_test_mixer[] = {
1855 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1856 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1857 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
1858 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1859 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1860 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1861 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
1862 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
1863 PIN_CTL_TEST("Front Pin Mode", 0x14),
1864 PIN_CTL_TEST("Surround Pin Mode", 0x15),
1865 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
1866 PIN_CTL_TEST("Side Pin Mode", 0x17),
1867 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
1868 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
1869 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
1870 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
1871 PIN_SRC_TEST("In-1 Pin Source", 0x18),
1872 PIN_SRC_TEST("In-2 Pin Source", 0x19),
1873 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
1874 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
1875 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
1876 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
1877 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
1878 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
1879 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
1880 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
1881 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
1882 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
1883 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
1884 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
1886 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1887 .name = "Channel Mode",
1888 .info = alc_ch_mode_info,
1889 .get = alc_ch_mode_get,
1890 .put = alc_ch_mode_put,
1895 static struct hda_verb alc880_test_init_verbs[] = {
1896 /* Unmute inputs of 0x0c - 0x0f */
1897 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1898 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1899 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1900 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1901 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1902 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1903 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1904 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1905 /* Vol output for 0x0c-0x0f */
1906 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1907 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1908 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1909 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1910 /* Set output pins 0x14-0x17 */
1911 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1912 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1913 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1914 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1915 /* Unmute output pins 0x14-0x17 */
1916 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1917 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1918 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1919 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1920 /* Set input pins 0x18-0x1c */
1921 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1922 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1923 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1924 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1925 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1926 /* Mute input pins 0x18-0x1b */
1927 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1928 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1929 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1930 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1932 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1933 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1934 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1935 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1936 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1937 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1938 /* Analog input/passthru */
1939 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1940 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1941 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1942 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1943 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1951 static struct hda_board_config alc880_cfg_tbl[] = {
1952 /* Back 3 jack, front 2 jack */
1953 { .modelname = "3stack", .config = ALC880_3ST },
1954 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe200, .config = ALC880_3ST },
1955 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe201, .config = ALC880_3ST },
1956 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe202, .config = ALC880_3ST },
1957 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe203, .config = ALC880_3ST },
1958 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe204, .config = ALC880_3ST },
1959 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe205, .config = ALC880_3ST },
1960 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe206, .config = ALC880_3ST },
1961 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe207, .config = ALC880_3ST },
1962 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe208, .config = ALC880_3ST },
1963 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe209, .config = ALC880_3ST },
1964 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20a, .config = ALC880_3ST },
1965 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20b, .config = ALC880_3ST },
1966 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20c, .config = ALC880_3ST },
1967 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20d, .config = ALC880_3ST },
1968 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20e, .config = ALC880_3ST },
1969 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe20f, .config = ALC880_3ST },
1970 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe210, .config = ALC880_3ST },
1971 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe211, .config = ALC880_3ST },
1972 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe214, .config = ALC880_3ST },
1973 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe302, .config = ALC880_3ST },
1974 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe303, .config = ALC880_3ST },
1975 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe304, .config = ALC880_3ST },
1976 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe306, .config = ALC880_3ST },
1977 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe307, .config = ALC880_3ST },
1978 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe404, .config = ALC880_3ST },
1979 { .pci_subvendor = 0x8086, .pci_subdevice = 0xa101, .config = ALC880_3ST },
1980 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3031, .config = ALC880_3ST },
1981 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4036, .config = ALC880_3ST },
1982 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4037, .config = ALC880_3ST },
1983 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4038, .config = ALC880_3ST },
1984 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4040, .config = ALC880_3ST },
1985 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4041, .config = ALC880_3ST },
1987 { .pci_subvendor = 0x19db, .pci_subdevice = 0x4188, .config = ALC880_TCL_S700 },
1989 /* Back 3 jack, front 2 jack (Internal add Aux-In) */
1990 { .pci_subvendor = 0x1025, .pci_subdevice = 0xe310, .config = ALC880_3ST },
1991 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81d6, .config = ALC880_3ST },
1992 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81a0, .config = ALC880_3ST },
1994 /* Back 3 jack plus 1 SPDIF out jack, front 2 jack */
1995 { .modelname = "3stack-digout", .config = ALC880_3ST_DIG },
1996 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe308, .config = ALC880_3ST_DIG },
1997 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0070, .config = ALC880_3ST_DIG },
1998 /* Clevo m520G NB */
1999 { .pci_subvendor = 0x1558, .pci_subdevice = 0x0520, .config = ALC880_CLEVO },
2001 /* Back 3 jack plus 1 SPDIF out jack, front 2 jack (Internal add Aux-In)*/
2002 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe305, .config = ALC880_3ST_DIG },
2003 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd402, .config = ALC880_3ST_DIG },
2004 { .pci_subvendor = 0x1025, .pci_subdevice = 0xe309, .config = ALC880_3ST_DIG },
2006 /* Back 5 jack, front 2 jack */
2007 { .modelname = "5stack", .config = ALC880_5ST },
2008 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3033, .config = ALC880_5ST },
2009 { .pci_subvendor = 0x107b, .pci_subdevice = 0x4039, .config = ALC880_5ST },
2010 { .pci_subvendor = 0x107b, .pci_subdevice = 0x3032, .config = ALC880_5ST },
2011 { .pci_subvendor = 0x103c, .pci_subdevice = 0x2a09, .config = ALC880_5ST },
2012 { .pci_subvendor = 0x1043, .pci_subdevice = 0x814e, .config = ALC880_5ST },
2014 /* Back 5 jack plus 1 SPDIF out jack, front 2 jack */
2015 { .modelname = "5stack-digout", .config = ALC880_5ST_DIG },
2016 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe224, .config = ALC880_5ST_DIG },
2017 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe400, .config = ALC880_5ST_DIG },
2018 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe401, .config = ALC880_5ST_DIG },
2019 { .pci_subvendor = 0x8086, .pci_subdevice = 0xe402, .config = ALC880_5ST_DIG },
2020 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd400, .config = ALC880_5ST_DIG },
2021 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd401, .config = ALC880_5ST_DIG },
2022 { .pci_subvendor = 0x8086, .pci_subdevice = 0xa100, .config = ALC880_5ST_DIG },
2023 { .pci_subvendor = 0x1565, .pci_subdevice = 0x8202, .config = ALC880_5ST_DIG },
2024 { .pci_subvendor = 0x1019, .pci_subdevice = 0xa880, .config = ALC880_5ST_DIG },
2025 { .pci_subvendor = 0xa0a0, .pci_subdevice = 0x0560,
2026 .config = ALC880_5ST_DIG }, /* Aopen i915GMm-HFS */
2027 /* { .pci_subvendor = 0x1019, .pci_subdevice = 0xa884, .config = ALC880_5ST_DIG }, */ /* conflict with 6stack */
2028 { .pci_subvendor = 0x1695, .pci_subdevice = 0x400d, .config = ALC880_5ST_DIG },
2029 /* note subvendor = 0 below */
2030 /* { .pci_subvendor = 0x0000, .pci_subdevice = 0x8086, .config = ALC880_5ST_DIG }, */
2032 { .modelname = "w810", .config = ALC880_W810 },
2033 { .pci_subvendor = 0x161f, .pci_subdevice = 0x203d, .config = ALC880_W810 },
2035 { .modelname = "z71v", .config = ALC880_Z71V },
2036 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1964, .config = ALC880_Z71V },
2038 { .modelname = "6stack", .config = ALC880_6ST },
2039 { .pci_subvendor = 0x1043, .pci_subdevice = 0x8196, .config = ALC880_6ST }, /* ASUS P5GD1-HVM */
2040 { .pci_subvendor = 0x1043, .pci_subdevice = 0x81b4, .config = ALC880_6ST },
2041 { .pci_subvendor = 0x1019, .pci_subdevice = 0xa884, .config = ALC880_6ST }, /* Acer APFV */
2042 { .pci_subvendor = 0x1458, .pci_subdevice = 0xa102, .config = ALC880_6ST }, /* Gigabyte K8N51 */
2044 { .modelname = "6stack-digout", .config = ALC880_6ST_DIG },
2045 { .pci_subvendor = 0x2668, .pci_subdevice = 0x8086, .config = ALC880_6ST_DIG },
2046 { .pci_subvendor = 0x8086, .pci_subdevice = 0x2668, .config = ALC880_6ST_DIG },
2047 { .pci_subvendor = 0x1462, .pci_subdevice = 0x1150, .config = ALC880_6ST_DIG },
2048 { .pci_subvendor = 0xe803, .pci_subdevice = 0x1019, .config = ALC880_6ST_DIG },
2049 { .pci_subvendor = 0x1039, .pci_subdevice = 0x1234, .config = ALC880_6ST_DIG },
2050 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0077, .config = ALC880_6ST_DIG },
2051 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0078, .config = ALC880_6ST_DIG },
2052 { .pci_subvendor = 0x1025, .pci_subdevice = 0x0087, .config = ALC880_6ST_DIG },
2053 { .pci_subvendor = 0x1297, .pci_subdevice = 0xc790, .config = ALC880_6ST_DIG }, /* Shuttle ST20G5 */
2054 { .pci_subvendor = 0x1509, .pci_subdevice = 0x925d, .config = ALC880_6ST_DIG }, /* FIC P4M-915GD1 */
2056 { .modelname = "asus", .config = ALC880_ASUS },
2057 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1964, .config = ALC880_ASUS_DIG },
2058 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1973, .config = ALC880_ASUS_DIG },
2059 { .pci_subvendor = 0x1043, .pci_subdevice = 0x19b3, .config = ALC880_ASUS_DIG },
2060 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1113, .config = ALC880_ASUS_DIG },
2061 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1173, .config = ALC880_ASUS_DIG },
2062 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1993, .config = ALC880_ASUS },
2063 { .pci_subvendor = 0x1043, .pci_subdevice = 0x10c3, .config = ALC880_ASUS_DIG },
2064 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1133, .config = ALC880_ASUS },
2065 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1123, .config = ALC880_ASUS_DIG },
2066 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1143, .config = ALC880_ASUS },
2067 { .pci_subvendor = 0x1043, .pci_subdevice = 0x10b3, .config = ALC880_ASUS_W1V },
2068 { .pci_subvendor = 0x1558, .pci_subdevice = 0x5401, .config = ALC880_ASUS_DIG2 },
2070 { .modelname = "uniwill", .config = ALC880_UNIWILL_DIG },
2071 { .pci_subvendor = 0x1584, .pci_subdevice = 0x9050, .config = ALC880_UNIWILL_DIG },
2073 { .modelname = "F1734", .config = ALC880_F1734 },
2074 { .pci_subvendor = 0x1734, .pci_subdevice = 0x107c, .config = ALC880_F1734 },
2075 { .pci_subvendor = 0x1584, .pci_subdevice = 0x9054, .config = ALC880_F1734 },
2077 { .modelname = "lg", .config = ALC880_LG },
2078 { .pci_subvendor = 0x1854, .pci_subdevice = 0x003b, .config = ALC880_LG },
2080 #ifdef CONFIG_SND_DEBUG
2081 { .modelname = "test", .config = ALC880_TEST },
2083 { .modelname = "auto", .config = ALC880_AUTO },
2089 * ALC880 codec presets
2091 static struct alc_config_preset alc880_presets[] = {
2093 .mixers = { alc880_three_stack_mixer },
2094 .init_verbs = { alc880_volume_init_verbs, alc880_pin_3stack_init_verbs },
2095 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2096 .dac_nids = alc880_dac_nids,
2097 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2098 .channel_mode = alc880_threestack_modes,
2099 .input_mux = &alc880_capture_source,
2101 [ALC880_3ST_DIG] = {
2102 .mixers = { alc880_three_stack_mixer },
2103 .init_verbs = { alc880_volume_init_verbs, alc880_pin_3stack_init_verbs },
2104 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2105 .dac_nids = alc880_dac_nids,
2106 .dig_out_nid = ALC880_DIGOUT_NID,
2107 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2108 .channel_mode = alc880_threestack_modes,
2109 .input_mux = &alc880_capture_source,
2111 [ALC880_TCL_S700] = {
2112 .mixers = { alc880_tcl_s700_mixer },
2113 .init_verbs = { alc880_volume_init_verbs,
2114 alc880_pin_tcl_S700_init_verbs,
2115 alc880_gpio2_init_verbs },
2116 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2117 .dac_nids = alc880_dac_nids,
2119 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2120 .channel_mode = alc880_2_jack_modes,
2121 .input_mux = &alc880_capture_source,
2124 .mixers = { alc880_three_stack_mixer, alc880_five_stack_mixer},
2125 .init_verbs = { alc880_volume_init_verbs, alc880_pin_5stack_init_verbs },
2126 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2127 .dac_nids = alc880_dac_nids,
2128 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2129 .channel_mode = alc880_fivestack_modes,
2130 .input_mux = &alc880_capture_source,
2132 [ALC880_5ST_DIG] = {
2133 .mixers = { alc880_three_stack_mixer, alc880_five_stack_mixer },
2134 .init_verbs = { alc880_volume_init_verbs, alc880_pin_5stack_init_verbs },
2135 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2136 .dac_nids = alc880_dac_nids,
2137 .dig_out_nid = ALC880_DIGOUT_NID,
2138 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2139 .channel_mode = alc880_fivestack_modes,
2140 .input_mux = &alc880_capture_source,
2143 .mixers = { alc880_six_stack_mixer },
2144 .init_verbs = { alc880_volume_init_verbs, alc880_pin_6stack_init_verbs },
2145 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2146 .dac_nids = alc880_6st_dac_nids,
2147 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2148 .channel_mode = alc880_sixstack_modes,
2149 .input_mux = &alc880_6stack_capture_source,
2151 [ALC880_6ST_DIG] = {
2152 .mixers = { alc880_six_stack_mixer },
2153 .init_verbs = { alc880_volume_init_verbs, alc880_pin_6stack_init_verbs },
2154 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2155 .dac_nids = alc880_6st_dac_nids,
2156 .dig_out_nid = ALC880_DIGOUT_NID,
2157 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2158 .channel_mode = alc880_sixstack_modes,
2159 .input_mux = &alc880_6stack_capture_source,
2162 .mixers = { alc880_w810_base_mixer },
2163 .init_verbs = { alc880_volume_init_verbs, alc880_pin_w810_init_verbs,
2164 alc880_gpio2_init_verbs },
2165 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2166 .dac_nids = alc880_w810_dac_nids,
2167 .dig_out_nid = ALC880_DIGOUT_NID,
2168 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2169 .channel_mode = alc880_w810_modes,
2170 .input_mux = &alc880_capture_source,
2173 .mixers = { alc880_z71v_mixer },
2174 .init_verbs = { alc880_volume_init_verbs, alc880_pin_z71v_init_verbs },
2175 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2176 .dac_nids = alc880_z71v_dac_nids,
2177 .dig_out_nid = ALC880_DIGOUT_NID,
2179 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2180 .channel_mode = alc880_2_jack_modes,
2181 .input_mux = &alc880_capture_source,
2184 .mixers = { alc880_f1734_mixer },
2185 .init_verbs = { alc880_volume_init_verbs, alc880_pin_f1734_init_verbs },
2186 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2187 .dac_nids = alc880_f1734_dac_nids,
2189 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2190 .channel_mode = alc880_2_jack_modes,
2191 .input_mux = &alc880_capture_source,
2194 .mixers = { alc880_asus_mixer },
2195 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2196 alc880_gpio1_init_verbs },
2197 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2198 .dac_nids = alc880_asus_dac_nids,
2199 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2200 .channel_mode = alc880_asus_modes,
2201 .input_mux = &alc880_capture_source,
2203 [ALC880_ASUS_DIG] = {
2204 .mixers = { alc880_asus_mixer },
2205 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2206 alc880_gpio1_init_verbs },
2207 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2208 .dac_nids = alc880_asus_dac_nids,
2209 .dig_out_nid = ALC880_DIGOUT_NID,
2210 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2211 .channel_mode = alc880_asus_modes,
2212 .input_mux = &alc880_capture_source,
2214 [ALC880_ASUS_DIG2] = {
2215 .mixers = { alc880_asus_mixer },
2216 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2217 alc880_gpio2_init_verbs }, /* use GPIO2 */
2218 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2219 .dac_nids = alc880_asus_dac_nids,
2220 .dig_out_nid = ALC880_DIGOUT_NID,
2221 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2222 .channel_mode = alc880_asus_modes,
2223 .input_mux = &alc880_capture_source,
2225 [ALC880_ASUS_W1V] = {
2226 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2227 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs,
2228 alc880_gpio1_init_verbs },
2229 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2230 .dac_nids = alc880_asus_dac_nids,
2231 .dig_out_nid = ALC880_DIGOUT_NID,
2232 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2233 .channel_mode = alc880_asus_modes,
2234 .input_mux = &alc880_capture_source,
2236 [ALC880_UNIWILL_DIG] = {
2237 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2238 .init_verbs = { alc880_volume_init_verbs, alc880_pin_asus_init_verbs },
2239 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2240 .dac_nids = alc880_asus_dac_nids,
2241 .dig_out_nid = ALC880_DIGOUT_NID,
2242 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2243 .channel_mode = alc880_asus_modes,
2244 .input_mux = &alc880_capture_source,
2247 .mixers = { alc880_three_stack_mixer },
2248 .init_verbs = { alc880_volume_init_verbs,
2249 alc880_pin_clevo_init_verbs },
2250 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2251 .dac_nids = alc880_dac_nids,
2253 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2254 .channel_mode = alc880_threestack_modes,
2255 .input_mux = &alc880_capture_source,
2258 .mixers = { alc880_lg_mixer },
2259 .init_verbs = { alc880_volume_init_verbs,
2260 alc880_lg_init_verbs },
2261 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2262 .dac_nids = alc880_lg_dac_nids,
2263 .dig_out_nid = ALC880_DIGOUT_NID,
2264 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2265 .channel_mode = alc880_lg_ch_modes,
2266 .input_mux = &alc880_lg_capture_source,
2267 .unsol_event = alc880_lg_unsol_event,
2268 .init_hook = alc880_lg_automute,
2270 #ifdef CONFIG_SND_DEBUG
2272 .mixers = { alc880_test_mixer },
2273 .init_verbs = { alc880_test_init_verbs },
2274 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2275 .dac_nids = alc880_test_dac_nids,
2276 .dig_out_nid = ALC880_DIGOUT_NID,
2277 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2278 .channel_mode = alc880_test_modes,
2279 .input_mux = &alc880_test_capture_source,
2285 * Automatic parse of I/O pins from the BIOS configuration
2288 #define NUM_CONTROL_ALLOC 32
2289 #define NUM_VERB_ALLOC 32
2293 ALC_CTL_WIDGET_MUTE,
2296 static struct snd_kcontrol_new alc880_control_templates[] = {
2297 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2298 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2299 HDA_BIND_MUTE(NULL, 0, 0, 0),
2302 /* add dynamic controls */
2303 static int add_control(struct alc_spec *spec, int type, const char *name, unsigned long val)
2305 struct snd_kcontrol_new *knew;
2307 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2308 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2310 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2313 if (spec->kctl_alloc) {
2314 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2315 kfree(spec->kctl_alloc);
2317 spec->kctl_alloc = knew;
2318 spec->num_kctl_alloc = num;
2321 knew = &spec->kctl_alloc[spec->num_kctl_used];
2322 *knew = alc880_control_templates[type];
2323 knew->name = kstrdup(name, GFP_KERNEL);
2326 knew->private_value = val;
2327 spec->num_kctl_used++;
2331 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2332 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2333 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2334 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2335 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
2336 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
2337 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
2338 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
2339 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
2340 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
2341 #define ALC880_PIN_CD_NID 0x1c
2343 /* fill in the dac_nids table from the parsed pin configuration */
2344 static int alc880_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
2350 memset(assigned, 0, sizeof(assigned));
2351 spec->multiout.dac_nids = spec->private_dac_nids;
2353 /* check the pins hardwired to audio widget */
2354 for (i = 0; i < cfg->line_outs; i++) {
2355 nid = cfg->line_out_pins[i];
2356 if (alc880_is_fixed_pin(nid)) {
2357 int idx = alc880_fixed_pin_idx(nid);
2358 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
2362 /* left pins can be connect to any audio widget */
2363 for (i = 0; i < cfg->line_outs; i++) {
2364 nid = cfg->line_out_pins[i];
2365 if (alc880_is_fixed_pin(nid))
2367 /* search for an empty channel */
2368 for (j = 0; j < cfg->line_outs; j++) {
2369 if (! assigned[j]) {
2370 spec->multiout.dac_nids[i] = alc880_idx_to_dac(j);
2376 spec->multiout.num_dacs = cfg->line_outs;
2380 /* add playback controls from the parsed DAC table */
2381 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
2382 const struct auto_pin_cfg *cfg)
2385 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2389 for (i = 0; i < cfg->line_outs; i++) {
2390 if (! spec->multiout.dac_nids[i])
2392 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
2395 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Center Playback Volume",
2396 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
2398 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "LFE Playback Volume",
2399 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
2401 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "Center Playback Switch",
2402 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT))) < 0)
2404 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "LFE Playback Switch",
2405 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT))) < 0)
2408 sprintf(name, "%s Playback Volume", chname[i]);
2409 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2410 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2412 sprintf(name, "%s Playback Switch", chname[i]);
2413 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2414 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2421 /* add playback controls for speaker and HP outputs */
2422 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
2432 if (alc880_is_fixed_pin(pin)) {
2433 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
2434 /* specify the DAC as the extra output */
2435 if (! spec->multiout.hp_nid)
2436 spec->multiout.hp_nid = nid;
2438 spec->multiout.extra_out_nid[0] = nid;
2439 /* control HP volume/switch on the output mixer amp */
2440 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
2441 sprintf(name, "%s Playback Volume", pfx);
2442 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2443 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2445 sprintf(name, "%s Playback Switch", pfx);
2446 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
2447 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2449 } else if (alc880_is_multi_pin(pin)) {
2450 /* set manual connection */
2451 /* we have only a switch on HP-out PIN */
2452 sprintf(name, "%s Playback Switch", pfx);
2453 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
2454 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT))) < 0)
2460 /* create input playback/capture controls for the given pin */
2461 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin, const char *ctlname,
2462 int idx, hda_nid_t mix_nid)
2467 sprintf(name, "%s Playback Volume", ctlname);
2468 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
2469 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT))) < 0)
2471 sprintf(name, "%s Playback Switch", ctlname);
2472 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
2473 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT))) < 0)
2478 /* create playback/capture controls for input pins */
2479 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
2480 const struct auto_pin_cfg *cfg)
2482 struct hda_input_mux *imux = &spec->private_imux;
2485 for (i = 0; i < AUTO_PIN_LAST; i++) {
2486 if (alc880_is_input_pin(cfg->input_pins[i])) {
2487 idx = alc880_input_pin_idx(cfg->input_pins[i]);
2488 err = new_analog_input(spec, cfg->input_pins[i],
2489 auto_pin_cfg_labels[i],
2493 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
2494 imux->items[imux->num_items].index = alc880_input_pin_idx(cfg->input_pins[i]);
2501 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
2502 hda_nid_t nid, int pin_type,
2506 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2507 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2508 /* need the manual connection? */
2509 if (alc880_is_multi_pin(nid)) {
2510 struct alc_spec *spec = codec->spec;
2511 int idx = alc880_multi_pin_idx(nid);
2512 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
2513 AC_VERB_SET_CONNECT_SEL,
2514 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
2518 static void alc880_auto_init_multi_out(struct hda_codec *codec)
2520 struct alc_spec *spec = codec->spec;
2523 for (i = 0; i < spec->autocfg.line_outs; i++) {
2524 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2525 alc880_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2529 static void alc880_auto_init_extra_out(struct hda_codec *codec)
2531 struct alc_spec *spec = codec->spec;
2534 pin = spec->autocfg.speaker_pins[0];
2535 if (pin) /* connect to front */
2536 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
2537 pin = spec->autocfg.hp_pin;
2538 if (pin) /* connect to front */
2539 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2542 static void alc880_auto_init_analog_input(struct hda_codec *codec)
2544 struct alc_spec *spec = codec->spec;
2547 for (i = 0; i < AUTO_PIN_LAST; i++) {
2548 hda_nid_t nid = spec->autocfg.input_pins[i];
2549 if (alc880_is_input_pin(nid)) {
2550 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2551 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
2552 if (nid != ALC880_PIN_CD_NID)
2553 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2559 /* parse the BIOS configuration and set up the alc_spec */
2560 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
2561 static int alc880_parse_auto_config(struct hda_codec *codec)
2563 struct alc_spec *spec = codec->spec;
2565 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
2567 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
2568 alc880_ignore)) < 0)
2570 if (! spec->autocfg.line_outs)
2571 return 0; /* can't find valid BIOS pin config */
2573 if ((err = alc880_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
2574 (err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
2575 (err = alc880_auto_create_extra_out(spec,
2576 spec->autocfg.speaker_pins[0],
2578 (err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pin,
2579 "Headphone")) < 0 ||
2580 (err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
2583 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2585 if (spec->autocfg.dig_out_pin)
2586 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
2587 if (spec->autocfg.dig_in_pin)
2588 spec->dig_in_nid = ALC880_DIGIN_NID;
2590 if (spec->kctl_alloc)
2591 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
2593 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
2595 spec->input_mux = &spec->private_imux;
2600 /* additional initialization for auto-configuration model */
2601 static void alc880_auto_init(struct hda_codec *codec)
2603 alc880_auto_init_multi_out(codec);
2604 alc880_auto_init_extra_out(codec);
2605 alc880_auto_init_analog_input(codec);
2609 * OK, here we have finally the patch for ALC880
2612 static int patch_alc880(struct hda_codec *codec)
2614 struct alc_spec *spec;
2618 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2624 board_config = snd_hda_check_board_config(codec, alc880_cfg_tbl);
2625 if (board_config < 0 || board_config >= ALC880_MODEL_LAST) {
2626 printk(KERN_INFO "hda_codec: Unknown model for ALC880, trying auto-probe from BIOS...\n");
2627 board_config = ALC880_AUTO;
2630 if (board_config == ALC880_AUTO) {
2631 /* automatic parse from the BIOS config */
2632 err = alc880_parse_auto_config(codec);
2637 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using 3-stack mode...\n");
2638 board_config = ALC880_3ST;
2642 if (board_config != ALC880_AUTO)
2643 setup_preset(spec, &alc880_presets[board_config]);
2645 spec->stream_name_analog = "ALC880 Analog";
2646 spec->stream_analog_playback = &alc880_pcm_analog_playback;
2647 spec->stream_analog_capture = &alc880_pcm_analog_capture;
2649 spec->stream_name_digital = "ALC880 Digital";
2650 spec->stream_digital_playback = &alc880_pcm_digital_playback;
2651 spec->stream_digital_capture = &alc880_pcm_digital_capture;
2653 if (! spec->adc_nids && spec->input_mux) {
2654 /* check whether NID 0x07 is valid */
2655 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
2656 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
2657 if (wcap != AC_WID_AUD_IN) {
2658 spec->adc_nids = alc880_adc_nids_alt;
2659 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
2660 spec->mixers[spec->num_mixers] = alc880_capture_alt_mixer;
2663 spec->adc_nids = alc880_adc_nids;
2664 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
2665 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
2670 codec->patch_ops = alc_patch_ops;
2671 if (board_config == ALC880_AUTO)
2672 spec->init_hook = alc880_auto_init;
2682 static hda_nid_t alc260_dac_nids[1] = {
2687 static hda_nid_t alc260_adc_nids[1] = {
2692 static hda_nid_t alc260_adc_nids_alt[1] = {
2697 static hda_nid_t alc260_hp_adc_nids[2] = {
2702 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
2703 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
2705 static hda_nid_t alc260_dual_adc_nids[2] = {
2710 #define ALC260_DIGOUT_NID 0x03
2711 #define ALC260_DIGIN_NID 0x06
2713 static struct hda_input_mux alc260_capture_source = {
2717 { "Front Mic", 0x1 },
2723 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
2724 * headphone jack and the internal CD lines.
2726 static struct hda_input_mux alc260_fujitsu_capture_source = {
2729 { "Mic/Line", 0x0 },
2731 { "Headphone", 0x2 },
2735 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configutation to
2736 * the Fujitsu S702x, but jacks are marked differently. We won't allow
2737 * retasking the Headphone jack, so it won't be available here.
2739 static struct hda_input_mux alc260_acer_capture_source = {
2749 * This is just place-holder, so there's something for alc_build_pcms to look
2750 * at when it calculates the maximum number of channels. ALC260 has no mixer
2751 * element which allows changing the channel mode, so the verb list is
2754 static struct hda_channel_mode alc260_modes[1] = {
2759 /* Mixer combinations
2761 * basic: base_output + input + pc_beep + capture
2762 * HP: base_output + input + capture_alt
2763 * HP_3013: hp_3013 + input + capture
2764 * fujitsu: fujitsu + capture
2765 * acer: acer + capture
2768 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
2769 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2770 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
2771 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
2772 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
2773 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
2774 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
2778 static struct snd_kcontrol_new alc260_input_mixer[] = {
2779 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2780 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2781 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
2782 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
2783 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
2784 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
2785 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
2786 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
2790 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
2791 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
2792 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
2796 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
2797 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
2798 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
2799 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
2800 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
2801 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2802 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
2803 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
2804 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
2808 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
2809 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2810 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
2811 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
2812 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2813 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2814 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
2815 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
2816 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
2817 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
2818 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
2819 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
2820 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
2824 static struct snd_kcontrol_new alc260_acer_mixer[] = {
2825 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
2826 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
2827 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
2828 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
2829 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
2830 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
2831 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
2832 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
2833 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
2834 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
2835 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
2836 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
2840 /* capture mixer elements */
2841 static struct snd_kcontrol_new alc260_capture_mixer[] = {
2842 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
2843 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
2844 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
2845 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
2847 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2848 /* The multiple "Capture Source" controls confuse alsamixer
2849 * So call somewhat different..
2850 * FIXME: the controls appear in the "playback" view!
2852 /* .name = "Capture Source", */
2853 .name = "Input Source",
2855 .info = alc_mux_enum_info,
2856 .get = alc_mux_enum_get,
2857 .put = alc_mux_enum_put,
2862 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
2863 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
2864 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
2866 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2867 /* The multiple "Capture Source" controls confuse alsamixer
2868 * So call somewhat different..
2869 * FIXME: the controls appear in the "playback" view!
2871 /* .name = "Capture Source", */
2872 .name = "Input Source",
2874 .info = alc_mux_enum_info,
2875 .get = alc_mux_enum_get,
2876 .put = alc_mux_enum_put,
2882 * initialization verbs
2884 static struct hda_verb alc260_init_verbs[] = {
2885 /* Line In pin widget for input */
2886 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2887 /* CD pin widget for input */
2888 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2889 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2890 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2891 /* Mic2 (front panel) pin widget for input and vref at 80% */
2892 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2893 /* LINE-2 is used for line-out in rear */
2894 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2895 /* select line-out */
2896 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
2898 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2900 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2902 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2903 /* mute capture amp left and right */
2904 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2905 /* set connection select to line in (default select for this ADC) */
2906 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
2907 /* mute capture amp left and right */
2908 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2909 /* set connection select to line in (default select for this ADC) */
2910 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
2911 /* set vol=0 Line-Out mixer amp left and right */
2912 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2913 /* unmute pin widget amp left and right (no gain on this amp) */
2914 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2915 /* set vol=0 HP mixer amp left and right */
2916 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2917 /* unmute pin widget amp left and right (no gain on this amp) */
2918 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2919 /* set vol=0 Mono mixer amp left and right */
2920 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2921 /* unmute pin widget amp left and right (no gain on this amp) */
2922 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2923 /* unmute LINE-2 out pin */
2924 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2925 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
2927 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
2929 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
2931 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2932 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
2933 /* mute Front out path */
2934 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2935 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2936 /* mute Headphone out path */
2937 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2938 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2939 /* mute Mono out path */
2940 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2941 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2945 static struct hda_verb alc260_hp_init_verbs[] = {
2946 /* Headphone and output */
2947 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
2949 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
2950 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2951 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
2952 /* Mic2 (front panel) pin widget for input and vref at 80% */
2953 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
2954 /* Line In pin widget for input */
2955 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
2956 /* Line-2 pin widget for output */
2957 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
2958 /* CD pin widget for input */
2959 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
2960 /* unmute amp left and right */
2961 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
2962 /* set connection select to line in (default select for this ADC) */
2963 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
2964 /* unmute Line-Out mixer amp left and right (volume = 0) */
2965 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
2966 /* mute pin widget amp left and right (no gain on this amp) */
2967 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
2968 /* unmute HP mixer amp left and right (volume = 0) */
2969 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
2970 /* mute pin widget amp left and right (no gain on this amp) */
2971 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
2972 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
2974 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
2975 /* unmute Line In */
2976 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
2978 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
2979 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
2980 /* Unmute Front out path */
2981 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
2982 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
2983 /* Unmute Headphone out path */
2984 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
2985 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
2986 /* Unmute Mono out path */
2987 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
2988 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
2992 static struct hda_verb alc260_hp_3013_init_verbs[] = {
2993 /* Line out and output */
2994 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
2996 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
2997 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2998 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
2999 /* Mic2 (front panel) pin widget for input and vref at 80% */
3000 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3001 /* Line In pin widget for input */
3002 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3003 /* Headphone pin widget for output */
3004 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3005 /* CD pin widget for input */
3006 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3007 /* unmute amp left and right */
3008 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3009 /* set connection select to line in (default select for this ADC) */
3010 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3011 /* unmute Line-Out mixer amp left and right (volume = 0) */
3012 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3013 /* mute pin widget amp left and right (no gain on this amp) */
3014 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3015 /* unmute HP mixer amp left and right (volume = 0) */
3016 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3017 /* mute pin widget amp left and right (no gain on this amp) */
3018 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3019 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 & Line In 2 = 0x03 */
3021 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
3022 /* unmute Line In */
3023 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
3025 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3026 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3027 /* Unmute Front out path */
3028 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3029 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3030 /* Unmute Headphone out path */
3031 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3032 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3033 /* Unmute Mono out path */
3034 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3035 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3039 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3042 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3043 /* Disable all GPIOs */
3044 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3045 /* Internal speaker is connected to headphone pin */
3046 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3047 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3048 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3049 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3050 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3051 /* Ensure all other unused pins are disabled and muted. */
3052 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3053 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3054 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3055 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3056 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3057 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3058 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3059 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3061 /* Disable digital (SPDIF) pins */
3062 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3063 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3065 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3066 * when acting as an output.
3068 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3070 /* Start with output sum widgets muted and their output gains at min */
3071 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3072 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3073 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3074 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3075 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3076 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3077 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3078 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3079 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3081 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3082 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3083 /* Unmute Line1 pin widget output buffer since it starts as an output.
3084 * If the pin mode is changed by the user the pin mode control will
3085 * take care of enabling the pin's input/output buffers as needed.
3086 * Therefore there's no need to enable the input buffer at this
3089 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3090 /* Unmute input buffer of pin widget used for Line-in (no equiv
3093 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3095 /* Mute capture amp left and right */
3096 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3097 /* Set ADC connection select to match default mixer setting - line
3100 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3102 /* Do the same for the second ADC: mute capture input amp and
3103 * set ADC connection to line in (on mic1 pin)
3105 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3106 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3108 /* Mute all inputs to mixer widget (even unconnected ones) */
3109 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3110 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3111 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3112 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3113 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3114 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3115 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3116 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3121 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3122 * similar laptops (adapted from Fujitsu init verbs).
3124 static struct hda_verb alc260_acer_init_verbs[] = {
3125 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3126 * the headphone jack. Turn this on and rely on the standard mute
3127 * methods whenever the user wants to turn these outputs off.
3129 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3130 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3131 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3132 /* Internal speaker/Headphone jack is connected to Line-out pin */
3133 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3134 /* Internal microphone/Mic jack is connected to Mic1 pin */
3135 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3136 /* Line In jack is connected to Line1 pin */
3137 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3138 /* Ensure all other unused pins are disabled and muted. */
3139 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3140 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3141 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3142 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3143 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3144 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3145 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3146 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3147 /* Disable digital (SPDIF) pins */
3148 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3149 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3151 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3152 * bus when acting as outputs.
3154 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3155 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3157 /* Start with output sum widgets muted and their output gains at min */
3158 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3159 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3160 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3161 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3162 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3163 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3164 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3165 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3166 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3168 /* Unmute Line-out pin widget amp left and right (no equiv mixer ctrl) */
3169 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3170 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
3171 * inputs. If the pin mode is changed by the user the pin mode control
3172 * will take care of enabling the pin's input/output buffers as needed.
3173 * Therefore there's no need to enable the input buffer at this
3176 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3177 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3179 /* Mute capture amp left and right */
3180 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3181 /* Set ADC connection select to match default mixer setting - mic
3184 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3186 /* Do similar with the second ADC: mute capture input amp and
3187 * set ADC connection to line (on line1 pin)
3189 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3190 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3192 /* Mute all inputs to mixer widget (even unconnected ones) */
3193 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3194 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3195 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3196 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3197 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3198 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3199 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3200 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3205 /* Test configuration for debugging, modelled after the ALC880 test
3208 #ifdef CONFIG_SND_DEBUG
3209 static hda_nid_t alc260_test_dac_nids[1] = {
3212 static hda_nid_t alc260_test_adc_nids[2] = {
3215 /* This is a bit messy since the two input muxes in the ALC260 have slight
3216 * variations in their signal assignments. The ideal way to deal with this
3217 * is to extend alc_spec.input_mux to allow a different input MUX for each
3218 * ADC. For the purposes of the test model it's sufficient to just list
3219 * both options for affected signal indices. The separate input mux
3220 * functionality only needs to be considered if a model comes along which
3221 * actually uses signals 0x5, 0x6 and 0x7 for something which makes sense to
3224 static struct hda_input_mux alc260_test_capture_source = {
3227 { "MIC1 pin", 0x0 },
3228 { "MIC2 pin", 0x1 },
3229 { "LINE1 pin", 0x2 },
3230 { "LINE2 pin", 0x3 },
3232 { "LINE-OUT pin (cap1), Mixer (cap2)", 0x5 },
3233 { "HP-OUT pin (cap1), LINE-OUT pin (cap2)", 0x6 },
3234 { "HP-OUT pin (cap2 only)", 0x7 },
3237 static struct snd_kcontrol_new alc260_test_mixer[] = {
3238 /* Output driver widgets */
3239 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3240 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3241 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3242 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
3243 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3244 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
3246 /* Modes for retasking pin widgets */
3247 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
3248 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
3249 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
3250 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
3251 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
3252 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
3254 /* Loopback mixer controls */
3255 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
3256 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
3257 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
3258 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
3259 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
3260 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
3261 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
3262 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
3263 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3264 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3265 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3266 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3267 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
3268 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
3269 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
3270 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
3272 /* Controls for GPIO pins, assuming they are configured as outputs */
3273 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
3274 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
3275 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
3276 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
3278 /* Switches to allow the digital IO pins to be enabled. The datasheet
3279 * is ambigious as to which NID is which; testing on laptops which
3280 * make this output available should provide clarification.
3282 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
3283 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
3287 static struct hda_verb alc260_test_init_verbs[] = {
3288 /* Enable all GPIOs as outputs with an initial value of 0 */
3289 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
3290 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3291 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
3293 /* Enable retasking pins as output, initially without power amp */
3294 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3295 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3296 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3297 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3298 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3299 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3301 /* Disable digital (SPDIF) pins initially, but users can enable
3302 * them via a mixer switch. In the case of SPDIF-out, this initverb
3303 * payload also sets the generation to 0, output to be in "consumer"
3304 * PCM format, copyright asserted, no pre-emphasis and no validity
3307 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3308 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3310 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
3311 * OUT1 sum bus when acting as an output.
3313 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3314 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
3315 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3316 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
3318 /* Start with output sum widgets muted and their output gains at min */
3319 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3320 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3321 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3322 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3323 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3324 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3325 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3326 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3327 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3329 /* Unmute retasking pin widget output buffers since the default
3330 * state appears to be output. As the pin mode is changed by the
3331 * user the pin mode control will take care of enabling the pin's
3332 * input/output buffers as needed.
3334 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3335 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3336 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3337 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3338 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3339 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3340 /* Also unmute the mono-out pin widget */
3341 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3343 /* Mute capture amp left and right */
3344 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3345 /* Set ADC connection select to match default mixer setting (mic1
3348 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3350 /* Do the same for the second ADC: mute capture input amp and
3351 * set ADC connection to mic1 pin
3353 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3354 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3356 /* Mute all inputs to mixer widget (even unconnected ones) */
3357 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3358 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3359 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3360 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3361 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3362 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3363 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3364 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3370 static struct hda_pcm_stream alc260_pcm_analog_playback = {
3376 static struct hda_pcm_stream alc260_pcm_analog_capture = {
3382 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
3383 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
3386 * for BIOS auto-configuration
3389 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
3393 unsigned long vol_val, sw_val;
3397 if (nid >= 0x0f && nid < 0x11) {
3398 nid_vol = nid - 0x7;
3399 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
3400 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3401 } else if (nid == 0x11) {
3402 nid_vol = nid - 0x7;
3403 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
3404 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
3405 } else if (nid >= 0x12 && nid <= 0x15) {
3407 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
3408 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3412 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3413 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val)) < 0)
3415 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3416 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val)) < 0)
3421 /* add playback controls from the parsed DAC table */
3422 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
3423 const struct auto_pin_cfg *cfg)
3428 spec->multiout.num_dacs = 1;
3429 spec->multiout.dac_nids = spec->private_dac_nids;
3430 spec->multiout.dac_nids[0] = 0x02;
3432 nid = cfg->line_out_pins[0];
3434 err = alc260_add_playback_controls(spec, nid, "Front");
3439 nid = cfg->speaker_pins[0];
3441 err = alc260_add_playback_controls(spec, nid, "Speaker");
3448 err = alc260_add_playback_controls(spec, nid, "Headphone");
3455 /* create playback/capture controls for input pins */
3456 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
3457 const struct auto_pin_cfg *cfg)
3459 struct hda_input_mux *imux = &spec->private_imux;
3462 for (i = 0; i < AUTO_PIN_LAST; i++) {
3463 if (cfg->input_pins[i] >= 0x12) {
3464 idx = cfg->input_pins[i] - 0x12;
3465 err = new_analog_input(spec, cfg->input_pins[i],
3466 auto_pin_cfg_labels[i], idx, 0x07);
3469 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3470 imux->items[imux->num_items].index = idx;
3473 if ((cfg->input_pins[i] >= 0x0f) && (cfg->input_pins[i] <= 0x10)){
3474 idx = cfg->input_pins[i] - 0x09;
3475 err = new_analog_input(spec, cfg->input_pins[i],
3476 auto_pin_cfg_labels[i], idx, 0x07);
3479 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
3480 imux->items[imux->num_items].index = idx;
3487 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
3488 hda_nid_t nid, int pin_type,
3492 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
3493 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
3494 /* need the manual connection? */
3496 int idx = nid - 0x12;
3497 snd_hda_codec_write(codec, idx + 0x0b, 0,
3498 AC_VERB_SET_CONNECT_SEL, sel_idx);
3503 static void alc260_auto_init_multi_out(struct hda_codec *codec)
3505 struct alc_spec *spec = codec->spec;
3508 nid = spec->autocfg.line_out_pins[0];
3510 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3512 nid = spec->autocfg.speaker_pins[0];
3514 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3516 nid = spec->autocfg.hp_pin;
3518 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
3521 #define ALC260_PIN_CD_NID 0x16
3522 static void alc260_auto_init_analog_input(struct hda_codec *codec)
3524 struct alc_spec *spec = codec->spec;
3527 for (i = 0; i < AUTO_PIN_LAST; i++) {
3528 hda_nid_t nid = spec->autocfg.input_pins[i];
3530 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3531 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
3532 if (nid != ALC260_PIN_CD_NID)
3533 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3540 * generic initialization of ADC, input mixers and output mixers
3542 static struct hda_verb alc260_volume_init_verbs[] = {
3544 * Unmute ADC0-1 and set the default input to mic-in
3546 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3547 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3548 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3549 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3551 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3553 * Note: PASD motherboards uses the Line In 2 as the input for front panel
3556 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
3557 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3558 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3559 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
3560 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
3561 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
3564 * Set up output mixers (0x08 - 0x0a)
3566 /* set vol=0 to output mixers */
3567 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3568 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3569 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3570 /* set up input amps for analog loopback */
3571 /* Amp Indices: DAC = 0, mixer = 1 */
3572 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3573 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3574 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3575 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3576 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3577 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3582 static int alc260_parse_auto_config(struct hda_codec *codec)
3584 struct alc_spec *spec = codec->spec;
3587 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
3589 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3590 alc260_ignore)) < 0)
3592 if ((err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0)
3594 if (! spec->kctl_alloc)
3595 return 0; /* can't find valid BIOS pin config */
3596 if ((err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
3599 spec->multiout.max_channels = 2;
3601 if (spec->autocfg.dig_out_pin)
3602 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
3603 if (spec->kctl_alloc)
3604 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3606 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
3608 spec->input_mux = &spec->private_imux;
3610 /* check whether NID 0x04 is valid */
3611 wcap = get_wcaps(codec, 0x04);
3612 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
3613 if (wcap != AC_WID_AUD_IN) {
3614 spec->adc_nids = alc260_adc_nids_alt;
3615 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
3616 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
3618 spec->adc_nids = alc260_adc_nids;
3619 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
3620 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
3627 /* additional initialization for auto-configuration model */
3628 static void alc260_auto_init(struct hda_codec *codec)
3630 alc260_auto_init_multi_out(codec);
3631 alc260_auto_init_analog_input(codec);
3635 * ALC260 configurations
3637 static struct hda_board_config alc260_cfg_tbl[] = {
3638 { .modelname = "basic", .config = ALC260_BASIC },
3639 { .pci_subvendor = 0x104d, .pci_subdevice = 0x81bb,
3640 .config = ALC260_BASIC }, /* Sony VAIO */
3641 { .pci_subvendor = 0x152d, .pci_subdevice = 0x0729,
3642 .config = ALC260_BASIC }, /* CTL Travel Master U553W */
3643 { .modelname = "hp", .config = ALC260_HP },
3644 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3010, .config = ALC260_HP },
3645 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3011, .config = ALC260_HP },
3646 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3012, .config = ALC260_HP },
3647 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3013, .config = ALC260_HP_3013 },
3648 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3014, .config = ALC260_HP },
3649 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3015, .config = ALC260_HP },
3650 { .pci_subvendor = 0x103c, .pci_subdevice = 0x3016, .config = ALC260_HP },
3651 { .modelname = "fujitsu", .config = ALC260_FUJITSU_S702X },
3652 { .pci_subvendor = 0x10cf, .pci_subdevice = 0x1326, .config = ALC260_FUJITSU_S702X },
3653 { .modelname = "acer", .config = ALC260_ACER },
3654 { .pci_subvendor = 0x1025, .pci_subdevice = 0x008f, .config = ALC260_ACER },
3655 #ifdef CONFIG_SND_DEBUG
3656 { .modelname = "test", .config = ALC260_TEST },
3658 { .modelname = "auto", .config = ALC260_AUTO },
3662 static struct alc_config_preset alc260_presets[] = {
3664 .mixers = { alc260_base_output_mixer,
3666 alc260_pc_beep_mixer,
3667 alc260_capture_mixer },
3668 .init_verbs = { alc260_init_verbs },
3669 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3670 .dac_nids = alc260_dac_nids,
3671 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
3672 .adc_nids = alc260_adc_nids,
3673 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3674 .channel_mode = alc260_modes,
3675 .input_mux = &alc260_capture_source,
3678 .mixers = { alc260_base_output_mixer,
3680 alc260_capture_alt_mixer },
3681 .init_verbs = { alc260_hp_init_verbs },
3682 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3683 .dac_nids = alc260_dac_nids,
3684 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
3685 .adc_nids = alc260_hp_adc_nids,
3686 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3687 .channel_mode = alc260_modes,
3688 .input_mux = &alc260_capture_source,
3690 [ALC260_HP_3013] = {
3691 .mixers = { alc260_hp_3013_mixer,
3693 alc260_capture_alt_mixer },
3694 .init_verbs = { alc260_hp_3013_init_verbs },
3695 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3696 .dac_nids = alc260_dac_nids,
3697 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
3698 .adc_nids = alc260_hp_adc_nids,
3699 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3700 .channel_mode = alc260_modes,
3701 .input_mux = &alc260_capture_source,
3703 [ALC260_FUJITSU_S702X] = {
3704 .mixers = { alc260_fujitsu_mixer,
3705 alc260_capture_mixer },
3706 .init_verbs = { alc260_fujitsu_init_verbs },
3707 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3708 .dac_nids = alc260_dac_nids,
3709 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
3710 .adc_nids = alc260_dual_adc_nids,
3711 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3712 .channel_mode = alc260_modes,
3713 .input_mux = &alc260_fujitsu_capture_source,
3716 .mixers = { alc260_acer_mixer,
3717 alc260_capture_mixer },
3718 .init_verbs = { alc260_acer_init_verbs },
3719 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
3720 .dac_nids = alc260_dac_nids,
3721 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
3722 .adc_nids = alc260_dual_adc_nids,
3723 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3724 .channel_mode = alc260_modes,
3725 .input_mux = &alc260_acer_capture_source,
3727 #ifdef CONFIG_SND_DEBUG
3729 .mixers = { alc260_test_mixer,
3730 alc260_capture_mixer },
3731 .init_verbs = { alc260_test_init_verbs },
3732 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
3733 .dac_nids = alc260_test_dac_nids,
3734 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
3735 .adc_nids = alc260_test_adc_nids,
3736 .num_channel_mode = ARRAY_SIZE(alc260_modes),
3737 .channel_mode = alc260_modes,
3738 .input_mux = &alc260_test_capture_source,
3743 static int patch_alc260(struct hda_codec *codec)
3745 struct alc_spec *spec;
3746 int err, board_config;
3748 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3754 board_config = snd_hda_check_board_config(codec, alc260_cfg_tbl);
3755 if (board_config < 0 || board_config >= ALC260_MODEL_LAST) {
3756 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260\n");
3757 board_config = ALC260_AUTO;
3760 if (board_config == ALC260_AUTO) {
3761 /* automatic parse from the BIOS config */
3762 err = alc260_parse_auto_config(codec);
3767 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
3768 board_config = ALC260_BASIC;
3772 if (board_config != ALC260_AUTO)
3773 setup_preset(spec, &alc260_presets[board_config]);
3775 spec->stream_name_analog = "ALC260 Analog";
3776 spec->stream_analog_playback = &alc260_pcm_analog_playback;
3777 spec->stream_analog_capture = &alc260_pcm_analog_capture;
3779 spec->stream_name_digital = "ALC260 Digital";
3780 spec->stream_digital_playback = &alc260_pcm_digital_playback;
3781 spec->stream_digital_capture = &alc260_pcm_digital_capture;
3783 codec->patch_ops = alc_patch_ops;
3784 if (board_config == ALC260_AUTO)
3785 spec->init_hook = alc260_auto_init;
3794 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
3795 * configuration. Each pin widget can choose any input DACs and a mixer.
3796 * Each ADC is connected from a mixer of all inputs. This makes possible
3797 * 6-channel independent captures.
3799 * In addition, an independent DAC for the multi-playback (not used in this
3802 #define ALC882_DIGOUT_NID 0x06
3803 #define ALC882_DIGIN_NID 0x0a
3805 static struct hda_channel_mode alc882_ch_modes[1] = {
3809 static hda_nid_t alc882_dac_nids[4] = {
3810 /* front, rear, clfe, rear_surr */
3811 0x02, 0x03, 0x04, 0x05
3814 /* identical with ALC880 */
3815 #define alc882_adc_nids alc880_adc_nids
3816 #define alc882_adc_nids_alt alc880_adc_nids_alt
3819 /* FIXME: should be a matrix-type input source selection */
3821 static struct hda_input_mux alc882_capture_source = {
3825 { "Front Mic", 0x1 },
3831 #define alc882_mux_enum_info alc_mux_enum_info
3832 #define alc882_mux_enum_get alc_mux_enum_get
3834 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
3836 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3837 struct alc_spec *spec = codec->spec;
3838 const struct hda_input_mux *imux = spec->input_mux;
3839 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
3840 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
3841 hda_nid_t nid = capture_mixers[adc_idx];
3842 unsigned int *cur_val = &spec->cur_mux[adc_idx];
3843 unsigned int i, idx;
3845 idx = ucontrol->value.enumerated.item[0];
3846 if (idx >= imux->num_items)
3847 idx = imux->num_items - 1;
3848 if (*cur_val == idx && ! codec->in_resume)
3850 for (i = 0; i < imux->num_items; i++) {
3851 unsigned int v = (i == idx) ? 0x7000 : 0x7080;
3852 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3853 v | (imux->items[i].index << 8));
3862 static struct hda_verb alc882_sixstack_ch6_init[] = {
3863 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
3864 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3865 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3866 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3873 static struct hda_verb alc882_sixstack_ch8_init[] = {
3874 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3875 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3876 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3877 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
3881 static struct hda_channel_mode alc882_sixstack_modes[2] = {
3882 { 6, alc882_sixstack_ch6_init },
3883 { 8, alc882_sixstack_ch8_init },
3886 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
3887 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
3889 static struct snd_kcontrol_new alc882_base_mixer[] = {
3890 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
3891 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
3892 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
3893 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
3894 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
3895 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
3896 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
3897 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
3898 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
3899 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
3900 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
3901 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
3902 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
3903 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
3904 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
3905 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
3906 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
3907 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
3908 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
3909 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
3910 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
3911 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
3912 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
3913 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
3914 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
3915 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
3916 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
3918 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3919 /* .name = "Capture Source", */
3920 .name = "Input Source",
3922 .info = alc882_mux_enum_info,
3923 .get = alc882_mux_enum_get,
3924 .put = alc882_mux_enum_put,
3929 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
3931 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3932 .name = "Channel Mode",
3933 .info = alc_ch_mode_info,
3934 .get = alc_ch_mode_get,
3935 .put = alc_ch_mode_put,
3940 static struct hda_verb alc882_init_verbs[] = {
3941 /* Front mixer: unmute input/output amp left and right (volume = 0) */
3942 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3943 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3944 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3946 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3947 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3948 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3950 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3951 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3952 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3954 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3955 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3956 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3958 /* Front Pin: output 0 (0x0c) */
3959 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3960 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3961 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
3962 /* Rear Pin: output 1 (0x0d) */
3963 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3964 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3965 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
3966 /* CLFE Pin: output 2 (0x0e) */
3967 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3968 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3969 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
3970 /* Side Pin: output 3 (0x0f) */
3971 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3972 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3973 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
3974 /* Mic (rear) pin: input vref at 80% */
3975 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3976 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3977 /* Front Mic pin: input vref at 80% */
3978 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3979 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3980 /* Line In pin: input */
3981 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3982 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3983 /* Line-2 In: Headphone output (output 0 - 0x0c) */
3984 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3985 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3986 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
3987 /* CD pin widget for input */
3988 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3990 /* FIXME: use matrix-type input source selection */
3991 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
3992 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
3993 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3994 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3995 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3996 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3998 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3999 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4000 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4001 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4003 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4004 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4005 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4006 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4007 /* ADC1: mute amp left and right */
4008 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4009 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4010 /* ADC2: mute amp left and right */
4011 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4012 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4013 /* ADC3: mute amp left and right */
4014 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4015 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4021 * generic initialization of ADC, input mixers and output mixers
4023 static struct hda_verb alc882_auto_init_verbs[] = {
4025 * Unmute ADC0-2 and set the default input to mic-in
4027 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4028 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4029 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4030 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4031 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4032 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4034 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4036 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4039 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4040 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4041 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4042 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4043 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4044 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4047 * Set up output mixers (0x0c - 0x0f)
4049 /* set vol=0 to output mixers */
4050 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4051 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4052 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4053 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4054 /* set up input amps for analog loopback */
4055 /* Amp Indices: DAC = 0, mixer = 1 */
4056 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4057 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4058 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4059 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4060 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4061 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4062 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4063 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4064 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4065 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4067 /* FIXME: use matrix-type input source selection */
4068 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4069 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4070 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4071 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4072 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4073 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4075 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4076 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4077 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4078 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4080 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4081 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4082 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4083 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4088 /* capture mixer elements */
4089 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
4090 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
4091 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
4092 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
4093 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
4095 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4096 /* The multiple "Capture Source" controls confuse alsamixer
4097 * So call somewhat different..
4098 * FIXME: the controls appear in the "playback" view!
4100 /* .name = "Capture Source", */
4101 .name = "Input Source",
4103 .info = alc882_mux_enum_info,
4104 .get = alc882_mux_enum_get,
4105 .put = alc882_mux_enum_put,
4110 static struct snd_kcontrol_new alc882_capture_mixer[] = {
4111 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
4112 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
4113 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
4114 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
4115 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
4116 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
4118 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4119 /* The multiple "Capture Source" controls confuse alsamixer
4120 * So call somewhat different..
4121 * FIXME: the controls appear in the "playback" view!
4123 /* .name = "Capture Source", */
4124 .name = "Input Source",
4126 .info = alc882_mux_enum_info,
4127 .get = alc882_mux_enum_get,
4128 .put = alc882_mux_enum_put,
4133 /* pcm configuration: identiacal with ALC880 */
4134 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
4135 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
4136 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
4137 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
4140 * configuration and preset
4142 static struct hda_board_config alc882_cfg_tbl[] = {
4143 { .modelname = "3stack-dig", .config = ALC882_3ST_DIG },
4144 { .modelname = "6stack-dig", .config = ALC882_6ST_DIG },
4145 { .pci_subvendor = 0x1462, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* MSI */
4146 { .pci_subvendor = 0x105b, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* Foxconn */
4147 { .pci_subvendor = 0x1019, .pci_subdevice = 0x6668, .config = ALC882_6ST_DIG }, /* ECS */
4148 { .modelname = "auto", .config = ALC882_AUTO },
4152 static struct alc_config_preset alc882_presets[] = {
4153 [ALC882_3ST_DIG] = {
4154 .mixers = { alc882_base_mixer },
4155 .init_verbs = { alc882_init_verbs },
4156 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4157 .dac_nids = alc882_dac_nids,
4158 .dig_out_nid = ALC882_DIGOUT_NID,
4159 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
4160 .adc_nids = alc882_adc_nids,
4161 .dig_in_nid = ALC882_DIGIN_NID,
4162 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
4163 .channel_mode = alc882_ch_modes,
4164 .input_mux = &alc882_capture_source,
4166 [ALC882_6ST_DIG] = {
4167 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
4168 .init_verbs = { alc882_init_verbs },
4169 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
4170 .dac_nids = alc882_dac_nids,
4171 .dig_out_nid = ALC882_DIGOUT_NID,
4172 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
4173 .adc_nids = alc882_adc_nids,
4174 .dig_in_nid = ALC882_DIGIN_NID,
4175 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
4176 .channel_mode = alc882_sixstack_modes,
4177 .input_mux = &alc882_capture_source,
4183 * BIOS auto configuration
4185 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
4186 hda_nid_t nid, int pin_type,
4190 struct alc_spec *spec = codec->spec;
4193 if (spec->multiout.dac_nids[dac_idx] == 0x25)
4196 idx = spec->multiout.dac_nids[dac_idx] - 2;
4198 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
4199 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4200 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
4204 static void alc882_auto_init_multi_out(struct hda_codec *codec)
4206 struct alc_spec *spec = codec->spec;
4209 for (i = 0; i <= HDA_SIDE; i++) {
4210 hda_nid_t nid = spec->autocfg.line_out_pins[i];
4212 alc882_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
4216 static void alc882_auto_init_hp_out(struct hda_codec *codec)
4218 struct alc_spec *spec = codec->spec;
4221 pin = spec->autocfg.hp_pin;
4222 if (pin) /* connect to front */
4223 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0); /* use dac 0 */
4226 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
4227 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
4229 static void alc882_auto_init_analog_input(struct hda_codec *codec)
4231 struct alc_spec *spec = codec->spec;
4234 for (i = 0; i < AUTO_PIN_LAST; i++) {
4235 hda_nid_t nid = spec->autocfg.input_pins[i];
4236 if (alc882_is_input_pin(nid)) {
4237 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4238 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
4239 if (nid != ALC882_PIN_CD_NID)
4240 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4246 /* almost identical with ALC880 parser... */
4247 static int alc882_parse_auto_config(struct hda_codec *codec)
4249 struct alc_spec *spec = codec->spec;
4250 int err = alc880_parse_auto_config(codec);
4255 /* hack - override the init verbs */
4256 spec->init_verbs[0] = alc882_auto_init_verbs;
4260 /* additional initialization for auto-configuration model */
4261 static void alc882_auto_init(struct hda_codec *codec)
4263 alc882_auto_init_multi_out(codec);
4264 alc882_auto_init_hp_out(codec);
4265 alc882_auto_init_analog_input(codec);
4269 * ALC882 Headphone poll in 3.5.1a or 3.5.2
4272 static int patch_alc882(struct hda_codec *codec)
4274 struct alc_spec *spec;
4275 int err, board_config;
4277 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4283 board_config = snd_hda_check_board_config(codec, alc882_cfg_tbl);
4285 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
4286 printk(KERN_INFO "hda_codec: Unknown model for ALC882, trying auto-probe from BIOS...\n");
4287 board_config = ALC882_AUTO;
4290 if (board_config == ALC882_AUTO) {
4291 /* automatic parse from the BIOS config */
4292 err = alc882_parse_auto_config(codec);
4297 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
4298 board_config = ALC882_3ST_DIG;
4302 if (board_config != ALC882_AUTO)
4303 setup_preset(spec, &alc882_presets[board_config]);
4305 spec->stream_name_analog = "ALC882 Analog";
4306 spec->stream_analog_playback = &alc882_pcm_analog_playback;
4307 spec->stream_analog_capture = &alc882_pcm_analog_capture;
4309 spec->stream_name_digital = "ALC882 Digital";
4310 spec->stream_digital_playback = &alc882_pcm_digital_playback;
4311 spec->stream_digital_capture = &alc882_pcm_digital_capture;
4313 if (! spec->adc_nids && spec->input_mux) {
4314 /* check whether NID 0x07 is valid */
4315 unsigned int wcap = get_wcaps(codec, 0x07);
4316 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4317 if (wcap != AC_WID_AUD_IN) {
4318 spec->adc_nids = alc882_adc_nids_alt;
4319 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
4320 spec->mixers[spec->num_mixers] = alc882_capture_alt_mixer;
4323 spec->adc_nids = alc882_adc_nids;
4324 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
4325 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
4330 codec->patch_ops = alc_patch_ops;
4331 if (board_config == ALC882_AUTO)
4332 spec->init_hook = alc882_auto_init;
4341 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
4342 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
4344 #define alc262_dac_nids alc260_dac_nids
4345 #define alc262_adc_nids alc882_adc_nids
4346 #define alc262_adc_nids_alt alc882_adc_nids_alt
4348 #define alc262_modes alc260_modes
4349 #define alc262_capture_source alc882_capture_source
4351 static struct snd_kcontrol_new alc262_base_mixer[] = {
4352 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4353 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
4354 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4355 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4356 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4357 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4358 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4359 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4360 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
4361 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
4362 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
4363 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
4364 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
4365 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
4366 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4367 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
4371 #define alc262_capture_mixer alc882_capture_mixer
4372 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
4375 * generic initialization of ADC, input mixers and output mixers
4377 static struct hda_verb alc262_init_verbs[] = {
4379 * Unmute ADC0-2 and set the default input to mic-in
4381 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4382 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4383 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4384 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4385 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4386 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4388 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4390 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4393 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4394 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4395 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4396 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4397 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4398 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4401 * Set up output mixers (0x0c - 0x0e)
4403 /* set vol=0 to output mixers */
4404 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4405 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4406 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4407 /* set up input amps for analog loopback */
4408 /* Amp Indices: DAC = 0, mixer = 1 */
4409 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4410 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4411 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4412 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4413 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4414 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4416 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4417 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
4418 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4419 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4420 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4421 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4423 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4424 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4425 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4426 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4427 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4429 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
4430 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
4432 /* FIXME: use matrix-type input source selection */
4433 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4434 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4435 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4436 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4437 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4438 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4440 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4441 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4442 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4443 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4445 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4446 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4447 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4448 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4455 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
4458 #define ALC_HP_EVENT 0x37
4460 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
4461 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
4462 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4466 static struct hda_input_mux alc262_fujitsu_capture_source = {
4474 /* mute/unmute internal speaker according to the hp jack and mute state */
4475 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
4477 struct alc_spec *spec = codec->spec;
4480 if (force || ! spec->sense_updated) {
4481 unsigned int present;
4482 /* need to execute and sync at first */
4483 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
4484 present = snd_hda_codec_read(codec, 0x14, 0,
4485 AC_VERB_GET_PIN_SENSE, 0);
4486 spec->jack_present = (present & 0x80000000) != 0;
4487 spec->sense_updated = 1;
4489 if (spec->jack_present) {
4490 /* mute internal speaker */
4491 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
4493 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
4496 /* unmute internal speaker if necessary */
4497 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
4498 snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
4500 mute = snd_hda_codec_amp_read(codec, 0x14, 1, HDA_OUTPUT, 0);
4501 snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
4506 /* unsolicited event for HP jack sensing */
4507 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
4510 if ((res >> 26) != ALC_HP_EVENT)
4512 alc262_fujitsu_automute(codec, 1);
4515 /* bind volumes of both NID 0x0c and 0x0d */
4516 static int alc262_fujitsu_master_vol_put(struct snd_kcontrol *kcontrol,
4517 struct snd_ctl_elem_value *ucontrol)
4519 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4520 long *valp = ucontrol->value.integer.value;
4523 change = snd_hda_codec_amp_update(codec, 0x0c, 0, HDA_OUTPUT, 0,
4524 0x7f, valp[0] & 0x7f);
4525 change |= snd_hda_codec_amp_update(codec, 0x0c, 1, HDA_OUTPUT, 0,
4526 0x7f, valp[1] & 0x7f);
4527 snd_hda_codec_amp_update(codec, 0x0d, 0, HDA_OUTPUT, 0,
4528 0x7f, valp[0] & 0x7f);
4529 snd_hda_codec_amp_update(codec, 0x0d, 1, HDA_OUTPUT, 0,
4530 0x7f, valp[1] & 0x7f);
4534 /* bind hp and internal speaker mute (with plug check) */
4535 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
4536 struct snd_ctl_elem_value *ucontrol)
4538 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4539 long *valp = ucontrol->value.integer.value;
4542 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
4543 0x80, valp[0] ? 0 : 0x80);
4544 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
4545 0x80, valp[1] ? 0 : 0x80);
4546 if (change || codec->in_resume)
4547 alc262_fujitsu_automute(codec, codec->in_resume);
4551 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
4553 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4554 .name = "Master Playback Volume",
4555 .info = snd_hda_mixer_amp_volume_info,
4556 .get = snd_hda_mixer_amp_volume_get,
4557 .put = alc262_fujitsu_master_vol_put,
4558 .private_value = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
4561 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4562 .name = "Master Playback Switch",
4563 .info = snd_hda_mixer_amp_switch_info,
4564 .get = snd_hda_mixer_amp_switch_get,
4565 .put = alc262_fujitsu_master_sw_put,
4566 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
4568 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4569 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4570 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4571 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4572 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4576 /* add playback controls from the parsed DAC table */
4577 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
4582 spec->multiout.num_dacs = 1; /* only use one dac */
4583 spec->multiout.dac_nids = spec->private_dac_nids;
4584 spec->multiout.dac_nids[0] = 2;
4586 nid = cfg->line_out_pins[0];
4588 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Front Playback Volume",
4589 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT))) < 0)
4591 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Front Playback Switch",
4592 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4596 nid = cfg->speaker_pins[0];
4599 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Speaker Playback Volume",
4600 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT))) < 0)
4602 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Speaker Playback Switch",
4603 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
4606 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Speaker Playback Switch",
4607 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4613 /* spec->multiout.hp_nid = 2; */
4615 if ((err = add_control(spec, ALC_CTL_WIDGET_VOL, "Headphone Playback Volume",
4616 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT))) < 0)
4618 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
4619 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
4622 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
4623 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
4630 /* identical with ALC880 */
4631 #define alc262_auto_create_analog_input_ctls alc880_auto_create_analog_input_ctls
4634 * generic initialization of ADC, input mixers and output mixers
4636 static struct hda_verb alc262_volume_init_verbs[] = {
4638 * Unmute ADC0-2 and set the default input to mic-in
4640 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
4641 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4642 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
4643 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4644 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
4645 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4647 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4649 * Note: PASD motherboards uses the Line In 2 as the input for front panel
4652 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4653 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4654 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4655 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
4656 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
4657 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
4660 * Set up output mixers (0x0c - 0x0f)
4662 /* set vol=0 to output mixers */
4663 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4664 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4665 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4667 /* set up input amps for analog loopback */
4668 /* Amp Indices: DAC = 0, mixer = 1 */
4669 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4670 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4671 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4672 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4673 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4674 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4676 /* FIXME: use matrix-type input source selection */
4677 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
4678 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
4679 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4680 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4681 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4682 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4684 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4685 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4686 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4687 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4689 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4690 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
4691 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
4692 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
4697 /* pcm configuration: identiacal with ALC880 */
4698 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
4699 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
4700 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
4701 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
4704 * BIOS auto configuration
4706 static int alc262_parse_auto_config(struct hda_codec *codec)
4708 struct alc_spec *spec = codec->spec;
4710 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
4712 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4713 alc262_ignore)) < 0)
4715 if (! spec->autocfg.line_outs)
4716 return 0; /* can't find valid BIOS pin config */
4717 if ((err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
4718 (err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
4721 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4723 if (spec->autocfg.dig_out_pin)
4724 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
4725 if (spec->autocfg.dig_in_pin)
4726 spec->dig_in_nid = ALC262_DIGIN_NID;
4728 if (spec->kctl_alloc)
4729 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4731 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
4732 spec->input_mux = &spec->private_imux;
4737 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
4738 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
4739 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
4742 /* init callback for auto-configuration model -- overriding the default init */
4743 static void alc262_auto_init(struct hda_codec *codec)
4745 alc262_auto_init_multi_out(codec);
4746 alc262_auto_init_hp_out(codec);
4747 alc262_auto_init_analog_input(codec);
4751 * configuration and preset
4753 static struct hda_board_config alc262_cfg_tbl[] = {
4754 { .modelname = "basic", .config = ALC262_BASIC },
4755 { .modelname = "fujitsu", .config = ALC262_FUJITSU },
4756 { .pci_subvendor = 0x10cf, .pci_subdevice = 0x1397, .config = ALC262_FUJITSU },
4757 { .modelname = "auto", .config = ALC262_AUTO },
4761 static struct alc_config_preset alc262_presets[] = {
4763 .mixers = { alc262_base_mixer },
4764 .init_verbs = { alc262_init_verbs },
4765 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
4766 .dac_nids = alc262_dac_nids,
4768 .num_channel_mode = ARRAY_SIZE(alc262_modes),
4769 .channel_mode = alc262_modes,
4770 .input_mux = &alc262_capture_source,
4772 [ALC262_FUJITSU] = {
4773 .mixers = { alc262_fujitsu_mixer },
4774 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
4775 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
4776 .dac_nids = alc262_dac_nids,
4778 .dig_out_nid = ALC262_DIGOUT_NID,
4779 .num_channel_mode = ARRAY_SIZE(alc262_modes),
4780 .channel_mode = alc262_modes,
4781 .input_mux = &alc262_fujitsu_capture_source,
4782 .unsol_event = alc262_fujitsu_unsol_event,
4786 static int patch_alc262(struct hda_codec *codec)
4788 struct alc_spec *spec;
4792 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
4798 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is under-run */
4801 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4802 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4803 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4804 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4808 board_config = snd_hda_check_board_config(codec, alc262_cfg_tbl);
4809 if (board_config < 0 || board_config >= ALC262_MODEL_LAST) {
4810 printk(KERN_INFO "hda_codec: Unknown model for ALC262, trying auto-probe from BIOS...\n");
4811 board_config = ALC262_AUTO;
4814 if (board_config == ALC262_AUTO) {
4815 /* automatic parse from the BIOS config */
4816 err = alc262_parse_auto_config(codec);
4821 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
4822 board_config = ALC262_BASIC;
4826 if (board_config != ALC262_AUTO)
4827 setup_preset(spec, &alc262_presets[board_config]);
4829 spec->stream_name_analog = "ALC262 Analog";
4830 spec->stream_analog_playback = &alc262_pcm_analog_playback;
4831 spec->stream_analog_capture = &alc262_pcm_analog_capture;
4833 spec->stream_name_digital = "ALC262 Digital";
4834 spec->stream_digital_playback = &alc262_pcm_digital_playback;
4835 spec->stream_digital_capture = &alc262_pcm_digital_capture;
4837 if (! spec->adc_nids && spec->input_mux) {
4838 /* check whether NID 0x07 is valid */
4839 unsigned int wcap = get_wcaps(codec, 0x07);
4841 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4842 if (wcap != AC_WID_AUD_IN) {
4843 spec->adc_nids = alc262_adc_nids_alt;
4844 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
4845 spec->mixers[spec->num_mixers] = alc262_capture_alt_mixer;
4848 spec->adc_nids = alc262_adc_nids;
4849 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
4850 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
4855 codec->patch_ops = alc_patch_ops;
4856 if (board_config == ALC262_AUTO)
4857 spec->init_hook = alc262_auto_init;
4864 * ALC861 channel source setting (2/6 channel selection for 3-stack)
4868 * set the path ways for 2 channel output
4869 * need to set the codec line out and mic 1 pin widgets to inputs
4871 static struct hda_verb alc861_threestack_ch2_init[] = {
4872 /* set pin widget 1Ah (line in) for input */
4873 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
4874 /* set pin widget 18h (mic1/2) for input, for mic also enable the vref */
4875 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
4877 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
4878 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, //mic
4879 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, //line in
4884 * need to set the codec line out and mic 1 pin widgets to outputs
4886 static struct hda_verb alc861_threestack_ch6_init[] = {
4887 /* set pin widget 1Ah (line in) for output (Back Surround)*/
4888 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
4889 /* set pin widget 18h (mic1) for output (CLFE)*/
4890 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
4892 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
4893 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
4895 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
4896 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, //mic
4897 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, //line in
4901 static struct hda_channel_mode alc861_threestack_modes[2] = {
4902 { 2, alc861_threestack_ch2_init },
4903 { 6, alc861_threestack_ch6_init },
4908 static struct snd_kcontrol_new alc861_base_mixer[] = {
4909 /* output mixer control */
4910 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
4911 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
4912 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
4913 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
4914 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
4916 /*Input mixer control */
4917 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
4918 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
4919 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
4920 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
4921 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
4922 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
4923 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
4924 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
4925 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
4926 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
4928 /* Capture mixer control */
4929 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
4930 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
4932 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4933 .name = "Capture Source",
4935 .info = alc_mux_enum_info,
4936 .get = alc_mux_enum_get,
4937 .put = alc_mux_enum_put,
4942 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
4943 /* output mixer control */
4944 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
4945 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
4946 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
4947 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
4948 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
4950 /* Input mixer control */
4951 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
4952 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
4953 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
4954 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
4955 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
4956 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
4957 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
4958 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
4959 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
4960 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
4962 /* Capture mixer control */
4963 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
4964 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
4966 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4967 .name = "Capture Source",
4969 .info = alc_mux_enum_info,
4970 .get = alc_mux_enum_get,
4971 .put = alc_mux_enum_put,
4974 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4975 .name = "Channel Mode",
4976 .info = alc_ch_mode_info,
4977 .get = alc_ch_mode_get,
4978 .put = alc_ch_mode_put,
4979 .private_value = ARRAY_SIZE(alc861_threestack_modes),
4985 * generic initialization of ADC, input mixers and output mixers
4987 static struct hda_verb alc861_base_init_verbs[] = {
4989 * Unmute ADC0 and set the default input to mic-in
4991 /* port-A for surround (rear panel) */
4992 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
4993 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
4994 /* port-B for mic-in (rear panel) with vref */
4995 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
4996 /* port-C for line-in (rear panel) */
4997 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
4998 /* port-D for Front */
4999 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5000 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
5001 /* port-E for HP out (front panel) */
5002 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
5003 /* route front PCM to HP */
5004 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x01 },
5005 /* port-F for mic-in (front panel) with vref */
5006 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5007 /* port-G for CLFE (rear panel) */
5008 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5009 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
5010 /* port-H for side (rear panel) */
5011 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5012 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
5014 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5015 /* route front mic to ADC1*/
5016 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5017 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5019 /* Unmute DAC0~3 & spdif out*/
5020 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5021 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5022 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5023 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5024 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5026 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5027 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5028 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5029 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5030 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5032 /* Unmute Stereo Mixer 15 */
5033 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5034 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5035 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5036 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
5038 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5039 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5040 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5041 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5042 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5043 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5044 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5045 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5046 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
5047 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5052 static struct hda_verb alc861_threestack_init_verbs[] = {
5054 * Unmute ADC0 and set the default input to mic-in
5056 /* port-A for surround (rear panel) */
5057 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5058 /* port-B for mic-in (rear panel) with vref */
5059 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5060 /* port-C for line-in (rear panel) */
5061 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5062 /* port-D for Front */
5063 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
5064 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
5065 /* port-E for HP out (front panel) */
5066 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
5067 /* route front PCM to HP */
5068 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x01 },
5069 /* port-F for mic-in (front panel) with vref */
5070 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
5071 /* port-G for CLFE (rear panel) */
5072 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5073 /* port-H for side (rear panel) */
5074 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5076 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
5077 /* route front mic to ADC1*/
5078 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5079 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5080 /* Unmute DAC0~3 & spdif out*/
5081 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5082 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5083 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5084 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5085 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5087 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5088 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5089 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5090 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5091 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5093 /* Unmute Stereo Mixer 15 */
5094 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5095 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5096 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5097 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c }, //Output 0~12 step
5099 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5100 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5101 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5102 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5103 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5104 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5105 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5106 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5107 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, // hp used DAC 3 (Front)
5108 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5112 * generic initialization of ADC, input mixers and output mixers
5114 static struct hda_verb alc861_auto_init_verbs[] = {
5116 * Unmute ADC0 and set the default input to mic-in
5118 // {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5119 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5121 /* Unmute DAC0~3 & spdif out*/
5122 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5123 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5124 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5125 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5126 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5128 /* Unmute Mixer 14 (mic) 1c (Line in)*/
5129 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5130 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5131 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5132 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5134 /* Unmute Stereo Mixer 15 */
5135 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5136 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5137 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5138 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
5140 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5141 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5142 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5143 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5144 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5145 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5146 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5147 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5149 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5150 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5151 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5152 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5153 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5154 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5155 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
5156 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
5158 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, // set Mic 1
5163 /* pcm configuration: identiacal with ALC880 */
5164 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
5165 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
5166 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
5167 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
5170 #define ALC861_DIGOUT_NID 0x07
5172 static struct hda_channel_mode alc861_8ch_modes[1] = {
5176 static hda_nid_t alc861_dac_nids[4] = {
5177 /* front, surround, clfe, side */
5178 0x03, 0x06, 0x05, 0x04
5181 static hda_nid_t alc861_adc_nids[1] = {
5186 static struct hda_input_mux alc861_capture_source = {
5190 { "Front Mic", 0x3 },
5197 /* fill in the dac_nids table from the parsed pin configuration */
5198 static int alc861_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
5203 spec->multiout.dac_nids = spec->private_dac_nids;
5204 for (i = 0; i < cfg->line_outs; i++) {
5205 nid = cfg->line_out_pins[i];
5207 if (i >= ARRAY_SIZE(alc861_dac_nids))
5209 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
5212 spec->multiout.num_dacs = cfg->line_outs;
5216 /* add playback controls from the parsed DAC table */
5217 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
5218 const struct auto_pin_cfg *cfg)
5221 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
5225 for (i = 0; i < cfg->line_outs; i++) {
5226 nid = spec->multiout.dac_nids[i];
5231 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "Center Playback Switch",
5232 HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT))) < 0)
5234 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, "LFE Playback Switch",
5235 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT))) < 0)
5238 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1; idx++)
5239 if (nid == alc861_dac_nids[idx])
5241 sprintf(name, "%s Playback Switch", chname[idx]);
5242 if ((err = add_control(spec, ALC_CTL_BIND_MUTE, name,
5243 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
5250 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
5258 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
5260 if ((err = add_control(spec, ALC_CTL_WIDGET_MUTE, "Headphone Playback Switch",
5261 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
5263 spec->multiout.hp_nid = nid;
5268 /* create playback/capture controls for input pins */
5269 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec, const struct auto_pin_cfg *cfg)
5271 struct hda_input_mux *imux = &spec->private_imux;
5272 int i, err, idx, idx1;
5274 for (i = 0; i < AUTO_PIN_LAST; i++) {
5275 switch(cfg->input_pins[i]) {
5300 err = new_analog_input(spec, cfg->input_pins[i],
5301 auto_pin_cfg_labels[i], idx, 0x15);
5305 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
5306 imux->items[imux->num_items].index = idx1;
5312 static struct snd_kcontrol_new alc861_capture_mixer[] = {
5313 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5314 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5317 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5318 /* The multiple "Capture Source" controls confuse alsamixer
5319 * So call somewhat different..
5320 *FIXME: the controls appear in the "playback" view!
5322 /* .name = "Capture Source", */
5323 .name = "Input Source",
5325 .info = alc_mux_enum_info,
5326 .get = alc_mux_enum_get,
5327 .put = alc_mux_enum_put,
5332 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec, hda_nid_t nid,
5333 int pin_type, int dac_idx)
5337 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
5338 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5342 static void alc861_auto_init_multi_out(struct hda_codec *codec)
5344 struct alc_spec *spec = codec->spec;
5347 for (i = 0; i < spec->autocfg.line_outs; i++) {
5348 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5350 alc861_auto_set_output_and_unmute(codec, nid, PIN_OUT, spec->multiout.dac_nids[i]);
5354 static void alc861_auto_init_hp_out(struct hda_codec *codec)
5356 struct alc_spec *spec = codec->spec;
5359 pin = spec->autocfg.hp_pin;
5360 if (pin) /* connect to front */
5361 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP, spec->multiout.dac_nids[0]);
5364 static void alc861_auto_init_analog_input(struct hda_codec *codec)
5366 struct alc_spec *spec = codec->spec;
5369 for (i = 0; i < AUTO_PIN_LAST; i++) {
5370 hda_nid_t nid = spec->autocfg.input_pins[i];
5371 if ((nid>=0x0c) && (nid <=0x11)) {
5372 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5373 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
5378 /* parse the BIOS configuration and set up the alc_spec */
5379 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
5380 static int alc861_parse_auto_config(struct hda_codec *codec)
5382 struct alc_spec *spec = codec->spec;
5384 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
5386 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
5387 alc861_ignore)) < 0)
5389 if (! spec->autocfg.line_outs)
5390 return 0; /* can't find valid BIOS pin config */
5392 if ((err = alc861_auto_fill_dac_nids(spec, &spec->autocfg)) < 0 ||
5393 (err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
5394 (err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pin)) < 0 ||
5395 (err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
5398 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
5400 if (spec->autocfg.dig_out_pin)
5401 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
5403 if (spec->kctl_alloc)
5404 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
5406 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
5408 spec->input_mux = &spec->private_imux;
5410 spec->adc_nids = alc861_adc_nids;
5411 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
5412 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
5418 /* additional initialization for auto-configuration model */
5419 static void alc861_auto_init(struct hda_codec *codec)
5421 alc861_auto_init_multi_out(codec);
5422 alc861_auto_init_hp_out(codec);
5423 alc861_auto_init_analog_input(codec);
5428 * configuration and preset
5430 static struct hda_board_config alc861_cfg_tbl[] = {
5431 { .modelname = "3stack", .config = ALC861_3ST },
5432 { .pci_subvendor = 0x8086, .pci_subdevice = 0xd600, .config = ALC861_3ST },
5433 { .modelname = "3stack-dig", .config = ALC861_3ST_DIG },
5434 { .modelname = "6stack-dig", .config = ALC861_6ST_DIG },
5435 { .modelname = "auto", .config = ALC861_AUTO },
5439 static struct alc_config_preset alc861_presets[] = {
5441 .mixers = { alc861_3ST_mixer },
5442 .init_verbs = { alc861_threestack_init_verbs },
5443 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5444 .dac_nids = alc861_dac_nids,
5445 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
5446 .channel_mode = alc861_threestack_modes,
5447 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5448 .adc_nids = alc861_adc_nids,
5449 .input_mux = &alc861_capture_source,
5451 [ALC861_3ST_DIG] = {
5452 .mixers = { alc861_base_mixer },
5453 .init_verbs = { alc861_threestack_init_verbs },
5454 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5455 .dac_nids = alc861_dac_nids,
5456 .dig_out_nid = ALC861_DIGOUT_NID,
5457 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
5458 .channel_mode = alc861_threestack_modes,
5459 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5460 .adc_nids = alc861_adc_nids,
5461 .input_mux = &alc861_capture_source,
5463 [ALC861_6ST_DIG] = {
5464 .mixers = { alc861_base_mixer },
5465 .init_verbs = { alc861_base_init_verbs },
5466 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
5467 .dac_nids = alc861_dac_nids,
5468 .dig_out_nid = ALC861_DIGOUT_NID,
5469 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
5470 .channel_mode = alc861_8ch_modes,
5471 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
5472 .adc_nids = alc861_adc_nids,
5473 .input_mux = &alc861_capture_source,
5478 static int patch_alc861(struct hda_codec *codec)
5480 struct alc_spec *spec;
5484 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
5490 board_config = snd_hda_check_board_config(codec, alc861_cfg_tbl);
5491 if (board_config < 0 || board_config >= ALC861_MODEL_LAST) {
5492 printk(KERN_INFO "hda_codec: Unknown model for ALC861, trying auto-probe from BIOS...\n");
5493 board_config = ALC861_AUTO;
5496 if (board_config == ALC861_AUTO) {
5497 /* automatic parse from the BIOS config */
5498 err = alc861_parse_auto_config(codec);
5503 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using base mode...\n");
5504 board_config = ALC861_3ST_DIG;
5508 if (board_config != ALC861_AUTO)
5509 setup_preset(spec, &alc861_presets[board_config]);
5511 spec->stream_name_analog = "ALC861 Analog";
5512 spec->stream_analog_playback = &alc861_pcm_analog_playback;
5513 spec->stream_analog_capture = &alc861_pcm_analog_capture;
5515 spec->stream_name_digital = "ALC861 Digital";
5516 spec->stream_digital_playback = &alc861_pcm_digital_playback;
5517 spec->stream_digital_capture = &alc861_pcm_digital_capture;
5519 codec->patch_ops = alc_patch_ops;
5520 if (board_config == ALC861_AUTO)
5521 spec->init_hook = alc861_auto_init;
5529 struct hda_codec_preset snd_hda_preset_realtek[] = {
5530 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
5531 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
5532 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
5533 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
5534 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
5535 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
5536 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },