2 * HD audio interface patch for AD1981HD, AD1983, AD1986A, AD1988
4 * Copyright (c) 2005 Takashi Iwai <tiwai@suse.de>
6 * This driver is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This driver is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <sound/driver.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/slab.h>
25 #include <linux/pci.h>
26 #include <linux/mutex.h>
28 #include <sound/core.h>
29 #include "hda_codec.h"
30 #include "hda_local.h"
33 struct snd_kcontrol_new *mixers[5];
36 const struct hda_verb *init_verbs[5]; /* initialization verbs
37 * don't forget NULL termination!
39 unsigned int num_init_verbs;
42 struct hda_multi_out multiout; /* playback set-up
43 * max_channels, dacs must be set
44 * dig_out_nid and hp_nid are optional
46 unsigned int cur_eapd;
49 unsigned int num_adc_nids;
51 hda_nid_t dig_in_nid; /* digital-in NID; optional */
54 const struct hda_input_mux *input_mux;
55 hda_nid_t *capsrc_nids;
56 unsigned int cur_mux[3];
59 const struct hda_channel_mode *channel_mode;
63 struct hda_pcm pcm_rec[2]; /* used in alc_build_pcms() */
65 struct mutex amp_mutex; /* PCM volume/mute control mutex */
66 unsigned int spdif_route;
68 /* dynamic controls, init_verbs and input_mux */
69 struct auto_pin_cfg autocfg;
70 unsigned int num_kctl_alloc, num_kctl_used;
71 struct snd_kcontrol_new *kctl_alloc;
72 struct hda_input_mux private_imux;
73 hda_nid_t private_dac_nids[4];
77 * input MUX handling (common part)
79 static int ad198x_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
81 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
82 struct ad198x_spec *spec = codec->spec;
84 return snd_hda_input_mux_info(spec->input_mux, uinfo);
87 static int ad198x_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
89 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
90 struct ad198x_spec *spec = codec->spec;
91 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
93 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
97 static int ad198x_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
99 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
100 struct ad198x_spec *spec = codec->spec;
101 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
103 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
104 spec->capsrc_nids[adc_idx],
105 &spec->cur_mux[adc_idx]);
109 * initialization (common callbacks)
111 static int ad198x_init(struct hda_codec *codec)
113 struct ad198x_spec *spec = codec->spec;
116 for (i = 0; i < spec->num_init_verbs; i++)
117 snd_hda_sequence_write(codec, spec->init_verbs[i]);
121 static int ad198x_build_controls(struct hda_codec *codec)
123 struct ad198x_spec *spec = codec->spec;
127 for (i = 0; i < spec->num_mixers; i++) {
128 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
132 if (spec->multiout.dig_out_nid) {
133 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
137 if (spec->dig_in_nid) {
138 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
146 * Analog playback callbacks
148 static int ad198x_playback_pcm_open(struct hda_pcm_stream *hinfo,
149 struct hda_codec *codec,
150 struct snd_pcm_substream *substream)
152 struct ad198x_spec *spec = codec->spec;
153 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
156 static int ad198x_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
157 struct hda_codec *codec,
158 unsigned int stream_tag,
160 struct snd_pcm_substream *substream)
162 struct ad198x_spec *spec = codec->spec;
163 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
167 static int ad198x_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
168 struct hda_codec *codec,
169 struct snd_pcm_substream *substream)
171 struct ad198x_spec *spec = codec->spec;
172 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
178 static int ad198x_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
179 struct hda_codec *codec,
180 struct snd_pcm_substream *substream)
182 struct ad198x_spec *spec = codec->spec;
183 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
186 static int ad198x_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
187 struct hda_codec *codec,
188 struct snd_pcm_substream *substream)
190 struct ad198x_spec *spec = codec->spec;
191 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
197 static int ad198x_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
198 struct hda_codec *codec,
199 unsigned int stream_tag,
201 struct snd_pcm_substream *substream)
203 struct ad198x_spec *spec = codec->spec;
204 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
205 stream_tag, 0, format);
209 static int ad198x_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
210 struct hda_codec *codec,
211 struct snd_pcm_substream *substream)
213 struct ad198x_spec *spec = codec->spec;
214 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
222 static struct hda_pcm_stream ad198x_pcm_analog_playback = {
225 .channels_max = 6, /* changed later */
226 .nid = 0, /* fill later */
228 .open = ad198x_playback_pcm_open,
229 .prepare = ad198x_playback_pcm_prepare,
230 .cleanup = ad198x_playback_pcm_cleanup
234 static struct hda_pcm_stream ad198x_pcm_analog_capture = {
238 .nid = 0, /* fill later */
240 .prepare = ad198x_capture_pcm_prepare,
241 .cleanup = ad198x_capture_pcm_cleanup
245 static struct hda_pcm_stream ad198x_pcm_digital_playback = {
249 .nid = 0, /* fill later */
251 .open = ad198x_dig_playback_pcm_open,
252 .close = ad198x_dig_playback_pcm_close
256 static struct hda_pcm_stream ad198x_pcm_digital_capture = {
260 /* NID is set in alc_build_pcms */
263 static int ad198x_build_pcms(struct hda_codec *codec)
265 struct ad198x_spec *spec = codec->spec;
266 struct hda_pcm *info = spec->pcm_rec;
269 codec->pcm_info = info;
271 info->name = "AD198x Analog";
272 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_analog_playback;
273 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->multiout.max_channels;
274 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
275 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_analog_capture;
276 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
277 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
279 if (spec->multiout.dig_out_nid) {
282 info->name = "AD198x Digital";
283 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_digital_playback;
284 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
285 if (spec->dig_in_nid) {
286 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_digital_capture;
287 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
294 static void ad198x_free(struct hda_codec *codec)
296 struct ad198x_spec *spec = codec->spec;
299 if (spec->kctl_alloc) {
300 for (i = 0; i < spec->num_kctl_used; i++)
301 kfree(spec->kctl_alloc[i].name);
302 kfree(spec->kctl_alloc);
308 static int ad198x_resume(struct hda_codec *codec)
310 struct ad198x_spec *spec = codec->spec;
313 codec->patch_ops.init(codec);
314 for (i = 0; i < spec->num_mixers; i++)
315 snd_hda_resume_ctls(codec, spec->mixers[i]);
316 if (spec->multiout.dig_out_nid)
317 snd_hda_resume_spdif_out(codec);
318 if (spec->dig_in_nid)
319 snd_hda_resume_spdif_in(codec);
324 static struct hda_codec_ops ad198x_patch_ops = {
325 .build_controls = ad198x_build_controls,
326 .build_pcms = ad198x_build_pcms,
330 .resume = ad198x_resume,
337 * the private value = nid | (invert << 8)
339 static int ad198x_eapd_info(struct snd_kcontrol *kcontrol,
340 struct snd_ctl_elem_info *uinfo)
342 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
344 uinfo->value.integer.min = 0;
345 uinfo->value.integer.max = 1;
349 static int ad198x_eapd_get(struct snd_kcontrol *kcontrol,
350 struct snd_ctl_elem_value *ucontrol)
352 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
353 struct ad198x_spec *spec = codec->spec;
354 int invert = (kcontrol->private_value >> 8) & 1;
356 ucontrol->value.integer.value[0] = ! spec->cur_eapd;
358 ucontrol->value.integer.value[0] = spec->cur_eapd;
362 static int ad198x_eapd_put(struct snd_kcontrol *kcontrol,
363 struct snd_ctl_elem_value *ucontrol)
365 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
366 struct ad198x_spec *spec = codec->spec;
367 int invert = (kcontrol->private_value >> 8) & 1;
368 hda_nid_t nid = kcontrol->private_value & 0xff;
370 eapd = ucontrol->value.integer.value[0];
373 if (eapd == spec->cur_eapd && ! codec->in_resume)
375 spec->cur_eapd = eapd;
376 snd_hda_codec_write(codec, nid,
377 0, AC_VERB_SET_EAPD_BTLENABLE,
382 static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
383 struct snd_ctl_elem_info *uinfo);
384 static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
385 struct snd_ctl_elem_value *ucontrol);
386 static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
387 struct snd_ctl_elem_value *ucontrol);
394 #define AD1986A_SPDIF_OUT 0x02
395 #define AD1986A_FRONT_DAC 0x03
396 #define AD1986A_SURR_DAC 0x04
397 #define AD1986A_CLFE_DAC 0x05
398 #define AD1986A_ADC 0x06
400 static hda_nid_t ad1986a_dac_nids[3] = {
401 AD1986A_FRONT_DAC, AD1986A_SURR_DAC, AD1986A_CLFE_DAC
403 static hda_nid_t ad1986a_adc_nids[1] = { AD1986A_ADC };
404 static hda_nid_t ad1986a_capsrc_nids[1] = { 0x12 };
406 static struct hda_input_mux ad1986a_capture_source = {
422 * bind volumes/mutes of 3 DACs as a single PCM control for simplicity
425 #define ad1986a_pcm_amp_vol_info snd_hda_mixer_amp_volume_info
427 static int ad1986a_pcm_amp_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
429 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
430 struct ad198x_spec *ad = codec->spec;
432 mutex_lock(&ad->amp_mutex);
433 snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
434 mutex_unlock(&ad->amp_mutex);
438 static int ad1986a_pcm_amp_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
440 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
441 struct ad198x_spec *ad = codec->spec;
444 mutex_lock(&ad->amp_mutex);
445 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
446 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
447 change |= snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
449 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
450 mutex_unlock(&ad->amp_mutex);
454 #define ad1986a_pcm_amp_sw_info snd_hda_mixer_amp_switch_info
456 static int ad1986a_pcm_amp_sw_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
458 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
459 struct ad198x_spec *ad = codec->spec;
461 mutex_lock(&ad->amp_mutex);
462 snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
463 mutex_unlock(&ad->amp_mutex);
467 static int ad1986a_pcm_amp_sw_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
469 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
470 struct ad198x_spec *ad = codec->spec;
473 mutex_lock(&ad->amp_mutex);
474 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
475 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
476 change |= snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
478 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
479 mutex_unlock(&ad->amp_mutex);
486 static struct snd_kcontrol_new ad1986a_mixers[] = {
488 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
489 .name = "PCM Playback Volume",
490 .info = ad1986a_pcm_amp_vol_info,
491 .get = ad1986a_pcm_amp_vol_get,
492 .put = ad1986a_pcm_amp_vol_put,
493 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
496 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
497 .name = "PCM Playback Switch",
498 .info = ad1986a_pcm_amp_sw_info,
499 .get = ad1986a_pcm_amp_sw_get,
500 .put = ad1986a_pcm_amp_sw_put,
501 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
503 HDA_CODEC_VOLUME("Front Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
504 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
505 HDA_CODEC_VOLUME("Surround Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
506 HDA_CODEC_MUTE("Surround Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
507 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x1d, 1, 0x0, HDA_OUTPUT),
508 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x1d, 2, 0x0, HDA_OUTPUT),
509 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x1d, 1, 0x0, HDA_OUTPUT),
510 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x1d, 2, 0x0, HDA_OUTPUT),
511 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
512 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT),
513 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
514 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
515 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
516 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
517 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
518 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
519 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
520 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
521 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
522 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
523 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
524 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT),
525 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
526 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
528 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
529 .name = "Capture Source",
530 .info = ad198x_mux_enum_info,
531 .get = ad198x_mux_enum_get,
532 .put = ad198x_mux_enum_put,
534 HDA_CODEC_MUTE("Stereo Downmix Switch", 0x09, 0x0, HDA_OUTPUT),
538 /* additional mixers for 3stack mode */
539 static struct snd_kcontrol_new ad1986a_3st_mixers[] = {
541 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
542 .name = "Channel Mode",
543 .info = ad198x_ch_mode_info,
544 .get = ad198x_ch_mode_get,
545 .put = ad198x_ch_mode_put,
550 /* laptop model - 2ch only */
551 static hda_nid_t ad1986a_laptop_dac_nids[1] = { AD1986A_FRONT_DAC };
553 static struct snd_kcontrol_new ad1986a_laptop_mixers[] = {
554 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
555 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
556 HDA_CODEC_VOLUME("Master Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
557 HDA_CODEC_MUTE("Master Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
558 /* HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
559 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT), */
560 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
561 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
562 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
563 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
564 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
565 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
566 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
567 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
568 /* HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
569 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
570 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
571 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT), */
572 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
573 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
575 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
576 .name = "Capture Source",
577 .info = ad198x_mux_enum_info,
578 .get = ad198x_mux_enum_get,
579 .put = ad198x_mux_enum_put,
584 /* laptop-eapd model - 2ch only */
586 /* master controls both pins 0x1a and 0x1b */
587 static int ad1986a_laptop_master_vol_put(struct snd_kcontrol *kcontrol,
588 struct snd_ctl_elem_value *ucontrol)
590 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
591 long *valp = ucontrol->value.integer.value;
594 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
595 0x7f, valp[0] & 0x7f);
596 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
597 0x7f, valp[1] & 0x7f);
598 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
599 0x7f, valp[0] & 0x7f);
600 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
601 0x7f, valp[1] & 0x7f);
605 static int ad1986a_laptop_master_sw_put(struct snd_kcontrol *kcontrol,
606 struct snd_ctl_elem_value *ucontrol)
608 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
609 long *valp = ucontrol->value.integer.value;
612 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
613 0x80, valp[0] ? 0 : 0x80);
614 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
615 0x80, valp[1] ? 0 : 0x80);
616 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
617 0x80, valp[0] ? 0 : 0x80);
618 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
619 0x80, valp[1] ? 0 : 0x80);
623 static struct hda_input_mux ad1986a_laptop_eapd_capture_source = {
627 { "Internal Mic", 0x4 },
632 static struct snd_kcontrol_new ad1986a_laptop_eapd_mixers[] = {
634 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
635 .name = "Master Playback Volume",
636 .info = snd_hda_mixer_amp_volume_info,
637 .get = snd_hda_mixer_amp_volume_get,
638 .put = ad1986a_laptop_master_vol_put,
639 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
642 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
643 .name = "Master Playback Switch",
644 .info = snd_hda_mixer_amp_switch_info,
645 .get = snd_hda_mixer_amp_switch_get,
646 .put = ad1986a_laptop_master_sw_put,
647 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
649 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
650 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
651 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x0, HDA_OUTPUT),
652 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x0, HDA_OUTPUT),
653 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
654 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
655 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
656 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
658 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
659 .name = "Capture Source",
660 .info = ad198x_mux_enum_info,
661 .get = ad198x_mux_enum_get,
662 .put = ad198x_mux_enum_put,
665 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
666 .name = "External Amplifier",
667 .info = ad198x_eapd_info,
668 .get = ad198x_eapd_get,
669 .put = ad198x_eapd_put,
670 .private_value = 0x1b | (1 << 8), /* port-D, inversed */
676 * initialization verbs
678 static struct hda_verb ad1986a_init_verbs[] = {
679 /* Front, Surround, CLFE DAC; mute as default */
680 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
681 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
682 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
684 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
685 /* HP, Line-Out, Surround, CLFE selectors */
686 {0x0a, AC_VERB_SET_CONNECT_SEL, 0x0},
687 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0},
688 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
689 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
691 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x0},
692 /* Mic selector: Mic 1/2 pin */
693 {0x0f, AC_VERB_SET_CONNECT_SEL, 0x0},
694 /* Line-in selector: Line-in */
695 {0x10, AC_VERB_SET_CONNECT_SEL, 0x0},
697 {0x11, AC_VERB_SET_CONNECT_SEL, 0x0},
698 /* Record selector: mic */
699 {0x12, AC_VERB_SET_CONNECT_SEL, 0x0},
700 /* Mic, Phone, CD, Aux, Line-In amp; mute as default */
701 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
702 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
703 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
704 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
705 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
707 {0x18, AC_VERB_SET_CONNECT_SEL, 0x0},
708 /* HP, Line-Out, Surround, CLFE, Mono pins; mute as default */
709 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
710 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
711 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
712 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
713 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
715 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
716 /* Front, Surround, CLFE Pins */
717 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
718 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
719 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
721 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
723 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
724 /* Line, Aux, CD, Beep-In Pin */
725 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
726 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
727 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
728 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
729 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
733 /* additional verbs for 3-stack model */
734 static struct hda_verb ad1986a_3st_init_verbs[] = {
735 /* Mic and line-in selectors */
736 {0x0f, AC_VERB_SET_CONNECT_SEL, 0x2},
737 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
741 static struct hda_verb ad1986a_ch2_init[] = {
742 /* Surround out -> Line In */
743 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
744 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
746 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
747 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
751 static struct hda_verb ad1986a_ch4_init[] = {
752 /* Surround out -> Surround */
753 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
754 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
756 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
757 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
761 static struct hda_verb ad1986a_ch6_init[] = {
762 /* Surround out -> Surround out */
763 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
764 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
766 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
767 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
771 static struct hda_channel_mode ad1986a_modes[3] = {
772 { 2, ad1986a_ch2_init },
773 { 4, ad1986a_ch4_init },
774 { 6, ad1986a_ch6_init },
777 /* eapd initialization */
778 static struct hda_verb ad1986a_eapd_init_verbs[] = {
779 {0x1b, AC_VERB_SET_EAPD_BTLENABLE, 0x00},
784 enum { AD1986A_6STACK, AD1986A_3STACK, AD1986A_LAPTOP, AD1986A_LAPTOP_EAPD };
786 static struct hda_board_config ad1986a_cfg_tbl[] = {
787 { .modelname = "6stack", .config = AD1986A_6STACK },
788 { .modelname = "3stack", .config = AD1986A_3STACK },
789 { .pci_subvendor = 0x10de, .pci_subdevice = 0xcb84,
790 .config = AD1986A_3STACK }, /* ASUS A8N-VM CSM */
791 { .modelname = "laptop", .config = AD1986A_LAPTOP },
792 { .pci_subvendor = 0x144d, .pci_subdevice = 0xc01e,
793 .config = AD1986A_LAPTOP }, /* FSC V2060 */
794 { .pci_subvendor = 0x17c0, .pci_subdevice = 0x2017,
795 .config = AD1986A_LAPTOP }, /* Samsung M50 */
796 { .pci_subvendor = 0x1043, .pci_subdevice = 0x818f,
797 .config = AD1986A_LAPTOP }, /* ASUS P5GV-MX */
798 { .modelname = "laptop-eapd", .config = AD1986A_LAPTOP_EAPD },
799 { .pci_subvendor = 0x144d, .pci_subdevice = 0xc024,
800 .config = AD1986A_LAPTOP_EAPD }, /* Samsung R65-T2300 Charis */
801 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1213,
802 .config = AD1986A_LAPTOP_EAPD }, /* ASUS A6J */
806 static int patch_ad1986a(struct hda_codec *codec)
808 struct ad198x_spec *spec;
811 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
815 mutex_init(&spec->amp_mutex);
818 spec->multiout.max_channels = 6;
819 spec->multiout.num_dacs = ARRAY_SIZE(ad1986a_dac_nids);
820 spec->multiout.dac_nids = ad1986a_dac_nids;
821 spec->multiout.dig_out_nid = AD1986A_SPDIF_OUT;
822 spec->num_adc_nids = 1;
823 spec->adc_nids = ad1986a_adc_nids;
824 spec->capsrc_nids = ad1986a_capsrc_nids;
825 spec->input_mux = &ad1986a_capture_source;
826 spec->num_mixers = 1;
827 spec->mixers[0] = ad1986a_mixers;
828 spec->num_init_verbs = 1;
829 spec->init_verbs[0] = ad1986a_init_verbs;
831 codec->patch_ops = ad198x_patch_ops;
833 /* override some parameters */
834 board_config = snd_hda_check_board_config(codec, ad1986a_cfg_tbl);
835 switch (board_config) {
837 spec->num_mixers = 2;
838 spec->mixers[1] = ad1986a_3st_mixers;
839 spec->num_init_verbs = 2;
840 spec->init_verbs[1] = ad1986a_3st_init_verbs;
841 spec->channel_mode = ad1986a_modes;
842 spec->num_channel_mode = ARRAY_SIZE(ad1986a_modes);
845 spec->mixers[0] = ad1986a_laptop_mixers;
846 spec->multiout.max_channels = 2;
847 spec->multiout.num_dacs = 1;
848 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
850 case AD1986A_LAPTOP_EAPD:
851 spec->mixers[0] = ad1986a_laptop_eapd_mixers;
852 spec->num_init_verbs = 2;
853 spec->init_verbs[1] = ad1986a_eapd_init_verbs;
854 spec->multiout.max_channels = 2;
855 spec->multiout.num_dacs = 1;
856 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
857 spec->multiout.dig_out_nid = 0;
858 spec->input_mux = &ad1986a_laptop_eapd_capture_source;
869 #define AD1983_SPDIF_OUT 0x02
870 #define AD1983_DAC 0x03
871 #define AD1983_ADC 0x04
873 static hda_nid_t ad1983_dac_nids[1] = { AD1983_DAC };
874 static hda_nid_t ad1983_adc_nids[1] = { AD1983_ADC };
875 static hda_nid_t ad1983_capsrc_nids[1] = { 0x15 };
877 static struct hda_input_mux ad1983_capture_source = {
888 * SPDIF playback route
890 static int ad1983_spdif_route_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
892 static char *texts[] = { "PCM", "ADC" };
894 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
896 uinfo->value.enumerated.items = 2;
897 if (uinfo->value.enumerated.item > 1)
898 uinfo->value.enumerated.item = 1;
899 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
903 static int ad1983_spdif_route_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
905 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
906 struct ad198x_spec *spec = codec->spec;
908 ucontrol->value.enumerated.item[0] = spec->spdif_route;
912 static int ad1983_spdif_route_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
914 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
915 struct ad198x_spec *spec = codec->spec;
917 if (spec->spdif_route != ucontrol->value.enumerated.item[0]) {
918 spec->spdif_route = ucontrol->value.enumerated.item[0];
919 snd_hda_codec_write(codec, spec->multiout.dig_out_nid, 0,
920 AC_VERB_SET_CONNECT_SEL, spec->spdif_route);
926 static struct snd_kcontrol_new ad1983_mixers[] = {
927 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
928 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
929 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
930 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
931 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
932 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
933 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
934 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
935 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
936 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
937 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
938 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
939 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x10, 1, 0x0, HDA_OUTPUT),
940 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x10, 1, 0x0, HDA_OUTPUT),
941 HDA_CODEC_VOLUME("Mic Boost", 0x0c, 0x0, HDA_OUTPUT),
942 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
943 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
945 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
946 .name = "Capture Source",
947 .info = ad198x_mux_enum_info,
948 .get = ad198x_mux_enum_get,
949 .put = ad198x_mux_enum_put,
952 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
953 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Route",
954 .info = ad1983_spdif_route_info,
955 .get = ad1983_spdif_route_get,
956 .put = ad1983_spdif_route_put,
961 static struct hda_verb ad1983_init_verbs[] = {
962 /* Front, HP, Mono; mute as default */
963 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
964 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
965 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
966 /* Beep, PCM, Mic, Line-In: mute */
967 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
968 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
969 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
970 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
971 /* Front, HP selectors; from Mix */
972 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
973 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
974 /* Mono selector; from Mix */
975 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
976 /* Mic selector; Mic */
977 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
978 /* Line-in selector: Line-in */
979 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
981 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
982 /* Record selector: mic */
983 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
984 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
985 /* SPDIF route: PCM */
986 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
988 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
990 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
992 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
994 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
996 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1001 static int patch_ad1983(struct hda_codec *codec)
1003 struct ad198x_spec *spec;
1005 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1009 mutex_init(&spec->amp_mutex);
1012 spec->multiout.max_channels = 2;
1013 spec->multiout.num_dacs = ARRAY_SIZE(ad1983_dac_nids);
1014 spec->multiout.dac_nids = ad1983_dac_nids;
1015 spec->multiout.dig_out_nid = AD1983_SPDIF_OUT;
1016 spec->num_adc_nids = 1;
1017 spec->adc_nids = ad1983_adc_nids;
1018 spec->capsrc_nids = ad1983_capsrc_nids;
1019 spec->input_mux = &ad1983_capture_source;
1020 spec->num_mixers = 1;
1021 spec->mixers[0] = ad1983_mixers;
1022 spec->num_init_verbs = 1;
1023 spec->init_verbs[0] = ad1983_init_verbs;
1024 spec->spdif_route = 0;
1026 codec->patch_ops = ad198x_patch_ops;
1033 * AD1981 HD specific
1036 #define AD1981_SPDIF_OUT 0x02
1037 #define AD1981_DAC 0x03
1038 #define AD1981_ADC 0x04
1040 static hda_nid_t ad1981_dac_nids[1] = { AD1981_DAC };
1041 static hda_nid_t ad1981_adc_nids[1] = { AD1981_ADC };
1042 static hda_nid_t ad1981_capsrc_nids[1] = { 0x15 };
1044 /* 0x0c, 0x09, 0x0e, 0x0f, 0x19, 0x05, 0x18, 0x17 */
1045 static struct hda_input_mux ad1981_capture_source = {
1048 { "Front Mic", 0x0 },
1051 { "Mix Mono", 0x3 },
1058 static struct snd_kcontrol_new ad1981_mixers[] = {
1059 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1060 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
1061 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1062 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
1063 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
1064 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
1065 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1066 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1067 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1068 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1069 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1070 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1071 HDA_CODEC_VOLUME("Aux Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1072 HDA_CODEC_MUTE("Aux Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1073 HDA_CODEC_VOLUME("Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1074 HDA_CODEC_MUTE("Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1075 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1076 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1077 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1078 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x0d, 1, 0x0, HDA_OUTPUT),
1079 HDA_CODEC_VOLUME("Front Mic Boost", 0x08, 0x0, HDA_INPUT),
1080 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x0, HDA_INPUT),
1081 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1082 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1084 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1085 .name = "Capture Source",
1086 .info = ad198x_mux_enum_info,
1087 .get = ad198x_mux_enum_get,
1088 .put = ad198x_mux_enum_put,
1090 /* identical with AD1983 */
1092 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1093 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Route",
1094 .info = ad1983_spdif_route_info,
1095 .get = ad1983_spdif_route_get,
1096 .put = ad1983_spdif_route_put,
1101 static struct hda_verb ad1981_init_verbs[] = {
1102 /* Front, HP, Mono; mute as default */
1103 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1104 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1105 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1106 /* Beep, PCM, Front Mic, Line, Rear Mic, Aux, CD-In: mute */
1107 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1108 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1109 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1110 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1111 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1112 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1113 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1114 /* Front, HP selectors; from Mix */
1115 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
1116 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
1117 /* Mono selector; from Mix */
1118 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
1119 /* Mic Mixer; select Front Mic */
1120 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1121 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1122 /* Mic boost: 0dB */
1123 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1124 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1125 /* Record selector: Front mic */
1126 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
1127 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1128 /* SPDIF route: PCM */
1129 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
1131 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1133 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
1135 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1136 /* Front & Rear Mic Pins */
1137 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1138 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1140 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1142 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
1143 /* Line-Out as Input: disabled */
1144 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1149 * Patch for HP nx6320
1151 * nx6320 uses EAPD in the reserve way - EAPD-on means the internal
1152 * speaker output enabled _and_ mute-LED off.
1155 #define AD1981_HP_EVENT 0x37
1156 #define AD1981_MIC_EVENT 0x38
1158 static struct hda_verb ad1981_hp_init_verbs[] = {
1159 {0x05, AC_VERB_SET_EAPD_BTLENABLE, 0x00 }, /* default off */
1160 /* pin sensing on HP and Mic jacks */
1161 {0x06, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_HP_EVENT},
1162 {0x08, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_MIC_EVENT},
1166 /* turn on/off EAPD (+ mute HP) as a master switch */
1167 static int ad1981_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1168 struct snd_ctl_elem_value *ucontrol)
1170 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1171 struct ad198x_spec *spec = codec->spec;
1173 if (! ad198x_eapd_put(kcontrol, ucontrol))
1176 /* toggle HP mute appropriately */
1177 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1178 0x80, spec->cur_eapd ? 0 : 0x80);
1179 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1180 0x80, spec->cur_eapd ? 0 : 0x80);
1184 /* bind volumes of both NID 0x05 and 0x06 */
1185 static int ad1981_hp_master_vol_put(struct snd_kcontrol *kcontrol,
1186 struct snd_ctl_elem_value *ucontrol)
1188 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1189 long *valp = ucontrol->value.integer.value;
1192 change = snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1193 0x7f, valp[0] & 0x7f);
1194 change |= snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1195 0x7f, valp[1] & 0x7f);
1196 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1197 0x7f, valp[0] & 0x7f);
1198 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1199 0x7f, valp[1] & 0x7f);
1203 /* mute internal speaker if HP is plugged */
1204 static void ad1981_hp_automute(struct hda_codec *codec)
1206 unsigned int present;
1208 present = snd_hda_codec_read(codec, 0x06, 0,
1209 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1210 snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1211 0x80, present ? 0x80 : 0);
1212 snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1213 0x80, present ? 0x80 : 0);
1216 /* toggle input of built-in and mic jack appropriately */
1217 static void ad1981_hp_automic(struct hda_codec *codec)
1219 static struct hda_verb mic_jack_on[] = {
1220 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1221 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1224 static struct hda_verb mic_jack_off[] = {
1225 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1226 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1229 unsigned int present;
1231 present = snd_hda_codec_read(codec, 0x08, 0,
1232 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1234 snd_hda_sequence_write(codec, mic_jack_on);
1236 snd_hda_sequence_write(codec, mic_jack_off);
1239 /* unsolicited event for HP jack sensing */
1240 static void ad1981_hp_unsol_event(struct hda_codec *codec,
1245 case AD1981_HP_EVENT:
1246 ad1981_hp_automute(codec);
1248 case AD1981_MIC_EVENT:
1249 ad1981_hp_automic(codec);
1254 static struct hda_input_mux ad1981_hp_capture_source = {
1258 { "Docking-Station", 0x1 },
1263 static struct snd_kcontrol_new ad1981_hp_mixers[] = {
1265 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1266 .name = "Master Playback Volume",
1267 .info = snd_hda_mixer_amp_volume_info,
1268 .get = snd_hda_mixer_amp_volume_get,
1269 .put = ad1981_hp_master_vol_put,
1270 .private_value = HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),
1273 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1274 .name = "Master Playback Switch",
1275 .info = ad198x_eapd_info,
1276 .get = ad198x_eapd_get,
1277 .put = ad1981_hp_master_sw_put,
1278 .private_value = 0x05,
1280 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1281 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1283 /* FIXME: analog mic/line loopback doesn't work with my tests...
1284 * (although recording is OK)
1286 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1287 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1288 HDA_CODEC_VOLUME("Docking-Station Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1289 HDA_CODEC_MUTE("Docking-Station Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1290 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1291 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1292 /* FIXME: does this laptop have analog CD connection? */
1293 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1294 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1296 HDA_CODEC_VOLUME("Mic Boost", 0x08, 0x0, HDA_INPUT),
1297 HDA_CODEC_VOLUME("Internal Mic Boost", 0x18, 0x0, HDA_INPUT),
1298 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1299 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1301 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1302 .name = "Capture Source",
1303 .info = ad198x_mux_enum_info,
1304 .get = ad198x_mux_enum_get,
1305 .put = ad198x_mux_enum_put,
1310 /* initialize jack-sensing, too */
1311 static int ad1981_hp_init(struct hda_codec *codec)
1314 ad1981_hp_automute(codec);
1315 ad1981_hp_automic(codec);
1320 enum { AD1981_BASIC, AD1981_HP };
1322 static struct hda_board_config ad1981_cfg_tbl[] = {
1323 { .modelname = "hp", .config = AD1981_HP },
1324 { .pci_subvendor = 0x103c, .pci_subdevice = 0x30aa,
1325 .config = AD1981_HP }, /* HP nx6320 */
1326 { .pci_subvendor = 0x103c, .pci_subdevice = 0x309f,
1327 .config = AD1981_HP }, /* HP nx9420 AngelFire */
1328 { .modelname = "basic", .config = AD1981_BASIC },
1332 static int patch_ad1981(struct hda_codec *codec)
1334 struct ad198x_spec *spec;
1337 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1341 mutex_init(&spec->amp_mutex);
1344 spec->multiout.max_channels = 2;
1345 spec->multiout.num_dacs = ARRAY_SIZE(ad1981_dac_nids);
1346 spec->multiout.dac_nids = ad1981_dac_nids;
1347 spec->multiout.dig_out_nid = AD1981_SPDIF_OUT;
1348 spec->num_adc_nids = 1;
1349 spec->adc_nids = ad1981_adc_nids;
1350 spec->capsrc_nids = ad1981_capsrc_nids;
1351 spec->input_mux = &ad1981_capture_source;
1352 spec->num_mixers = 1;
1353 spec->mixers[0] = ad1981_mixers;
1354 spec->num_init_verbs = 1;
1355 spec->init_verbs[0] = ad1981_init_verbs;
1356 spec->spdif_route = 0;
1358 codec->patch_ops = ad198x_patch_ops;
1360 /* override some parameters */
1361 board_config = snd_hda_check_board_config(codec, ad1981_cfg_tbl);
1362 switch (board_config) {
1364 spec->mixers[0] = ad1981_hp_mixers;
1365 spec->num_init_verbs = 2;
1366 spec->init_verbs[1] = ad1981_hp_init_verbs;
1367 spec->multiout.dig_out_nid = 0;
1368 spec->input_mux = &ad1981_hp_capture_source;
1370 codec->patch_ops.init = ad1981_hp_init;
1371 codec->patch_ops.unsol_event = ad1981_hp_unsol_event;
1382 * Output pins and routes
1384 * Pin Mix Sel DAC (*)
1385 * port-A 0x11 (mute/hp) <- 0x22 <- 0x37 <- 03/04/06
1386 * port-B 0x14 (mute/hp) <- 0x2b <- 0x30 <- 03/04/06
1387 * port-C 0x15 (mute) <- 0x2c <- 0x31 <- 05/0a
1388 * port-D 0x12 (mute/hp) <- 0x29 <- 04
1389 * port-E 0x17 (mute/hp) <- 0x26 <- 0x32 <- 05/0a
1390 * port-F 0x16 (mute) <- 0x2a <- 06
1391 * port-G 0x24 (mute) <- 0x27 <- 05
1392 * port-H 0x25 (mute) <- 0x28 <- 0a
1393 * mono 0x13 (mute/amp)<- 0x1e <- 0x36 <- 03/04/06
1395 * DAC0 = 03h, DAC1 = 04h, DAC2 = 05h, DAC3 = 06h, DAC4 = 0ah
1396 * (*) DAC2/3/4 are swapped to DAC3/4/2 on AD198A rev.2 due to a h/w bug.
1398 * Input pins and routes
1400 * pin boost mix input # / adc input #
1401 * port-A 0x11 -> 0x38 -> mix 2, ADC 0
1402 * port-B 0x14 -> 0x39 -> mix 0, ADC 1
1403 * port-C 0x15 -> 0x3a -> 33:0 - mix 1, ADC 2
1404 * port-D 0x12 -> 0x3d -> mix 3, ADC 8
1405 * port-E 0x17 -> 0x3c -> 34:0 - mix 4, ADC 4
1406 * port-F 0x16 -> 0x3b -> mix 5, ADC 3
1407 * port-G 0x24 -> N/A -> 33:1 - mix 1, 34:1 - mix 4, ADC 6
1408 * port-H 0x25 -> N/A -> 33:2 - mix 1, 34:2 - mix 4, ADC 7
1412 * 6stack - front/surr/CLFE/side/opt DACs - 04/06/05/0a/03
1413 * 3stack - front/surr/CLFE/opt DACs - 04/05/0a/03
1415 * Inputs of Analog Mix (0x20)
1416 * 0:Port-B (front mic)
1417 * 1:Port-C/G/H (line-in)
1419 * 3:Port-D (line-in/2)
1420 * 4:Port-E/G/H (mic-in)
1421 * 5:Port-F (mic2-in)
1427 * 1:Port-B (front mic-in)
1428 * 2:Port-C (line-in)
1429 * 3:Port-F (mic2-in)
1434 * 8:Port-D (line-in/2)
1437 * Proposed pin assignments by the datasheet
1440 * Port-A front headphone
1450 * Port-A front headphone
1452 * C rear line-in/surround
1454 * E rear mic-in/CLFE
1460 * D internal speaker (with EAPD)
1461 * E/F quad mic array
1477 /* reivision id to check workarounds */
1478 #define AD1988A_REV2 0x100200
1485 static hda_nid_t ad1988_6stack_dac_nids[4] = {
1486 0x04, 0x06, 0x05, 0x0a
1489 static hda_nid_t ad1988_3stack_dac_nids[3] = {
1493 /* for AD1988A revision-2, DAC2-4 are swapped */
1494 static hda_nid_t ad1988_6stack_dac_nids_rev2[4] = {
1495 0x04, 0x05, 0x0a, 0x06
1498 static hda_nid_t ad1988_3stack_dac_nids_rev2[3] = {
1502 static hda_nid_t ad1988_adc_nids[3] = {
1506 static hda_nid_t ad1988_capsrc_nids[3] = {
1510 #define AD1988_SPDIF_OUT 0x02
1511 #define AD1988_SPDIF_IN 0x07
1513 static struct hda_input_mux ad1988_6stack_capture_source = {
1516 { "Front Mic", 0x0 },
1524 static struct hda_input_mux ad1988_laptop_capture_source = {
1527 { "Mic/Line", 0x0 },
1535 static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
1536 struct snd_ctl_elem_info *uinfo)
1538 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1539 struct ad198x_spec *spec = codec->spec;
1540 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
1541 spec->num_channel_mode);
1544 static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
1545 struct snd_ctl_elem_value *ucontrol)
1547 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1548 struct ad198x_spec *spec = codec->spec;
1549 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
1550 spec->num_channel_mode, spec->multiout.max_channels);
1553 static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
1554 struct snd_ctl_elem_value *ucontrol)
1556 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1557 struct ad198x_spec *spec = codec->spec;
1558 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
1559 spec->num_channel_mode, &spec->multiout.max_channels);
1563 static struct snd_kcontrol_new ad1988_6stack_mixers1[] = {
1564 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1565 HDA_CODEC_VOLUME("Surround Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1566 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1567 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
1568 HDA_CODEC_VOLUME("Side Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1571 static struct snd_kcontrol_new ad1988_6stack_mixers1_rev2[] = {
1572 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1573 HDA_CODEC_VOLUME("Surround Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1574 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
1575 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0a, 2, 0x0, HDA_OUTPUT),
1576 HDA_CODEC_VOLUME("Side Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1579 static struct snd_kcontrol_new ad1988_6stack_mixers2[] = {
1580 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
1581 HDA_BIND_MUTE("Surround Playback Switch", 0x2a, 2, HDA_INPUT),
1582 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x27, 1, 2, HDA_INPUT),
1583 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x27, 2, 2, HDA_INPUT),
1584 HDA_BIND_MUTE("Side Playback Switch", 0x28, 2, HDA_INPUT),
1585 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1586 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1588 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1589 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1590 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1591 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1592 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1593 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1594 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1595 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1597 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1598 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1600 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1601 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1603 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1604 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1610 static struct snd_kcontrol_new ad1988_3stack_mixers1[] = {
1611 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1612 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1613 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1614 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
1617 static struct snd_kcontrol_new ad1988_3stack_mixers1_rev2[] = {
1618 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1619 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1620 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x06, 1, 0x0, HDA_OUTPUT),
1621 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x06, 2, 0x0, HDA_OUTPUT),
1624 static struct snd_kcontrol_new ad1988_3stack_mixers2[] = {
1625 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
1626 HDA_BIND_MUTE("Surround Playback Switch", 0x2c, 2, HDA_INPUT),
1627 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x26, 1, 2, HDA_INPUT),
1628 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x26, 2, 2, HDA_INPUT),
1629 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1630 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1632 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1633 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1634 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1635 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1636 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1637 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1638 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1639 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1641 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1642 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1644 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1645 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1647 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1648 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1650 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1651 .name = "Channel Mode",
1652 .info = ad198x_ch_mode_info,
1653 .get = ad198x_ch_mode_get,
1654 .put = ad198x_ch_mode_put,
1661 static struct snd_kcontrol_new ad1988_laptop_mixers[] = {
1662 HDA_CODEC_VOLUME("PCM Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1663 HDA_CODEC_MUTE("PCM Playback Switch", 0x29, 0x0, HDA_INPUT),
1664 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1666 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1667 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1668 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1669 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1670 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1671 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1673 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1674 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1676 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1677 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1679 HDA_CODEC_VOLUME("Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1682 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1683 .name = "External Amplifier",
1684 .info = ad198x_eapd_info,
1685 .get = ad198x_eapd_get,
1686 .put = ad198x_eapd_put,
1687 .private_value = 0x12 | (1 << 8), /* port-D, inversed */
1694 static struct snd_kcontrol_new ad1988_capture_mixers[] = {
1695 HDA_CODEC_VOLUME("Capture Volume", 0x0c, 0x0, HDA_OUTPUT),
1696 HDA_CODEC_MUTE("Capture Switch", 0x0c, 0x0, HDA_OUTPUT),
1697 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x0d, 0x0, HDA_OUTPUT),
1698 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x0d, 0x0, HDA_OUTPUT),
1699 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x0e, 0x0, HDA_OUTPUT),
1700 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x0e, 0x0, HDA_OUTPUT),
1702 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1703 /* The multiple "Capture Source" controls confuse alsamixer
1704 * So call somewhat different..
1705 * FIXME: the controls appear in the "playback" view!
1707 /* .name = "Capture Source", */
1708 .name = "Input Source",
1710 .info = ad198x_mux_enum_info,
1711 .get = ad198x_mux_enum_get,
1712 .put = ad198x_mux_enum_put,
1717 static int ad1988_spdif_playback_source_info(struct snd_kcontrol *kcontrol,
1718 struct snd_ctl_elem_info *uinfo)
1720 static char *texts[] = {
1721 "PCM", "ADC1", "ADC2", "ADC3"
1723 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1725 uinfo->value.enumerated.items = 4;
1726 if (uinfo->value.enumerated.item >= 4)
1727 uinfo->value.enumerated.item = 3;
1728 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1732 static int ad1988_spdif_playback_source_get(struct snd_kcontrol *kcontrol,
1733 struct snd_ctl_elem_value *ucontrol)
1735 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1738 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1740 sel = snd_hda_codec_read(codec, 0x0b, 0, AC_VERB_GET_CONNECT_SEL, 0);
1746 ucontrol->value.enumerated.item[0] = sel;
1750 static int ad1988_spdif_playback_source_put(struct snd_kcontrol *kcontrol,
1751 struct snd_ctl_elem_value *ucontrol)
1753 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1757 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1758 if (! ucontrol->value.enumerated.item[0]) {
1761 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL, 0);
1765 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL, 1);
1766 sel = snd_hda_codec_read(codec, 0x0b, 0, AC_VERB_GET_CONNECT_SEL, 0) + 1;
1767 change |= sel == ucontrol->value.enumerated.item[0];
1769 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL,
1770 ucontrol->value.enumerated.item[0] - 1);
1775 static struct snd_kcontrol_new ad1988_spdif_out_mixers[] = {
1776 HDA_CODEC_VOLUME("IEC958 Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1778 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1779 .name = "IEC958 Playback Source",
1780 .info = ad1988_spdif_playback_source_info,
1781 .get = ad1988_spdif_playback_source_get,
1782 .put = ad1988_spdif_playback_source_put,
1787 static struct snd_kcontrol_new ad1988_spdif_in_mixers[] = {
1788 HDA_CODEC_VOLUME("IEC958 Capture Volume", 0x1c, 0x0, HDA_INPUT),
1794 * initialization verbs
1798 * for 6-stack (+dig)
1800 static struct hda_verb ad1988_6stack_init_verbs[] = {
1801 /* Front, Surround, CLFE, side DAC; unmute as default */
1802 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1803 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1804 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1805 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1806 /* Port-A front headphon path */
1807 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
1808 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1809 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1810 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1811 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1812 /* Port-D line-out path */
1813 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1814 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1815 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1816 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1817 /* Port-F surround path */
1818 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1819 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1820 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1821 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1822 /* Port-G CLFE path */
1823 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1824 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1825 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1826 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1827 /* Port-H side path */
1828 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1829 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1830 {0x25, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1831 {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1833 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
1834 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1835 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1836 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1837 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
1838 /* Port-B front mic-in path */
1839 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1840 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1841 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1842 /* Port-C line-in path */
1843 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1844 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1845 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1846 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
1847 /* Port-E mic-in path */
1848 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1849 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1850 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1851 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
1856 static struct hda_verb ad1988_capture_init_verbs[] = {
1857 /* mute analog mix */
1858 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1859 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1860 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1861 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1862 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1863 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
1864 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1865 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1866 /* select ADCs - front-mic */
1867 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
1868 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
1869 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
1871 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1872 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1873 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1878 static struct hda_verb ad1988_spdif_init_verbs[] = {
1880 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0}, /* PCM */
1881 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0}, /* ADC1 */
1882 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1883 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1885 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x27}, /* 0dB */
1886 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x17}, /* 0dB */
1892 * verbs for 3stack (+dig)
1894 static struct hda_verb ad1988_3stack_ch2_init[] = {
1895 /* set port-C to line-in */
1896 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1897 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1898 /* set port-E to mic-in */
1899 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1900 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1904 static struct hda_verb ad1988_3stack_ch6_init[] = {
1905 /* set port-C to surround out */
1906 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1907 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1908 /* set port-E to CLFE out */
1909 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1910 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1914 static struct hda_channel_mode ad1988_3stack_modes[2] = {
1915 { 2, ad1988_3stack_ch2_init },
1916 { 6, ad1988_3stack_ch6_init },
1919 static struct hda_verb ad1988_3stack_init_verbs[] = {
1920 /* Front, Surround, CLFE, side DAC; unmute as default */
1921 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1922 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1923 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1924 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1925 /* Port-A front headphon path */
1926 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
1927 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1928 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1929 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1930 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1931 /* Port-D line-out path */
1932 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1933 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1934 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1935 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1937 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
1938 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1939 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1940 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1941 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
1942 /* Port-B front mic-in path */
1943 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1944 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1945 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1946 /* Port-C line-in/surround path - 6ch mode as default */
1947 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1948 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1949 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1950 {0x31, AC_VERB_SET_CONNECT_SEL, 0x0}, /* output sel: DAC 0x05 */
1951 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
1952 /* Port-E mic-in/CLFE path - 6ch mode as default */
1953 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1954 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1955 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1956 {0x32, AC_VERB_SET_CONNECT_SEL, 0x1}, /* output sel: DAC 0x0a */
1957 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
1958 /* mute analog mix */
1959 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1960 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1961 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1962 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1963 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1964 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
1965 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1966 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1967 /* select ADCs - front-mic */
1968 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
1969 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
1970 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
1972 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1973 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1974 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1979 * verbs for laptop mode (+dig)
1981 static struct hda_verb ad1988_laptop_hp_on[] = {
1982 /* unmute port-A and mute port-D */
1983 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1984 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1987 static struct hda_verb ad1988_laptop_hp_off[] = {
1988 /* mute port-A and unmute port-D */
1989 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1990 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1994 #define AD1988_HP_EVENT 0x01
1996 static struct hda_verb ad1988_laptop_init_verbs[] = {
1997 /* Front, Surround, CLFE, side DAC; unmute as default */
1998 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1999 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2000 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2001 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2002 /* Port-A front headphon path */
2003 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
2004 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2005 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2006 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2007 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2008 /* unsolicited event for pin-sense */
2009 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1988_HP_EVENT },
2010 /* Port-D line-out path + EAPD */
2011 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2012 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2013 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2014 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2015 {0x12, AC_VERB_SET_EAPD_BTLENABLE, 0x00}, /* EAPD-off */
2017 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2018 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2019 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2020 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2021 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2022 /* Port-B mic-in path */
2023 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2024 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2025 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2026 /* Port-C docking station - try to output */
2027 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2028 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2029 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2030 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2031 /* mute analog mix */
2032 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2033 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2034 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2035 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2036 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2037 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2038 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2039 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2040 /* select ADCs - mic */
2041 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2042 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2043 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2045 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2046 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2047 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2051 static void ad1988_laptop_unsol_event(struct hda_codec *codec, unsigned int res)
2053 if ((res >> 26) != AD1988_HP_EVENT)
2055 if (snd_hda_codec_read(codec, 0x11, 0, AC_VERB_GET_PIN_SENSE, 0) & (1 << 31))
2056 snd_hda_sequence_write(codec, ad1988_laptop_hp_on);
2058 snd_hda_sequence_write(codec, ad1988_laptop_hp_off);
2063 * Automatic parse of I/O pins from the BIOS configuration
2066 #define NUM_CONTROL_ALLOC 32
2067 #define NUM_VERB_ALLOC 32
2074 static struct snd_kcontrol_new ad1988_control_templates[] = {
2075 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2076 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2077 HDA_BIND_MUTE(NULL, 0, 0, 0),
2080 /* add dynamic controls */
2081 static int add_control(struct ad198x_spec *spec, int type, const char *name,
2084 struct snd_kcontrol_new *knew;
2086 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2087 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2089 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2092 if (spec->kctl_alloc) {
2093 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2094 kfree(spec->kctl_alloc);
2096 spec->kctl_alloc = knew;
2097 spec->num_kctl_alloc = num;
2100 knew = &spec->kctl_alloc[spec->num_kctl_used];
2101 *knew = ad1988_control_templates[type];
2102 knew->name = kstrdup(name, GFP_KERNEL);
2105 knew->private_value = val;
2106 spec->num_kctl_used++;
2110 #define AD1988_PIN_CD_NID 0x18
2111 #define AD1988_PIN_BEEP_NID 0x10
2113 static hda_nid_t ad1988_mixer_nids[8] = {
2114 /* A B C D E F G H */
2115 0x22, 0x2b, 0x2c, 0x29, 0x26, 0x2a, 0x27, 0x28
2118 static inline hda_nid_t ad1988_idx_to_dac(struct hda_codec *codec, int idx)
2120 static hda_nid_t idx_to_dac[8] = {
2121 /* A B C D E F G H */
2122 0x04, 0x06, 0x05, 0x04, 0x0a, 0x06, 0x05, 0x0a
2124 static hda_nid_t idx_to_dac_rev2[8] = {
2125 /* A B C D E F G H */
2126 0x04, 0x05, 0x0a, 0x04, 0x06, 0x05, 0x0a, 0x06
2128 if (codec->revision_id == AD1988A_REV2)
2129 return idx_to_dac_rev2[idx];
2131 return idx_to_dac[idx];
2134 static hda_nid_t ad1988_boost_nids[8] = {
2135 0x38, 0x39, 0x3a, 0x3d, 0x3c, 0x3b, 0, 0
2138 static int ad1988_pin_idx(hda_nid_t nid)
2140 static hda_nid_t ad1988_io_pins[8] = {
2141 0x11, 0x14, 0x15, 0x12, 0x17, 0x16, 0x24, 0x25
2144 for (i = 0; i < ARRAY_SIZE(ad1988_io_pins); i++)
2145 if (ad1988_io_pins[i] == nid)
2147 return 0; /* should be -1 */
2150 static int ad1988_pin_to_loopback_idx(hda_nid_t nid)
2152 static int loopback_idx[8] = {
2153 2, 0, 1, 3, 4, 5, 1, 4
2156 case AD1988_PIN_CD_NID:
2159 return loopback_idx[ad1988_pin_idx(nid)];
2163 static int ad1988_pin_to_adc_idx(hda_nid_t nid)
2165 static int adc_idx[8] = {
2166 0, 1, 2, 8, 4, 3, 6, 7
2169 case AD1988_PIN_CD_NID:
2172 return adc_idx[ad1988_pin_idx(nid)];
2176 /* fill in the dac_nids table from the parsed pin configuration */
2177 static int ad1988_auto_fill_dac_nids(struct hda_codec *codec,
2178 const struct auto_pin_cfg *cfg)
2180 struct ad198x_spec *spec = codec->spec;
2183 spec->multiout.dac_nids = spec->private_dac_nids;
2185 /* check the pins hardwired to audio widget */
2186 for (i = 0; i < cfg->line_outs; i++) {
2187 idx = ad1988_pin_idx(cfg->line_out_pins[i]);
2188 spec->multiout.dac_nids[i] = ad1988_idx_to_dac(codec, idx);
2190 spec->multiout.num_dacs = cfg->line_outs;
2194 /* add playback controls from the parsed DAC table */
2195 static int ad1988_auto_create_multi_out_ctls(struct ad198x_spec *spec,
2196 const struct auto_pin_cfg *cfg)
2199 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2203 for (i = 0; i < cfg->line_outs; i++) {
2204 hda_nid_t dac = spec->multiout.dac_nids[i];
2207 nid = ad1988_mixer_nids[ad1988_pin_idx(cfg->line_out_pins[i])];
2210 err = add_control(spec, AD_CTL_WIDGET_VOL,
2211 "Center Playback Volume",
2212 HDA_COMPOSE_AMP_VAL(dac, 1, 0, HDA_OUTPUT));
2215 err = add_control(spec, AD_CTL_WIDGET_VOL,
2216 "LFE Playback Volume",
2217 HDA_COMPOSE_AMP_VAL(dac, 2, 0, HDA_OUTPUT));
2220 err = add_control(spec, AD_CTL_BIND_MUTE,
2221 "Center Playback Switch",
2222 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT));
2225 err = add_control(spec, AD_CTL_BIND_MUTE,
2226 "LFE Playback Switch",
2227 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT));
2231 sprintf(name, "%s Playback Volume", chname[i]);
2232 err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2233 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT));
2236 sprintf(name, "%s Playback Switch", chname[i]);
2237 err = add_control(spec, AD_CTL_BIND_MUTE, name,
2238 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
2246 /* add playback controls for speaker and HP outputs */
2247 static int ad1988_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
2250 struct ad198x_spec *spec = codec->spec;
2258 idx = ad1988_pin_idx(pin);
2259 nid = ad1988_idx_to_dac(codec, idx);
2260 /* specify the DAC as the extra output */
2261 if (! spec->multiout.hp_nid)
2262 spec->multiout.hp_nid = nid;
2264 spec->multiout.extra_out_nid[0] = nid;
2265 /* control HP volume/switch on the output mixer amp */
2266 sprintf(name, "%s Playback Volume", pfx);
2267 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2268 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2270 nid = ad1988_mixer_nids[idx];
2271 sprintf(name, "%s Playback Switch", pfx);
2272 if ((err = add_control(spec, AD_CTL_BIND_MUTE, name,
2273 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2278 /* create input playback/capture controls for the given pin */
2279 static int new_analog_input(struct ad198x_spec *spec, hda_nid_t pin,
2280 const char *ctlname, int boost)
2285 sprintf(name, "%s Playback Volume", ctlname);
2286 idx = ad1988_pin_to_loopback_idx(pin);
2287 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2288 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2290 sprintf(name, "%s Playback Switch", ctlname);
2291 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE, name,
2292 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2296 idx = ad1988_pin_idx(pin);
2297 bnid = ad1988_boost_nids[idx];
2299 sprintf(name, "%s Boost", ctlname);
2300 return add_control(spec, AD_CTL_WIDGET_VOL, name,
2301 HDA_COMPOSE_AMP_VAL(bnid, 3, idx, HDA_OUTPUT));
2308 /* create playback/capture controls for input pins */
2309 static int ad1988_auto_create_analog_input_ctls(struct ad198x_spec *spec,
2310 const struct auto_pin_cfg *cfg)
2312 struct hda_input_mux *imux = &spec->private_imux;
2315 for (i = 0; i < AUTO_PIN_LAST; i++) {
2316 err = new_analog_input(spec, cfg->input_pins[i],
2317 auto_pin_cfg_labels[i],
2318 i <= AUTO_PIN_FRONT_MIC);
2321 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
2322 imux->items[imux->num_items].index = ad1988_pin_to_adc_idx(cfg->input_pins[i]);
2325 imux->items[imux->num_items].label = "Mix";
2326 imux->items[imux->num_items].index = 9;
2329 if ((err = add_control(spec, AD_CTL_WIDGET_VOL,
2330 "Analog Mix Playback Volume",
2331 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2333 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE,
2334 "Analog Mix Playback Switch",
2335 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2341 static void ad1988_auto_set_output_and_unmute(struct hda_codec *codec,
2342 hda_nid_t nid, int pin_type,
2346 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2347 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2349 case 0x11: /* port-A - DAC 04 */
2350 snd_hda_codec_write(codec, 0x37, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2352 case 0x14: /* port-B - DAC 06 */
2353 snd_hda_codec_write(codec, 0x30, 0, AC_VERB_SET_CONNECT_SEL, 0x02);
2355 case 0x15: /* port-C - DAC 05 */
2356 snd_hda_codec_write(codec, 0x31, 0, AC_VERB_SET_CONNECT_SEL, 0x00);
2358 case 0x17: /* port-E - DAC 0a */
2359 snd_hda_codec_write(codec, 0x32, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2361 case 0x13: /* mono - DAC 04 */
2362 snd_hda_codec_write(codec, 0x36, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2367 static void ad1988_auto_init_multi_out(struct hda_codec *codec)
2369 struct ad198x_spec *spec = codec->spec;
2372 for (i = 0; i < spec->autocfg.line_outs; i++) {
2373 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2374 ad1988_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2378 static void ad1988_auto_init_extra_out(struct hda_codec *codec)
2380 struct ad198x_spec *spec = codec->spec;
2383 pin = spec->autocfg.speaker_pins[0];
2384 if (pin) /* connect to front */
2385 ad1988_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
2386 pin = spec->autocfg.hp_pin;
2387 if (pin) /* connect to front */
2388 ad1988_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2391 static void ad1988_auto_init_analog_input(struct hda_codec *codec)
2393 struct ad198x_spec *spec = codec->spec;
2396 for (i = 0; i < AUTO_PIN_LAST; i++) {
2397 hda_nid_t nid = spec->autocfg.input_pins[i];
2401 case 0x15: /* port-C */
2402 snd_hda_codec_write(codec, 0x33, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2404 case 0x17: /* port-E */
2405 snd_hda_codec_write(codec, 0x34, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2408 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2409 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
2410 if (nid != AD1988_PIN_CD_NID)
2411 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2413 idx = ad1988_pin_idx(nid);
2414 if (ad1988_boost_nids[idx])
2415 snd_hda_codec_write(codec, ad1988_boost_nids[idx], 0,
2416 AC_VERB_SET_AMP_GAIN_MUTE,
2421 /* parse the BIOS configuration and set up the alc_spec */
2422 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
2423 static int ad1988_parse_auto_config(struct hda_codec *codec)
2425 struct ad198x_spec *spec = codec->spec;
2428 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
2430 if ((err = ad1988_auto_fill_dac_nids(codec, &spec->autocfg)) < 0)
2432 if (! spec->autocfg.line_outs)
2433 return 0; /* can't find valid BIOS pin config */
2434 if ((err = ad1988_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
2435 (err = ad1988_auto_create_extra_out(codec,
2436 spec->autocfg.speaker_pins[0],
2438 (err = ad1988_auto_create_extra_out(codec, spec->autocfg.hp_pin,
2439 "Headphone")) < 0 ||
2440 (err = ad1988_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
2443 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2445 if (spec->autocfg.dig_out_pin)
2446 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2447 if (spec->autocfg.dig_in_pin)
2448 spec->dig_in_nid = AD1988_SPDIF_IN;
2450 if (spec->kctl_alloc)
2451 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
2453 spec->init_verbs[spec->num_init_verbs++] = ad1988_6stack_init_verbs;
2455 spec->input_mux = &spec->private_imux;
2460 /* init callback for auto-configuration model -- overriding the default init */
2461 static int ad1988_auto_init(struct hda_codec *codec)
2464 ad1988_auto_init_multi_out(codec);
2465 ad1988_auto_init_extra_out(codec);
2466 ad1988_auto_init_analog_input(codec);
2474 static struct hda_board_config ad1988_cfg_tbl[] = {
2475 { .modelname = "6stack", .config = AD1988_6STACK },
2476 { .modelname = "6stack-dig", .config = AD1988_6STACK_DIG },
2477 { .modelname = "3stack", .config = AD1988_3STACK },
2478 { .modelname = "3stack-dig", .config = AD1988_3STACK_DIG },
2479 { .modelname = "laptop", .config = AD1988_LAPTOP },
2480 { .modelname = "laptop-dig", .config = AD1988_LAPTOP_DIG },
2481 { .modelname = "auto", .config = AD1988_AUTO },
2485 static int patch_ad1988(struct hda_codec *codec)
2487 struct ad198x_spec *spec;
2490 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2494 mutex_init(&spec->amp_mutex);
2497 if (codec->revision_id == AD1988A_REV2)
2498 snd_printk(KERN_INFO "patch_analog: AD1988A rev.2 is detected, enable workarounds\n");
2500 board_config = snd_hda_check_board_config(codec, ad1988_cfg_tbl);
2501 if (board_config < 0 || board_config >= AD1988_MODEL_LAST) {
2502 printk(KERN_INFO "hda_codec: Unknown model for AD1988, trying auto-probe from BIOS...\n");
2503 board_config = AD1988_AUTO;
2506 if (board_config == AD1988_AUTO) {
2507 /* automatic parse from the BIOS config */
2508 int err = ad1988_parse_auto_config(codec);
2513 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using 6-stack mode...\n");
2514 board_config = AD1988_6STACK;
2518 switch (board_config) {
2520 case AD1988_6STACK_DIG:
2521 spec->multiout.max_channels = 8;
2522 spec->multiout.num_dacs = 4;
2523 if (codec->revision_id == AD1988A_REV2)
2524 spec->multiout.dac_nids = ad1988_6stack_dac_nids_rev2;
2526 spec->multiout.dac_nids = ad1988_6stack_dac_nids;
2527 spec->input_mux = &ad1988_6stack_capture_source;
2528 spec->num_mixers = 2;
2529 if (codec->revision_id == AD1988A_REV2)
2530 spec->mixers[0] = ad1988_6stack_mixers1_rev2;
2532 spec->mixers[0] = ad1988_6stack_mixers1;
2533 spec->mixers[1] = ad1988_6stack_mixers2;
2534 spec->num_init_verbs = 1;
2535 spec->init_verbs[0] = ad1988_6stack_init_verbs;
2536 if (board_config == AD1988_6STACK_DIG) {
2537 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2538 spec->dig_in_nid = AD1988_SPDIF_IN;
2542 case AD1988_3STACK_DIG:
2543 spec->multiout.max_channels = 6;
2544 spec->multiout.num_dacs = 3;
2545 if (codec->revision_id == AD1988A_REV2)
2546 spec->multiout.dac_nids = ad1988_3stack_dac_nids_rev2;
2548 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
2549 spec->input_mux = &ad1988_6stack_capture_source;
2550 spec->channel_mode = ad1988_3stack_modes;
2551 spec->num_channel_mode = ARRAY_SIZE(ad1988_3stack_modes);
2552 spec->num_mixers = 2;
2553 if (codec->revision_id == AD1988A_REV2)
2554 spec->mixers[0] = ad1988_3stack_mixers1_rev2;
2556 spec->mixers[0] = ad1988_3stack_mixers1;
2557 spec->mixers[1] = ad1988_3stack_mixers2;
2558 spec->num_init_verbs = 1;
2559 spec->init_verbs[0] = ad1988_3stack_init_verbs;
2560 if (board_config == AD1988_3STACK_DIG)
2561 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2564 case AD1988_LAPTOP_DIG:
2565 spec->multiout.max_channels = 2;
2566 spec->multiout.num_dacs = 1;
2567 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
2568 spec->input_mux = &ad1988_laptop_capture_source;
2569 spec->num_mixers = 1;
2570 spec->mixers[0] = ad1988_laptop_mixers;
2571 spec->num_init_verbs = 1;
2572 spec->init_verbs[0] = ad1988_laptop_init_verbs;
2573 if (board_config == AD1988_LAPTOP_DIG)
2574 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2578 spec->num_adc_nids = ARRAY_SIZE(ad1988_adc_nids);
2579 spec->adc_nids = ad1988_adc_nids;
2580 spec->capsrc_nids = ad1988_capsrc_nids;
2581 spec->mixers[spec->num_mixers++] = ad1988_capture_mixers;
2582 spec->init_verbs[spec->num_init_verbs++] = ad1988_capture_init_verbs;
2583 if (spec->multiout.dig_out_nid) {
2584 spec->mixers[spec->num_mixers++] = ad1988_spdif_out_mixers;
2585 spec->init_verbs[spec->num_init_verbs++] = ad1988_spdif_init_verbs;
2587 if (spec->dig_in_nid)
2588 spec->mixers[spec->num_mixers++] = ad1988_spdif_in_mixers;
2590 codec->patch_ops = ad198x_patch_ops;
2591 switch (board_config) {
2593 codec->patch_ops.init = ad1988_auto_init;
2596 case AD1988_LAPTOP_DIG:
2597 codec->patch_ops.unsol_event = ad1988_laptop_unsol_event;
2608 struct hda_codec_preset snd_hda_preset_analog[] = {
2609 { .id = 0x11d41981, .name = "AD1981", .patch = patch_ad1981 },
2610 { .id = 0x11d41983, .name = "AD1983", .patch = patch_ad1983 },
2611 { .id = 0x11d41986, .name = "AD1986A", .patch = patch_ad1986a },
2612 { .id = 0x11d41988, .name = "AD1988", .patch = patch_ad1988 },