RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / sound / pci / hda / patch_analog.c
blob0e1a879663fa548b2ce8fde95f20c86ecb795262
1 /*
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"
32 struct ad198x_spec {
33 struct snd_kcontrol_new *mixers[5];
34 int num_mixers;
36 const struct hda_verb *init_verbs[5]; /* initialization verbs
37 * don't forget NULL termination!
39 unsigned int num_init_verbs;
41 /* playback */
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;
47 unsigned int need_dac_fix;
49 /* capture */
50 unsigned int num_adc_nids;
51 hda_nid_t *adc_nids;
52 hda_nid_t dig_in_nid; /* digital-in NID; optional */
54 /* capture source */
55 const struct hda_input_mux *input_mux;
56 hda_nid_t *capsrc_nids;
57 unsigned int cur_mux[3];
59 /* channel model */
60 const struct hda_channel_mode *channel_mode;
61 int num_channel_mode;
63 /* PCM information */
64 struct hda_pcm pcm_rec[2]; /* used in alc_build_pcms() */
66 struct mutex amp_mutex; /* PCM volume/mute control mutex */
67 unsigned int spdif_route;
69 /* dynamic controls, init_verbs and input_mux */
70 struct auto_pin_cfg autocfg;
71 unsigned int num_kctl_alloc, num_kctl_used;
72 struct snd_kcontrol_new *kctl_alloc;
73 struct hda_input_mux private_imux;
74 hda_nid_t private_dac_nids[4];
78 * input MUX handling (common part)
80 static int ad198x_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
82 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
83 struct ad198x_spec *spec = codec->spec;
85 return snd_hda_input_mux_info(spec->input_mux, uinfo);
88 static int ad198x_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
90 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
91 struct ad198x_spec *spec = codec->spec;
92 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
94 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
95 return 0;
98 static int ad198x_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
100 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
101 struct ad198x_spec *spec = codec->spec;
102 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
104 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
105 spec->capsrc_nids[adc_idx],
106 &spec->cur_mux[adc_idx]);
110 * initialization (common callbacks)
112 static int ad198x_init(struct hda_codec *codec)
114 struct ad198x_spec *spec = codec->spec;
115 int i;
117 for (i = 0; i < spec->num_init_verbs; i++)
118 snd_hda_sequence_write(codec, spec->init_verbs[i]);
119 return 0;
122 static int ad198x_build_controls(struct hda_codec *codec)
124 struct ad198x_spec *spec = codec->spec;
125 unsigned int i;
126 int err;
128 for (i = 0; i < spec->num_mixers; i++) {
129 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
130 if (err < 0)
131 return err;
133 if (spec->multiout.dig_out_nid) {
134 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
135 if (err < 0)
136 return err;
138 if (spec->dig_in_nid) {
139 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
140 if (err < 0)
141 return err;
143 return 0;
147 * Analog playback callbacks
149 static int ad198x_playback_pcm_open(struct hda_pcm_stream *hinfo,
150 struct hda_codec *codec,
151 struct snd_pcm_substream *substream)
153 struct ad198x_spec *spec = codec->spec;
154 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
157 static int ad198x_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
158 struct hda_codec *codec,
159 unsigned int stream_tag,
160 unsigned int format,
161 struct snd_pcm_substream *substream)
163 struct ad198x_spec *spec = codec->spec;
164 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
165 format, substream);
168 static int ad198x_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
169 struct hda_codec *codec,
170 struct snd_pcm_substream *substream)
172 struct ad198x_spec *spec = codec->spec;
173 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
177 * Digital out
179 static int ad198x_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
180 struct hda_codec *codec,
181 struct snd_pcm_substream *substream)
183 struct ad198x_spec *spec = codec->spec;
184 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
187 static int ad198x_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
188 struct hda_codec *codec,
189 struct snd_pcm_substream *substream)
191 struct ad198x_spec *spec = codec->spec;
192 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
195 static int ad198x_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
196 struct hda_codec *codec,
197 unsigned int stream_tag,
198 unsigned int format,
199 struct snd_pcm_substream *substream)
201 struct ad198x_spec *spec = codec->spec;
202 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
203 format, substream);
207 * Analog capture
209 static int ad198x_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
210 struct hda_codec *codec,
211 unsigned int stream_tag,
212 unsigned int format,
213 struct snd_pcm_substream *substream)
215 struct ad198x_spec *spec = codec->spec;
216 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
217 stream_tag, 0, format);
218 return 0;
221 static int ad198x_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
222 struct hda_codec *codec,
223 struct snd_pcm_substream *substream)
225 struct ad198x_spec *spec = codec->spec;
226 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
227 0, 0, 0);
228 return 0;
234 static struct hda_pcm_stream ad198x_pcm_analog_playback = {
235 .substreams = 1,
236 .channels_min = 2,
237 .channels_max = 6, /* changed later */
238 .nid = 0, /* fill later */
239 .ops = {
240 .open = ad198x_playback_pcm_open,
241 .prepare = ad198x_playback_pcm_prepare,
242 .cleanup = ad198x_playback_pcm_cleanup
246 static struct hda_pcm_stream ad198x_pcm_analog_capture = {
247 .substreams = 1,
248 .channels_min = 2,
249 .channels_max = 2,
250 .nid = 0, /* fill later */
251 .ops = {
252 .prepare = ad198x_capture_pcm_prepare,
253 .cleanup = ad198x_capture_pcm_cleanup
257 static struct hda_pcm_stream ad198x_pcm_digital_playback = {
258 .substreams = 1,
259 .channels_min = 2,
260 .channels_max = 2,
261 .nid = 0, /* fill later */
262 .ops = {
263 .open = ad198x_dig_playback_pcm_open,
264 .close = ad198x_dig_playback_pcm_close,
265 .prepare = ad198x_dig_playback_pcm_prepare
269 static struct hda_pcm_stream ad198x_pcm_digital_capture = {
270 .substreams = 1,
271 .channels_min = 2,
272 .channels_max = 2,
273 /* NID is set in alc_build_pcms */
276 static int ad198x_build_pcms(struct hda_codec *codec)
278 struct ad198x_spec *spec = codec->spec;
279 struct hda_pcm *info = spec->pcm_rec;
281 codec->num_pcms = 1;
282 codec->pcm_info = info;
284 info->name = "AD198x Analog";
285 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_analog_playback;
286 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->multiout.max_channels;
287 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
288 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_analog_capture;
289 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
290 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
292 if (spec->multiout.dig_out_nid) {
293 info++;
294 codec->num_pcms++;
295 info->name = "AD198x Digital";
296 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_digital_playback;
297 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
298 if (spec->dig_in_nid) {
299 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_digital_capture;
300 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
304 return 0;
307 static void ad198x_free(struct hda_codec *codec)
309 struct ad198x_spec *spec = codec->spec;
310 unsigned int i;
312 if (spec->kctl_alloc) {
313 for (i = 0; i < spec->num_kctl_used; i++)
314 kfree(spec->kctl_alloc[i].name);
315 kfree(spec->kctl_alloc);
317 kfree(codec->spec);
320 #ifdef CONFIG_PM
321 static int ad198x_resume(struct hda_codec *codec)
323 struct ad198x_spec *spec = codec->spec;
324 int i;
326 codec->patch_ops.init(codec);
327 for (i = 0; i < spec->num_mixers; i++)
328 snd_hda_resume_ctls(codec, spec->mixers[i]);
329 if (spec->multiout.dig_out_nid)
330 snd_hda_resume_spdif_out(codec);
331 if (spec->dig_in_nid)
332 snd_hda_resume_spdif_in(codec);
333 return 0;
335 #endif
337 static struct hda_codec_ops ad198x_patch_ops = {
338 .build_controls = ad198x_build_controls,
339 .build_pcms = ad198x_build_pcms,
340 .init = ad198x_init,
341 .free = ad198x_free,
342 #ifdef CONFIG_PM
343 .resume = ad198x_resume,
344 #endif
349 * EAPD control
350 * the private value = nid | (invert << 8)
352 static int ad198x_eapd_info(struct snd_kcontrol *kcontrol,
353 struct snd_ctl_elem_info *uinfo)
355 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
356 uinfo->count = 1;
357 uinfo->value.integer.min = 0;
358 uinfo->value.integer.max = 1;
359 return 0;
362 static int ad198x_eapd_get(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 if (invert)
369 ucontrol->value.integer.value[0] = ! spec->cur_eapd;
370 else
371 ucontrol->value.integer.value[0] = spec->cur_eapd;
372 return 0;
375 static int ad198x_eapd_put(struct snd_kcontrol *kcontrol,
376 struct snd_ctl_elem_value *ucontrol)
378 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
379 struct ad198x_spec *spec = codec->spec;
380 int invert = (kcontrol->private_value >> 8) & 1;
381 hda_nid_t nid = kcontrol->private_value & 0xff;
382 unsigned int eapd;
383 eapd = ucontrol->value.integer.value[0];
384 if (invert)
385 eapd = !eapd;
386 if (eapd == spec->cur_eapd && ! codec->in_resume)
387 return 0;
388 spec->cur_eapd = eapd;
389 snd_hda_codec_write(codec, nid,
390 0, AC_VERB_SET_EAPD_BTLENABLE,
391 eapd ? 0x02 : 0x00);
392 return 1;
395 static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
396 struct snd_ctl_elem_info *uinfo);
397 static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
398 struct snd_ctl_elem_value *ucontrol);
399 static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
400 struct snd_ctl_elem_value *ucontrol);
404 * AD1986A specific
407 #define AD1986A_SPDIF_OUT 0x02
408 #define AD1986A_FRONT_DAC 0x03
409 #define AD1986A_SURR_DAC 0x04
410 #define AD1986A_CLFE_DAC 0x05
411 #define AD1986A_ADC 0x06
413 static hda_nid_t ad1986a_dac_nids[3] = {
414 AD1986A_FRONT_DAC, AD1986A_SURR_DAC, AD1986A_CLFE_DAC
416 static hda_nid_t ad1986a_adc_nids[1] = { AD1986A_ADC };
417 static hda_nid_t ad1986a_capsrc_nids[1] = { 0x12 };
419 static struct hda_input_mux ad1986a_capture_source = {
420 .num_items = 7,
421 .items = {
422 { "Mic", 0x0 },
423 { "CD", 0x1 },
424 { "Aux", 0x3 },
425 { "Line", 0x4 },
426 { "Mix", 0x5 },
427 { "Mono", 0x6 },
428 { "Phone", 0x7 },
433 * PCM control
435 * bind volumes/mutes of 3 DACs as a single PCM control for simplicity
438 #define ad1986a_pcm_amp_vol_info snd_hda_mixer_amp_volume_info
440 static int ad1986a_pcm_amp_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
442 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
443 struct ad198x_spec *ad = codec->spec;
445 mutex_lock(&ad->amp_mutex);
446 snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
447 mutex_unlock(&ad->amp_mutex);
448 return 0;
451 static int ad1986a_pcm_amp_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
453 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
454 struct ad198x_spec *ad = codec->spec;
455 int i, change = 0;
457 mutex_lock(&ad->amp_mutex);
458 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
459 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
460 change |= snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
462 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
463 mutex_unlock(&ad->amp_mutex);
464 return change;
467 #define ad1986a_pcm_amp_sw_info snd_hda_mixer_amp_switch_info
469 static int ad1986a_pcm_amp_sw_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
471 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
472 struct ad198x_spec *ad = codec->spec;
474 mutex_lock(&ad->amp_mutex);
475 snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
476 mutex_unlock(&ad->amp_mutex);
477 return 0;
480 static int ad1986a_pcm_amp_sw_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
482 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
483 struct ad198x_spec *ad = codec->spec;
484 int i, change = 0;
486 mutex_lock(&ad->amp_mutex);
487 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
488 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
489 change |= snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
491 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
492 mutex_unlock(&ad->amp_mutex);
493 return change;
497 * mixers
499 static struct snd_kcontrol_new ad1986a_mixers[] = {
501 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
502 .name = "PCM Playback Volume",
503 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
504 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
505 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
506 .info = ad1986a_pcm_amp_vol_info,
507 .get = ad1986a_pcm_amp_vol_get,
508 .put = ad1986a_pcm_amp_vol_put,
509 .tlv = { .c = snd_hda_mixer_amp_tlv },
510 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
513 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
514 .name = "PCM Playback Switch",
515 .info = ad1986a_pcm_amp_sw_info,
516 .get = ad1986a_pcm_amp_sw_get,
517 .put = ad1986a_pcm_amp_sw_put,
518 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
520 HDA_CODEC_VOLUME("Front Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
521 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
522 HDA_CODEC_VOLUME("Surround Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
523 HDA_CODEC_MUTE("Surround Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
524 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x1d, 1, 0x0, HDA_OUTPUT),
525 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x1d, 2, 0x0, HDA_OUTPUT),
526 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x1d, 1, 0x0, HDA_OUTPUT),
527 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x1d, 2, 0x0, HDA_OUTPUT),
528 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
529 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT),
530 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
531 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
532 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
533 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
534 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
535 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
536 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
537 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
538 HDA_CODEC_VOLUME("Mic Boost", 0x0f, 0x0, HDA_OUTPUT),
539 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
540 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
541 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
542 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT),
543 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
544 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
546 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
547 .name = "Capture Source",
548 .info = ad198x_mux_enum_info,
549 .get = ad198x_mux_enum_get,
550 .put = ad198x_mux_enum_put,
552 HDA_CODEC_MUTE("Stereo Downmix Switch", 0x09, 0x0, HDA_OUTPUT),
553 { } /* end */
556 /* additional mixers for 3stack mode */
557 static struct snd_kcontrol_new ad1986a_3st_mixers[] = {
559 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
560 .name = "Channel Mode",
561 .info = ad198x_ch_mode_info,
562 .get = ad198x_ch_mode_get,
563 .put = ad198x_ch_mode_put,
565 { } /* end */
568 /* laptop model - 2ch only */
569 static hda_nid_t ad1986a_laptop_dac_nids[1] = { AD1986A_FRONT_DAC };
571 static struct snd_kcontrol_new ad1986a_laptop_mixers[] = {
572 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
573 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
574 HDA_CODEC_VOLUME("Master Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
575 HDA_CODEC_MUTE("Master Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
576 /* HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
577 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT), */
578 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
579 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
580 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
581 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
582 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
583 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
584 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
585 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
586 HDA_CODEC_VOLUME("Mic Boost", 0x0f, 0x0, HDA_OUTPUT),
587 /* HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
588 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
589 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
590 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT), */
591 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
592 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
594 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
595 .name = "Capture Source",
596 .info = ad198x_mux_enum_info,
597 .get = ad198x_mux_enum_get,
598 .put = ad198x_mux_enum_put,
600 { } /* end */
603 /* laptop-eapd model - 2ch only */
605 /* master controls both pins 0x1a and 0x1b */
606 static int ad1986a_laptop_master_vol_put(struct snd_kcontrol *kcontrol,
607 struct snd_ctl_elem_value *ucontrol)
609 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
610 long *valp = ucontrol->value.integer.value;
611 int change;
613 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
614 0x7f, valp[0] & 0x7f);
615 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
616 0x7f, valp[1] & 0x7f);
617 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
618 0x7f, valp[0] & 0x7f);
619 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
620 0x7f, valp[1] & 0x7f);
621 return change;
624 static int ad1986a_laptop_master_sw_put(struct snd_kcontrol *kcontrol,
625 struct snd_ctl_elem_value *ucontrol)
627 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
628 long *valp = ucontrol->value.integer.value;
629 int change;
631 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
632 0x80, valp[0] ? 0 : 0x80);
633 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
634 0x80, valp[1] ? 0 : 0x80);
635 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
636 0x80, valp[0] ? 0 : 0x80);
637 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
638 0x80, valp[1] ? 0 : 0x80);
639 return change;
642 static struct hda_input_mux ad1986a_laptop_eapd_capture_source = {
643 .num_items = 3,
644 .items = {
645 { "Mic", 0x0 },
646 { "Internal Mic", 0x4 },
647 { "Mix", 0x5 },
651 static struct snd_kcontrol_new ad1986a_laptop_eapd_mixers[] = {
653 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
654 .name = "Master Playback Volume",
655 .info = snd_hda_mixer_amp_volume_info,
656 .get = snd_hda_mixer_amp_volume_get,
657 .put = ad1986a_laptop_master_vol_put,
658 .tlv = { .c = snd_hda_mixer_amp_tlv },
659 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
662 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
663 .name = "Master Playback Switch",
664 .info = snd_hda_mixer_amp_switch_info,
665 .get = snd_hda_mixer_amp_switch_get,
666 .put = ad1986a_laptop_master_sw_put,
667 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
669 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
670 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
671 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x0, HDA_OUTPUT),
672 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x0, HDA_OUTPUT),
673 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
674 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
675 HDA_CODEC_VOLUME("Mic Boost", 0x0f, 0x0, HDA_OUTPUT),
676 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
677 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
679 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
680 .name = "Capture Source",
681 .info = ad198x_mux_enum_info,
682 .get = ad198x_mux_enum_get,
683 .put = ad198x_mux_enum_put,
686 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
687 .name = "External Amplifier",
688 .info = ad198x_eapd_info,
689 .get = ad198x_eapd_get,
690 .put = ad198x_eapd_put,
691 .private_value = 0x1b | (1 << 8), /* port-D, inversed */
693 { } /* end */
697 * initialization verbs
699 static struct hda_verb ad1986a_init_verbs[] = {
700 /* Front, Surround, CLFE DAC; mute as default */
701 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
702 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
703 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
704 /* Downmix - off */
705 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
706 /* HP, Line-Out, Surround, CLFE selectors */
707 {0x0a, AC_VERB_SET_CONNECT_SEL, 0x0},
708 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0},
709 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
710 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
711 /* Mono selector */
712 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x0},
713 /* Mic selector: Mic 1/2 pin */
714 {0x0f, AC_VERB_SET_CONNECT_SEL, 0x0},
715 /* Line-in selector: Line-in */
716 {0x10, AC_VERB_SET_CONNECT_SEL, 0x0},
717 /* Mic 1/2 swap */
718 {0x11, AC_VERB_SET_CONNECT_SEL, 0x0},
719 /* Record selector: mic */
720 {0x12, AC_VERB_SET_CONNECT_SEL, 0x0},
721 /* Mic, Phone, CD, Aux, Line-In amp; mute as default */
722 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
723 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
724 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
725 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
726 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
727 /* PC beep */
728 {0x18, AC_VERB_SET_CONNECT_SEL, 0x0},
729 /* HP, Line-Out, Surround, CLFE, Mono pins; mute as default */
730 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
731 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
732 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
733 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
734 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
735 /* HP Pin */
736 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
737 /* Front, Surround, CLFE Pins */
738 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
739 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
740 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
741 /* Mono Pin */
742 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
743 /* Mic Pin */
744 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
745 /* Line, Aux, CD, Beep-In Pin */
746 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
747 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
748 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
749 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
750 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
751 { } /* end */
754 static struct hda_verb ad1986a_ch2_init[] = {
755 /* Surround out -> Line In */
756 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
757 /* Line-in selectors */
758 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x1 },
759 /* CLFE -> Mic in */
760 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
761 /* Mic selector, mix C/LFE (backmic) and Mic (frontmic) */
762 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x4 },
763 { } /* end */
766 static struct hda_verb ad1986a_ch4_init[] = {
767 /* Surround out -> Surround */
768 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
769 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
770 /* CLFE -> Mic in */
771 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
772 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x4 },
773 { } /* end */
776 static struct hda_verb ad1986a_ch6_init[] = {
777 /* Surround out -> Surround out */
778 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
779 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
780 /* CLFE -> CLFE */
781 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
782 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x0 },
783 { } /* end */
786 static struct hda_channel_mode ad1986a_modes[3] = {
787 { 2, ad1986a_ch2_init },
788 { 4, ad1986a_ch4_init },
789 { 6, ad1986a_ch6_init },
792 /* eapd initialization */
793 static struct hda_verb ad1986a_eapd_init_verbs[] = {
794 {0x1b, AC_VERB_SET_EAPD_BTLENABLE, 0x00 },
798 /* Ultra initialization */
799 static struct hda_verb ad1986a_ultra_init[] = {
800 /* eapd initialization */
801 { 0x1b, AC_VERB_SET_EAPD_BTLENABLE, 0x00 },
802 /* CLFE -> Mic in */
803 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x2 },
804 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
805 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
806 { } /* end */
809 /* models */
810 enum {
811 AD1986A_6STACK,
812 AD1986A_3STACK,
813 AD1986A_LAPTOP,
814 AD1986A_LAPTOP_EAPD,
815 AD1986A_ULTRA,
816 AD1986A_MODELS
819 static const char *ad1986a_models[AD1986A_MODELS] = {
820 [AD1986A_6STACK] = "6stack",
821 [AD1986A_3STACK] = "3stack",
822 [AD1986A_LAPTOP] = "laptop",
823 [AD1986A_LAPTOP_EAPD] = "laptop-eapd",
824 [AD1986A_ULTRA] = "ultra",
827 static struct snd_pci_quirk ad1986a_cfg_tbl[] = {
828 SND_PCI_QUIRK(0x103c, 0x30af, "HP B2800", AD1986A_LAPTOP_EAPD),
829 SND_PCI_QUIRK(0x10de, 0xcb84, "ASUS A8N-VM", AD1986A_3STACK),
830 SND_PCI_QUIRK(0x1043, 0x1153, "ASUS M9", AD1986A_LAPTOP_EAPD),
831 SND_PCI_QUIRK(0x1043, 0x1213, "ASUS A6J", AD1986A_LAPTOP_EAPD),
832 SND_PCI_QUIRK(0x1043, 0x11f7, "ASUS U5A", AD1986A_LAPTOP_EAPD),
833 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS U5F", AD1986A_LAPTOP_EAPD),
834 SND_PCI_QUIRK(0x1043, 0x1297, "ASUS Z62F", AD1986A_LAPTOP_EAPD),
835 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS V1j", AD1986A_LAPTOP_EAPD),
836 SND_PCI_QUIRK(0x1043, 0x1302, "ASUS W3j", AD1986A_LAPTOP_EAPD),
837 SND_PCI_QUIRK(0x1043, 0x1447, "ASUS A8J", AD1986A_3STACK),
838 SND_PCI_QUIRK(0x1043, 0x817f, "ASUS P5", AD1986A_3STACK),
839 SND_PCI_QUIRK(0x1043, 0x818f, "ASUS P5", AD1986A_LAPTOP),
840 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS P5", AD1986A_3STACK),
841 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS M2N", AD1986A_3STACK),
842 SND_PCI_QUIRK(0x1043, 0x8234, "ASUS M2N", AD1986A_3STACK),
843 SND_PCI_QUIRK(0x144d, 0xb03c, "Samsung R55", AD1986A_3STACK),
844 SND_PCI_QUIRK(0x144d, 0xc01e, "FSC V2060", AD1986A_LAPTOP),
845 SND_PCI_QUIRK(0x144d, 0xc023, "Samsung X60", AD1986A_LAPTOP_EAPD),
846 SND_PCI_QUIRK(0x144d, 0xc024, "Samsung R65", AD1986A_LAPTOP_EAPD),
847 SND_PCI_QUIRK(0x144d, 0xc026, "Samsung X11", AD1986A_LAPTOP_EAPD),
848 SND_PCI_QUIRK(0x144d, 0xc504, "Samsung Q35", AD1986A_3STACK),
849 SND_PCI_QUIRK(0x144d, 0xc027, "Samsung Q1", AD1986A_ULTRA),
850 SND_PCI_QUIRK(0x17aa, 0x1011, "Lenovo M55", AD1986A_LAPTOP),
851 SND_PCI_QUIRK(0x17aa, 0x1017, "Lenovo A60", AD1986A_3STACK),
852 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo N100", AD1986A_LAPTOP_EAPD),
853 SND_PCI_QUIRK(0x17c0, 0x2017, "Samsung M50", AD1986A_LAPTOP),
857 static int patch_ad1986a(struct hda_codec *codec)
859 struct ad198x_spec *spec;
860 int board_config;
862 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
863 if (spec == NULL)
864 return -ENOMEM;
866 mutex_init(&spec->amp_mutex);
867 codec->spec = spec;
869 spec->multiout.max_channels = 6;
870 spec->multiout.num_dacs = ARRAY_SIZE(ad1986a_dac_nids);
871 spec->multiout.dac_nids = ad1986a_dac_nids;
872 spec->multiout.dig_out_nid = AD1986A_SPDIF_OUT;
873 spec->num_adc_nids = 1;
874 spec->adc_nids = ad1986a_adc_nids;
875 spec->capsrc_nids = ad1986a_capsrc_nids;
876 spec->input_mux = &ad1986a_capture_source;
877 spec->num_mixers = 1;
878 spec->mixers[0] = ad1986a_mixers;
879 spec->num_init_verbs = 1;
880 spec->init_verbs[0] = ad1986a_init_verbs;
882 codec->patch_ops = ad198x_patch_ops;
884 /* override some parameters */
885 board_config = snd_hda_check_board_config(codec, AD1986A_MODELS,
886 ad1986a_models,
887 ad1986a_cfg_tbl);
888 switch (board_config) {
889 case AD1986A_3STACK:
890 spec->num_mixers = 2;
891 spec->mixers[1] = ad1986a_3st_mixers;
892 spec->num_init_verbs = 2;
893 spec->init_verbs[1] = ad1986a_ch2_init;
894 spec->channel_mode = ad1986a_modes;
895 spec->num_channel_mode = ARRAY_SIZE(ad1986a_modes);
896 spec->need_dac_fix = 1;
897 spec->multiout.max_channels = 2;
898 spec->multiout.num_dacs = 1;
899 break;
900 case AD1986A_LAPTOP:
901 spec->mixers[0] = ad1986a_laptop_mixers;
902 spec->multiout.max_channels = 2;
903 spec->multiout.num_dacs = 1;
904 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
905 break;
906 case AD1986A_LAPTOP_EAPD:
907 spec->mixers[0] = ad1986a_laptop_eapd_mixers;
908 spec->num_init_verbs = 2;
909 spec->init_verbs[1] = ad1986a_eapd_init_verbs;
910 spec->multiout.max_channels = 2;
911 spec->multiout.num_dacs = 1;
912 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
913 spec->multiout.dig_out_nid = 0;
914 spec->input_mux = &ad1986a_laptop_eapd_capture_source;
915 break;
916 case AD1986A_ULTRA:
917 spec->mixers[0] = ad1986a_laptop_eapd_mixers;
918 spec->num_init_verbs = 2;
919 spec->init_verbs[1] = ad1986a_ultra_init;
920 spec->multiout.max_channels = 2;
921 spec->multiout.num_dacs = 1;
922 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
923 spec->multiout.dig_out_nid = 0;
924 break;
927 return 0;
931 * AD1983 specific
934 #define AD1983_SPDIF_OUT 0x02
935 #define AD1983_DAC 0x03
936 #define AD1983_ADC 0x04
938 static hda_nid_t ad1983_dac_nids[1] = { AD1983_DAC };
939 static hda_nid_t ad1983_adc_nids[1] = { AD1983_ADC };
940 static hda_nid_t ad1983_capsrc_nids[1] = { 0x15 };
942 static struct hda_input_mux ad1983_capture_source = {
943 .num_items = 4,
944 .items = {
945 { "Mic", 0x0 },
946 { "Line", 0x1 },
947 { "Mix", 0x2 },
948 { "Mix Mono", 0x3 },
953 * SPDIF playback route
955 static int ad1983_spdif_route_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
957 static char *texts[] = { "PCM", "ADC" };
959 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
960 uinfo->count = 1;
961 uinfo->value.enumerated.items = 2;
962 if (uinfo->value.enumerated.item > 1)
963 uinfo->value.enumerated.item = 1;
964 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
965 return 0;
968 static int ad1983_spdif_route_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
970 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
971 struct ad198x_spec *spec = codec->spec;
973 ucontrol->value.enumerated.item[0] = spec->spdif_route;
974 return 0;
977 static int ad1983_spdif_route_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
979 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
980 struct ad198x_spec *spec = codec->spec;
982 if (spec->spdif_route != ucontrol->value.enumerated.item[0]) {
983 spec->spdif_route = ucontrol->value.enumerated.item[0];
984 snd_hda_codec_write(codec, spec->multiout.dig_out_nid, 0,
985 AC_VERB_SET_CONNECT_SEL, spec->spdif_route);
986 return 1;
988 return 0;
991 static struct snd_kcontrol_new ad1983_mixers[] = {
992 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
993 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
994 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
995 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
996 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
997 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
998 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
999 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1000 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1001 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1002 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1003 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1004 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x10, 1, 0x0, HDA_OUTPUT),
1005 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x10, 1, 0x0, HDA_OUTPUT),
1006 HDA_CODEC_VOLUME("Mic Boost", 0x0c, 0x0, HDA_OUTPUT),
1007 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1008 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1010 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1011 .name = "Capture Source",
1012 .info = ad198x_mux_enum_info,
1013 .get = ad198x_mux_enum_get,
1014 .put = ad198x_mux_enum_put,
1017 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1018 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
1019 .info = ad1983_spdif_route_info,
1020 .get = ad1983_spdif_route_get,
1021 .put = ad1983_spdif_route_put,
1023 { } /* end */
1026 static struct hda_verb ad1983_init_verbs[] = {
1027 /* Front, HP, Mono; mute as default */
1028 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1029 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1030 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1031 /* Beep, PCM, Mic, Line-In: mute */
1032 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1033 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1034 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1035 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1036 /* Front, HP selectors; from Mix */
1037 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
1038 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
1039 /* Mono selector; from Mix */
1040 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
1041 /* Mic selector; Mic */
1042 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
1043 /* Line-in selector: Line-in */
1044 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
1045 /* Mic boost: 0dB */
1046 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1047 /* Record selector: mic */
1048 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
1049 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1050 /* SPDIF route: PCM */
1051 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
1052 /* Front Pin */
1053 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1054 /* HP Pin */
1055 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
1056 /* Mono Pin */
1057 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1058 /* Mic Pin */
1059 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1060 /* Line Pin */
1061 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1062 { } /* end */
1066 static int patch_ad1983(struct hda_codec *codec)
1068 struct ad198x_spec *spec;
1070 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1071 if (spec == NULL)
1072 return -ENOMEM;
1074 mutex_init(&spec->amp_mutex);
1075 codec->spec = spec;
1077 spec->multiout.max_channels = 2;
1078 spec->multiout.num_dacs = ARRAY_SIZE(ad1983_dac_nids);
1079 spec->multiout.dac_nids = ad1983_dac_nids;
1080 spec->multiout.dig_out_nid = AD1983_SPDIF_OUT;
1081 spec->num_adc_nids = 1;
1082 spec->adc_nids = ad1983_adc_nids;
1083 spec->capsrc_nids = ad1983_capsrc_nids;
1084 spec->input_mux = &ad1983_capture_source;
1085 spec->num_mixers = 1;
1086 spec->mixers[0] = ad1983_mixers;
1087 spec->num_init_verbs = 1;
1088 spec->init_verbs[0] = ad1983_init_verbs;
1089 spec->spdif_route = 0;
1091 codec->patch_ops = ad198x_patch_ops;
1093 return 0;
1098 * AD1981 HD specific
1101 #define AD1981_SPDIF_OUT 0x02
1102 #define AD1981_DAC 0x03
1103 #define AD1981_ADC 0x04
1105 static hda_nid_t ad1981_dac_nids[1] = { AD1981_DAC };
1106 static hda_nid_t ad1981_adc_nids[1] = { AD1981_ADC };
1107 static hda_nid_t ad1981_capsrc_nids[1] = { 0x15 };
1109 /* 0x0c, 0x09, 0x0e, 0x0f, 0x19, 0x05, 0x18, 0x17 */
1110 static struct hda_input_mux ad1981_capture_source = {
1111 .num_items = 7,
1112 .items = {
1113 { "Front Mic", 0x0 },
1114 { "Line", 0x1 },
1115 { "Mix", 0x2 },
1116 { "Mix Mono", 0x3 },
1117 { "CD", 0x4 },
1118 { "Mic", 0x6 },
1119 { "Aux", 0x7 },
1123 static struct snd_kcontrol_new ad1981_mixers[] = {
1124 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1125 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
1126 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1127 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
1128 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
1129 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
1130 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1131 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1132 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1133 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1134 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1135 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1136 HDA_CODEC_VOLUME("Aux Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1137 HDA_CODEC_MUTE("Aux Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1138 HDA_CODEC_VOLUME("Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1139 HDA_CODEC_MUTE("Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1140 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1141 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1142 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1143 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x0d, 1, 0x0, HDA_OUTPUT),
1144 HDA_CODEC_VOLUME("Front Mic Boost", 0x08, 0x0, HDA_INPUT),
1145 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x0, HDA_INPUT),
1146 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1147 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1149 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1150 .name = "Capture Source",
1151 .info = ad198x_mux_enum_info,
1152 .get = ad198x_mux_enum_get,
1153 .put = ad198x_mux_enum_put,
1155 /* identical with AD1983 */
1157 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1158 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
1159 .info = ad1983_spdif_route_info,
1160 .get = ad1983_spdif_route_get,
1161 .put = ad1983_spdif_route_put,
1163 { } /* end */
1166 static struct hda_verb ad1981_init_verbs[] = {
1167 /* Front, HP, Mono; mute as default */
1168 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1169 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1170 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1171 /* Beep, PCM, Front Mic, Line, Rear Mic, Aux, CD-In: mute */
1172 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1173 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1174 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1175 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1176 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1177 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1178 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1179 /* Front, HP selectors; from Mix */
1180 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
1181 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
1182 /* Mono selector; from Mix */
1183 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
1184 /* Mic Mixer; select Front Mic */
1185 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1186 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1187 /* Mic boost: 0dB */
1188 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1189 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1190 /* Record selector: Front mic */
1191 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
1192 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1193 /* SPDIF route: PCM */
1194 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
1195 /* Front Pin */
1196 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1197 /* HP Pin */
1198 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
1199 /* Mono Pin */
1200 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1201 /* Front & Rear Mic Pins */
1202 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1203 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1204 /* Line Pin */
1205 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1206 /* Digital Beep */
1207 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
1208 /* Line-Out as Input: disabled */
1209 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1210 { } /* end */
1214 * Patch for HP nx6320
1216 * nx6320 uses EAPD in the reverse way - EAPD-on means the internal
1217 * speaker output enabled _and_ mute-LED off.
1220 #define AD1981_HP_EVENT 0x37
1221 #define AD1981_MIC_EVENT 0x38
1223 static struct hda_verb ad1981_hp_init_verbs[] = {
1224 {0x05, AC_VERB_SET_EAPD_BTLENABLE, 0x00 }, /* default off */
1225 /* pin sensing on HP and Mic jacks */
1226 {0x06, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_HP_EVENT},
1227 {0x08, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_MIC_EVENT},
1231 /* turn on/off EAPD (+ mute HP) as a master switch */
1232 static int ad1981_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1233 struct snd_ctl_elem_value *ucontrol)
1235 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1236 struct ad198x_spec *spec = codec->spec;
1238 if (! ad198x_eapd_put(kcontrol, ucontrol))
1239 return 0;
1241 /* toggle HP mute appropriately */
1242 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1243 0x80, spec->cur_eapd ? 0 : 0x80);
1244 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1245 0x80, spec->cur_eapd ? 0 : 0x80);
1246 return 1;
1249 /* bind volumes of both NID 0x05 and 0x06 */
1250 static int ad1981_hp_master_vol_put(struct snd_kcontrol *kcontrol,
1251 struct snd_ctl_elem_value *ucontrol)
1253 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1254 long *valp = ucontrol->value.integer.value;
1255 int change;
1257 change = snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1258 0x7f, valp[0] & 0x7f);
1259 change |= snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1260 0x7f, valp[1] & 0x7f);
1261 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1262 0x7f, valp[0] & 0x7f);
1263 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1264 0x7f, valp[1] & 0x7f);
1265 return change;
1268 /* mute internal speaker if HP is plugged */
1269 static void ad1981_hp_automute(struct hda_codec *codec)
1271 unsigned int present;
1273 present = snd_hda_codec_read(codec, 0x06, 0,
1274 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1275 snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1276 0x80, present ? 0x80 : 0);
1277 snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1278 0x80, present ? 0x80 : 0);
1281 /* toggle input of built-in and mic jack appropriately */
1282 static void ad1981_hp_automic(struct hda_codec *codec)
1284 static struct hda_verb mic_jack_on[] = {
1285 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1286 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1289 static struct hda_verb mic_jack_off[] = {
1290 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1291 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1294 unsigned int present;
1296 present = snd_hda_codec_read(codec, 0x08, 0,
1297 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1298 if (present)
1299 snd_hda_sequence_write(codec, mic_jack_on);
1300 else
1301 snd_hda_sequence_write(codec, mic_jack_off);
1304 /* unsolicited event for HP jack sensing */
1305 static void ad1981_hp_unsol_event(struct hda_codec *codec,
1306 unsigned int res)
1308 res >>= 26;
1309 switch (res) {
1310 case AD1981_HP_EVENT:
1311 ad1981_hp_automute(codec);
1312 break;
1313 case AD1981_MIC_EVENT:
1314 ad1981_hp_automic(codec);
1315 break;
1319 static struct hda_input_mux ad1981_hp_capture_source = {
1320 .num_items = 3,
1321 .items = {
1322 { "Mic", 0x0 },
1323 { "Docking-Station", 0x1 },
1324 { "Mix", 0x2 },
1328 static struct snd_kcontrol_new ad1981_hp_mixers[] = {
1330 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1331 .name = "Master Playback Volume",
1332 .info = snd_hda_mixer_amp_volume_info,
1333 .get = snd_hda_mixer_amp_volume_get,
1334 .put = ad1981_hp_master_vol_put,
1335 .private_value = HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),
1338 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1339 .name = "Master Playback Switch",
1340 .info = ad198x_eapd_info,
1341 .get = ad198x_eapd_get,
1342 .put = ad1981_hp_master_sw_put,
1343 .private_value = 0x05,
1345 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1346 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1347 #if 0
1348 /* FIXME: analog mic/line loopback doesn't work with my tests...
1349 * (although recording is OK)
1351 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1352 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1353 HDA_CODEC_VOLUME("Docking-Station Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1354 HDA_CODEC_MUTE("Docking-Station Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1355 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1356 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1357 /* FIXME: does this laptop have analog CD connection? */
1358 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1359 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1360 #endif
1361 HDA_CODEC_VOLUME("Mic Boost", 0x08, 0x0, HDA_INPUT),
1362 HDA_CODEC_VOLUME("Internal Mic Boost", 0x18, 0x0, HDA_INPUT),
1363 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1364 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1366 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1367 .name = "Capture Source",
1368 .info = ad198x_mux_enum_info,
1369 .get = ad198x_mux_enum_get,
1370 .put = ad198x_mux_enum_put,
1372 { } /* end */
1375 /* initialize jack-sensing, too */
1376 static int ad1981_hp_init(struct hda_codec *codec)
1378 ad198x_init(codec);
1379 ad1981_hp_automute(codec);
1380 ad1981_hp_automic(codec);
1381 return 0;
1384 /* configuration for Toshiba Laptops */
1385 static struct hda_verb ad1981_toshiba_init_verbs[] = {
1386 {0x05, AC_VERB_SET_EAPD_BTLENABLE, 0x01 }, /* default on */
1387 /* pin sensing on HP and Mic jacks */
1388 {0x06, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_HP_EVENT},
1389 {0x08, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_MIC_EVENT},
1393 static struct snd_kcontrol_new ad1981_toshiba_mixers[] = {
1394 HDA_CODEC_VOLUME("Amp Volume", 0x1a, 0x0, HDA_OUTPUT),
1395 HDA_CODEC_MUTE("Amp Switch", 0x1a, 0x0, HDA_OUTPUT),
1399 /* configuration for Lenovo Thinkpad T60 */
1400 static struct snd_kcontrol_new ad1981_thinkpad_mixers[] = {
1401 HDA_CODEC_VOLUME("Master Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1402 HDA_CODEC_MUTE("Master Playback Switch", 0x05, 0x0, HDA_OUTPUT),
1403 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1404 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1405 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1406 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1407 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1408 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1409 HDA_CODEC_VOLUME("Mic Boost", 0x08, 0x0, HDA_INPUT),
1410 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1411 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1413 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1414 .name = "Capture Source",
1415 .info = ad198x_mux_enum_info,
1416 .get = ad198x_mux_enum_get,
1417 .put = ad198x_mux_enum_put,
1419 /* identical with AD1983 */
1421 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1422 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
1423 .info = ad1983_spdif_route_info,
1424 .get = ad1983_spdif_route_get,
1425 .put = ad1983_spdif_route_put,
1427 { } /* end */
1430 static struct hda_input_mux ad1981_thinkpad_capture_source = {
1431 .num_items = 3,
1432 .items = {
1433 { "Mic", 0x0 },
1434 { "Mix", 0x2 },
1435 { "CD", 0x4 },
1439 /* models */
1440 enum {
1441 AD1981_BASIC,
1442 AD1981_HP,
1443 AD1981_THINKPAD,
1444 AD1981_TOSHIBA,
1445 AD1981_MODELS
1448 static const char *ad1981_models[AD1981_MODELS] = {
1449 [AD1981_HP] = "hp",
1450 [AD1981_THINKPAD] = "thinkpad",
1451 [AD1981_BASIC] = "basic",
1452 [AD1981_TOSHIBA] = "toshiba"
1455 static struct snd_pci_quirk ad1981_cfg_tbl[] = {
1456 /* All HP models */
1457 SND_PCI_QUIRK(0x103c, 0, "HP nx", AD1981_HP),
1458 /* HP nx6320 (reversed SSID, H/W bug) */
1459 SND_PCI_QUIRK(0x30b0, 0x103c, "HP nx6320", AD1981_HP),
1460 /* Lenovo Thinkpad T60/X60/Z6xx */
1461 SND_PCI_QUIRK(0x17aa, 0, "Lenovo Thinkpad", AD1981_THINKPAD),
1462 SND_PCI_QUIRK(0x1014, 0x0597, "Lenovo Z60", AD1981_THINKPAD),
1463 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba U205", AD1981_TOSHIBA),
1467 static int patch_ad1981(struct hda_codec *codec)
1469 struct ad198x_spec *spec;
1470 int board_config;
1472 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1473 if (spec == NULL)
1474 return -ENOMEM;
1476 mutex_init(&spec->amp_mutex);
1477 codec->spec = spec;
1479 spec->multiout.max_channels = 2;
1480 spec->multiout.num_dacs = ARRAY_SIZE(ad1981_dac_nids);
1481 spec->multiout.dac_nids = ad1981_dac_nids;
1482 spec->multiout.dig_out_nid = AD1981_SPDIF_OUT;
1483 spec->num_adc_nids = 1;
1484 spec->adc_nids = ad1981_adc_nids;
1485 spec->capsrc_nids = ad1981_capsrc_nids;
1486 spec->input_mux = &ad1981_capture_source;
1487 spec->num_mixers = 1;
1488 spec->mixers[0] = ad1981_mixers;
1489 spec->num_init_verbs = 1;
1490 spec->init_verbs[0] = ad1981_init_verbs;
1491 spec->spdif_route = 0;
1493 codec->patch_ops = ad198x_patch_ops;
1495 /* override some parameters */
1496 board_config = snd_hda_check_board_config(codec, AD1981_MODELS,
1497 ad1981_models,
1498 ad1981_cfg_tbl);
1499 switch (board_config) {
1500 case AD1981_HP:
1501 spec->mixers[0] = ad1981_hp_mixers;
1502 spec->num_init_verbs = 2;
1503 spec->init_verbs[1] = ad1981_hp_init_verbs;
1504 spec->multiout.dig_out_nid = 0;
1505 spec->input_mux = &ad1981_hp_capture_source;
1507 codec->patch_ops.init = ad1981_hp_init;
1508 codec->patch_ops.unsol_event = ad1981_hp_unsol_event;
1509 break;
1510 case AD1981_THINKPAD:
1511 spec->mixers[0] = ad1981_thinkpad_mixers;
1512 spec->input_mux = &ad1981_thinkpad_capture_source;
1513 break;
1514 case AD1981_TOSHIBA:
1515 spec->mixers[0] = ad1981_hp_mixers;
1516 spec->mixers[1] = ad1981_toshiba_mixers;
1517 spec->num_init_verbs = 2;
1518 spec->init_verbs[1] = ad1981_toshiba_init_verbs;
1519 spec->multiout.dig_out_nid = 0;
1520 spec->input_mux = &ad1981_hp_capture_source;
1521 codec->patch_ops.init = ad1981_hp_init;
1522 codec->patch_ops.unsol_event = ad1981_hp_unsol_event;
1523 break;
1525 return 0;
1530 * AD1988
1532 * Output pins and routes
1534 * Pin Mix Sel DAC (*)
1535 * port-A 0x11 (mute/hp) <- 0x22 <- 0x37 <- 03/04/06
1536 * port-B 0x14 (mute/hp) <- 0x2b <- 0x30 <- 03/04/06
1537 * port-C 0x15 (mute) <- 0x2c <- 0x31 <- 05/0a
1538 * port-D 0x12 (mute/hp) <- 0x29 <- 04
1539 * port-E 0x17 (mute/hp) <- 0x26 <- 0x32 <- 05/0a
1540 * port-F 0x16 (mute) <- 0x2a <- 06
1541 * port-G 0x24 (mute) <- 0x27 <- 05
1542 * port-H 0x25 (mute) <- 0x28 <- 0a
1543 * mono 0x13 (mute/amp)<- 0x1e <- 0x36 <- 03/04/06
1545 * DAC0 = 03h, DAC1 = 04h, DAC2 = 05h, DAC3 = 06h, DAC4 = 0ah
1546 * (*) DAC2/3/4 are swapped to DAC3/4/2 on AD198A rev.2 due to a h/w bug.
1548 * Input pins and routes
1550 * pin boost mix input # / adc input #
1551 * port-A 0x11 -> 0x38 -> mix 2, ADC 0
1552 * port-B 0x14 -> 0x39 -> mix 0, ADC 1
1553 * port-C 0x15 -> 0x3a -> 33:0 - mix 1, ADC 2
1554 * port-D 0x12 -> 0x3d -> mix 3, ADC 8
1555 * port-E 0x17 -> 0x3c -> 34:0 - mix 4, ADC 4
1556 * port-F 0x16 -> 0x3b -> mix 5, ADC 3
1557 * port-G 0x24 -> N/A -> 33:1 - mix 1, 34:1 - mix 4, ADC 6
1558 * port-H 0x25 -> N/A -> 33:2 - mix 1, 34:2 - mix 4, ADC 7
1561 * DAC assignment
1562 * 6stack - front/surr/CLFE/side/opt DACs - 04/06/05/0a/03
1563 * 3stack - front/surr/CLFE/opt DACs - 04/05/0a/03
1565 * Inputs of Analog Mix (0x20)
1566 * 0:Port-B (front mic)
1567 * 1:Port-C/G/H (line-in)
1568 * 2:Port-A
1569 * 3:Port-D (line-in/2)
1570 * 4:Port-E/G/H (mic-in)
1571 * 5:Port-F (mic2-in)
1572 * 6:CD
1573 * 7:Beep
1575 * ADC selection
1576 * 0:Port-A
1577 * 1:Port-B (front mic-in)
1578 * 2:Port-C (line-in)
1579 * 3:Port-F (mic2-in)
1580 * 4:Port-E (mic-in)
1581 * 5:CD
1582 * 6:Port-G
1583 * 7:Port-H
1584 * 8:Port-D (line-in/2)
1585 * 9:Mix
1587 * Proposed pin assignments by the datasheet
1589 * 6-stack
1590 * Port-A front headphone
1591 * B front mic-in
1592 * C rear line-in
1593 * D rear front-out
1594 * E rear mic-in
1595 * F rear surround
1596 * G rear CLFE
1597 * H rear side
1599 * 3-stack
1600 * Port-A front headphone
1601 * B front mic
1602 * C rear line-in/surround
1603 * D rear front-out
1604 * E rear mic-in/CLFE
1606 * laptop
1607 * Port-A headphone
1608 * B mic-in
1609 * C docking station
1610 * D internal speaker (with EAPD)
1611 * E/F quad mic array
1615 /* models */
1616 enum {
1617 AD1988_6STACK,
1618 AD1988_6STACK_DIG,
1619 AD1988_3STACK,
1620 AD1988_3STACK_DIG,
1621 AD1988_LAPTOP,
1622 AD1988_LAPTOP_DIG,
1623 AD1988_AUTO,
1624 AD1988_MODEL_LAST,
1627 /* reivision id to check workarounds */
1628 #define AD1988A_REV2 0x100200
1630 #define is_rev2(codec) \
1631 ((codec)->vendor_id == 0x11d41988 && \
1632 (codec)->revision_id == AD1988A_REV2)
1635 * mixers
1638 static hda_nid_t ad1988_6stack_dac_nids[4] = {
1639 0x04, 0x06, 0x05, 0x0a
1642 static hda_nid_t ad1988_3stack_dac_nids[3] = {
1643 0x04, 0x05, 0x0a
1646 /* for AD1988A revision-2, DAC2-4 are swapped */
1647 static hda_nid_t ad1988_6stack_dac_nids_rev2[4] = {
1648 0x04, 0x05, 0x0a, 0x06
1651 static hda_nid_t ad1988_3stack_dac_nids_rev2[3] = {
1652 0x04, 0x0a, 0x06
1655 static hda_nid_t ad1988_adc_nids[3] = {
1656 0x08, 0x09, 0x0f
1659 static hda_nid_t ad1988_capsrc_nids[3] = {
1660 0x0c, 0x0d, 0x0e
1663 #define AD1988_SPDIF_OUT 0x02
1664 #define AD1988_SPDIF_IN 0x07
1666 static struct hda_input_mux ad1988_6stack_capture_source = {
1667 .num_items = 5,
1668 .items = {
1669 { "Front Mic", 0x0 },
1670 { "Line", 0x1 },
1671 { "Mic", 0x4 },
1672 { "CD", 0x5 },
1673 { "Mix", 0x9 },
1677 static struct hda_input_mux ad1988_laptop_capture_source = {
1678 .num_items = 3,
1679 .items = {
1680 { "Mic/Line", 0x0 },
1681 { "CD", 0x5 },
1682 { "Mix", 0x9 },
1688 static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
1689 struct snd_ctl_elem_info *uinfo)
1691 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1692 struct ad198x_spec *spec = codec->spec;
1693 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
1694 spec->num_channel_mode);
1697 static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
1698 struct snd_ctl_elem_value *ucontrol)
1700 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1701 struct ad198x_spec *spec = codec->spec;
1702 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
1703 spec->num_channel_mode, spec->multiout.max_channels);
1706 static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
1707 struct snd_ctl_elem_value *ucontrol)
1709 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1710 struct ad198x_spec *spec = codec->spec;
1711 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
1712 spec->num_channel_mode,
1713 &spec->multiout.max_channels);
1714 if (err >= 0 && spec->need_dac_fix)
1715 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
1716 return err;
1719 /* 6-stack mode */
1720 static struct snd_kcontrol_new ad1988_6stack_mixers1[] = {
1721 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1722 HDA_CODEC_VOLUME("Surround Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1723 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1724 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
1725 HDA_CODEC_VOLUME("Side Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1726 { } /* end */
1729 static struct snd_kcontrol_new ad1988_6stack_mixers1_rev2[] = {
1730 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1731 HDA_CODEC_VOLUME("Surround Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1732 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
1733 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0a, 2, 0x0, HDA_OUTPUT),
1734 HDA_CODEC_VOLUME("Side Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1735 { } /* end */
1738 static struct snd_kcontrol_new ad1988_6stack_mixers2[] = {
1739 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
1740 HDA_BIND_MUTE("Surround Playback Switch", 0x2a, 2, HDA_INPUT),
1741 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x27, 1, 2, HDA_INPUT),
1742 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x27, 2, 2, HDA_INPUT),
1743 HDA_BIND_MUTE("Side Playback Switch", 0x28, 2, HDA_INPUT),
1744 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1745 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1747 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1748 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1749 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1750 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1751 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1752 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1753 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1754 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1756 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1757 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1759 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1760 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1762 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1763 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1765 { } /* end */
1768 /* 3-stack mode */
1769 static struct snd_kcontrol_new ad1988_3stack_mixers1[] = {
1770 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1771 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1772 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1773 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
1774 { } /* end */
1777 static struct snd_kcontrol_new ad1988_3stack_mixers1_rev2[] = {
1778 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1779 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1780 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x06, 1, 0x0, HDA_OUTPUT),
1781 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x06, 2, 0x0, HDA_OUTPUT),
1782 { } /* end */
1785 static struct snd_kcontrol_new ad1988_3stack_mixers2[] = {
1786 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
1787 HDA_BIND_MUTE("Surround Playback Switch", 0x2c, 2, HDA_INPUT),
1788 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x26, 1, 2, HDA_INPUT),
1789 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x26, 2, 2, HDA_INPUT),
1790 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1791 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1793 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1794 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1795 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1796 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1797 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1798 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1799 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1800 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1802 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1803 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1805 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1806 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1808 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1809 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1811 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1812 .name = "Channel Mode",
1813 .info = ad198x_ch_mode_info,
1814 .get = ad198x_ch_mode_get,
1815 .put = ad198x_ch_mode_put,
1818 { } /* end */
1821 /* laptop mode */
1822 static struct snd_kcontrol_new ad1988_laptop_mixers[] = {
1823 HDA_CODEC_VOLUME("PCM Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1824 HDA_CODEC_MUTE("PCM Playback Switch", 0x29, 0x0, HDA_INPUT),
1825 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1827 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1828 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1829 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1830 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1831 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1832 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1834 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1835 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1837 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1838 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1840 HDA_CODEC_VOLUME("Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1843 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1844 .name = "External Amplifier",
1845 .info = ad198x_eapd_info,
1846 .get = ad198x_eapd_get,
1847 .put = ad198x_eapd_put,
1848 .private_value = 0x12 | (1 << 8), /* port-D, inversed */
1851 { } /* end */
1854 /* capture */
1855 static struct snd_kcontrol_new ad1988_capture_mixers[] = {
1856 HDA_CODEC_VOLUME("Capture Volume", 0x0c, 0x0, HDA_OUTPUT),
1857 HDA_CODEC_MUTE("Capture Switch", 0x0c, 0x0, HDA_OUTPUT),
1858 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x0d, 0x0, HDA_OUTPUT),
1859 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x0d, 0x0, HDA_OUTPUT),
1860 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x0e, 0x0, HDA_OUTPUT),
1861 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x0e, 0x0, HDA_OUTPUT),
1863 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1864 /* The multiple "Capture Source" controls confuse alsamixer
1865 * So call somewhat different..
1866 * FIXME: the controls appear in the "playback" view!
1868 /* .name = "Capture Source", */
1869 .name = "Input Source",
1870 .count = 3,
1871 .info = ad198x_mux_enum_info,
1872 .get = ad198x_mux_enum_get,
1873 .put = ad198x_mux_enum_put,
1875 { } /* end */
1878 static int ad1988_spdif_playback_source_info(struct snd_kcontrol *kcontrol,
1879 struct snd_ctl_elem_info *uinfo)
1881 static char *texts[] = {
1882 "PCM", "ADC1", "ADC2", "ADC3"
1884 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1885 uinfo->count = 1;
1886 uinfo->value.enumerated.items = 4;
1887 if (uinfo->value.enumerated.item >= 4)
1888 uinfo->value.enumerated.item = 3;
1889 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1890 return 0;
1893 static int ad1988_spdif_playback_source_get(struct snd_kcontrol *kcontrol,
1894 struct snd_ctl_elem_value *ucontrol)
1896 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1897 unsigned int sel;
1899 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1900 if (sel > 0) {
1901 sel = snd_hda_codec_read(codec, 0x0b, 0,
1902 AC_VERB_GET_CONNECT_SEL, 0);
1903 if (sel < 3)
1904 sel++;
1905 else
1906 sel = 0;
1908 ucontrol->value.enumerated.item[0] = sel;
1909 return 0;
1912 static int ad1988_spdif_playback_source_put(struct snd_kcontrol *kcontrol,
1913 struct snd_ctl_elem_value *ucontrol)
1915 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1916 unsigned int val, sel;
1917 int change;
1919 val = ucontrol->value.enumerated.item[0];
1920 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1921 if (!val) {
1922 change = sel != 0;
1923 if (change || codec->in_resume)
1924 snd_hda_codec_write(codec, 0x02, 0,
1925 AC_VERB_SET_CONNECT_SEL, 0);
1926 } else {
1927 change = sel == 0;
1928 if (change || codec->in_resume)
1929 snd_hda_codec_write(codec, 0x02, 0,
1930 AC_VERB_SET_CONNECT_SEL, 1);
1931 sel = snd_hda_codec_read(codec, 0x0b, 0,
1932 AC_VERB_GET_CONNECT_SEL, 0) + 1;
1933 change |= sel != val;
1934 if (change || codec->in_resume)
1935 snd_hda_codec_write(codec, 0x0b, 0,
1936 AC_VERB_SET_CONNECT_SEL, val - 1);
1938 return change;
1941 static struct snd_kcontrol_new ad1988_spdif_out_mixers[] = {
1942 HDA_CODEC_VOLUME("IEC958 Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1944 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1945 .name = "IEC958 Playback Source",
1946 .info = ad1988_spdif_playback_source_info,
1947 .get = ad1988_spdif_playback_source_get,
1948 .put = ad1988_spdif_playback_source_put,
1950 { } /* end */
1953 static struct snd_kcontrol_new ad1988_spdif_in_mixers[] = {
1954 HDA_CODEC_VOLUME("IEC958 Capture Volume", 0x1c, 0x0, HDA_INPUT),
1955 { } /* end */
1960 * initialization verbs
1964 * for 6-stack (+dig)
1966 static struct hda_verb ad1988_6stack_init_verbs[] = {
1967 /* Front, Surround, CLFE, side DAC; unmute as default */
1968 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1969 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1970 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1971 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1972 /* Port-A front headphon path */
1973 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
1974 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1975 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1976 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1977 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1978 /* Port-D line-out path */
1979 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1980 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1981 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1982 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1983 /* Port-F surround path */
1984 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1985 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1986 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1987 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1988 /* Port-G CLFE path */
1989 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1990 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1991 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1992 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1993 /* Port-H side path */
1994 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1995 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1996 {0x25, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1997 {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1998 /* Mono out path */
1999 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2000 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2001 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2002 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2003 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2004 /* Port-B front mic-in path */
2005 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2006 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2007 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2008 /* Port-C line-in path */
2009 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2010 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2011 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2012 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2013 /* Port-E mic-in path */
2014 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2015 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2016 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2017 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
2022 static struct hda_verb ad1988_capture_init_verbs[] = {
2023 /* mute analog mix */
2024 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2025 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2026 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2027 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2028 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2029 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2030 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2031 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2032 /* select ADCs - front-mic */
2033 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2034 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2035 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2036 /* ADCs; muted */
2037 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2038 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2039 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2044 static struct hda_verb ad1988_spdif_init_verbs[] = {
2045 /* SPDIF out sel */
2046 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0}, /* PCM */
2047 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0}, /* ADC1 */
2048 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2049 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2050 /* SPDIF out pin */
2051 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x27}, /* 0dB */
2052 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x17}, /* 0dB */
2058 * verbs for 3stack (+dig)
2060 static struct hda_verb ad1988_3stack_ch2_init[] = {
2061 /* set port-C to line-in */
2062 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2063 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
2064 /* set port-E to mic-in */
2065 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2066 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
2067 { } /* end */
2070 static struct hda_verb ad1988_3stack_ch6_init[] = {
2071 /* set port-C to surround out */
2072 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
2073 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2074 /* set port-E to CLFE out */
2075 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
2076 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2077 { } /* end */
2080 static struct hda_channel_mode ad1988_3stack_modes[2] = {
2081 { 2, ad1988_3stack_ch2_init },
2082 { 6, ad1988_3stack_ch6_init },
2085 static struct hda_verb ad1988_3stack_init_verbs[] = {
2086 /* Front, Surround, CLFE, side DAC; unmute as default */
2087 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2088 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2089 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2090 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2091 /* Port-A front headphon path */
2092 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
2093 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2094 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2095 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2096 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2097 /* Port-D line-out path */
2098 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2099 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2100 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2101 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2102 /* Mono out path */
2103 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2104 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2105 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2106 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2107 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2108 /* Port-B front mic-in path */
2109 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2110 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2111 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2112 /* Port-C line-in/surround path - 6ch mode as default */
2113 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2114 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2115 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2116 {0x31, AC_VERB_SET_CONNECT_SEL, 0x0}, /* output sel: DAC 0x05 */
2117 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2118 /* Port-E mic-in/CLFE path - 6ch mode as default */
2119 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2120 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2121 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2122 {0x32, AC_VERB_SET_CONNECT_SEL, 0x1}, /* output sel: DAC 0x0a */
2123 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
2124 /* mute analog mix */
2125 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2126 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2127 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2128 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2129 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2130 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2131 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2132 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2133 /* select ADCs - front-mic */
2134 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2135 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2136 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2137 /* ADCs; muted */
2138 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2139 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2140 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2145 * verbs for laptop mode (+dig)
2147 static struct hda_verb ad1988_laptop_hp_on[] = {
2148 /* unmute port-A and mute port-D */
2149 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2150 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2151 { } /* end */
2153 static struct hda_verb ad1988_laptop_hp_off[] = {
2154 /* mute port-A and unmute port-D */
2155 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2156 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2157 { } /* end */
2160 #define AD1988_HP_EVENT 0x01
2162 static struct hda_verb ad1988_laptop_init_verbs[] = {
2163 /* Front, Surround, CLFE, side DAC; unmute as default */
2164 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2165 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2166 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2167 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2168 /* Port-A front headphon path */
2169 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
2170 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2171 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2172 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2173 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2174 /* unsolicited event for pin-sense */
2175 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1988_HP_EVENT },
2176 /* Port-D line-out path + EAPD */
2177 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2178 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2179 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2180 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2181 {0x12, AC_VERB_SET_EAPD_BTLENABLE, 0x00}, /* EAPD-off */
2182 /* Mono out path */
2183 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2184 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2185 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2186 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2187 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2188 /* Port-B mic-in path */
2189 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2190 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2191 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2192 /* Port-C docking station - try to output */
2193 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2194 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2195 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2196 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2197 /* mute analog mix */
2198 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2199 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2200 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2201 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2202 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2203 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2204 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2205 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2206 /* select ADCs - mic */
2207 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2208 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2209 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2210 /* ADCs; muted */
2211 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2212 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2213 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2217 static void ad1988_laptop_unsol_event(struct hda_codec *codec, unsigned int res)
2219 if ((res >> 26) != AD1988_HP_EVENT)
2220 return;
2221 if (snd_hda_codec_read(codec, 0x11, 0, AC_VERB_GET_PIN_SENSE, 0) & (1 << 31))
2222 snd_hda_sequence_write(codec, ad1988_laptop_hp_on);
2223 else
2224 snd_hda_sequence_write(codec, ad1988_laptop_hp_off);
2229 * Automatic parse of I/O pins from the BIOS configuration
2232 #define NUM_CONTROL_ALLOC 32
2233 #define NUM_VERB_ALLOC 32
2235 enum {
2236 AD_CTL_WIDGET_VOL,
2237 AD_CTL_WIDGET_MUTE,
2238 AD_CTL_BIND_MUTE,
2240 static struct snd_kcontrol_new ad1988_control_templates[] = {
2241 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2242 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2243 HDA_BIND_MUTE(NULL, 0, 0, 0),
2246 /* add dynamic controls */
2247 static int add_control(struct ad198x_spec *spec, int type, const char *name,
2248 unsigned long val)
2250 struct snd_kcontrol_new *knew;
2252 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2253 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2255 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2256 if (! knew)
2257 return -ENOMEM;
2258 if (spec->kctl_alloc) {
2259 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2260 kfree(spec->kctl_alloc);
2262 spec->kctl_alloc = knew;
2263 spec->num_kctl_alloc = num;
2266 knew = &spec->kctl_alloc[spec->num_kctl_used];
2267 *knew = ad1988_control_templates[type];
2268 knew->name = kstrdup(name, GFP_KERNEL);
2269 if (! knew->name)
2270 return -ENOMEM;
2271 knew->private_value = val;
2272 spec->num_kctl_used++;
2273 return 0;
2276 #define AD1988_PIN_CD_NID 0x18
2277 #define AD1988_PIN_BEEP_NID 0x10
2279 static hda_nid_t ad1988_mixer_nids[8] = {
2280 /* A B C D E F G H */
2281 0x22, 0x2b, 0x2c, 0x29, 0x26, 0x2a, 0x27, 0x28
2284 static inline hda_nid_t ad1988_idx_to_dac(struct hda_codec *codec, int idx)
2286 static hda_nid_t idx_to_dac[8] = {
2287 /* A B C D E F G H */
2288 0x04, 0x06, 0x05, 0x04, 0x0a, 0x06, 0x05, 0x0a
2290 static hda_nid_t idx_to_dac_rev2[8] = {
2291 /* A B C D E F G H */
2292 0x04, 0x05, 0x0a, 0x04, 0x06, 0x05, 0x0a, 0x06
2294 if (is_rev2(codec))
2295 return idx_to_dac_rev2[idx];
2296 else
2297 return idx_to_dac[idx];
2300 static hda_nid_t ad1988_boost_nids[8] = {
2301 0x38, 0x39, 0x3a, 0x3d, 0x3c, 0x3b, 0, 0
2304 static int ad1988_pin_idx(hda_nid_t nid)
2306 static hda_nid_t ad1988_io_pins[8] = {
2307 0x11, 0x14, 0x15, 0x12, 0x17, 0x16, 0x24, 0x25
2309 int i;
2310 for (i = 0; i < ARRAY_SIZE(ad1988_io_pins); i++)
2311 if (ad1988_io_pins[i] == nid)
2312 return i;
2313 return 0; /* should be -1 */
2316 static int ad1988_pin_to_loopback_idx(hda_nid_t nid)
2318 static int loopback_idx[8] = {
2319 2, 0, 1, 3, 4, 5, 1, 4
2321 switch (nid) {
2322 case AD1988_PIN_CD_NID:
2323 return 6;
2324 default:
2325 return loopback_idx[ad1988_pin_idx(nid)];
2329 static int ad1988_pin_to_adc_idx(hda_nid_t nid)
2331 static int adc_idx[8] = {
2332 0, 1, 2, 8, 4, 3, 6, 7
2334 switch (nid) {
2335 case AD1988_PIN_CD_NID:
2336 return 5;
2337 default:
2338 return adc_idx[ad1988_pin_idx(nid)];
2342 /* fill in the dac_nids table from the parsed pin configuration */
2343 static int ad1988_auto_fill_dac_nids(struct hda_codec *codec,
2344 const struct auto_pin_cfg *cfg)
2346 struct ad198x_spec *spec = codec->spec;
2347 int i, idx;
2349 spec->multiout.dac_nids = spec->private_dac_nids;
2351 /* check the pins hardwired to audio widget */
2352 for (i = 0; i < cfg->line_outs; i++) {
2353 idx = ad1988_pin_idx(cfg->line_out_pins[i]);
2354 spec->multiout.dac_nids[i] = ad1988_idx_to_dac(codec, idx);
2356 spec->multiout.num_dacs = cfg->line_outs;
2357 return 0;
2360 /* add playback controls from the parsed DAC table */
2361 static int ad1988_auto_create_multi_out_ctls(struct ad198x_spec *spec,
2362 const struct auto_pin_cfg *cfg)
2364 char name[32];
2365 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2366 hda_nid_t nid;
2367 int i, err;
2369 for (i = 0; i < cfg->line_outs; i++) {
2370 hda_nid_t dac = spec->multiout.dac_nids[i];
2371 if (! dac)
2372 continue;
2373 nid = ad1988_mixer_nids[ad1988_pin_idx(cfg->line_out_pins[i])];
2374 if (i == 2) {
2375 /* Center/LFE */
2376 err = add_control(spec, AD_CTL_WIDGET_VOL,
2377 "Center Playback Volume",
2378 HDA_COMPOSE_AMP_VAL(dac, 1, 0, HDA_OUTPUT));
2379 if (err < 0)
2380 return err;
2381 err = add_control(spec, AD_CTL_WIDGET_VOL,
2382 "LFE Playback Volume",
2383 HDA_COMPOSE_AMP_VAL(dac, 2, 0, HDA_OUTPUT));
2384 if (err < 0)
2385 return err;
2386 err = add_control(spec, AD_CTL_BIND_MUTE,
2387 "Center Playback Switch",
2388 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT));
2389 if (err < 0)
2390 return err;
2391 err = add_control(spec, AD_CTL_BIND_MUTE,
2392 "LFE Playback Switch",
2393 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT));
2394 if (err < 0)
2395 return err;
2396 } else {
2397 sprintf(name, "%s Playback Volume", chname[i]);
2398 err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2399 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT));
2400 if (err < 0)
2401 return err;
2402 sprintf(name, "%s Playback Switch", chname[i]);
2403 err = add_control(spec, AD_CTL_BIND_MUTE, name,
2404 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
2405 if (err < 0)
2406 return err;
2409 return 0;
2412 /* add playback controls for speaker and HP outputs */
2413 static int ad1988_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
2414 const char *pfx)
2416 struct ad198x_spec *spec = codec->spec;
2417 hda_nid_t nid;
2418 int idx, err;
2419 char name[32];
2421 if (! pin)
2422 return 0;
2424 idx = ad1988_pin_idx(pin);
2425 nid = ad1988_idx_to_dac(codec, idx);
2426 /* specify the DAC as the extra output */
2427 if (! spec->multiout.hp_nid)
2428 spec->multiout.hp_nid = nid;
2429 else
2430 spec->multiout.extra_out_nid[0] = nid;
2431 /* control HP volume/switch on the output mixer amp */
2432 sprintf(name, "%s Playback Volume", pfx);
2433 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2434 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2435 return err;
2436 nid = ad1988_mixer_nids[idx];
2437 sprintf(name, "%s Playback Switch", pfx);
2438 if ((err = add_control(spec, AD_CTL_BIND_MUTE, name,
2439 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2440 return err;
2441 return 0;
2444 /* create input playback/capture controls for the given pin */
2445 static int new_analog_input(struct ad198x_spec *spec, hda_nid_t pin,
2446 const char *ctlname, int boost)
2448 char name[32];
2449 int err, idx;
2451 sprintf(name, "%s Playback Volume", ctlname);
2452 idx = ad1988_pin_to_loopback_idx(pin);
2453 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2454 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2455 return err;
2456 sprintf(name, "%s Playback Switch", ctlname);
2457 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE, name,
2458 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2459 return err;
2460 if (boost) {
2461 hda_nid_t bnid;
2462 idx = ad1988_pin_idx(pin);
2463 bnid = ad1988_boost_nids[idx];
2464 if (bnid) {
2465 sprintf(name, "%s Boost", ctlname);
2466 return add_control(spec, AD_CTL_WIDGET_VOL, name,
2467 HDA_COMPOSE_AMP_VAL(bnid, 3, idx, HDA_OUTPUT));
2471 return 0;
2474 /* create playback/capture controls for input pins */
2475 static int ad1988_auto_create_analog_input_ctls(struct ad198x_spec *spec,
2476 const struct auto_pin_cfg *cfg)
2478 struct hda_input_mux *imux = &spec->private_imux;
2479 int i, err;
2481 for (i = 0; i < AUTO_PIN_LAST; i++) {
2482 err = new_analog_input(spec, cfg->input_pins[i],
2483 auto_pin_cfg_labels[i],
2484 i <= AUTO_PIN_FRONT_MIC);
2485 if (err < 0)
2486 return err;
2487 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
2488 imux->items[imux->num_items].index = ad1988_pin_to_adc_idx(cfg->input_pins[i]);
2489 imux->num_items++;
2491 imux->items[imux->num_items].label = "Mix";
2492 imux->items[imux->num_items].index = 9;
2493 imux->num_items++;
2495 if ((err = add_control(spec, AD_CTL_WIDGET_VOL,
2496 "Analog Mix Playback Volume",
2497 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2498 return err;
2499 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE,
2500 "Analog Mix Playback Switch",
2501 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2502 return err;
2504 return 0;
2507 static void ad1988_auto_set_output_and_unmute(struct hda_codec *codec,
2508 hda_nid_t nid, int pin_type,
2509 int dac_idx)
2511 /* set as output */
2512 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2513 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2514 switch (nid) {
2515 case 0x11: /* port-A - DAC 04 */
2516 snd_hda_codec_write(codec, 0x37, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2517 break;
2518 case 0x14: /* port-B - DAC 06 */
2519 snd_hda_codec_write(codec, 0x30, 0, AC_VERB_SET_CONNECT_SEL, 0x02);
2520 break;
2521 case 0x15: /* port-C - DAC 05 */
2522 snd_hda_codec_write(codec, 0x31, 0, AC_VERB_SET_CONNECT_SEL, 0x00);
2523 break;
2524 case 0x17: /* port-E - DAC 0a */
2525 snd_hda_codec_write(codec, 0x32, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2526 break;
2527 case 0x13: /* mono - DAC 04 */
2528 snd_hda_codec_write(codec, 0x36, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2529 break;
2533 static void ad1988_auto_init_multi_out(struct hda_codec *codec)
2535 struct ad198x_spec *spec = codec->spec;
2536 int i;
2538 for (i = 0; i < spec->autocfg.line_outs; i++) {
2539 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2540 ad1988_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2544 static void ad1988_auto_init_extra_out(struct hda_codec *codec)
2546 struct ad198x_spec *spec = codec->spec;
2547 hda_nid_t pin;
2549 pin = spec->autocfg.speaker_pins[0];
2550 if (pin) /* connect to front */
2551 ad1988_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
2552 pin = spec->autocfg.hp_pins[0];
2553 if (pin) /* connect to front */
2554 ad1988_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2557 static void ad1988_auto_init_analog_input(struct hda_codec *codec)
2559 struct ad198x_spec *spec = codec->spec;
2560 int i, idx;
2562 for (i = 0; i < AUTO_PIN_LAST; i++) {
2563 hda_nid_t nid = spec->autocfg.input_pins[i];
2564 if (! nid)
2565 continue;
2566 switch (nid) {
2567 case 0x15: /* port-C */
2568 snd_hda_codec_write(codec, 0x33, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2569 break;
2570 case 0x17: /* port-E */
2571 snd_hda_codec_write(codec, 0x34, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2572 break;
2574 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2575 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
2576 if (nid != AD1988_PIN_CD_NID)
2577 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2578 AMP_OUT_MUTE);
2579 idx = ad1988_pin_idx(nid);
2580 if (ad1988_boost_nids[idx])
2581 snd_hda_codec_write(codec, ad1988_boost_nids[idx], 0,
2582 AC_VERB_SET_AMP_GAIN_MUTE,
2583 AMP_OUT_ZERO);
2587 /* parse the BIOS configuration and set up the alc_spec */
2588 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
2589 static int ad1988_parse_auto_config(struct hda_codec *codec)
2591 struct ad198x_spec *spec = codec->spec;
2592 int err;
2594 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
2595 return err;
2596 if ((err = ad1988_auto_fill_dac_nids(codec, &spec->autocfg)) < 0)
2597 return err;
2598 if (! spec->autocfg.line_outs)
2599 return 0; /* can't find valid BIOS pin config */
2600 if ((err = ad1988_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
2601 (err = ad1988_auto_create_extra_out(codec,
2602 spec->autocfg.speaker_pins[0],
2603 "Speaker")) < 0 ||
2604 (err = ad1988_auto_create_extra_out(codec, spec->autocfg.hp_pins[0],
2605 "Headphone")) < 0 ||
2606 (err = ad1988_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
2607 return err;
2609 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2611 if (spec->autocfg.dig_out_pin)
2612 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2613 if (spec->autocfg.dig_in_pin)
2614 spec->dig_in_nid = AD1988_SPDIF_IN;
2616 if (spec->kctl_alloc)
2617 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
2619 spec->init_verbs[spec->num_init_verbs++] = ad1988_6stack_init_verbs;
2621 spec->input_mux = &spec->private_imux;
2623 return 1;
2626 /* init callback for auto-configuration model -- overriding the default init */
2627 static int ad1988_auto_init(struct hda_codec *codec)
2629 ad198x_init(codec);
2630 ad1988_auto_init_multi_out(codec);
2631 ad1988_auto_init_extra_out(codec);
2632 ad1988_auto_init_analog_input(codec);
2633 return 0;
2640 static const char *ad1988_models[AD1988_MODEL_LAST] = {
2641 [AD1988_6STACK] = "6stack",
2642 [AD1988_6STACK_DIG] = "6stack-dig",
2643 [AD1988_3STACK] = "3stack",
2644 [AD1988_3STACK_DIG] = "3stack-dig",
2645 [AD1988_LAPTOP] = "laptop",
2646 [AD1988_LAPTOP_DIG] = "laptop-dig",
2647 [AD1988_AUTO] = "auto",
2650 static struct snd_pci_quirk ad1988_cfg_tbl[] = {
2651 SND_PCI_QUIRK(0x1043, 0x81f6, "Asus M2N-SLI", AD1988_6STACK_DIG),
2652 SND_PCI_QUIRK(0x1043, 0x81ec, "Asus P5B-DLX", AD1988_6STACK_DIG),
2656 static int patch_ad1988(struct hda_codec *codec)
2658 struct ad198x_spec *spec;
2659 int board_config;
2661 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2662 if (spec == NULL)
2663 return -ENOMEM;
2665 mutex_init(&spec->amp_mutex);
2666 codec->spec = spec;
2668 if (is_rev2(codec))
2669 snd_printk(KERN_INFO "patch_analog: AD1988A rev.2 is detected, enable workarounds\n");
2671 board_config = snd_hda_check_board_config(codec, AD1988_MODEL_LAST,
2672 ad1988_models, ad1988_cfg_tbl);
2673 if (board_config < 0) {
2674 printk(KERN_INFO "hda_codec: Unknown model for AD1988, trying auto-probe from BIOS...\n");
2675 board_config = AD1988_AUTO;
2678 if (board_config == AD1988_AUTO) {
2679 /* automatic parse from the BIOS config */
2680 int err = ad1988_parse_auto_config(codec);
2681 if (err < 0) {
2682 ad198x_free(codec);
2683 return err;
2684 } else if (! err) {
2685 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using 6-stack mode...\n");
2686 board_config = AD1988_6STACK;
2690 switch (board_config) {
2691 case AD1988_6STACK:
2692 case AD1988_6STACK_DIG:
2693 spec->multiout.max_channels = 8;
2694 spec->multiout.num_dacs = 4;
2695 if (is_rev2(codec))
2696 spec->multiout.dac_nids = ad1988_6stack_dac_nids_rev2;
2697 else
2698 spec->multiout.dac_nids = ad1988_6stack_dac_nids;
2699 spec->input_mux = &ad1988_6stack_capture_source;
2700 spec->num_mixers = 2;
2701 if (is_rev2(codec))
2702 spec->mixers[0] = ad1988_6stack_mixers1_rev2;
2703 else
2704 spec->mixers[0] = ad1988_6stack_mixers1;
2705 spec->mixers[1] = ad1988_6stack_mixers2;
2706 spec->num_init_verbs = 1;
2707 spec->init_verbs[0] = ad1988_6stack_init_verbs;
2708 if (board_config == AD1988_6STACK_DIG) {
2709 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2710 spec->dig_in_nid = AD1988_SPDIF_IN;
2712 break;
2713 case AD1988_3STACK:
2714 case AD1988_3STACK_DIG:
2715 spec->multiout.max_channels = 6;
2716 spec->multiout.num_dacs = 3;
2717 if (is_rev2(codec))
2718 spec->multiout.dac_nids = ad1988_3stack_dac_nids_rev2;
2719 else
2720 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
2721 spec->input_mux = &ad1988_6stack_capture_source;
2722 spec->channel_mode = ad1988_3stack_modes;
2723 spec->num_channel_mode = ARRAY_SIZE(ad1988_3stack_modes);
2724 spec->num_mixers = 2;
2725 if (is_rev2(codec))
2726 spec->mixers[0] = ad1988_3stack_mixers1_rev2;
2727 else
2728 spec->mixers[0] = ad1988_3stack_mixers1;
2729 spec->mixers[1] = ad1988_3stack_mixers2;
2730 spec->num_init_verbs = 1;
2731 spec->init_verbs[0] = ad1988_3stack_init_verbs;
2732 if (board_config == AD1988_3STACK_DIG)
2733 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2734 break;
2735 case AD1988_LAPTOP:
2736 case AD1988_LAPTOP_DIG:
2737 spec->multiout.max_channels = 2;
2738 spec->multiout.num_dacs = 1;
2739 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
2740 spec->input_mux = &ad1988_laptop_capture_source;
2741 spec->num_mixers = 1;
2742 spec->mixers[0] = ad1988_laptop_mixers;
2743 spec->num_init_verbs = 1;
2744 spec->init_verbs[0] = ad1988_laptop_init_verbs;
2745 if (board_config == AD1988_LAPTOP_DIG)
2746 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2747 break;
2750 spec->num_adc_nids = ARRAY_SIZE(ad1988_adc_nids);
2751 spec->adc_nids = ad1988_adc_nids;
2752 spec->capsrc_nids = ad1988_capsrc_nids;
2753 spec->mixers[spec->num_mixers++] = ad1988_capture_mixers;
2754 spec->init_verbs[spec->num_init_verbs++] = ad1988_capture_init_verbs;
2755 if (spec->multiout.dig_out_nid) {
2756 spec->mixers[spec->num_mixers++] = ad1988_spdif_out_mixers;
2757 spec->init_verbs[spec->num_init_verbs++] = ad1988_spdif_init_verbs;
2759 if (spec->dig_in_nid)
2760 spec->mixers[spec->num_mixers++] = ad1988_spdif_in_mixers;
2762 codec->patch_ops = ad198x_patch_ops;
2763 switch (board_config) {
2764 case AD1988_AUTO:
2765 codec->patch_ops.init = ad1988_auto_init;
2766 break;
2767 case AD1988_LAPTOP:
2768 case AD1988_LAPTOP_DIG:
2769 codec->patch_ops.unsol_event = ad1988_laptop_unsol_event;
2770 break;
2773 return 0;
2778 * patch entries
2780 struct hda_codec_preset snd_hda_preset_analog[] = {
2781 { .id = 0x11d41981, .name = "AD1981", .patch = patch_ad1981 },
2782 { .id = 0x11d41983, .name = "AD1983", .patch = patch_ad1983 },
2783 { .id = 0x11d41986, .name = "AD1986A", .patch = patch_ad1986a },
2784 { .id = 0x11d41988, .name = "AD1988", .patch = patch_ad1988 },
2785 { .id = 0x11d4198b, .name = "AD1988B", .patch = patch_ad1988 },
2786 {} /* terminator */