[ALSA] hda-codec - Fix model for Lenovo A60 desktop
[deliverable/linux.git] / sound / pci / hda / patch_analog.c
1 /*
2 * HD audio interface patch for AD1981HD, AD1983, AD1986A, AD1988
3 *
4 * Copyright (c) 2005 Takashi Iwai <tiwai@suse.de>
5 *
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.
10 *
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.
15 *
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
19 */
20
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>
27
28 #include <sound/core.h>
29 #include "hda_codec.h"
30 #include "hda_local.h"
31
32 struct ad198x_spec {
33 struct snd_kcontrol_new *mixers[5];
34 int num_mixers;
35
36 const struct hda_verb *init_verbs[5]; /* initialization verbs
37 * don't forget NULL termination!
38 */
39 unsigned int num_init_verbs;
40
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
45 */
46 unsigned int cur_eapd;
47 unsigned int need_dac_fix;
48
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 */
53
54 /* capture source */
55 const struct hda_input_mux *input_mux;
56 hda_nid_t *capsrc_nids;
57 unsigned int cur_mux[3];
58
59 /* channel model */
60 const struct hda_channel_mode *channel_mode;
61 int num_channel_mode;
62
63 /* PCM information */
64 struct hda_pcm pcm_rec[2]; /* used in alc_build_pcms() */
65
66 struct mutex amp_mutex; /* PCM volume/mute control mutex */
67 unsigned int spdif_route;
68
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];
75 };
76
77 /*
78 * input MUX handling (common part)
79 */
80 static int ad198x_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
81 {
82 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
83 struct ad198x_spec *spec = codec->spec;
84
85 return snd_hda_input_mux_info(spec->input_mux, uinfo);
86 }
87
88 static int ad198x_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
89 {
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);
93
94 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
95 return 0;
96 }
97
98 static int ad198x_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
99 {
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);
103
104 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
105 spec->capsrc_nids[adc_idx],
106 &spec->cur_mux[adc_idx]);
107 }
108
109 /*
110 * initialization (common callbacks)
111 */
112 static int ad198x_init(struct hda_codec *codec)
113 {
114 struct ad198x_spec *spec = codec->spec;
115 int i;
116
117 for (i = 0; i < spec->num_init_verbs; i++)
118 snd_hda_sequence_write(codec, spec->init_verbs[i]);
119 return 0;
120 }
121
122 static int ad198x_build_controls(struct hda_codec *codec)
123 {
124 struct ad198x_spec *spec = codec->spec;
125 unsigned int i;
126 int err;
127
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;
132 }
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;
137 }
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;
142 }
143 return 0;
144 }
145
146 /*
147 * Analog playback callbacks
148 */
149 static int ad198x_playback_pcm_open(struct hda_pcm_stream *hinfo,
150 struct hda_codec *codec,
151 struct snd_pcm_substream *substream)
152 {
153 struct ad198x_spec *spec = codec->spec;
154 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
155 }
156
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)
162 {
163 struct ad198x_spec *spec = codec->spec;
164 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
165 format, substream);
166 }
167
168 static int ad198x_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
169 struct hda_codec *codec,
170 struct snd_pcm_substream *substream)
171 {
172 struct ad198x_spec *spec = codec->spec;
173 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
174 }
175
176 /*
177 * Digital out
178 */
179 static int ad198x_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
180 struct hda_codec *codec,
181 struct snd_pcm_substream *substream)
182 {
183 struct ad198x_spec *spec = codec->spec;
184 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
185 }
186
187 static int ad198x_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
188 struct hda_codec *codec,
189 struct snd_pcm_substream *substream)
190 {
191 struct ad198x_spec *spec = codec->spec;
192 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
193 }
194
195 /*
196 * Analog capture
197 */
198 static int ad198x_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
199 struct hda_codec *codec,
200 unsigned int stream_tag,
201 unsigned int format,
202 struct snd_pcm_substream *substream)
203 {
204 struct ad198x_spec *spec = codec->spec;
205 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
206 stream_tag, 0, format);
207 return 0;
208 }
209
210 static int ad198x_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
211 struct hda_codec *codec,
212 struct snd_pcm_substream *substream)
213 {
214 struct ad198x_spec *spec = codec->spec;
215 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
216 0, 0, 0);
217 return 0;
218 }
219
220
221 /*
222 */
223 static struct hda_pcm_stream ad198x_pcm_analog_playback = {
224 .substreams = 1,
225 .channels_min = 2,
226 .channels_max = 6, /* changed later */
227 .nid = 0, /* fill later */
228 .ops = {
229 .open = ad198x_playback_pcm_open,
230 .prepare = ad198x_playback_pcm_prepare,
231 .cleanup = ad198x_playback_pcm_cleanup
232 },
233 };
234
235 static struct hda_pcm_stream ad198x_pcm_analog_capture = {
236 .substreams = 1,
237 .channels_min = 2,
238 .channels_max = 2,
239 .nid = 0, /* fill later */
240 .ops = {
241 .prepare = ad198x_capture_pcm_prepare,
242 .cleanup = ad198x_capture_pcm_cleanup
243 },
244 };
245
246 static struct hda_pcm_stream ad198x_pcm_digital_playback = {
247 .substreams = 1,
248 .channels_min = 2,
249 .channels_max = 2,
250 .nid = 0, /* fill later */
251 .ops = {
252 .open = ad198x_dig_playback_pcm_open,
253 .close = ad198x_dig_playback_pcm_close
254 },
255 };
256
257 static struct hda_pcm_stream ad198x_pcm_digital_capture = {
258 .substreams = 1,
259 .channels_min = 2,
260 .channels_max = 2,
261 /* NID is set in alc_build_pcms */
262 };
263
264 static int ad198x_build_pcms(struct hda_codec *codec)
265 {
266 struct ad198x_spec *spec = codec->spec;
267 struct hda_pcm *info = spec->pcm_rec;
268
269 codec->num_pcms = 1;
270 codec->pcm_info = info;
271
272 info->name = "AD198x Analog";
273 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_analog_playback;
274 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->multiout.max_channels;
275 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
276 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_analog_capture;
277 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
278 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
279
280 if (spec->multiout.dig_out_nid) {
281 info++;
282 codec->num_pcms++;
283 info->name = "AD198x Digital";
284 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_digital_playback;
285 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
286 if (spec->dig_in_nid) {
287 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_digital_capture;
288 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
289 }
290 }
291
292 return 0;
293 }
294
295 static void ad198x_free(struct hda_codec *codec)
296 {
297 struct ad198x_spec *spec = codec->spec;
298 unsigned int i;
299
300 if (spec->kctl_alloc) {
301 for (i = 0; i < spec->num_kctl_used; i++)
302 kfree(spec->kctl_alloc[i].name);
303 kfree(spec->kctl_alloc);
304 }
305 kfree(codec->spec);
306 }
307
308 #ifdef CONFIG_PM
309 static int ad198x_resume(struct hda_codec *codec)
310 {
311 struct ad198x_spec *spec = codec->spec;
312 int i;
313
314 codec->patch_ops.init(codec);
315 for (i = 0; i < spec->num_mixers; i++)
316 snd_hda_resume_ctls(codec, spec->mixers[i]);
317 if (spec->multiout.dig_out_nid)
318 snd_hda_resume_spdif_out(codec);
319 if (spec->dig_in_nid)
320 snd_hda_resume_spdif_in(codec);
321 return 0;
322 }
323 #endif
324
325 static struct hda_codec_ops ad198x_patch_ops = {
326 .build_controls = ad198x_build_controls,
327 .build_pcms = ad198x_build_pcms,
328 .init = ad198x_init,
329 .free = ad198x_free,
330 #ifdef CONFIG_PM
331 .resume = ad198x_resume,
332 #endif
333 };
334
335
336 /*
337 * EAPD control
338 * the private value = nid | (invert << 8)
339 */
340 static int ad198x_eapd_info(struct snd_kcontrol *kcontrol,
341 struct snd_ctl_elem_info *uinfo)
342 {
343 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
344 uinfo->count = 1;
345 uinfo->value.integer.min = 0;
346 uinfo->value.integer.max = 1;
347 return 0;
348 }
349
350 static int ad198x_eapd_get(struct snd_kcontrol *kcontrol,
351 struct snd_ctl_elem_value *ucontrol)
352 {
353 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
354 struct ad198x_spec *spec = codec->spec;
355 int invert = (kcontrol->private_value >> 8) & 1;
356 if (invert)
357 ucontrol->value.integer.value[0] = ! spec->cur_eapd;
358 else
359 ucontrol->value.integer.value[0] = spec->cur_eapd;
360 return 0;
361 }
362
363 static int ad198x_eapd_put(struct snd_kcontrol *kcontrol,
364 struct snd_ctl_elem_value *ucontrol)
365 {
366 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
367 struct ad198x_spec *spec = codec->spec;
368 int invert = (kcontrol->private_value >> 8) & 1;
369 hda_nid_t nid = kcontrol->private_value & 0xff;
370 unsigned int eapd;
371 eapd = ucontrol->value.integer.value[0];
372 if (invert)
373 eapd = !eapd;
374 if (eapd == spec->cur_eapd && ! codec->in_resume)
375 return 0;
376 spec->cur_eapd = eapd;
377 snd_hda_codec_write(codec, nid,
378 0, AC_VERB_SET_EAPD_BTLENABLE,
379 eapd ? 0x02 : 0x00);
380 return 1;
381 }
382
383 static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
384 struct snd_ctl_elem_info *uinfo);
385 static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
386 struct snd_ctl_elem_value *ucontrol);
387 static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
388 struct snd_ctl_elem_value *ucontrol);
389
390
391 /*
392 * AD1986A specific
393 */
394
395 #define AD1986A_SPDIF_OUT 0x02
396 #define AD1986A_FRONT_DAC 0x03
397 #define AD1986A_SURR_DAC 0x04
398 #define AD1986A_CLFE_DAC 0x05
399 #define AD1986A_ADC 0x06
400
401 static hda_nid_t ad1986a_dac_nids[3] = {
402 AD1986A_FRONT_DAC, AD1986A_SURR_DAC, AD1986A_CLFE_DAC
403 };
404 static hda_nid_t ad1986a_adc_nids[1] = { AD1986A_ADC };
405 static hda_nid_t ad1986a_capsrc_nids[1] = { 0x12 };
406
407 static struct hda_input_mux ad1986a_capture_source = {
408 .num_items = 7,
409 .items = {
410 { "Mic", 0x0 },
411 { "CD", 0x1 },
412 { "Aux", 0x3 },
413 { "Line", 0x4 },
414 { "Mix", 0x5 },
415 { "Mono", 0x6 },
416 { "Phone", 0x7 },
417 },
418 };
419
420 /*
421 * PCM control
422 *
423 * bind volumes/mutes of 3 DACs as a single PCM control for simplicity
424 */
425
426 #define ad1986a_pcm_amp_vol_info snd_hda_mixer_amp_volume_info
427
428 static int ad1986a_pcm_amp_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
429 {
430 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
431 struct ad198x_spec *ad = codec->spec;
432
433 mutex_lock(&ad->amp_mutex);
434 snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
435 mutex_unlock(&ad->amp_mutex);
436 return 0;
437 }
438
439 static int ad1986a_pcm_amp_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
440 {
441 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
442 struct ad198x_spec *ad = codec->spec;
443 int i, change = 0;
444
445 mutex_lock(&ad->amp_mutex);
446 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
447 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
448 change |= snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
449 }
450 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
451 mutex_unlock(&ad->amp_mutex);
452 return change;
453 }
454
455 #define ad1986a_pcm_amp_sw_info snd_hda_mixer_amp_switch_info
456
457 static int ad1986a_pcm_amp_sw_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
458 {
459 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
460 struct ad198x_spec *ad = codec->spec;
461
462 mutex_lock(&ad->amp_mutex);
463 snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
464 mutex_unlock(&ad->amp_mutex);
465 return 0;
466 }
467
468 static int ad1986a_pcm_amp_sw_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
469 {
470 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
471 struct ad198x_spec *ad = codec->spec;
472 int i, change = 0;
473
474 mutex_lock(&ad->amp_mutex);
475 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
476 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
477 change |= snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
478 }
479 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
480 mutex_unlock(&ad->amp_mutex);
481 return change;
482 }
483
484 /*
485 * mixers
486 */
487 static struct snd_kcontrol_new ad1986a_mixers[] = {
488 {
489 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
490 .name = "PCM Playback Volume",
491 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
492 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
493 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
494 .info = ad1986a_pcm_amp_vol_info,
495 .get = ad1986a_pcm_amp_vol_get,
496 .put = ad1986a_pcm_amp_vol_put,
497 .tlv = { .c = snd_hda_mixer_amp_tlv },
498 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
499 },
500 {
501 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
502 .name = "PCM Playback Switch",
503 .info = ad1986a_pcm_amp_sw_info,
504 .get = ad1986a_pcm_amp_sw_get,
505 .put = ad1986a_pcm_amp_sw_put,
506 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
507 },
508 HDA_CODEC_VOLUME("Front Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
509 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
510 HDA_CODEC_VOLUME("Surround Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
511 HDA_CODEC_MUTE("Surround Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
512 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x1d, 1, 0x0, HDA_OUTPUT),
513 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x1d, 2, 0x0, HDA_OUTPUT),
514 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x1d, 1, 0x0, HDA_OUTPUT),
515 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x1d, 2, 0x0, HDA_OUTPUT),
516 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
517 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT),
518 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
519 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
520 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
521 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
522 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
523 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
524 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
525 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
526 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
527 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
528 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
529 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT),
530 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
531 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
532 {
533 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
534 .name = "Capture Source",
535 .info = ad198x_mux_enum_info,
536 .get = ad198x_mux_enum_get,
537 .put = ad198x_mux_enum_put,
538 },
539 HDA_CODEC_MUTE("Stereo Downmix Switch", 0x09, 0x0, HDA_OUTPUT),
540 { } /* end */
541 };
542
543 /* additional mixers for 3stack mode */
544 static struct snd_kcontrol_new ad1986a_3st_mixers[] = {
545 {
546 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
547 .name = "Channel Mode",
548 .info = ad198x_ch_mode_info,
549 .get = ad198x_ch_mode_get,
550 .put = ad198x_ch_mode_put,
551 },
552 { } /* end */
553 };
554
555 /* laptop model - 2ch only */
556 static hda_nid_t ad1986a_laptop_dac_nids[1] = { AD1986A_FRONT_DAC };
557
558 static struct snd_kcontrol_new ad1986a_laptop_mixers[] = {
559 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
560 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
561 HDA_CODEC_VOLUME("Master Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
562 HDA_CODEC_MUTE("Master Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
563 /* HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
564 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT), */
565 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
566 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
567 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
568 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
569 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
570 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
571 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
572 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
573 /* HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
574 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
575 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
576 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT), */
577 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
578 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
579 {
580 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
581 .name = "Capture Source",
582 .info = ad198x_mux_enum_info,
583 .get = ad198x_mux_enum_get,
584 .put = ad198x_mux_enum_put,
585 },
586 { } /* end */
587 };
588
589 /* laptop-eapd model - 2ch only */
590
591 /* master controls both pins 0x1a and 0x1b */
592 static int ad1986a_laptop_master_vol_put(struct snd_kcontrol *kcontrol,
593 struct snd_ctl_elem_value *ucontrol)
594 {
595 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
596 long *valp = ucontrol->value.integer.value;
597 int change;
598
599 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
600 0x7f, valp[0] & 0x7f);
601 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
602 0x7f, valp[1] & 0x7f);
603 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
604 0x7f, valp[0] & 0x7f);
605 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
606 0x7f, valp[1] & 0x7f);
607 return change;
608 }
609
610 static int ad1986a_laptop_master_sw_put(struct snd_kcontrol *kcontrol,
611 struct snd_ctl_elem_value *ucontrol)
612 {
613 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
614 long *valp = ucontrol->value.integer.value;
615 int change;
616
617 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
618 0x80, valp[0] ? 0 : 0x80);
619 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
620 0x80, valp[1] ? 0 : 0x80);
621 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
622 0x80, valp[0] ? 0 : 0x80);
623 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
624 0x80, valp[1] ? 0 : 0x80);
625 return change;
626 }
627
628 static struct hda_input_mux ad1986a_laptop_eapd_capture_source = {
629 .num_items = 3,
630 .items = {
631 { "Mic", 0x0 },
632 { "Internal Mic", 0x4 },
633 { "Mix", 0x5 },
634 },
635 };
636
637 static struct snd_kcontrol_new ad1986a_laptop_eapd_mixers[] = {
638 {
639 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
640 .name = "Master Playback Volume",
641 .info = snd_hda_mixer_amp_volume_info,
642 .get = snd_hda_mixer_amp_volume_get,
643 .put = ad1986a_laptop_master_vol_put,
644 .tlv = { .c = snd_hda_mixer_amp_tlv },
645 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
646 },
647 {
648 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
649 .name = "Master Playback Switch",
650 .info = snd_hda_mixer_amp_switch_info,
651 .get = snd_hda_mixer_amp_switch_get,
652 .put = ad1986a_laptop_master_sw_put,
653 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
654 },
655 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
656 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
657 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x0, HDA_OUTPUT),
658 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x0, HDA_OUTPUT),
659 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
660 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
661 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
662 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
663 {
664 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
665 .name = "Capture Source",
666 .info = ad198x_mux_enum_info,
667 .get = ad198x_mux_enum_get,
668 .put = ad198x_mux_enum_put,
669 },
670 {
671 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
672 .name = "External Amplifier",
673 .info = ad198x_eapd_info,
674 .get = ad198x_eapd_get,
675 .put = ad198x_eapd_put,
676 .private_value = 0x1b | (1 << 8), /* port-D, inversed */
677 },
678 { } /* end */
679 };
680
681 /*
682 * initialization verbs
683 */
684 static struct hda_verb ad1986a_init_verbs[] = {
685 /* Front, Surround, CLFE DAC; mute as default */
686 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
687 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
688 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
689 /* Downmix - off */
690 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
691 /* HP, Line-Out, Surround, CLFE selectors */
692 {0x0a, AC_VERB_SET_CONNECT_SEL, 0x0},
693 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0},
694 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
695 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
696 /* Mono selector */
697 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x0},
698 /* Mic selector: Mic 1/2 pin */
699 {0x0f, AC_VERB_SET_CONNECT_SEL, 0x0},
700 /* Line-in selector: Line-in */
701 {0x10, AC_VERB_SET_CONNECT_SEL, 0x0},
702 /* Mic 1/2 swap */
703 {0x11, AC_VERB_SET_CONNECT_SEL, 0x0},
704 /* Record selector: mic */
705 {0x12, AC_VERB_SET_CONNECT_SEL, 0x0},
706 /* Mic, Phone, CD, Aux, Line-In amp; mute as default */
707 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
708 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
709 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
710 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
711 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
712 /* PC beep */
713 {0x18, AC_VERB_SET_CONNECT_SEL, 0x0},
714 /* HP, Line-Out, Surround, CLFE, Mono pins; mute as default */
715 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
716 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
717 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
718 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
719 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
720 /* HP Pin */
721 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
722 /* Front, Surround, CLFE Pins */
723 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
724 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
725 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
726 /* Mono Pin */
727 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
728 /* Mic Pin */
729 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
730 /* Line, Aux, CD, Beep-In Pin */
731 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
732 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
733 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
734 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
735 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
736 { } /* end */
737 };
738
739 /* additional verbs for 3-stack model */
740 static struct hda_verb ad1986a_3st_init_verbs[] = {
741 /* Mic and line-in selectors */
742 {0x0f, AC_VERB_SET_CONNECT_SEL, 0x2},
743 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
744 { } /* end */
745 };
746
747 static struct hda_verb ad1986a_ch2_init[] = {
748 /* Surround out -> Line In */
749 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
750 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
751 /* CLFE -> Mic in */
752 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
753 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
754 { } /* end */
755 };
756
757 static struct hda_verb ad1986a_ch4_init[] = {
758 /* Surround out -> Surround */
759 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
760 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
761 /* CLFE -> Mic in */
762 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
763 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
764 { } /* end */
765 };
766
767 static struct hda_verb ad1986a_ch6_init[] = {
768 /* Surround out -> Surround out */
769 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
770 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
771 /* CLFE -> CLFE */
772 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
773 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
774 { } /* end */
775 };
776
777 static struct hda_channel_mode ad1986a_modes[3] = {
778 { 2, ad1986a_ch2_init },
779 { 4, ad1986a_ch4_init },
780 { 6, ad1986a_ch6_init },
781 };
782
783 /* eapd initialization */
784 static struct hda_verb ad1986a_eapd_init_verbs[] = {
785 {0x1b, AC_VERB_SET_EAPD_BTLENABLE, 0x00},
786 {}
787 };
788
789 /* models */
790 enum { AD1986A_6STACK, AD1986A_3STACK, AD1986A_LAPTOP, AD1986A_LAPTOP_EAPD };
791
792 static struct hda_board_config ad1986a_cfg_tbl[] = {
793 { .modelname = "6stack", .config = AD1986A_6STACK },
794 { .modelname = "3stack", .config = AD1986A_3STACK },
795 { .pci_subvendor = 0x10de, .pci_subdevice = 0xcb84,
796 .config = AD1986A_3STACK }, /* ASUS A8N-VM CSM */
797 { .pci_subvendor = 0x1043, .pci_subdevice = 0x817f,
798 .config = AD1986A_3STACK }, /* ASUS P5P-L2 */
799 { .pci_subvendor = 0x1043, .pci_subdevice = 0x81b3,
800 .config = AD1986A_3STACK }, /* ASUS P5RD2-VM / P5GPL-X SE */
801 { .pci_subvendor = 0x1043, .pci_subdevice = 0x81cb,
802 .config = AD1986A_3STACK }, /* ASUS M2NPV-VM */
803 { .pci_subvendor = 0x17aa, .pci_subdevice = 0x1017,
804 .config = AD1986A_3STACK }, /* Lenovo A60 desktop */
805 { .modelname = "laptop", .config = AD1986A_LAPTOP },
806 { .pci_subvendor = 0x144d, .pci_subdevice = 0xc01e,
807 .config = AD1986A_LAPTOP }, /* FSC V2060 */
808 { .pci_subvendor = 0x17c0, .pci_subdevice = 0x2017,
809 .config = AD1986A_LAPTOP }, /* Samsung M50 */
810 { .pci_subvendor = 0x1043, .pci_subdevice = 0x818f,
811 .config = AD1986A_LAPTOP }, /* ASUS P5GV-MX */
812 { .modelname = "laptop-eapd", .config = AD1986A_LAPTOP_EAPD },
813 { .pci_subvendor = 0x144d, .pci_subdevice = 0xc023,
814 .config = AD1986A_LAPTOP_EAPD }, /* Samsung X60 Chane */
815 { .pci_subvendor = 0x144d, .pci_subdevice = 0xc024,
816 .config = AD1986A_LAPTOP_EAPD }, /* Samsung R65-T2300 Charis */
817 { .pci_subvendor = 0x144d, .pci_subdevice = 0xc026,
818 .config = AD1986A_LAPTOP_EAPD }, /* Samsung X11-T2300 Culesa */
819 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1153,
820 .config = AD1986A_LAPTOP_EAPD }, /* ASUS M9 */
821 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1213,
822 .config = AD1986A_LAPTOP_EAPD }, /* ASUS A6J */
823 { .pci_subvendor = 0x1043, .pci_subdevice = 0x11f7,
824 .config = AD1986A_LAPTOP_EAPD }, /* ASUS U5A */
825 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1263,
826 .config = AD1986A_LAPTOP_EAPD }, /* ASUS U5F */
827 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1297,
828 .config = AD1986A_LAPTOP_EAPD }, /* ASUS Z62F */
829 { .pci_subvendor = 0x1043, .pci_subdevice = 0x12b3,
830 .config = AD1986A_LAPTOP_EAPD }, /* ASUS V1j */
831 { .pci_subvendor = 0x103c, .pci_subdevice = 0x30af,
832 .config = AD1986A_LAPTOP_EAPD }, /* HP Compaq Presario B2800 */
833 { .pci_subvendor = 0x17aa, .pci_subdevice = 0x2066,
834 .config = AD1986A_LAPTOP_EAPD }, /* Lenovo 3000 N100-07684JU */
835 {}
836 };
837
838 static int patch_ad1986a(struct hda_codec *codec)
839 {
840 struct ad198x_spec *spec;
841 int board_config;
842
843 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
844 if (spec == NULL)
845 return -ENOMEM;
846
847 mutex_init(&spec->amp_mutex);
848 codec->spec = spec;
849
850 spec->multiout.max_channels = 6;
851 spec->multiout.num_dacs = ARRAY_SIZE(ad1986a_dac_nids);
852 spec->multiout.dac_nids = ad1986a_dac_nids;
853 spec->multiout.dig_out_nid = AD1986A_SPDIF_OUT;
854 spec->num_adc_nids = 1;
855 spec->adc_nids = ad1986a_adc_nids;
856 spec->capsrc_nids = ad1986a_capsrc_nids;
857 spec->input_mux = &ad1986a_capture_source;
858 spec->num_mixers = 1;
859 spec->mixers[0] = ad1986a_mixers;
860 spec->num_init_verbs = 1;
861 spec->init_verbs[0] = ad1986a_init_verbs;
862
863 codec->patch_ops = ad198x_patch_ops;
864
865 /* override some parameters */
866 board_config = snd_hda_check_board_config(codec, ad1986a_cfg_tbl);
867 switch (board_config) {
868 case AD1986A_3STACK:
869 spec->num_mixers = 2;
870 spec->mixers[1] = ad1986a_3st_mixers;
871 spec->num_init_verbs = 3;
872 spec->init_verbs[1] = ad1986a_3st_init_verbs;
873 spec->init_verbs[2] = ad1986a_ch2_init;
874 spec->channel_mode = ad1986a_modes;
875 spec->num_channel_mode = ARRAY_SIZE(ad1986a_modes);
876 spec->need_dac_fix = 1;
877 spec->multiout.max_channels = 2;
878 spec->multiout.num_dacs = 1;
879 break;
880 case AD1986A_LAPTOP:
881 spec->mixers[0] = ad1986a_laptop_mixers;
882 spec->multiout.max_channels = 2;
883 spec->multiout.num_dacs = 1;
884 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
885 break;
886 case AD1986A_LAPTOP_EAPD:
887 spec->mixers[0] = ad1986a_laptop_eapd_mixers;
888 spec->num_init_verbs = 2;
889 spec->init_verbs[1] = ad1986a_eapd_init_verbs;
890 spec->multiout.max_channels = 2;
891 spec->multiout.num_dacs = 1;
892 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
893 spec->multiout.dig_out_nid = 0;
894 spec->input_mux = &ad1986a_laptop_eapd_capture_source;
895 break;
896 }
897
898 return 0;
899 }
900
901 /*
902 * AD1983 specific
903 */
904
905 #define AD1983_SPDIF_OUT 0x02
906 #define AD1983_DAC 0x03
907 #define AD1983_ADC 0x04
908
909 static hda_nid_t ad1983_dac_nids[1] = { AD1983_DAC };
910 static hda_nid_t ad1983_adc_nids[1] = { AD1983_ADC };
911 static hda_nid_t ad1983_capsrc_nids[1] = { 0x15 };
912
913 static struct hda_input_mux ad1983_capture_source = {
914 .num_items = 4,
915 .items = {
916 { "Mic", 0x0 },
917 { "Line", 0x1 },
918 { "Mix", 0x2 },
919 { "Mix Mono", 0x3 },
920 },
921 };
922
923 /*
924 * SPDIF playback route
925 */
926 static int ad1983_spdif_route_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
927 {
928 static char *texts[] = { "PCM", "ADC" };
929
930 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
931 uinfo->count = 1;
932 uinfo->value.enumerated.items = 2;
933 if (uinfo->value.enumerated.item > 1)
934 uinfo->value.enumerated.item = 1;
935 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
936 return 0;
937 }
938
939 static int ad1983_spdif_route_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
940 {
941 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
942 struct ad198x_spec *spec = codec->spec;
943
944 ucontrol->value.enumerated.item[0] = spec->spdif_route;
945 return 0;
946 }
947
948 static int ad1983_spdif_route_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
949 {
950 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
951 struct ad198x_spec *spec = codec->spec;
952
953 if (spec->spdif_route != ucontrol->value.enumerated.item[0]) {
954 spec->spdif_route = ucontrol->value.enumerated.item[0];
955 snd_hda_codec_write(codec, spec->multiout.dig_out_nid, 0,
956 AC_VERB_SET_CONNECT_SEL, spec->spdif_route);
957 return 1;
958 }
959 return 0;
960 }
961
962 static struct snd_kcontrol_new ad1983_mixers[] = {
963 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
964 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
965 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
966 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
967 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
968 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
969 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
970 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
971 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
972 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
973 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
974 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
975 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x10, 1, 0x0, HDA_OUTPUT),
976 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x10, 1, 0x0, HDA_OUTPUT),
977 HDA_CODEC_VOLUME("Mic Boost", 0x0c, 0x0, HDA_OUTPUT),
978 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
979 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
980 {
981 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
982 .name = "Capture Source",
983 .info = ad198x_mux_enum_info,
984 .get = ad198x_mux_enum_get,
985 .put = ad198x_mux_enum_put,
986 },
987 {
988 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
989 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
990 .info = ad1983_spdif_route_info,
991 .get = ad1983_spdif_route_get,
992 .put = ad1983_spdif_route_put,
993 },
994 { } /* end */
995 };
996
997 static struct hda_verb ad1983_init_verbs[] = {
998 /* Front, HP, Mono; mute as default */
999 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1000 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1001 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1002 /* Beep, PCM, Mic, Line-In: mute */
1003 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1004 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1005 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1006 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1007 /* Front, HP selectors; from Mix */
1008 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
1009 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
1010 /* Mono selector; from Mix */
1011 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
1012 /* Mic selector; Mic */
1013 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
1014 /* Line-in selector: Line-in */
1015 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
1016 /* Mic boost: 0dB */
1017 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1018 /* Record selector: mic */
1019 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
1020 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1021 /* SPDIF route: PCM */
1022 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
1023 /* Front Pin */
1024 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1025 /* HP Pin */
1026 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
1027 /* Mono Pin */
1028 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1029 /* Mic Pin */
1030 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1031 /* Line Pin */
1032 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1033 { } /* end */
1034 };
1035
1036
1037 static int patch_ad1983(struct hda_codec *codec)
1038 {
1039 struct ad198x_spec *spec;
1040
1041 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1042 if (spec == NULL)
1043 return -ENOMEM;
1044
1045 mutex_init(&spec->amp_mutex);
1046 codec->spec = spec;
1047
1048 spec->multiout.max_channels = 2;
1049 spec->multiout.num_dacs = ARRAY_SIZE(ad1983_dac_nids);
1050 spec->multiout.dac_nids = ad1983_dac_nids;
1051 spec->multiout.dig_out_nid = AD1983_SPDIF_OUT;
1052 spec->num_adc_nids = 1;
1053 spec->adc_nids = ad1983_adc_nids;
1054 spec->capsrc_nids = ad1983_capsrc_nids;
1055 spec->input_mux = &ad1983_capture_source;
1056 spec->num_mixers = 1;
1057 spec->mixers[0] = ad1983_mixers;
1058 spec->num_init_verbs = 1;
1059 spec->init_verbs[0] = ad1983_init_verbs;
1060 spec->spdif_route = 0;
1061
1062 codec->patch_ops = ad198x_patch_ops;
1063
1064 return 0;
1065 }
1066
1067
1068 /*
1069 * AD1981 HD specific
1070 */
1071
1072 #define AD1981_SPDIF_OUT 0x02
1073 #define AD1981_DAC 0x03
1074 #define AD1981_ADC 0x04
1075
1076 static hda_nid_t ad1981_dac_nids[1] = { AD1981_DAC };
1077 static hda_nid_t ad1981_adc_nids[1] = { AD1981_ADC };
1078 static hda_nid_t ad1981_capsrc_nids[1] = { 0x15 };
1079
1080 /* 0x0c, 0x09, 0x0e, 0x0f, 0x19, 0x05, 0x18, 0x17 */
1081 static struct hda_input_mux ad1981_capture_source = {
1082 .num_items = 7,
1083 .items = {
1084 { "Front Mic", 0x0 },
1085 { "Line", 0x1 },
1086 { "Mix", 0x2 },
1087 { "Mix Mono", 0x3 },
1088 { "CD", 0x4 },
1089 { "Mic", 0x6 },
1090 { "Aux", 0x7 },
1091 },
1092 };
1093
1094 static struct snd_kcontrol_new ad1981_mixers[] = {
1095 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1096 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
1097 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1098 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
1099 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
1100 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
1101 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1102 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1103 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1104 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1105 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1106 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1107 HDA_CODEC_VOLUME("Aux Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1108 HDA_CODEC_MUTE("Aux Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1109 HDA_CODEC_VOLUME("Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1110 HDA_CODEC_MUTE("Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1111 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1112 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1113 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1114 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x0d, 1, 0x0, HDA_OUTPUT),
1115 HDA_CODEC_VOLUME("Front Mic Boost", 0x08, 0x0, HDA_INPUT),
1116 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x0, HDA_INPUT),
1117 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1118 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1119 {
1120 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1121 .name = "Capture Source",
1122 .info = ad198x_mux_enum_info,
1123 .get = ad198x_mux_enum_get,
1124 .put = ad198x_mux_enum_put,
1125 },
1126 /* identical with AD1983 */
1127 {
1128 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1129 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
1130 .info = ad1983_spdif_route_info,
1131 .get = ad1983_spdif_route_get,
1132 .put = ad1983_spdif_route_put,
1133 },
1134 { } /* end */
1135 };
1136
1137 static struct hda_verb ad1981_init_verbs[] = {
1138 /* Front, HP, Mono; mute as default */
1139 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1140 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1141 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1142 /* Beep, PCM, Front Mic, Line, Rear Mic, Aux, CD-In: mute */
1143 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1144 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1145 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1146 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1147 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1148 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1149 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1150 /* Front, HP selectors; from Mix */
1151 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
1152 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
1153 /* Mono selector; from Mix */
1154 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
1155 /* Mic Mixer; select Front Mic */
1156 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1157 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1158 /* Mic boost: 0dB */
1159 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1160 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1161 /* Record selector: Front mic */
1162 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
1163 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1164 /* SPDIF route: PCM */
1165 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
1166 /* Front Pin */
1167 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1168 /* HP Pin */
1169 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
1170 /* Mono Pin */
1171 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1172 /* Front & Rear Mic Pins */
1173 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1174 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1175 /* Line Pin */
1176 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1177 /* Digital Beep */
1178 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
1179 /* Line-Out as Input: disabled */
1180 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1181 { } /* end */
1182 };
1183
1184 /*
1185 * Patch for HP nx6320
1186 *
1187 * nx6320 uses EAPD in the reserve way - EAPD-on means the internal
1188 * speaker output enabled _and_ mute-LED off.
1189 */
1190
1191 #define AD1981_HP_EVENT 0x37
1192 #define AD1981_MIC_EVENT 0x38
1193
1194 static struct hda_verb ad1981_hp_init_verbs[] = {
1195 {0x05, AC_VERB_SET_EAPD_BTLENABLE, 0x00 }, /* default off */
1196 /* pin sensing on HP and Mic jacks */
1197 {0x06, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_HP_EVENT},
1198 {0x08, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_MIC_EVENT},
1199 {}
1200 };
1201
1202 /* turn on/off EAPD (+ mute HP) as a master switch */
1203 static int ad1981_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1204 struct snd_ctl_elem_value *ucontrol)
1205 {
1206 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1207 struct ad198x_spec *spec = codec->spec;
1208
1209 if (! ad198x_eapd_put(kcontrol, ucontrol))
1210 return 0;
1211
1212 /* toggle HP mute appropriately */
1213 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1214 0x80, spec->cur_eapd ? 0 : 0x80);
1215 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1216 0x80, spec->cur_eapd ? 0 : 0x80);
1217 return 1;
1218 }
1219
1220 /* bind volumes of both NID 0x05 and 0x06 */
1221 static int ad1981_hp_master_vol_put(struct snd_kcontrol *kcontrol,
1222 struct snd_ctl_elem_value *ucontrol)
1223 {
1224 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1225 long *valp = ucontrol->value.integer.value;
1226 int change;
1227
1228 change = snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1229 0x7f, valp[0] & 0x7f);
1230 change |= snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1231 0x7f, valp[1] & 0x7f);
1232 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1233 0x7f, valp[0] & 0x7f);
1234 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1235 0x7f, valp[1] & 0x7f);
1236 return change;
1237 }
1238
1239 /* mute internal speaker if HP is plugged */
1240 static void ad1981_hp_automute(struct hda_codec *codec)
1241 {
1242 unsigned int present;
1243
1244 present = snd_hda_codec_read(codec, 0x06, 0,
1245 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1246 snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1247 0x80, present ? 0x80 : 0);
1248 snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1249 0x80, present ? 0x80 : 0);
1250 }
1251
1252 /* toggle input of built-in and mic jack appropriately */
1253 static void ad1981_hp_automic(struct hda_codec *codec)
1254 {
1255 static struct hda_verb mic_jack_on[] = {
1256 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1257 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1258 {}
1259 };
1260 static struct hda_verb mic_jack_off[] = {
1261 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1262 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1263 {}
1264 };
1265 unsigned int present;
1266
1267 present = snd_hda_codec_read(codec, 0x08, 0,
1268 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1269 if (present)
1270 snd_hda_sequence_write(codec, mic_jack_on);
1271 else
1272 snd_hda_sequence_write(codec, mic_jack_off);
1273 }
1274
1275 /* unsolicited event for HP jack sensing */
1276 static void ad1981_hp_unsol_event(struct hda_codec *codec,
1277 unsigned int res)
1278 {
1279 res >>= 26;
1280 switch (res) {
1281 case AD1981_HP_EVENT:
1282 ad1981_hp_automute(codec);
1283 break;
1284 case AD1981_MIC_EVENT:
1285 ad1981_hp_automic(codec);
1286 break;
1287 }
1288 }
1289
1290 static struct hda_input_mux ad1981_hp_capture_source = {
1291 .num_items = 3,
1292 .items = {
1293 { "Mic", 0x0 },
1294 { "Docking-Station", 0x1 },
1295 { "Mix", 0x2 },
1296 },
1297 };
1298
1299 static struct snd_kcontrol_new ad1981_hp_mixers[] = {
1300 {
1301 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1302 .name = "Master Playback Volume",
1303 .info = snd_hda_mixer_amp_volume_info,
1304 .get = snd_hda_mixer_amp_volume_get,
1305 .put = ad1981_hp_master_vol_put,
1306 .private_value = HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),
1307 },
1308 {
1309 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1310 .name = "Master Playback Switch",
1311 .info = ad198x_eapd_info,
1312 .get = ad198x_eapd_get,
1313 .put = ad1981_hp_master_sw_put,
1314 .private_value = 0x05,
1315 },
1316 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1317 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1318 #if 0
1319 /* FIXME: analog mic/line loopback doesn't work with my tests...
1320 * (although recording is OK)
1321 */
1322 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1323 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1324 HDA_CODEC_VOLUME("Docking-Station Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1325 HDA_CODEC_MUTE("Docking-Station Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1326 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1327 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1328 /* FIXME: does this laptop have analog CD connection? */
1329 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1330 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1331 #endif
1332 HDA_CODEC_VOLUME("Mic Boost", 0x08, 0x0, HDA_INPUT),
1333 HDA_CODEC_VOLUME("Internal Mic Boost", 0x18, 0x0, HDA_INPUT),
1334 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1335 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1336 {
1337 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1338 .name = "Capture Source",
1339 .info = ad198x_mux_enum_info,
1340 .get = ad198x_mux_enum_get,
1341 .put = ad198x_mux_enum_put,
1342 },
1343 { } /* end */
1344 };
1345
1346 /* initialize jack-sensing, too */
1347 static int ad1981_hp_init(struct hda_codec *codec)
1348 {
1349 ad198x_init(codec);
1350 ad1981_hp_automute(codec);
1351 ad1981_hp_automic(codec);
1352 return 0;
1353 }
1354
1355 /* configuration for Lenovo Thinkpad T60 */
1356 static struct snd_kcontrol_new ad1981_thinkpad_mixers[] = {
1357 HDA_CODEC_VOLUME("Master Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1358 HDA_CODEC_MUTE("Master Playback Switch", 0x05, 0x0, HDA_OUTPUT),
1359 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1360 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1361 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1362 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1363 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1364 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1365 HDA_CODEC_VOLUME("Mic Boost", 0x08, 0x0, HDA_INPUT),
1366 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1367 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1368 {
1369 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1370 .name = "Capture Source",
1371 .info = ad198x_mux_enum_info,
1372 .get = ad198x_mux_enum_get,
1373 .put = ad198x_mux_enum_put,
1374 },
1375 /* identical with AD1983 */
1376 {
1377 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1378 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
1379 .info = ad1983_spdif_route_info,
1380 .get = ad1983_spdif_route_get,
1381 .put = ad1983_spdif_route_put,
1382 },
1383 { } /* end */
1384 };
1385
1386 static struct hda_input_mux ad1981_thinkpad_capture_source = {
1387 .num_items = 3,
1388 .items = {
1389 { "Mic", 0x0 },
1390 { "Mix", 0x2 },
1391 { "CD", 0x4 },
1392 },
1393 };
1394
1395 /* models */
1396 enum { AD1981_BASIC, AD1981_HP, AD1981_THINKPAD };
1397
1398 static struct hda_board_config ad1981_cfg_tbl[] = {
1399 { .modelname = "hp", .config = AD1981_HP },
1400 /* All HP models */
1401 { .pci_subvendor = 0x103c, .config = AD1981_HP },
1402 { .pci_subvendor = 0x30b0, .pci_subdevice = 0x103c,
1403 .config = AD1981_HP }, /* HP nx6320 (reversed SSID, H/W bug) */
1404 { .modelname = "thinkpad", .config = AD1981_THINKPAD },
1405 /* Lenovo Thinkpad T60/X60/Z6xx */
1406 { .pci_subvendor = 0x17aa, .config = AD1981_THINKPAD },
1407 { .pci_subvendor = 0x1014, .pci_subdevice = 0x0597,
1408 .config = AD1981_THINKPAD }, /* Z60m/t */
1409 { .modelname = "basic", .config = AD1981_BASIC },
1410 {}
1411 };
1412
1413 static int patch_ad1981(struct hda_codec *codec)
1414 {
1415 struct ad198x_spec *spec;
1416 int board_config;
1417
1418 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1419 if (spec == NULL)
1420 return -ENOMEM;
1421
1422 mutex_init(&spec->amp_mutex);
1423 codec->spec = spec;
1424
1425 spec->multiout.max_channels = 2;
1426 spec->multiout.num_dacs = ARRAY_SIZE(ad1981_dac_nids);
1427 spec->multiout.dac_nids = ad1981_dac_nids;
1428 spec->multiout.dig_out_nid = AD1981_SPDIF_OUT;
1429 spec->num_adc_nids = 1;
1430 spec->adc_nids = ad1981_adc_nids;
1431 spec->capsrc_nids = ad1981_capsrc_nids;
1432 spec->input_mux = &ad1981_capture_source;
1433 spec->num_mixers = 1;
1434 spec->mixers[0] = ad1981_mixers;
1435 spec->num_init_verbs = 1;
1436 spec->init_verbs[0] = ad1981_init_verbs;
1437 spec->spdif_route = 0;
1438
1439 codec->patch_ops = ad198x_patch_ops;
1440
1441 /* override some parameters */
1442 board_config = snd_hda_check_board_config(codec, ad1981_cfg_tbl);
1443 switch (board_config) {
1444 case AD1981_HP:
1445 spec->mixers[0] = ad1981_hp_mixers;
1446 spec->num_init_verbs = 2;
1447 spec->init_verbs[1] = ad1981_hp_init_verbs;
1448 spec->multiout.dig_out_nid = 0;
1449 spec->input_mux = &ad1981_hp_capture_source;
1450
1451 codec->patch_ops.init = ad1981_hp_init;
1452 codec->patch_ops.unsol_event = ad1981_hp_unsol_event;
1453 break;
1454 case AD1981_THINKPAD:
1455 spec->mixers[0] = ad1981_thinkpad_mixers;
1456 spec->input_mux = &ad1981_thinkpad_capture_source;
1457 break;
1458 }
1459
1460 return 0;
1461 }
1462
1463
1464 /*
1465 * AD1988
1466 *
1467 * Output pins and routes
1468 *
1469 * Pin Mix Sel DAC (*)
1470 * port-A 0x11 (mute/hp) <- 0x22 <- 0x37 <- 03/04/06
1471 * port-B 0x14 (mute/hp) <- 0x2b <- 0x30 <- 03/04/06
1472 * port-C 0x15 (mute) <- 0x2c <- 0x31 <- 05/0a
1473 * port-D 0x12 (mute/hp) <- 0x29 <- 04
1474 * port-E 0x17 (mute/hp) <- 0x26 <- 0x32 <- 05/0a
1475 * port-F 0x16 (mute) <- 0x2a <- 06
1476 * port-G 0x24 (mute) <- 0x27 <- 05
1477 * port-H 0x25 (mute) <- 0x28 <- 0a
1478 * mono 0x13 (mute/amp)<- 0x1e <- 0x36 <- 03/04/06
1479 *
1480 * DAC0 = 03h, DAC1 = 04h, DAC2 = 05h, DAC3 = 06h, DAC4 = 0ah
1481 * (*) DAC2/3/4 are swapped to DAC3/4/2 on AD198A rev.2 due to a h/w bug.
1482 *
1483 * Input pins and routes
1484 *
1485 * pin boost mix input # / adc input #
1486 * port-A 0x11 -> 0x38 -> mix 2, ADC 0
1487 * port-B 0x14 -> 0x39 -> mix 0, ADC 1
1488 * port-C 0x15 -> 0x3a -> 33:0 - mix 1, ADC 2
1489 * port-D 0x12 -> 0x3d -> mix 3, ADC 8
1490 * port-E 0x17 -> 0x3c -> 34:0 - mix 4, ADC 4
1491 * port-F 0x16 -> 0x3b -> mix 5, ADC 3
1492 * port-G 0x24 -> N/A -> 33:1 - mix 1, 34:1 - mix 4, ADC 6
1493 * port-H 0x25 -> N/A -> 33:2 - mix 1, 34:2 - mix 4, ADC 7
1494 *
1495 *
1496 * DAC assignment
1497 * 6stack - front/surr/CLFE/side/opt DACs - 04/06/05/0a/03
1498 * 3stack - front/surr/CLFE/opt DACs - 04/05/0a/03
1499 *
1500 * Inputs of Analog Mix (0x20)
1501 * 0:Port-B (front mic)
1502 * 1:Port-C/G/H (line-in)
1503 * 2:Port-A
1504 * 3:Port-D (line-in/2)
1505 * 4:Port-E/G/H (mic-in)
1506 * 5:Port-F (mic2-in)
1507 * 6:CD
1508 * 7:Beep
1509 *
1510 * ADC selection
1511 * 0:Port-A
1512 * 1:Port-B (front mic-in)
1513 * 2:Port-C (line-in)
1514 * 3:Port-F (mic2-in)
1515 * 4:Port-E (mic-in)
1516 * 5:CD
1517 * 6:Port-G
1518 * 7:Port-H
1519 * 8:Port-D (line-in/2)
1520 * 9:Mix
1521 *
1522 * Proposed pin assignments by the datasheet
1523 *
1524 * 6-stack
1525 * Port-A front headphone
1526 * B front mic-in
1527 * C rear line-in
1528 * D rear front-out
1529 * E rear mic-in
1530 * F rear surround
1531 * G rear CLFE
1532 * H rear side
1533 *
1534 * 3-stack
1535 * Port-A front headphone
1536 * B front mic
1537 * C rear line-in/surround
1538 * D rear front-out
1539 * E rear mic-in/CLFE
1540 *
1541 * laptop
1542 * Port-A headphone
1543 * B mic-in
1544 * C docking station
1545 * D internal speaker (with EAPD)
1546 * E/F quad mic array
1547 */
1548
1549
1550 /* models */
1551 enum {
1552 AD1988_6STACK,
1553 AD1988_6STACK_DIG,
1554 AD1988_3STACK,
1555 AD1988_3STACK_DIG,
1556 AD1988_LAPTOP,
1557 AD1988_LAPTOP_DIG,
1558 AD1988_AUTO,
1559 AD1988_MODEL_LAST,
1560 };
1561
1562 /* reivision id to check workarounds */
1563 #define AD1988A_REV2 0x100200
1564
1565 #define is_rev2(codec) \
1566 ((codec)->vendor_id == 0x11d41988 && \
1567 (codec)->revision_id == AD1988A_REV2)
1568
1569 /*
1570 * mixers
1571 */
1572
1573 static hda_nid_t ad1988_6stack_dac_nids[4] = {
1574 0x04, 0x06, 0x05, 0x0a
1575 };
1576
1577 static hda_nid_t ad1988_3stack_dac_nids[3] = {
1578 0x04, 0x05, 0x0a
1579 };
1580
1581 /* for AD1988A revision-2, DAC2-4 are swapped */
1582 static hda_nid_t ad1988_6stack_dac_nids_rev2[4] = {
1583 0x04, 0x05, 0x0a, 0x06
1584 };
1585
1586 static hda_nid_t ad1988_3stack_dac_nids_rev2[3] = {
1587 0x04, 0x0a, 0x06
1588 };
1589
1590 static hda_nid_t ad1988_adc_nids[3] = {
1591 0x08, 0x09, 0x0f
1592 };
1593
1594 static hda_nid_t ad1988_capsrc_nids[3] = {
1595 0x0c, 0x0d, 0x0e
1596 };
1597
1598 #define AD1988_SPDIF_OUT 0x02
1599 #define AD1988_SPDIF_IN 0x07
1600
1601 static struct hda_input_mux ad1988_6stack_capture_source = {
1602 .num_items = 5,
1603 .items = {
1604 { "Front Mic", 0x0 },
1605 { "Line", 0x1 },
1606 { "Mic", 0x4 },
1607 { "CD", 0x5 },
1608 { "Mix", 0x9 },
1609 },
1610 };
1611
1612 static struct hda_input_mux ad1988_laptop_capture_source = {
1613 .num_items = 3,
1614 .items = {
1615 { "Mic/Line", 0x0 },
1616 { "CD", 0x5 },
1617 { "Mix", 0x9 },
1618 },
1619 };
1620
1621 /*
1622 */
1623 static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
1624 struct snd_ctl_elem_info *uinfo)
1625 {
1626 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1627 struct ad198x_spec *spec = codec->spec;
1628 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
1629 spec->num_channel_mode);
1630 }
1631
1632 static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
1633 struct snd_ctl_elem_value *ucontrol)
1634 {
1635 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1636 struct ad198x_spec *spec = codec->spec;
1637 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
1638 spec->num_channel_mode, spec->multiout.max_channels);
1639 }
1640
1641 static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
1642 struct snd_ctl_elem_value *ucontrol)
1643 {
1644 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1645 struct ad198x_spec *spec = codec->spec;
1646 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
1647 spec->num_channel_mode,
1648 &spec->multiout.max_channels);
1649 if (err >= 0 && spec->need_dac_fix)
1650 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
1651 return err;
1652 }
1653
1654 /* 6-stack mode */
1655 static struct snd_kcontrol_new ad1988_6stack_mixers1[] = {
1656 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1657 HDA_CODEC_VOLUME("Surround Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1658 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1659 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
1660 HDA_CODEC_VOLUME("Side Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1661 { } /* end */
1662 };
1663
1664 static struct snd_kcontrol_new ad1988_6stack_mixers1_rev2[] = {
1665 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1666 HDA_CODEC_VOLUME("Surround Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1667 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
1668 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0a, 2, 0x0, HDA_OUTPUT),
1669 HDA_CODEC_VOLUME("Side Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1670 { } /* end */
1671 };
1672
1673 static struct snd_kcontrol_new ad1988_6stack_mixers2[] = {
1674 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
1675 HDA_BIND_MUTE("Surround Playback Switch", 0x2a, 2, HDA_INPUT),
1676 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x27, 1, 2, HDA_INPUT),
1677 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x27, 2, 2, HDA_INPUT),
1678 HDA_BIND_MUTE("Side Playback Switch", 0x28, 2, HDA_INPUT),
1679 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1680 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1681
1682 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1683 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1684 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1685 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1686 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1687 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1688 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1689 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1690
1691 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1692 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1693
1694 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1695 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1696
1697 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1698 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1699
1700 { } /* end */
1701 };
1702
1703 /* 3-stack mode */
1704 static struct snd_kcontrol_new ad1988_3stack_mixers1[] = {
1705 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1706 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1707 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1708 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
1709 { } /* end */
1710 };
1711
1712 static struct snd_kcontrol_new ad1988_3stack_mixers1_rev2[] = {
1713 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1714 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1715 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x06, 1, 0x0, HDA_OUTPUT),
1716 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x06, 2, 0x0, HDA_OUTPUT),
1717 { } /* end */
1718 };
1719
1720 static struct snd_kcontrol_new ad1988_3stack_mixers2[] = {
1721 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
1722 HDA_BIND_MUTE("Surround Playback Switch", 0x2c, 2, HDA_INPUT),
1723 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x26, 1, 2, HDA_INPUT),
1724 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x26, 2, 2, HDA_INPUT),
1725 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1726 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1727
1728 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1729 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1730 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1731 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1732 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1733 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1734 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1735 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1736
1737 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1738 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1739
1740 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1741 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1742
1743 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1744 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1745 {
1746 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1747 .name = "Channel Mode",
1748 .info = ad198x_ch_mode_info,
1749 .get = ad198x_ch_mode_get,
1750 .put = ad198x_ch_mode_put,
1751 },
1752
1753 { } /* end */
1754 };
1755
1756 /* laptop mode */
1757 static struct snd_kcontrol_new ad1988_laptop_mixers[] = {
1758 HDA_CODEC_VOLUME("PCM Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1759 HDA_CODEC_MUTE("PCM Playback Switch", 0x29, 0x0, HDA_INPUT),
1760 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1761
1762 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1763 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1764 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1765 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1766 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1767 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1768
1769 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1770 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1771
1772 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
1773 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1774
1775 HDA_CODEC_VOLUME("Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1776
1777 {
1778 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1779 .name = "External Amplifier",
1780 .info = ad198x_eapd_info,
1781 .get = ad198x_eapd_get,
1782 .put = ad198x_eapd_put,
1783 .private_value = 0x12 | (1 << 8), /* port-D, inversed */
1784 },
1785
1786 { } /* end */
1787 };
1788
1789 /* capture */
1790 static struct snd_kcontrol_new ad1988_capture_mixers[] = {
1791 HDA_CODEC_VOLUME("Capture Volume", 0x0c, 0x0, HDA_OUTPUT),
1792 HDA_CODEC_MUTE("Capture Switch", 0x0c, 0x0, HDA_OUTPUT),
1793 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x0d, 0x0, HDA_OUTPUT),
1794 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x0d, 0x0, HDA_OUTPUT),
1795 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x0e, 0x0, HDA_OUTPUT),
1796 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x0e, 0x0, HDA_OUTPUT),
1797 {
1798 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1799 /* The multiple "Capture Source" controls confuse alsamixer
1800 * So call somewhat different..
1801 * FIXME: the controls appear in the "playback" view!
1802 */
1803 /* .name = "Capture Source", */
1804 .name = "Input Source",
1805 .count = 3,
1806 .info = ad198x_mux_enum_info,
1807 .get = ad198x_mux_enum_get,
1808 .put = ad198x_mux_enum_put,
1809 },
1810 { } /* end */
1811 };
1812
1813 static int ad1988_spdif_playback_source_info(struct snd_kcontrol *kcontrol,
1814 struct snd_ctl_elem_info *uinfo)
1815 {
1816 static char *texts[] = {
1817 "PCM", "ADC1", "ADC2", "ADC3"
1818 };
1819 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1820 uinfo->count = 1;
1821 uinfo->value.enumerated.items = 4;
1822 if (uinfo->value.enumerated.item >= 4)
1823 uinfo->value.enumerated.item = 3;
1824 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1825 return 0;
1826 }
1827
1828 static int ad1988_spdif_playback_source_get(struct snd_kcontrol *kcontrol,
1829 struct snd_ctl_elem_value *ucontrol)
1830 {
1831 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1832 unsigned int sel;
1833
1834 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1835 if (sel > 0) {
1836 sel = snd_hda_codec_read(codec, 0x0b, 0, AC_VERB_GET_CONNECT_SEL, 0);
1837 if (sel <= 3)
1838 sel++;
1839 else
1840 sel = 0;
1841 }
1842 ucontrol->value.enumerated.item[0] = sel;
1843 return 0;
1844 }
1845
1846 static int ad1988_spdif_playback_source_put(struct snd_kcontrol *kcontrol,
1847 struct snd_ctl_elem_value *ucontrol)
1848 {
1849 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1850 unsigned int sel;
1851 int change;
1852
1853 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1854 if (! ucontrol->value.enumerated.item[0]) {
1855 change = sel != 0;
1856 if (change)
1857 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL, 0);
1858 } else {
1859 change = sel == 0;
1860 if (change)
1861 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL, 1);
1862 sel = snd_hda_codec_read(codec, 0x0b, 0, AC_VERB_GET_CONNECT_SEL, 0) + 1;
1863 change |= sel == ucontrol->value.enumerated.item[0];
1864 if (change)
1865 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL,
1866 ucontrol->value.enumerated.item[0] - 1);
1867 }
1868 return change;
1869 }
1870
1871 static struct snd_kcontrol_new ad1988_spdif_out_mixers[] = {
1872 HDA_CODEC_VOLUME("IEC958 Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1873 {
1874 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1875 .name = "IEC958 Playback Source",
1876 .info = ad1988_spdif_playback_source_info,
1877 .get = ad1988_spdif_playback_source_get,
1878 .put = ad1988_spdif_playback_source_put,
1879 },
1880 { } /* end */
1881 };
1882
1883 static struct snd_kcontrol_new ad1988_spdif_in_mixers[] = {
1884 HDA_CODEC_VOLUME("IEC958 Capture Volume", 0x1c, 0x0, HDA_INPUT),
1885 { } /* end */
1886 };
1887
1888
1889 /*
1890 * initialization verbs
1891 */
1892
1893 /*
1894 * for 6-stack (+dig)
1895 */
1896 static struct hda_verb ad1988_6stack_init_verbs[] = {
1897 /* Front, Surround, CLFE, side DAC; unmute as default */
1898 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1899 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1900 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1901 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1902 /* Port-A front headphon path */
1903 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
1904 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1905 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1906 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1907 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1908 /* Port-D line-out path */
1909 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1910 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1911 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1912 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1913 /* Port-F surround path */
1914 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1915 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1916 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1917 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1918 /* Port-G CLFE path */
1919 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1920 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1921 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1922 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1923 /* Port-H side path */
1924 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1925 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1926 {0x25, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1927 {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1928 /* Mono out path */
1929 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
1930 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1931 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1932 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1933 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
1934 /* Port-B front mic-in path */
1935 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1936 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1937 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1938 /* Port-C line-in path */
1939 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1940 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1941 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1942 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
1943 /* Port-E mic-in path */
1944 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1945 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1946 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1947 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
1948
1949 { }
1950 };
1951
1952 static struct hda_verb ad1988_capture_init_verbs[] = {
1953 /* mute analog mix */
1954 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1955 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1956 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1957 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1958 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1959 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
1960 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1961 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1962 /* select ADCs - front-mic */
1963 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
1964 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
1965 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
1966 /* ADCs; muted */
1967 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1968 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1969 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1970
1971 { }
1972 };
1973
1974 static struct hda_verb ad1988_spdif_init_verbs[] = {
1975 /* SPDIF out sel */
1976 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0}, /* PCM */
1977 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0}, /* ADC1 */
1978 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1979 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1980 /* SPDIF out pin */
1981 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x27}, /* 0dB */
1982 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x17}, /* 0dB */
1983
1984 { }
1985 };
1986
1987 /*
1988 * verbs for 3stack (+dig)
1989 */
1990 static struct hda_verb ad1988_3stack_ch2_init[] = {
1991 /* set port-C to line-in */
1992 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1993 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1994 /* set port-E to mic-in */
1995 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1996 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1997 { } /* end */
1998 };
1999
2000 static struct hda_verb ad1988_3stack_ch6_init[] = {
2001 /* set port-C to surround out */
2002 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
2003 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2004 /* set port-E to CLFE out */
2005 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
2006 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2007 { } /* end */
2008 };
2009
2010 static struct hda_channel_mode ad1988_3stack_modes[2] = {
2011 { 2, ad1988_3stack_ch2_init },
2012 { 6, ad1988_3stack_ch6_init },
2013 };
2014
2015 static struct hda_verb ad1988_3stack_init_verbs[] = {
2016 /* Front, Surround, CLFE, side DAC; unmute as default */
2017 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2018 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2019 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2020 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2021 /* Port-A front headphon path */
2022 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
2023 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2024 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2025 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2026 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2027 /* Port-D line-out path */
2028 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2029 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2030 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2031 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2032 /* Mono out path */
2033 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2034 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2035 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2036 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2037 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2038 /* Port-B front mic-in path */
2039 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2040 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2041 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2042 /* Port-C line-in/surround path - 6ch mode as default */
2043 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2044 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2045 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2046 {0x31, AC_VERB_SET_CONNECT_SEL, 0x0}, /* output sel: DAC 0x05 */
2047 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2048 /* Port-E mic-in/CLFE path - 6ch mode as default */
2049 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2050 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2051 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2052 {0x32, AC_VERB_SET_CONNECT_SEL, 0x1}, /* output sel: DAC 0x0a */
2053 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
2054 /* mute analog mix */
2055 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2056 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2057 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2058 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2059 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2060 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2061 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2062 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2063 /* select ADCs - front-mic */
2064 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2065 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2066 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2067 /* ADCs; muted */
2068 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2069 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2070 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2071 { }
2072 };
2073
2074 /*
2075 * verbs for laptop mode (+dig)
2076 */
2077 static struct hda_verb ad1988_laptop_hp_on[] = {
2078 /* unmute port-A and mute port-D */
2079 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2080 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2081 { } /* end */
2082 };
2083 static struct hda_verb ad1988_laptop_hp_off[] = {
2084 /* mute port-A and unmute port-D */
2085 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2086 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2087 { } /* end */
2088 };
2089
2090 #define AD1988_HP_EVENT 0x01
2091
2092 static struct hda_verb ad1988_laptop_init_verbs[] = {
2093 /* Front, Surround, CLFE, side DAC; unmute as default */
2094 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2095 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2096 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2097 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2098 /* Port-A front headphon path */
2099 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
2100 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2101 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2102 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2103 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2104 /* unsolicited event for pin-sense */
2105 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1988_HP_EVENT },
2106 /* Port-D line-out path + EAPD */
2107 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2108 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2109 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2110 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2111 {0x12, AC_VERB_SET_EAPD_BTLENABLE, 0x00}, /* EAPD-off */
2112 /* Mono out path */
2113 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2114 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2115 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2116 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2117 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2118 /* Port-B mic-in path */
2119 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2120 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2121 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2122 /* Port-C docking station - try to output */
2123 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2124 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2125 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2126 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2127 /* mute analog mix */
2128 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2129 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2130 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2131 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2132 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2133 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2134 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2135 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2136 /* select ADCs - mic */
2137 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2138 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2139 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2140 /* ADCs; muted */
2141 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2142 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2143 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2144 { }
2145 };
2146
2147 static void ad1988_laptop_unsol_event(struct hda_codec *codec, unsigned int res)
2148 {
2149 if ((res >> 26) != AD1988_HP_EVENT)
2150 return;
2151 if (snd_hda_codec_read(codec, 0x11, 0, AC_VERB_GET_PIN_SENSE, 0) & (1 << 31))
2152 snd_hda_sequence_write(codec, ad1988_laptop_hp_on);
2153 else
2154 snd_hda_sequence_write(codec, ad1988_laptop_hp_off);
2155 }
2156
2157
2158 /*
2159 * Automatic parse of I/O pins from the BIOS configuration
2160 */
2161
2162 #define NUM_CONTROL_ALLOC 32
2163 #define NUM_VERB_ALLOC 32
2164
2165 enum {
2166 AD_CTL_WIDGET_VOL,
2167 AD_CTL_WIDGET_MUTE,
2168 AD_CTL_BIND_MUTE,
2169 };
2170 static struct snd_kcontrol_new ad1988_control_templates[] = {
2171 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2172 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2173 HDA_BIND_MUTE(NULL, 0, 0, 0),
2174 };
2175
2176 /* add dynamic controls */
2177 static int add_control(struct ad198x_spec *spec, int type, const char *name,
2178 unsigned long val)
2179 {
2180 struct snd_kcontrol_new *knew;
2181
2182 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2183 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2184
2185 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2186 if (! knew)
2187 return -ENOMEM;
2188 if (spec->kctl_alloc) {
2189 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2190 kfree(spec->kctl_alloc);
2191 }
2192 spec->kctl_alloc = knew;
2193 spec->num_kctl_alloc = num;
2194 }
2195
2196 knew = &spec->kctl_alloc[spec->num_kctl_used];
2197 *knew = ad1988_control_templates[type];
2198 knew->name = kstrdup(name, GFP_KERNEL);
2199 if (! knew->name)
2200 return -ENOMEM;
2201 knew->private_value = val;
2202 spec->num_kctl_used++;
2203 return 0;
2204 }
2205
2206 #define AD1988_PIN_CD_NID 0x18
2207 #define AD1988_PIN_BEEP_NID 0x10
2208
2209 static hda_nid_t ad1988_mixer_nids[8] = {
2210 /* A B C D E F G H */
2211 0x22, 0x2b, 0x2c, 0x29, 0x26, 0x2a, 0x27, 0x28
2212 };
2213
2214 static inline hda_nid_t ad1988_idx_to_dac(struct hda_codec *codec, int idx)
2215 {
2216 static hda_nid_t idx_to_dac[8] = {
2217 /* A B C D E F G H */
2218 0x04, 0x06, 0x05, 0x04, 0x0a, 0x06, 0x05, 0x0a
2219 };
2220 static hda_nid_t idx_to_dac_rev2[8] = {
2221 /* A B C D E F G H */
2222 0x04, 0x05, 0x0a, 0x04, 0x06, 0x05, 0x0a, 0x06
2223 };
2224 if (is_rev2(codec))
2225 return idx_to_dac_rev2[idx];
2226 else
2227 return idx_to_dac[idx];
2228 }
2229
2230 static hda_nid_t ad1988_boost_nids[8] = {
2231 0x38, 0x39, 0x3a, 0x3d, 0x3c, 0x3b, 0, 0
2232 };
2233
2234 static int ad1988_pin_idx(hda_nid_t nid)
2235 {
2236 static hda_nid_t ad1988_io_pins[8] = {
2237 0x11, 0x14, 0x15, 0x12, 0x17, 0x16, 0x24, 0x25
2238 };
2239 int i;
2240 for (i = 0; i < ARRAY_SIZE(ad1988_io_pins); i++)
2241 if (ad1988_io_pins[i] == nid)
2242 return i;
2243 return 0; /* should be -1 */
2244 }
2245
2246 static int ad1988_pin_to_loopback_idx(hda_nid_t nid)
2247 {
2248 static int loopback_idx[8] = {
2249 2, 0, 1, 3, 4, 5, 1, 4
2250 };
2251 switch (nid) {
2252 case AD1988_PIN_CD_NID:
2253 return 6;
2254 default:
2255 return loopback_idx[ad1988_pin_idx(nid)];
2256 }
2257 }
2258
2259 static int ad1988_pin_to_adc_idx(hda_nid_t nid)
2260 {
2261 static int adc_idx[8] = {
2262 0, 1, 2, 8, 4, 3, 6, 7
2263 };
2264 switch (nid) {
2265 case AD1988_PIN_CD_NID:
2266 return 5;
2267 default:
2268 return adc_idx[ad1988_pin_idx(nid)];
2269 }
2270 }
2271
2272 /* fill in the dac_nids table from the parsed pin configuration */
2273 static int ad1988_auto_fill_dac_nids(struct hda_codec *codec,
2274 const struct auto_pin_cfg *cfg)
2275 {
2276 struct ad198x_spec *spec = codec->spec;
2277 int i, idx;
2278
2279 spec->multiout.dac_nids = spec->private_dac_nids;
2280
2281 /* check the pins hardwired to audio widget */
2282 for (i = 0; i < cfg->line_outs; i++) {
2283 idx = ad1988_pin_idx(cfg->line_out_pins[i]);
2284 spec->multiout.dac_nids[i] = ad1988_idx_to_dac(codec, idx);
2285 }
2286 spec->multiout.num_dacs = cfg->line_outs;
2287 return 0;
2288 }
2289
2290 /* add playback controls from the parsed DAC table */
2291 static int ad1988_auto_create_multi_out_ctls(struct ad198x_spec *spec,
2292 const struct auto_pin_cfg *cfg)
2293 {
2294 char name[32];
2295 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2296 hda_nid_t nid;
2297 int i, err;
2298
2299 for (i = 0; i < cfg->line_outs; i++) {
2300 hda_nid_t dac = spec->multiout.dac_nids[i];
2301 if (! dac)
2302 continue;
2303 nid = ad1988_mixer_nids[ad1988_pin_idx(cfg->line_out_pins[i])];
2304 if (i == 2) {
2305 /* Center/LFE */
2306 err = add_control(spec, AD_CTL_WIDGET_VOL,
2307 "Center Playback Volume",
2308 HDA_COMPOSE_AMP_VAL(dac, 1, 0, HDA_OUTPUT));
2309 if (err < 0)
2310 return err;
2311 err = add_control(spec, AD_CTL_WIDGET_VOL,
2312 "LFE Playback Volume",
2313 HDA_COMPOSE_AMP_VAL(dac, 2, 0, HDA_OUTPUT));
2314 if (err < 0)
2315 return err;
2316 err = add_control(spec, AD_CTL_BIND_MUTE,
2317 "Center Playback Switch",
2318 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT));
2319 if (err < 0)
2320 return err;
2321 err = add_control(spec, AD_CTL_BIND_MUTE,
2322 "LFE Playback Switch",
2323 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT));
2324 if (err < 0)
2325 return err;
2326 } else {
2327 sprintf(name, "%s Playback Volume", chname[i]);
2328 err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2329 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT));
2330 if (err < 0)
2331 return err;
2332 sprintf(name, "%s Playback Switch", chname[i]);
2333 err = add_control(spec, AD_CTL_BIND_MUTE, name,
2334 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
2335 if (err < 0)
2336 return err;
2337 }
2338 }
2339 return 0;
2340 }
2341
2342 /* add playback controls for speaker and HP outputs */
2343 static int ad1988_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
2344 const char *pfx)
2345 {
2346 struct ad198x_spec *spec = codec->spec;
2347 hda_nid_t nid;
2348 int idx, err;
2349 char name[32];
2350
2351 if (! pin)
2352 return 0;
2353
2354 idx = ad1988_pin_idx(pin);
2355 nid = ad1988_idx_to_dac(codec, idx);
2356 /* specify the DAC as the extra output */
2357 if (! spec->multiout.hp_nid)
2358 spec->multiout.hp_nid = nid;
2359 else
2360 spec->multiout.extra_out_nid[0] = nid;
2361 /* control HP volume/switch on the output mixer amp */
2362 sprintf(name, "%s Playback Volume", pfx);
2363 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2364 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2365 return err;
2366 nid = ad1988_mixer_nids[idx];
2367 sprintf(name, "%s Playback Switch", pfx);
2368 if ((err = add_control(spec, AD_CTL_BIND_MUTE, name,
2369 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2370 return err;
2371 return 0;
2372 }
2373
2374 /* create input playback/capture controls for the given pin */
2375 static int new_analog_input(struct ad198x_spec *spec, hda_nid_t pin,
2376 const char *ctlname, int boost)
2377 {
2378 char name[32];
2379 int err, idx;
2380
2381 sprintf(name, "%s Playback Volume", ctlname);
2382 idx = ad1988_pin_to_loopback_idx(pin);
2383 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2384 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2385 return err;
2386 sprintf(name, "%s Playback Switch", ctlname);
2387 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE, name,
2388 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2389 return err;
2390 if (boost) {
2391 hda_nid_t bnid;
2392 idx = ad1988_pin_idx(pin);
2393 bnid = ad1988_boost_nids[idx];
2394 if (bnid) {
2395 sprintf(name, "%s Boost", ctlname);
2396 return add_control(spec, AD_CTL_WIDGET_VOL, name,
2397 HDA_COMPOSE_AMP_VAL(bnid, 3, idx, HDA_OUTPUT));
2398
2399 }
2400 }
2401 return 0;
2402 }
2403
2404 /* create playback/capture controls for input pins */
2405 static int ad1988_auto_create_analog_input_ctls(struct ad198x_spec *spec,
2406 const struct auto_pin_cfg *cfg)
2407 {
2408 struct hda_input_mux *imux = &spec->private_imux;
2409 int i, err;
2410
2411 for (i = 0; i < AUTO_PIN_LAST; i++) {
2412 err = new_analog_input(spec, cfg->input_pins[i],
2413 auto_pin_cfg_labels[i],
2414 i <= AUTO_PIN_FRONT_MIC);
2415 if (err < 0)
2416 return err;
2417 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
2418 imux->items[imux->num_items].index = ad1988_pin_to_adc_idx(cfg->input_pins[i]);
2419 imux->num_items++;
2420 }
2421 imux->items[imux->num_items].label = "Mix";
2422 imux->items[imux->num_items].index = 9;
2423 imux->num_items++;
2424
2425 if ((err = add_control(spec, AD_CTL_WIDGET_VOL,
2426 "Analog Mix Playback Volume",
2427 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2428 return err;
2429 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE,
2430 "Analog Mix Playback Switch",
2431 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2432 return err;
2433
2434 return 0;
2435 }
2436
2437 static void ad1988_auto_set_output_and_unmute(struct hda_codec *codec,
2438 hda_nid_t nid, int pin_type,
2439 int dac_idx)
2440 {
2441 /* set as output */
2442 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2443 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2444 switch (nid) {
2445 case 0x11: /* port-A - DAC 04 */
2446 snd_hda_codec_write(codec, 0x37, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2447 break;
2448 case 0x14: /* port-B - DAC 06 */
2449 snd_hda_codec_write(codec, 0x30, 0, AC_VERB_SET_CONNECT_SEL, 0x02);
2450 break;
2451 case 0x15: /* port-C - DAC 05 */
2452 snd_hda_codec_write(codec, 0x31, 0, AC_VERB_SET_CONNECT_SEL, 0x00);
2453 break;
2454 case 0x17: /* port-E - DAC 0a */
2455 snd_hda_codec_write(codec, 0x32, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2456 break;
2457 case 0x13: /* mono - DAC 04 */
2458 snd_hda_codec_write(codec, 0x36, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2459 break;
2460 }
2461 }
2462
2463 static void ad1988_auto_init_multi_out(struct hda_codec *codec)
2464 {
2465 struct ad198x_spec *spec = codec->spec;
2466 int i;
2467
2468 for (i = 0; i < spec->autocfg.line_outs; i++) {
2469 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2470 ad1988_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2471 }
2472 }
2473
2474 static void ad1988_auto_init_extra_out(struct hda_codec *codec)
2475 {
2476 struct ad198x_spec *spec = codec->spec;
2477 hda_nid_t pin;
2478
2479 pin = spec->autocfg.speaker_pins[0];
2480 if (pin) /* connect to front */
2481 ad1988_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
2482 pin = spec->autocfg.hp_pins[0];
2483 if (pin) /* connect to front */
2484 ad1988_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2485 }
2486
2487 static void ad1988_auto_init_analog_input(struct hda_codec *codec)
2488 {
2489 struct ad198x_spec *spec = codec->spec;
2490 int i, idx;
2491
2492 for (i = 0; i < AUTO_PIN_LAST; i++) {
2493 hda_nid_t nid = spec->autocfg.input_pins[i];
2494 if (! nid)
2495 continue;
2496 switch (nid) {
2497 case 0x15: /* port-C */
2498 snd_hda_codec_write(codec, 0x33, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2499 break;
2500 case 0x17: /* port-E */
2501 snd_hda_codec_write(codec, 0x34, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2502 break;
2503 }
2504 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2505 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
2506 if (nid != AD1988_PIN_CD_NID)
2507 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2508 AMP_OUT_MUTE);
2509 idx = ad1988_pin_idx(nid);
2510 if (ad1988_boost_nids[idx])
2511 snd_hda_codec_write(codec, ad1988_boost_nids[idx], 0,
2512 AC_VERB_SET_AMP_GAIN_MUTE,
2513 AMP_OUT_ZERO);
2514 }
2515 }
2516
2517 /* parse the BIOS configuration and set up the alc_spec */
2518 /* return 1 if successful, 0 if the proper config is not found, or a negative error code */
2519 static int ad1988_parse_auto_config(struct hda_codec *codec)
2520 {
2521 struct ad198x_spec *spec = codec->spec;
2522 int err;
2523
2524 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
2525 return err;
2526 if ((err = ad1988_auto_fill_dac_nids(codec, &spec->autocfg)) < 0)
2527 return err;
2528 if (! spec->autocfg.line_outs)
2529 return 0; /* can't find valid BIOS pin config */
2530 if ((err = ad1988_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
2531 (err = ad1988_auto_create_extra_out(codec,
2532 spec->autocfg.speaker_pins[0],
2533 "Speaker")) < 0 ||
2534 (err = ad1988_auto_create_extra_out(codec, spec->autocfg.hp_pins[0],
2535 "Headphone")) < 0 ||
2536 (err = ad1988_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
2537 return err;
2538
2539 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2540
2541 if (spec->autocfg.dig_out_pin)
2542 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2543 if (spec->autocfg.dig_in_pin)
2544 spec->dig_in_nid = AD1988_SPDIF_IN;
2545
2546 if (spec->kctl_alloc)
2547 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
2548
2549 spec->init_verbs[spec->num_init_verbs++] = ad1988_6stack_init_verbs;
2550
2551 spec->input_mux = &spec->private_imux;
2552
2553 return 1;
2554 }
2555
2556 /* init callback for auto-configuration model -- overriding the default init */
2557 static int ad1988_auto_init(struct hda_codec *codec)
2558 {
2559 ad198x_init(codec);
2560 ad1988_auto_init_multi_out(codec);
2561 ad1988_auto_init_extra_out(codec);
2562 ad1988_auto_init_analog_input(codec);
2563 return 0;
2564 }
2565
2566
2567 /*
2568 */
2569
2570 static struct hda_board_config ad1988_cfg_tbl[] = {
2571 { .modelname = "6stack", .config = AD1988_6STACK },
2572 { .modelname = "6stack-dig", .config = AD1988_6STACK_DIG },
2573 { .modelname = "3stack", .config = AD1988_3STACK },
2574 { .modelname = "3stack-dig", .config = AD1988_3STACK_DIG },
2575 { .modelname = "laptop", .config = AD1988_LAPTOP },
2576 { .modelname = "laptop-dig", .config = AD1988_LAPTOP_DIG },
2577 { .modelname = "auto", .config = AD1988_AUTO },
2578 {}
2579 };
2580
2581 static int patch_ad1988(struct hda_codec *codec)
2582 {
2583 struct ad198x_spec *spec;
2584 int board_config;
2585
2586 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2587 if (spec == NULL)
2588 return -ENOMEM;
2589
2590 mutex_init(&spec->amp_mutex);
2591 codec->spec = spec;
2592
2593 if (is_rev2(codec))
2594 snd_printk(KERN_INFO "patch_analog: AD1988A rev.2 is detected, enable workarounds\n");
2595
2596 board_config = snd_hda_check_board_config(codec, ad1988_cfg_tbl);
2597 if (board_config < 0 || board_config >= AD1988_MODEL_LAST) {
2598 printk(KERN_INFO "hda_codec: Unknown model for AD1988, trying auto-probe from BIOS...\n");
2599 board_config = AD1988_AUTO;
2600 }
2601
2602 if (board_config == AD1988_AUTO) {
2603 /* automatic parse from the BIOS config */
2604 int err = ad1988_parse_auto_config(codec);
2605 if (err < 0) {
2606 ad198x_free(codec);
2607 return err;
2608 } else if (! err) {
2609 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using 6-stack mode...\n");
2610 board_config = AD1988_6STACK;
2611 }
2612 }
2613
2614 switch (board_config) {
2615 case AD1988_6STACK:
2616 case AD1988_6STACK_DIG:
2617 spec->multiout.max_channels = 8;
2618 spec->multiout.num_dacs = 4;
2619 if (is_rev2(codec))
2620 spec->multiout.dac_nids = ad1988_6stack_dac_nids_rev2;
2621 else
2622 spec->multiout.dac_nids = ad1988_6stack_dac_nids;
2623 spec->input_mux = &ad1988_6stack_capture_source;
2624 spec->num_mixers = 2;
2625 if (is_rev2(codec))
2626 spec->mixers[0] = ad1988_6stack_mixers1_rev2;
2627 else
2628 spec->mixers[0] = ad1988_6stack_mixers1;
2629 spec->mixers[1] = ad1988_6stack_mixers2;
2630 spec->num_init_verbs = 1;
2631 spec->init_verbs[0] = ad1988_6stack_init_verbs;
2632 if (board_config == AD1988_6STACK_DIG) {
2633 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2634 spec->dig_in_nid = AD1988_SPDIF_IN;
2635 }
2636 break;
2637 case AD1988_3STACK:
2638 case AD1988_3STACK_DIG:
2639 spec->multiout.max_channels = 6;
2640 spec->multiout.num_dacs = 3;
2641 if (is_rev2(codec))
2642 spec->multiout.dac_nids = ad1988_3stack_dac_nids_rev2;
2643 else
2644 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
2645 spec->input_mux = &ad1988_6stack_capture_source;
2646 spec->channel_mode = ad1988_3stack_modes;
2647 spec->num_channel_mode = ARRAY_SIZE(ad1988_3stack_modes);
2648 spec->num_mixers = 2;
2649 if (is_rev2(codec))
2650 spec->mixers[0] = ad1988_3stack_mixers1_rev2;
2651 else
2652 spec->mixers[0] = ad1988_3stack_mixers1;
2653 spec->mixers[1] = ad1988_3stack_mixers2;
2654 spec->num_init_verbs = 1;
2655 spec->init_verbs[0] = ad1988_3stack_init_verbs;
2656 if (board_config == AD1988_3STACK_DIG)
2657 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2658 break;
2659 case AD1988_LAPTOP:
2660 case AD1988_LAPTOP_DIG:
2661 spec->multiout.max_channels = 2;
2662 spec->multiout.num_dacs = 1;
2663 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
2664 spec->input_mux = &ad1988_laptop_capture_source;
2665 spec->num_mixers = 1;
2666 spec->mixers[0] = ad1988_laptop_mixers;
2667 spec->num_init_verbs = 1;
2668 spec->init_verbs[0] = ad1988_laptop_init_verbs;
2669 if (board_config == AD1988_LAPTOP_DIG)
2670 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2671 break;
2672 }
2673
2674 spec->num_adc_nids = ARRAY_SIZE(ad1988_adc_nids);
2675 spec->adc_nids = ad1988_adc_nids;
2676 spec->capsrc_nids = ad1988_capsrc_nids;
2677 spec->mixers[spec->num_mixers++] = ad1988_capture_mixers;
2678 spec->init_verbs[spec->num_init_verbs++] = ad1988_capture_init_verbs;
2679 if (spec->multiout.dig_out_nid) {
2680 spec->mixers[spec->num_mixers++] = ad1988_spdif_out_mixers;
2681 spec->init_verbs[spec->num_init_verbs++] = ad1988_spdif_init_verbs;
2682 }
2683 if (spec->dig_in_nid)
2684 spec->mixers[spec->num_mixers++] = ad1988_spdif_in_mixers;
2685
2686 codec->patch_ops = ad198x_patch_ops;
2687 switch (board_config) {
2688 case AD1988_AUTO:
2689 codec->patch_ops.init = ad1988_auto_init;
2690 break;
2691 case AD1988_LAPTOP:
2692 case AD1988_LAPTOP_DIG:
2693 codec->patch_ops.unsol_event = ad1988_laptop_unsol_event;
2694 break;
2695 }
2696
2697 return 0;
2698 }
2699
2700
2701 /*
2702 * patch entries
2703 */
2704 struct hda_codec_preset snd_hda_preset_analog[] = {
2705 { .id = 0x11d41981, .name = "AD1981", .patch = patch_ad1981 },
2706 { .id = 0x11d41983, .name = "AD1983", .patch = patch_ad1983 },
2707 { .id = 0x11d41986, .name = "AD1986A", .patch = patch_ad1986a },
2708 { .id = 0x11d41988, .name = "AD1988", .patch = patch_ad1988 },
2709 { .id = 0x11d4198b, .name = "AD1988B", .patch = patch_ad1988 },
2710 {} /* terminator */
2711 };
This page took 0.17596 seconds and 5 git commands to generate.