blob: f6f3c2cc0869b3245e6d1740c7633367c98e97b9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Takashi Iwaid32410b12005-11-24 16:06:23 +01002 * HD audio interface patch for AD1981HD, AD1983, AD1986A, AD1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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>
Ingo Molnar62932df2006-01-16 16:34:20 +010026#include <linux/mutex.h>
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <sound/core.h>
29#include "hda_codec.h"
30#include "hda_local.h"
31
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020032struct ad198x_spec {
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010033 struct snd_kcontrol_new *mixers[5];
Takashi Iwai985be542005-11-02 18:26:49 +010034 int num_mixers;
35
Takashi Iwaid32410b12005-11-24 16:06:23 +010036 const struct hda_verb *init_verbs[5]; /* initialization verbs
Takashi Iwai985be542005-11-02 18:26:49 +010037 * 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 */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +010046 unsigned int cur_eapd;
Takashi Iwai2125cad2006-03-27 12:52:22 +020047 unsigned int need_dac_fix;
Takashi Iwai985be542005-11-02 18:26:49 +010048
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 */
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020055 const struct hda_input_mux *input_mux;
Takashi Iwai2e5b9562005-11-21 16:36:15 +010056 hda_nid_t *capsrc_nids;
Takashi Iwai985be542005-11-02 18:26:49 +010057 unsigned int cur_mux[3];
58
59 /* channel model */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +010060 const struct hda_channel_mode *channel_mode;
Takashi Iwai985be542005-11-02 18:26:49 +010061 int num_channel_mode;
62
63 /* PCM information */
64 struct hda_pcm pcm_rec[2]; /* used in alc_build_pcms() */
65
Ingo Molnar62932df2006-01-16 16:34:20 +010066 struct mutex amp_mutex; /* PCM volume/mute control mutex */
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020067 unsigned int spdif_route;
Takashi Iwaid32410b12005-11-24 16:06:23 +010068
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];
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020077/*
78 * input MUX handling (common part)
79 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010080static int ad198x_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020081{
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
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010088static int ad198x_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020089{
90 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
91 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +010092 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020093
Takashi Iwai985be542005-11-02 18:26:49 +010094 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020095 return 0;
96}
97
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010098static int ad198x_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +020099{
100 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
101 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100102 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200103
104 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
Takashi Iwai2e5b9562005-11-21 16:36:15 +0100105 spec->capsrc_nids[adc_idx],
106 &spec->cur_mux[adc_idx]);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200107}
108
109/*
110 * initialization (common callbacks)
111 */
112static int ad198x_init(struct hda_codec *codec)
113{
114 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100115 int i;
116
117 for (i = 0; i < spec->num_init_verbs; i++)
118 snd_hda_sequence_write(codec, spec->init_verbs[i]);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200119 return 0;
120}
121
122static int ad198x_build_controls(struct hda_codec *codec)
123{
124 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100125 unsigned int i;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200126 int err;
127
Takashi Iwai985be542005-11-02 18:26:49 +0100128 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) {
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200134 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
Takashi Iwai985be542005-11-02 18:26:49 +0100135 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 }
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200143 return 0;
144}
145
146/*
147 * Analog playback callbacks
148 */
149static int ad198x_playback_pcm_open(struct hda_pcm_stream *hinfo,
150 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100151 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200152{
153 struct ad198x_spec *spec = codec->spec;
154 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
155}
156
157static int ad198x_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
158 struct hda_codec *codec,
159 unsigned int stream_tag,
160 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100161 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200162{
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
168static int ad198x_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
169 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100170 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200171{
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 */
179static int ad198x_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
180 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100181 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200182{
183 struct ad198x_spec *spec = codec->spec;
184 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
185}
186
187static int ad198x_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
188 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100189 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200190{
191 struct ad198x_spec *spec = codec->spec;
192 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
193}
194
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200195static int ad198x_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
196 struct hda_codec *codec,
197 unsigned int stream_tag,
198 unsigned int format,
199 struct snd_pcm_substream *substream)
200{
201 struct ad198x_spec *spec = codec->spec;
202 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
203 format, substream);
204}
205
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200206/*
207 * Analog capture
208 */
209static int ad198x_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
210 struct hda_codec *codec,
211 unsigned int stream_tag,
212 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100213 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200214{
215 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100216 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
217 stream_tag, 0, format);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200218 return 0;
219}
220
221static int ad198x_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
222 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100223 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200224{
225 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100226 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
227 0, 0, 0);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200228 return 0;
229}
230
231
232/*
233 */
234static struct hda_pcm_stream ad198x_pcm_analog_playback = {
235 .substreams = 1,
236 .channels_min = 2,
Takashi Iwai985be542005-11-02 18:26:49 +0100237 .channels_max = 6, /* changed later */
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200238 .nid = 0, /* fill later */
239 .ops = {
240 .open = ad198x_playback_pcm_open,
241 .prepare = ad198x_playback_pcm_prepare,
242 .cleanup = ad198x_playback_pcm_cleanup
243 },
244};
245
246static struct hda_pcm_stream ad198x_pcm_analog_capture = {
Takashi Iwai985be542005-11-02 18:26:49 +0100247 .substreams = 1,
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200248 .channels_min = 2,
249 .channels_max = 2,
250 .nid = 0, /* fill later */
251 .ops = {
252 .prepare = ad198x_capture_pcm_prepare,
253 .cleanup = ad198x_capture_pcm_cleanup
254 },
255};
256
257static struct hda_pcm_stream ad198x_pcm_digital_playback = {
258 .substreams = 1,
259 .channels_min = 2,
260 .channels_max = 2,
261 .nid = 0, /* fill later */
262 .ops = {
263 .open = ad198x_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200264 .close = ad198x_dig_playback_pcm_close,
265 .prepare = ad198x_dig_playback_pcm_prepare
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200266 },
267};
268
Takashi Iwai985be542005-11-02 18:26:49 +0100269static struct hda_pcm_stream ad198x_pcm_digital_capture = {
270 .substreams = 1,
271 .channels_min = 2,
272 .channels_max = 2,
273 /* NID is set in alc_build_pcms */
274};
275
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200276static int ad198x_build_pcms(struct hda_codec *codec)
277{
278 struct ad198x_spec *spec = codec->spec;
279 struct hda_pcm *info = spec->pcm_rec;
280
281 codec->num_pcms = 1;
282 codec->pcm_info = info;
283
284 info->name = "AD198x Analog";
285 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_analog_playback;
286 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->multiout.max_channels;
287 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
288 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_analog_capture;
Takashi Iwai985be542005-11-02 18:26:49 +0100289 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
290 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200291
292 if (spec->multiout.dig_out_nid) {
293 info++;
294 codec->num_pcms++;
295 info->name = "AD198x Digital";
296 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_digital_playback;
297 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
Takashi Iwai985be542005-11-02 18:26:49 +0100298 if (spec->dig_in_nid) {
299 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_digital_capture;
300 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
301 }
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200302 }
303
304 return 0;
305}
306
307static void ad198x_free(struct hda_codec *codec)
308{
Takashi Iwaid32410b12005-11-24 16:06:23 +0100309 struct ad198x_spec *spec = codec->spec;
310 unsigned int i;
311
312 if (spec->kctl_alloc) {
313 for (i = 0; i < spec->num_kctl_used; i++)
314 kfree(spec->kctl_alloc[i].name);
315 kfree(spec->kctl_alloc);
316 }
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200317 kfree(codec->spec);
318}
319
320#ifdef CONFIG_PM
321static int ad198x_resume(struct hda_codec *codec)
322{
323 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100324 int i;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200325
Takashi Iwai18a815d2006-03-01 19:54:39 +0100326 codec->patch_ops.init(codec);
Takashi Iwai985be542005-11-02 18:26:49 +0100327 for (i = 0; i < spec->num_mixers; i++)
328 snd_hda_resume_ctls(codec, spec->mixers[i]);
329 if (spec->multiout.dig_out_nid)
330 snd_hda_resume_spdif_out(codec);
331 if (spec->dig_in_nid)
332 snd_hda_resume_spdif_in(codec);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200333 return 0;
334}
335#endif
336
337static struct hda_codec_ops ad198x_patch_ops = {
338 .build_controls = ad198x_build_controls,
339 .build_pcms = ad198x_build_pcms,
340 .init = ad198x_init,
341 .free = ad198x_free,
342#ifdef CONFIG_PM
343 .resume = ad198x_resume,
344#endif
345};
346
347
348/*
Takashi Iwai18a815d2006-03-01 19:54:39 +0100349 * EAPD control
350 * the private value = nid | (invert << 8)
351 */
352static int ad198x_eapd_info(struct snd_kcontrol *kcontrol,
353 struct snd_ctl_elem_info *uinfo)
354{
355 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
356 uinfo->count = 1;
357 uinfo->value.integer.min = 0;
358 uinfo->value.integer.max = 1;
359 return 0;
360}
361
362static int ad198x_eapd_get(struct snd_kcontrol *kcontrol,
363 struct snd_ctl_elem_value *ucontrol)
364{
365 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
366 struct ad198x_spec *spec = codec->spec;
367 int invert = (kcontrol->private_value >> 8) & 1;
368 if (invert)
369 ucontrol->value.integer.value[0] = ! spec->cur_eapd;
370 else
371 ucontrol->value.integer.value[0] = spec->cur_eapd;
372 return 0;
373}
374
375static int ad198x_eapd_put(struct snd_kcontrol *kcontrol,
376 struct snd_ctl_elem_value *ucontrol)
377{
378 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
379 struct ad198x_spec *spec = codec->spec;
380 int invert = (kcontrol->private_value >> 8) & 1;
381 hda_nid_t nid = kcontrol->private_value & 0xff;
382 unsigned int eapd;
383 eapd = ucontrol->value.integer.value[0];
384 if (invert)
385 eapd = !eapd;
386 if (eapd == spec->cur_eapd && ! codec->in_resume)
387 return 0;
388 spec->cur_eapd = eapd;
389 snd_hda_codec_write(codec, nid,
390 0, AC_VERB_SET_EAPD_BTLENABLE,
391 eapd ? 0x02 : 0x00);
392 return 1;
393}
394
Takashi Iwai9230d212006-03-13 13:49:49 +0100395static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
396 struct snd_ctl_elem_info *uinfo);
397static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
398 struct snd_ctl_elem_value *ucontrol);
399static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
400 struct snd_ctl_elem_value *ucontrol);
401
402
Takashi Iwai18a815d2006-03-01 19:54:39 +0100403/*
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200404 * AD1986A specific
405 */
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#define AD1986A_SPDIF_OUT 0x02
408#define AD1986A_FRONT_DAC 0x03
409#define AD1986A_SURR_DAC 0x04
410#define AD1986A_CLFE_DAC 0x05
411#define AD1986A_ADC 0x06
412
413static hda_nid_t ad1986a_dac_nids[3] = {
414 AD1986A_FRONT_DAC, AD1986A_SURR_DAC, AD1986A_CLFE_DAC
415};
Takashi Iwai985be542005-11-02 18:26:49 +0100416static hda_nid_t ad1986a_adc_nids[1] = { AD1986A_ADC };
Takashi Iwai18a815d2006-03-01 19:54:39 +0100417static hda_nid_t ad1986a_capsrc_nids[1] = { 0x12 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419static struct hda_input_mux ad1986a_capture_source = {
420 .num_items = 7,
421 .items = {
422 { "Mic", 0x0 },
423 { "CD", 0x1 },
424 { "Aux", 0x3 },
425 { "Line", 0x4 },
426 { "Mix", 0x5 },
427 { "Mono", 0x6 },
428 { "Phone", 0x7 },
429 },
430};
431
432/*
433 * PCM control
434 *
435 * bind volumes/mutes of 3 DACs as a single PCM control for simplicity
436 */
437
438#define ad1986a_pcm_amp_vol_info snd_hda_mixer_amp_volume_info
439
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100440static int ad1986a_pcm_amp_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441{
442 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200443 struct ad198x_spec *ad = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Ingo Molnar62932df2006-01-16 16:34:20 +0100445 mutex_lock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
Ingo Molnar62932df2006-01-16 16:34:20 +0100447 mutex_unlock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 return 0;
449}
450
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100451static int ad1986a_pcm_amp_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200454 struct ad198x_spec *ad = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 int i, change = 0;
456
Ingo Molnar62932df2006-01-16 16:34:20 +0100457 mutex_lock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
459 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
460 change |= snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
461 }
462 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
Ingo Molnar62932df2006-01-16 16:34:20 +0100463 mutex_unlock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return change;
465}
466
Takashi Iwaiead9b7c2005-06-08 14:48:19 +0200467#define ad1986a_pcm_amp_sw_info snd_hda_mixer_amp_switch_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100469static int ad1986a_pcm_amp_sw_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200472 struct ad198x_spec *ad = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Ingo Molnar62932df2006-01-16 16:34:20 +0100474 mutex_lock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
Ingo Molnar62932df2006-01-16 16:34:20 +0100476 mutex_unlock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return 0;
478}
479
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100480static int ad1986a_pcm_amp_sw_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481{
482 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200483 struct ad198x_spec *ad = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 int i, change = 0;
485
Ingo Molnar62932df2006-01-16 16:34:20 +0100486 mutex_lock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
488 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
489 change |= snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
490 }
491 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
Ingo Molnar62932df2006-01-16 16:34:20 +0100492 mutex_unlock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return change;
494}
495
496/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * mixers
498 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100499static struct snd_kcontrol_new ad1986a_mixers[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 {
501 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
502 .name = "PCM Playback Volume",
Jaroslav Kysela302e9c52006-07-05 17:39:49 +0200503 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
504 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
505 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 .info = ad1986a_pcm_amp_vol_info,
507 .get = ad1986a_pcm_amp_vol_get,
508 .put = ad1986a_pcm_amp_vol_put,
Takashi Iwaic2566522006-08-17 18:21:36 +0200509 .tlv = { .c = snd_hda_mixer_amp_tlv },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
511 },
512 {
513 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
514 .name = "PCM Playback Switch",
515 .info = ad1986a_pcm_amp_sw_info,
516 .get = ad1986a_pcm_amp_sw_get,
517 .put = ad1986a_pcm_amp_sw_put,
518 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
519 },
520 HDA_CODEC_VOLUME("Front Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
521 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
522 HDA_CODEC_VOLUME("Surround Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
523 HDA_CODEC_MUTE("Surround Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
524 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x1d, 1, 0x0, HDA_OUTPUT),
525 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x1d, 2, 0x0, HDA_OUTPUT),
526 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x1d, 1, 0x0, HDA_OUTPUT),
527 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x1d, 2, 0x0, HDA_OUTPUT),
528 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
529 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT),
530 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
531 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
532 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
533 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
534 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
535 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
536 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
537 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
Takashi Iwaife8970b2007-02-26 16:00:34 +0100538 HDA_CODEC_VOLUME("Mic Boost", 0x0f, 0x0, HDA_OUTPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
540 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
541 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
542 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT),
543 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
544 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
545 {
546 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
547 .name = "Capture Source",
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200548 .info = ad198x_mux_enum_info,
549 .get = ad198x_mux_enum_get,
550 .put = ad198x_mux_enum_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 },
552 HDA_CODEC_MUTE("Stereo Downmix Switch", 0x09, 0x0, HDA_OUTPUT),
553 { } /* end */
554};
555
Takashi Iwai9230d212006-03-13 13:49:49 +0100556/* additional mixers for 3stack mode */
557static struct snd_kcontrol_new ad1986a_3st_mixers[] = {
558 {
559 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
560 .name = "Channel Mode",
561 .info = ad198x_ch_mode_info,
562 .get = ad198x_ch_mode_get,
563 .put = ad198x_ch_mode_put,
564 },
565 { } /* end */
566};
567
568/* laptop model - 2ch only */
569static hda_nid_t ad1986a_laptop_dac_nids[1] = { AD1986A_FRONT_DAC };
570
571static struct snd_kcontrol_new ad1986a_laptop_mixers[] = {
572 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
573 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
574 HDA_CODEC_VOLUME("Master Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
575 HDA_CODEC_MUTE("Master Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
576 /* HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
577 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT), */
578 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
579 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
580 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
581 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
582 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
583 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
584 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
585 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
Takashi Iwaife8970b2007-02-26 16:00:34 +0100586 HDA_CODEC_VOLUME("Mic Boost", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai9230d212006-03-13 13:49:49 +0100587 /* HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
588 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
589 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
590 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT), */
591 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
592 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
593 {
594 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
595 .name = "Capture Source",
596 .info = ad198x_mux_enum_info,
597 .get = ad198x_mux_enum_get,
598 .put = ad198x_mux_enum_put,
599 },
600 { } /* end */
601};
602
Takashi Iwai825aa9722006-03-17 10:50:49 +0100603/* laptop-eapd model - 2ch only */
604
605/* master controls both pins 0x1a and 0x1b */
606static int ad1986a_laptop_master_vol_put(struct snd_kcontrol *kcontrol,
607 struct snd_ctl_elem_value *ucontrol)
608{
609 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
610 long *valp = ucontrol->value.integer.value;
611 int change;
612
613 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
614 0x7f, valp[0] & 0x7f);
615 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
616 0x7f, valp[1] & 0x7f);
617 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
618 0x7f, valp[0] & 0x7f);
619 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
620 0x7f, valp[1] & 0x7f);
621 return change;
622}
623
624static int ad1986a_laptop_master_sw_put(struct snd_kcontrol *kcontrol,
625 struct snd_ctl_elem_value *ucontrol)
626{
627 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
628 long *valp = ucontrol->value.integer.value;
629 int change;
630
631 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
632 0x80, valp[0] ? 0 : 0x80);
633 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
634 0x80, valp[1] ? 0 : 0x80);
635 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
636 0x80, valp[0] ? 0 : 0x80);
637 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
638 0x80, valp[1] ? 0 : 0x80);
639 return change;
640}
641
642static struct hda_input_mux ad1986a_laptop_eapd_capture_source = {
643 .num_items = 3,
644 .items = {
645 { "Mic", 0x0 },
646 { "Internal Mic", 0x4 },
647 { "Mix", 0x5 },
648 },
649};
650
651static struct snd_kcontrol_new ad1986a_laptop_eapd_mixers[] = {
652 {
653 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
654 .name = "Master Playback Volume",
655 .info = snd_hda_mixer_amp_volume_info,
656 .get = snd_hda_mixer_amp_volume_get,
657 .put = ad1986a_laptop_master_vol_put,
Takashi Iwaic2566522006-08-17 18:21:36 +0200658 .tlv = { .c = snd_hda_mixer_amp_tlv },
Takashi Iwai825aa9722006-03-17 10:50:49 +0100659 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
660 },
661 {
662 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
663 .name = "Master Playback Switch",
664 .info = snd_hda_mixer_amp_switch_info,
665 .get = snd_hda_mixer_amp_switch_get,
666 .put = ad1986a_laptop_master_sw_put,
667 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
668 },
669 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
670 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
671 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x0, HDA_OUTPUT),
672 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x0, HDA_OUTPUT),
673 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
674 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
Takashi Iwaife8970b2007-02-26 16:00:34 +0100675 HDA_CODEC_VOLUME("Mic Boost", 0x0f, 0x0, HDA_OUTPUT),
Takashi Iwai825aa9722006-03-17 10:50:49 +0100676 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
677 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
678 {
679 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
680 .name = "Capture Source",
681 .info = ad198x_mux_enum_info,
682 .get = ad198x_mux_enum_get,
683 .put = ad198x_mux_enum_put,
684 },
685 {
686 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
687 .name = "External Amplifier",
688 .info = ad198x_eapd_info,
689 .get = ad198x_eapd_get,
690 .put = ad198x_eapd_put,
691 .private_value = 0x1b | (1 << 8), /* port-D, inversed */
692 },
693 { } /* end */
694};
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696/*
697 * initialization verbs
698 */
699static struct hda_verb ad1986a_init_verbs[] = {
700 /* Front, Surround, CLFE DAC; mute as default */
701 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
702 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
703 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
704 /* Downmix - off */
705 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
706 /* HP, Line-Out, Surround, CLFE selectors */
707 {0x0a, AC_VERB_SET_CONNECT_SEL, 0x0},
708 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0},
709 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
710 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
711 /* Mono selector */
712 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x0},
713 /* Mic selector: Mic 1/2 pin */
714 {0x0f, AC_VERB_SET_CONNECT_SEL, 0x0},
715 /* Line-in selector: Line-in */
716 {0x10, AC_VERB_SET_CONNECT_SEL, 0x0},
717 /* Mic 1/2 swap */
718 {0x11, AC_VERB_SET_CONNECT_SEL, 0x0},
719 /* Record selector: mic */
720 {0x12, AC_VERB_SET_CONNECT_SEL, 0x0},
721 /* Mic, Phone, CD, Aux, Line-In amp; mute as default */
722 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
723 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
724 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
725 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
726 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
727 /* PC beep */
728 {0x18, AC_VERB_SET_CONNECT_SEL, 0x0},
729 /* HP, Line-Out, Surround, CLFE, Mono pins; mute as default */
730 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
731 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
732 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
733 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
734 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200735 /* HP Pin */
736 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
737 /* Front, Surround, CLFE Pins */
738 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
739 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
740 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
741 /* Mono Pin */
742 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
743 /* Mic Pin */
744 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
745 /* Line, Aux, CD, Beep-In Pin */
746 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
747 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
748 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
749 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
750 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 { } /* end */
752};
753
Takashi Iwai9230d212006-03-13 13:49:49 +0100754static struct hda_verb ad1986a_ch2_init[] = {
755 /* Surround out -> Line In */
Takashi Iwaifb956c12007-04-18 23:03:56 +0200756 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
757 /* Line-in selectors */
758 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x1 },
Takashi Iwai9230d212006-03-13 13:49:49 +0100759 /* CLFE -> Mic in */
Takashi Iwaifb956c12007-04-18 23:03:56 +0200760 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
761 /* Mic selector, mix C/LFE (backmic) and Mic (frontmic) */
762 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x4 },
Takashi Iwai9230d212006-03-13 13:49:49 +0100763 { } /* end */
764};
765
766static struct hda_verb ad1986a_ch4_init[] = {
767 /* Surround out -> Surround */
Takashi Iwaifb956c12007-04-18 23:03:56 +0200768 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
769 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
Takashi Iwai9230d212006-03-13 13:49:49 +0100770 /* CLFE -> Mic in */
Takashi Iwaifb956c12007-04-18 23:03:56 +0200771 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
772 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x4 },
Takashi Iwai9230d212006-03-13 13:49:49 +0100773 { } /* end */
774};
775
776static struct hda_verb ad1986a_ch6_init[] = {
777 /* Surround out -> Surround out */
Takashi Iwaifb956c12007-04-18 23:03:56 +0200778 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
779 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
Takashi Iwai9230d212006-03-13 13:49:49 +0100780 /* CLFE -> CLFE */
Takashi Iwaifb956c12007-04-18 23:03:56 +0200781 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
782 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x0 },
Takashi Iwai9230d212006-03-13 13:49:49 +0100783 { } /* end */
784};
785
786static struct hda_channel_mode ad1986a_modes[3] = {
787 { 2, ad1986a_ch2_init },
788 { 4, ad1986a_ch4_init },
789 { 6, ad1986a_ch6_init },
790};
791
Takashi Iwai825aa9722006-03-17 10:50:49 +0100792/* eapd initialization */
793static struct hda_verb ad1986a_eapd_init_verbs[] = {
Tobin Davisf36090f2007-01-08 11:07:12 +0100794 {0x1b, AC_VERB_SET_EAPD_BTLENABLE, 0x00 },
Takashi Iwai825aa9722006-03-17 10:50:49 +0100795 {}
796};
797
Tobin Davisf36090f2007-01-08 11:07:12 +0100798/* Ultra initialization */
799static struct hda_verb ad1986a_ultra_init[] = {
800 /* eapd initialization */
801 { 0x1b, AC_VERB_SET_EAPD_BTLENABLE, 0x00 },
802 /* CLFE -> Mic in */
803 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x2 },
804 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
805 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
806 { } /* end */
807};
808
Takashi Iwai9230d212006-03-13 13:49:49 +0100809/* models */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100810enum {
811 AD1986A_6STACK,
812 AD1986A_3STACK,
813 AD1986A_LAPTOP,
814 AD1986A_LAPTOP_EAPD,
Tobin Davisf36090f2007-01-08 11:07:12 +0100815 AD1986A_ULTRA,
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100816 AD1986A_MODELS
817};
Takashi Iwai9230d212006-03-13 13:49:49 +0100818
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100819static const char *ad1986a_models[AD1986A_MODELS] = {
820 [AD1986A_6STACK] = "6stack",
821 [AD1986A_3STACK] = "3stack",
822 [AD1986A_LAPTOP] = "laptop",
823 [AD1986A_LAPTOP_EAPD] = "laptop-eapd",
Tobin Davisf36090f2007-01-08 11:07:12 +0100824 [AD1986A_ULTRA] = "ultra",
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100825};
826
827static struct snd_pci_quirk ad1986a_cfg_tbl[] = {
828 SND_PCI_QUIRK(0x103c, 0x30af, "HP B2800", AD1986A_LAPTOP_EAPD),
829 SND_PCI_QUIRK(0x10de, 0xcb84, "ASUS A8N-VM", AD1986A_3STACK),
830 SND_PCI_QUIRK(0x1043, 0x1153, "ASUS M9", AD1986A_LAPTOP_EAPD),
831 SND_PCI_QUIRK(0x1043, 0x1213, "ASUS A6J", AD1986A_LAPTOP_EAPD),
832 SND_PCI_QUIRK(0x1043, 0x11f7, "ASUS U5A", AD1986A_LAPTOP_EAPD),
833 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS U5F", AD1986A_LAPTOP_EAPD),
834 SND_PCI_QUIRK(0x1043, 0x1297, "ASUS Z62F", AD1986A_LAPTOP_EAPD),
835 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS V1j", AD1986A_LAPTOP_EAPD),
836 SND_PCI_QUIRK(0x1043, 0x1302, "ASUS W3j", AD1986A_LAPTOP_EAPD),
Tobin Davis658fba02007-04-23 16:41:12 +0200837 SND_PCI_QUIRK(0x1043, 0x1447, "ASUS A8J", AD1986A_3STACK),
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100838 SND_PCI_QUIRK(0x1043, 0x817f, "ASUS P5", AD1986A_3STACK),
839 SND_PCI_QUIRK(0x1043, 0x818f, "ASUS P5", AD1986A_LAPTOP),
840 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS P5", AD1986A_3STACK),
841 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS M2N", AD1986A_3STACK),
842 SND_PCI_QUIRK(0x1043, 0x8234, "ASUS M2N", AD1986A_3STACK),
Tobin Davis18768992007-03-12 22:20:51 +0100843 SND_PCI_QUIRK(0x144d, 0xb03c, "Samsung R55", AD1986A_3STACK),
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100844 SND_PCI_QUIRK(0x144d, 0xc01e, "FSC V2060", AD1986A_LAPTOP),
845 SND_PCI_QUIRK(0x144d, 0xc023, "Samsung X60", AD1986A_LAPTOP_EAPD),
846 SND_PCI_QUIRK(0x144d, 0xc024, "Samsung R65", AD1986A_LAPTOP_EAPD),
847 SND_PCI_QUIRK(0x144d, 0xc026, "Samsung X11", AD1986A_LAPTOP_EAPD),
Tobin Davisf36090f2007-01-08 11:07:12 +0100848 SND_PCI_QUIRK(0x144d, 0xc504, "Samsung Q35", AD1986A_3STACK),
849 SND_PCI_QUIRK(0x144d, 0xc027, "Samsung Q1", AD1986A_ULTRA),
Tobin Davis18768992007-03-12 22:20:51 +0100850 SND_PCI_QUIRK(0x17aa, 0x1011, "Lenovo M55", AD1986A_LAPTOP),
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100851 SND_PCI_QUIRK(0x17aa, 0x1017, "Lenovo A60", AD1986A_3STACK),
852 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo N100", AD1986A_LAPTOP_EAPD),
853 SND_PCI_QUIRK(0x17c0, 0x2017, "Samsung M50", AD1986A_LAPTOP),
Takashi Iwai9230d212006-03-13 13:49:49 +0100854 {}
855};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857static int patch_ad1986a(struct hda_codec *codec)
858{
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200859 struct ad198x_spec *spec;
Takashi Iwai9230d212006-03-13 13:49:49 +0100860 int board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200862 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (spec == NULL)
864 return -ENOMEM;
865
Ingo Molnar62932df2006-01-16 16:34:20 +0100866 mutex_init(&spec->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 codec->spec = spec;
868
869 spec->multiout.max_channels = 6;
870 spec->multiout.num_dacs = ARRAY_SIZE(ad1986a_dac_nids);
871 spec->multiout.dac_nids = ad1986a_dac_nids;
872 spec->multiout.dig_out_nid = AD1986A_SPDIF_OUT;
Takashi Iwai985be542005-11-02 18:26:49 +0100873 spec->num_adc_nids = 1;
874 spec->adc_nids = ad1986a_adc_nids;
Takashi Iwaia7ee8202006-03-01 20:05:39 +0100875 spec->capsrc_nids = ad1986a_capsrc_nids;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200876 spec->input_mux = &ad1986a_capture_source;
Takashi Iwai985be542005-11-02 18:26:49 +0100877 spec->num_mixers = 1;
878 spec->mixers[0] = ad1986a_mixers;
879 spec->num_init_verbs = 1;
880 spec->init_verbs[0] = ad1986a_init_verbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200882 codec->patch_ops = ad198x_patch_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Takashi Iwai9230d212006-03-13 13:49:49 +0100884 /* override some parameters */
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100885 board_config = snd_hda_check_board_config(codec, AD1986A_MODELS,
886 ad1986a_models,
887 ad1986a_cfg_tbl);
Takashi Iwai9230d212006-03-13 13:49:49 +0100888 switch (board_config) {
889 case AD1986A_3STACK:
890 spec->num_mixers = 2;
891 spec->mixers[1] = ad1986a_3st_mixers;
Takashi Iwaifb956c12007-04-18 23:03:56 +0200892 spec->num_init_verbs = 2;
893 spec->init_verbs[1] = ad1986a_ch2_init;
Takashi Iwai9230d212006-03-13 13:49:49 +0100894 spec->channel_mode = ad1986a_modes;
895 spec->num_channel_mode = ARRAY_SIZE(ad1986a_modes);
Takashi Iwai2125cad2006-03-27 12:52:22 +0200896 spec->need_dac_fix = 1;
897 spec->multiout.max_channels = 2;
898 spec->multiout.num_dacs = 1;
Takashi Iwai9230d212006-03-13 13:49:49 +0100899 break;
900 case AD1986A_LAPTOP:
901 spec->mixers[0] = ad1986a_laptop_mixers;
902 spec->multiout.max_channels = 2;
903 spec->multiout.num_dacs = 1;
904 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
905 break;
Takashi Iwai825aa9722006-03-17 10:50:49 +0100906 case AD1986A_LAPTOP_EAPD:
907 spec->mixers[0] = ad1986a_laptop_eapd_mixers;
908 spec->num_init_verbs = 2;
909 spec->init_verbs[1] = ad1986a_eapd_init_verbs;
910 spec->multiout.max_channels = 2;
911 spec->multiout.num_dacs = 1;
912 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
913 spec->multiout.dig_out_nid = 0;
914 spec->input_mux = &ad1986a_laptop_eapd_capture_source;
915 break;
Tobin Davisf36090f2007-01-08 11:07:12 +0100916 case AD1986A_ULTRA:
917 spec->mixers[0] = ad1986a_laptop_eapd_mixers;
918 spec->num_init_verbs = 2;
919 spec->init_verbs[1] = ad1986a_ultra_init;
920 spec->multiout.max_channels = 2;
921 spec->multiout.num_dacs = 1;
922 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
923 spec->multiout.dig_out_nid = 0;
924 break;
Takashi Iwai9230d212006-03-13 13:49:49 +0100925 }
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return 0;
928}
929
930/*
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200931 * AD1983 specific
932 */
933
934#define AD1983_SPDIF_OUT 0x02
935#define AD1983_DAC 0x03
936#define AD1983_ADC 0x04
937
938static hda_nid_t ad1983_dac_nids[1] = { AD1983_DAC };
Takashi Iwai985be542005-11-02 18:26:49 +0100939static hda_nid_t ad1983_adc_nids[1] = { AD1983_ADC };
Takashi Iwai18a815d2006-03-01 19:54:39 +0100940static hda_nid_t ad1983_capsrc_nids[1] = { 0x15 };
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200941
942static struct hda_input_mux ad1983_capture_source = {
943 .num_items = 4,
944 .items = {
945 { "Mic", 0x0 },
946 { "Line", 0x1 },
947 { "Mix", 0x2 },
948 { "Mix Mono", 0x3 },
949 },
950};
951
952/*
953 * SPDIF playback route
954 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100955static int ad1983_spdif_route_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200956{
957 static char *texts[] = { "PCM", "ADC" };
958
959 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
960 uinfo->count = 1;
961 uinfo->value.enumerated.items = 2;
962 if (uinfo->value.enumerated.item > 1)
963 uinfo->value.enumerated.item = 1;
964 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
965 return 0;
966}
967
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100968static int ad1983_spdif_route_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200969{
970 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
971 struct ad198x_spec *spec = codec->spec;
972
973 ucontrol->value.enumerated.item[0] = spec->spdif_route;
974 return 0;
975}
976
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100977static int ad1983_spdif_route_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200978{
979 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
980 struct ad198x_spec *spec = codec->spec;
981
982 if (spec->spdif_route != ucontrol->value.enumerated.item[0]) {
983 spec->spdif_route = ucontrol->value.enumerated.item[0];
984 snd_hda_codec_write(codec, spec->multiout.dig_out_nid, 0,
985 AC_VERB_SET_CONNECT_SEL, spec->spdif_route);
986 return 1;
987 }
988 return 0;
989}
990
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100991static struct snd_kcontrol_new ad1983_mixers[] = {
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200992 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
993 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
994 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
995 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
996 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
997 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
998 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
999 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1000 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1001 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1002 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1003 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1004 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x10, 1, 0x0, HDA_OUTPUT),
1005 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x10, 1, 0x0, HDA_OUTPUT),
1006 HDA_CODEC_VOLUME("Mic Boost", 0x0c, 0x0, HDA_OUTPUT),
1007 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1008 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1009 {
1010 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1011 .name = "Capture Source",
1012 .info = ad198x_mux_enum_info,
1013 .get = ad198x_mux_enum_get,
1014 .put = ad198x_mux_enum_put,
1015 },
1016 {
1017 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Takashi Iwai6540dff2006-06-13 11:57:22 +02001018 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001019 .info = ad1983_spdif_route_info,
1020 .get = ad1983_spdif_route_get,
1021 .put = ad1983_spdif_route_put,
1022 },
1023 { } /* end */
1024};
1025
1026static struct hda_verb ad1983_init_verbs[] = {
1027 /* Front, HP, Mono; mute as default */
1028 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1029 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1030 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1031 /* Beep, PCM, Mic, Line-In: mute */
1032 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1033 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1034 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1035 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1036 /* Front, HP selectors; from Mix */
1037 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
1038 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
1039 /* Mono selector; from Mix */
1040 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
1041 /* Mic selector; Mic */
1042 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
1043 /* Line-in selector: Line-in */
1044 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
1045 /* Mic boost: 0dB */
1046 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1047 /* Record selector: mic */
1048 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
1049 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1050 /* SPDIF route: PCM */
1051 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
1052 /* Front Pin */
1053 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1054 /* HP Pin */
1055 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
1056 /* Mono Pin */
1057 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1058 /* Mic Pin */
1059 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1060 /* Line Pin */
1061 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1062 { } /* end */
1063};
1064
Takashi Iwai985be542005-11-02 18:26:49 +01001065
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001066static int patch_ad1983(struct hda_codec *codec)
1067{
1068 struct ad198x_spec *spec;
1069
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001070 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001071 if (spec == NULL)
1072 return -ENOMEM;
1073
Ingo Molnar62932df2006-01-16 16:34:20 +01001074 mutex_init(&spec->amp_mutex);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001075 codec->spec = spec;
1076
1077 spec->multiout.max_channels = 2;
1078 spec->multiout.num_dacs = ARRAY_SIZE(ad1983_dac_nids);
1079 spec->multiout.dac_nids = ad1983_dac_nids;
1080 spec->multiout.dig_out_nid = AD1983_SPDIF_OUT;
Takashi Iwai985be542005-11-02 18:26:49 +01001081 spec->num_adc_nids = 1;
1082 spec->adc_nids = ad1983_adc_nids;
Takashi Iwai18a815d2006-03-01 19:54:39 +01001083 spec->capsrc_nids = ad1983_capsrc_nids;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001084 spec->input_mux = &ad1983_capture_source;
Takashi Iwai985be542005-11-02 18:26:49 +01001085 spec->num_mixers = 1;
1086 spec->mixers[0] = ad1983_mixers;
1087 spec->num_init_verbs = 1;
1088 spec->init_verbs[0] = ad1983_init_verbs;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001089 spec->spdif_route = 0;
1090
1091 codec->patch_ops = ad198x_patch_ops;
1092
1093 return 0;
1094}
1095
1096
1097/*
1098 * AD1981 HD specific
1099 */
1100
1101#define AD1981_SPDIF_OUT 0x02
1102#define AD1981_DAC 0x03
1103#define AD1981_ADC 0x04
1104
1105static hda_nid_t ad1981_dac_nids[1] = { AD1981_DAC };
Takashi Iwai985be542005-11-02 18:26:49 +01001106static hda_nid_t ad1981_adc_nids[1] = { AD1981_ADC };
Takashi Iwai18a815d2006-03-01 19:54:39 +01001107static hda_nid_t ad1981_capsrc_nids[1] = { 0x15 };
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001108
1109/* 0x0c, 0x09, 0x0e, 0x0f, 0x19, 0x05, 0x18, 0x17 */
1110static struct hda_input_mux ad1981_capture_source = {
1111 .num_items = 7,
1112 .items = {
1113 { "Front Mic", 0x0 },
1114 { "Line", 0x1 },
1115 { "Mix", 0x2 },
1116 { "Mix Mono", 0x3 },
1117 { "CD", 0x4 },
1118 { "Mic", 0x6 },
1119 { "Aux", 0x7 },
1120 },
1121};
1122
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001123static struct snd_kcontrol_new ad1981_mixers[] = {
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001124 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1125 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
1126 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1127 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
1128 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
1129 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
1130 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1131 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1132 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1133 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1134 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1135 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1136 HDA_CODEC_VOLUME("Aux Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1137 HDA_CODEC_MUTE("Aux Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1138 HDA_CODEC_VOLUME("Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1139 HDA_CODEC_MUTE("Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1140 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1141 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1142 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1143 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x0d, 1, 0x0, HDA_OUTPUT),
1144 HDA_CODEC_VOLUME("Front Mic Boost", 0x08, 0x0, HDA_INPUT),
1145 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x0, HDA_INPUT),
1146 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1147 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1148 {
1149 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1150 .name = "Capture Source",
1151 .info = ad198x_mux_enum_info,
1152 .get = ad198x_mux_enum_get,
1153 .put = ad198x_mux_enum_put,
1154 },
1155 /* identical with AD1983 */
1156 {
1157 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Takashi Iwai6540dff2006-06-13 11:57:22 +02001158 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001159 .info = ad1983_spdif_route_info,
1160 .get = ad1983_spdif_route_get,
1161 .put = ad1983_spdif_route_put,
1162 },
1163 { } /* end */
1164};
1165
1166static struct hda_verb ad1981_init_verbs[] = {
1167 /* Front, HP, Mono; mute as default */
1168 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1169 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1170 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1171 /* Beep, PCM, Front Mic, Line, Rear Mic, Aux, CD-In: mute */
1172 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1173 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1174 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1175 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1176 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1177 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1178 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1179 /* Front, HP selectors; from Mix */
1180 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
1181 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
1182 /* Mono selector; from Mix */
1183 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
1184 /* Mic Mixer; select Front Mic */
1185 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1186 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1187 /* Mic boost: 0dB */
1188 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1189 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1190 /* Record selector: Front mic */
1191 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
1192 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1193 /* SPDIF route: PCM */
1194 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
1195 /* Front Pin */
1196 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1197 /* HP Pin */
1198 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
1199 /* Mono Pin */
1200 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1201 /* Front & Rear Mic Pins */
1202 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1203 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1204 /* Line Pin */
1205 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1206 /* Digital Beep */
1207 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
1208 /* Line-Out as Input: disabled */
1209 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1210 { } /* end */
1211};
1212
Takashi Iwai18a815d2006-03-01 19:54:39 +01001213/*
1214 * Patch for HP nx6320
1215 *
Tobin Davis18768992007-03-12 22:20:51 +01001216 * nx6320 uses EAPD in the reverse way - EAPD-on means the internal
Takashi Iwai18a815d2006-03-01 19:54:39 +01001217 * speaker output enabled _and_ mute-LED off.
1218 */
1219
1220#define AD1981_HP_EVENT 0x37
1221#define AD1981_MIC_EVENT 0x38
1222
1223static struct hda_verb ad1981_hp_init_verbs[] = {
1224 {0x05, AC_VERB_SET_EAPD_BTLENABLE, 0x00 }, /* default off */
1225 /* pin sensing on HP and Mic jacks */
1226 {0x06, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_HP_EVENT},
1227 {0x08, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_MIC_EVENT},
1228 {}
1229};
1230
1231/* turn on/off EAPD (+ mute HP) as a master switch */
1232static int ad1981_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1233 struct snd_ctl_elem_value *ucontrol)
1234{
1235 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1236 struct ad198x_spec *spec = codec->spec;
1237
1238 if (! ad198x_eapd_put(kcontrol, ucontrol))
1239 return 0;
1240
1241 /* toggle HP mute appropriately */
1242 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1243 0x80, spec->cur_eapd ? 0 : 0x80);
1244 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1245 0x80, spec->cur_eapd ? 0 : 0x80);
1246 return 1;
1247}
1248
1249/* bind volumes of both NID 0x05 and 0x06 */
1250static int ad1981_hp_master_vol_put(struct snd_kcontrol *kcontrol,
1251 struct snd_ctl_elem_value *ucontrol)
1252{
1253 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1254 long *valp = ucontrol->value.integer.value;
1255 int change;
1256
1257 change = snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1258 0x7f, valp[0] & 0x7f);
1259 change |= snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1260 0x7f, valp[1] & 0x7f);
1261 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1262 0x7f, valp[0] & 0x7f);
1263 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1264 0x7f, valp[1] & 0x7f);
1265 return change;
1266}
1267
1268/* mute internal speaker if HP is plugged */
1269static void ad1981_hp_automute(struct hda_codec *codec)
1270{
1271 unsigned int present;
1272
1273 present = snd_hda_codec_read(codec, 0x06, 0,
1274 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1275 snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1276 0x80, present ? 0x80 : 0);
1277 snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1278 0x80, present ? 0x80 : 0);
1279}
1280
1281/* toggle input of built-in and mic jack appropriately */
1282static void ad1981_hp_automic(struct hda_codec *codec)
1283{
1284 static struct hda_verb mic_jack_on[] = {
1285 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1286 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1287 {}
1288 };
1289 static struct hda_verb mic_jack_off[] = {
1290 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1291 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1292 {}
1293 };
1294 unsigned int present;
1295
1296 present = snd_hda_codec_read(codec, 0x08, 0,
1297 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1298 if (present)
1299 snd_hda_sequence_write(codec, mic_jack_on);
1300 else
1301 snd_hda_sequence_write(codec, mic_jack_off);
1302}
1303
1304/* unsolicited event for HP jack sensing */
1305static void ad1981_hp_unsol_event(struct hda_codec *codec,
1306 unsigned int res)
1307{
1308 res >>= 26;
1309 switch (res) {
1310 case AD1981_HP_EVENT:
1311 ad1981_hp_automute(codec);
1312 break;
1313 case AD1981_MIC_EVENT:
1314 ad1981_hp_automic(codec);
1315 break;
1316 }
1317}
1318
1319static struct hda_input_mux ad1981_hp_capture_source = {
1320 .num_items = 3,
1321 .items = {
1322 { "Mic", 0x0 },
1323 { "Docking-Station", 0x1 },
1324 { "Mix", 0x2 },
1325 },
1326};
1327
1328static struct snd_kcontrol_new ad1981_hp_mixers[] = {
1329 {
1330 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1331 .name = "Master Playback Volume",
1332 .info = snd_hda_mixer_amp_volume_info,
1333 .get = snd_hda_mixer_amp_volume_get,
1334 .put = ad1981_hp_master_vol_put,
1335 .private_value = HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),
1336 },
1337 {
1338 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1339 .name = "Master Playback Switch",
1340 .info = ad198x_eapd_info,
1341 .get = ad198x_eapd_get,
1342 .put = ad1981_hp_master_sw_put,
1343 .private_value = 0x05,
1344 },
1345 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1346 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1347#if 0
1348 /* FIXME: analog mic/line loopback doesn't work with my tests...
1349 * (although recording is OK)
1350 */
1351 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1352 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1353 HDA_CODEC_VOLUME("Docking-Station Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1354 HDA_CODEC_MUTE("Docking-Station Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1355 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1356 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1357 /* FIXME: does this laptop have analog CD connection? */
1358 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1359 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1360#endif
1361 HDA_CODEC_VOLUME("Mic Boost", 0x08, 0x0, HDA_INPUT),
1362 HDA_CODEC_VOLUME("Internal Mic Boost", 0x18, 0x0, HDA_INPUT),
1363 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1364 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1365 {
1366 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1367 .name = "Capture Source",
1368 .info = ad198x_mux_enum_info,
1369 .get = ad198x_mux_enum_get,
1370 .put = ad198x_mux_enum_put,
1371 },
1372 { } /* end */
1373};
1374
1375/* initialize jack-sensing, too */
1376static int ad1981_hp_init(struct hda_codec *codec)
1377{
1378 ad198x_init(codec);
1379 ad1981_hp_automute(codec);
1380 ad1981_hp_automic(codec);
1381 return 0;
1382}
1383
Tobin Davis18768992007-03-12 22:20:51 +01001384/* configuration for Toshiba Laptops */
1385static struct hda_verb ad1981_toshiba_init_verbs[] = {
1386 {0x05, AC_VERB_SET_EAPD_BTLENABLE, 0x01 }, /* default on */
1387 /* pin sensing on HP and Mic jacks */
1388 {0x06, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_HP_EVENT},
1389 {0x08, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_MIC_EVENT},
1390 {}
1391};
1392
1393static struct snd_kcontrol_new ad1981_toshiba_mixers[] = {
1394 HDA_CODEC_VOLUME("Amp Volume", 0x1a, 0x0, HDA_OUTPUT),
1395 HDA_CODEC_MUTE("Amp Switch", 0x1a, 0x0, HDA_OUTPUT),
1396 { }
1397};
1398
Takashi Iwai01686c5f2006-04-18 12:54:11 +02001399/* configuration for Lenovo Thinkpad T60 */
1400static struct snd_kcontrol_new ad1981_thinkpad_mixers[] = {
1401 HDA_CODEC_VOLUME("Master Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1402 HDA_CODEC_MUTE("Master Playback Switch", 0x05, 0x0, HDA_OUTPUT),
1403 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1404 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1405 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1406 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1407 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1408 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1409 HDA_CODEC_VOLUME("Mic Boost", 0x08, 0x0, HDA_INPUT),
1410 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1411 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1412 {
1413 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1414 .name = "Capture Source",
1415 .info = ad198x_mux_enum_info,
1416 .get = ad198x_mux_enum_get,
1417 .put = ad198x_mux_enum_put,
1418 },
Takashi Iwai6540dff2006-06-13 11:57:22 +02001419 /* identical with AD1983 */
1420 {
1421 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1422 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Source",
1423 .info = ad1983_spdif_route_info,
1424 .get = ad1983_spdif_route_get,
1425 .put = ad1983_spdif_route_put,
1426 },
Takashi Iwai01686c5f2006-04-18 12:54:11 +02001427 { } /* end */
1428};
1429
1430static struct hda_input_mux ad1981_thinkpad_capture_source = {
1431 .num_items = 3,
1432 .items = {
1433 { "Mic", 0x0 },
1434 { "Mix", 0x2 },
1435 { "CD", 0x4 },
1436 },
1437};
1438
Takashi Iwai18a815d2006-03-01 19:54:39 +01001439/* models */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001440enum {
1441 AD1981_BASIC,
1442 AD1981_HP,
1443 AD1981_THINKPAD,
Tobin Davis18768992007-03-12 22:20:51 +01001444 AD1981_TOSHIBA,
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001445 AD1981_MODELS
1446};
Takashi Iwai18a815d2006-03-01 19:54:39 +01001447
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001448static const char *ad1981_models[AD1981_MODELS] = {
1449 [AD1981_HP] = "hp",
1450 [AD1981_THINKPAD] = "thinkpad",
1451 [AD1981_BASIC] = "basic",
Tobin Davis18768992007-03-12 22:20:51 +01001452 [AD1981_TOSHIBA] = "toshiba"
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001453};
1454
1455static struct snd_pci_quirk ad1981_cfg_tbl[] = {
Takashi Iwai8970ccd2006-04-18 12:50:40 +02001456 /* All HP models */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001457 SND_PCI_QUIRK(0x103c, 0, "HP nx", AD1981_HP),
1458 /* HP nx6320 (reversed SSID, H/W bug) */
1459 SND_PCI_QUIRK(0x30b0, 0x103c, "HP nx6320", AD1981_HP),
Takashi Iwai01686c5f2006-04-18 12:54:11 +02001460 /* Lenovo Thinkpad T60/X60/Z6xx */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001461 SND_PCI_QUIRK(0x17aa, 0, "Lenovo Thinkpad", AD1981_THINKPAD),
1462 SND_PCI_QUIRK(0x1014, 0x0597, "Lenovo Z60", AD1981_THINKPAD),
Tobin Davis18768992007-03-12 22:20:51 +01001463 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba U205", AD1981_TOSHIBA),
Takashi Iwai18a815d2006-03-01 19:54:39 +01001464 {}
1465};
1466
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001467static int patch_ad1981(struct hda_codec *codec)
1468{
1469 struct ad198x_spec *spec;
Takashi Iwai18a815d2006-03-01 19:54:39 +01001470 int board_config;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001471
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001472 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001473 if (spec == NULL)
1474 return -ENOMEM;
1475
Ingo Molnar62932df2006-01-16 16:34:20 +01001476 mutex_init(&spec->amp_mutex);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001477 codec->spec = spec;
1478
1479 spec->multiout.max_channels = 2;
1480 spec->multiout.num_dacs = ARRAY_SIZE(ad1981_dac_nids);
1481 spec->multiout.dac_nids = ad1981_dac_nids;
1482 spec->multiout.dig_out_nid = AD1981_SPDIF_OUT;
Takashi Iwai985be542005-11-02 18:26:49 +01001483 spec->num_adc_nids = 1;
1484 spec->adc_nids = ad1981_adc_nids;
Takashi Iwai18a815d2006-03-01 19:54:39 +01001485 spec->capsrc_nids = ad1981_capsrc_nids;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001486 spec->input_mux = &ad1981_capture_source;
Takashi Iwai985be542005-11-02 18:26:49 +01001487 spec->num_mixers = 1;
1488 spec->mixers[0] = ad1981_mixers;
1489 spec->num_init_verbs = 1;
1490 spec->init_verbs[0] = ad1981_init_verbs;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001491 spec->spdif_route = 0;
1492
1493 codec->patch_ops = ad198x_patch_ops;
1494
Takashi Iwai18a815d2006-03-01 19:54:39 +01001495 /* override some parameters */
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001496 board_config = snd_hda_check_board_config(codec, AD1981_MODELS,
1497 ad1981_models,
1498 ad1981_cfg_tbl);
Takashi Iwai18a815d2006-03-01 19:54:39 +01001499 switch (board_config) {
1500 case AD1981_HP:
1501 spec->mixers[0] = ad1981_hp_mixers;
1502 spec->num_init_verbs = 2;
1503 spec->init_verbs[1] = ad1981_hp_init_verbs;
1504 spec->multiout.dig_out_nid = 0;
1505 spec->input_mux = &ad1981_hp_capture_source;
1506
1507 codec->patch_ops.init = ad1981_hp_init;
1508 codec->patch_ops.unsol_event = ad1981_hp_unsol_event;
1509 break;
Takashi Iwai01686c5f2006-04-18 12:54:11 +02001510 case AD1981_THINKPAD:
1511 spec->mixers[0] = ad1981_thinkpad_mixers;
Takashi Iwai01686c5f2006-04-18 12:54:11 +02001512 spec->input_mux = &ad1981_thinkpad_capture_source;
1513 break;
Tobin Davis18768992007-03-12 22:20:51 +01001514 case AD1981_TOSHIBA:
1515 spec->mixers[0] = ad1981_hp_mixers;
1516 spec->mixers[1] = ad1981_toshiba_mixers;
1517 spec->num_init_verbs = 2;
1518 spec->init_verbs[1] = ad1981_toshiba_init_verbs;
1519 spec->multiout.dig_out_nid = 0;
1520 spec->input_mux = &ad1981_hp_capture_source;
1521 codec->patch_ops.init = ad1981_hp_init;
1522 codec->patch_ops.unsol_event = ad1981_hp_unsol_event;
1523 break;
Takashi Iwai18a815d2006-03-01 19:54:39 +01001524 }
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001525 return 0;
1526}
1527
1528
1529/*
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001530 * AD1988
1531 *
1532 * Output pins and routes
1533 *
Takashi Iwaid32410b12005-11-24 16:06:23 +01001534 * Pin Mix Sel DAC (*)
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001535 * port-A 0x11 (mute/hp) <- 0x22 <- 0x37 <- 03/04/06
1536 * port-B 0x14 (mute/hp) <- 0x2b <- 0x30 <- 03/04/06
1537 * port-C 0x15 (mute) <- 0x2c <- 0x31 <- 05/0a
1538 * port-D 0x12 (mute/hp) <- 0x29 <- 04
1539 * port-E 0x17 (mute/hp) <- 0x26 <- 0x32 <- 05/0a
1540 * port-F 0x16 (mute) <- 0x2a <- 06
1541 * port-G 0x24 (mute) <- 0x27 <- 05
1542 * port-H 0x25 (mute) <- 0x28 <- 0a
1543 * mono 0x13 (mute/amp)<- 0x1e <- 0x36 <- 03/04/06
1544 *
Takashi Iwaid32410b12005-11-24 16:06:23 +01001545 * DAC0 = 03h, DAC1 = 04h, DAC2 = 05h, DAC3 = 06h, DAC4 = 0ah
1546 * (*) DAC2/3/4 are swapped to DAC3/4/2 on AD198A rev.2 due to a h/w bug.
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001547 *
1548 * Input pins and routes
1549 *
1550 * pin boost mix input # / adc input #
1551 * port-A 0x11 -> 0x38 -> mix 2, ADC 0
1552 * port-B 0x14 -> 0x39 -> mix 0, ADC 1
1553 * port-C 0x15 -> 0x3a -> 33:0 - mix 1, ADC 2
1554 * port-D 0x12 -> 0x3d -> mix 3, ADC 8
1555 * port-E 0x17 -> 0x3c -> 34:0 - mix 4, ADC 4
1556 * port-F 0x16 -> 0x3b -> mix 5, ADC 3
1557 * port-G 0x24 -> N/A -> 33:1 - mix 1, 34:1 - mix 4, ADC 6
1558 * port-H 0x25 -> N/A -> 33:2 - mix 1, 34:2 - mix 4, ADC 7
1559 *
1560 *
1561 * DAC assignment
Takashi Iwaid32410b12005-11-24 16:06:23 +01001562 * 6stack - front/surr/CLFE/side/opt DACs - 04/06/05/0a/03
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001563 * 3stack - front/surr/CLFE/opt DACs - 04/05/0a/03
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001564 *
1565 * Inputs of Analog Mix (0x20)
1566 * 0:Port-B (front mic)
1567 * 1:Port-C/G/H (line-in)
1568 * 2:Port-A
1569 * 3:Port-D (line-in/2)
1570 * 4:Port-E/G/H (mic-in)
1571 * 5:Port-F (mic2-in)
1572 * 6:CD
1573 * 7:Beep
1574 *
1575 * ADC selection
1576 * 0:Port-A
1577 * 1:Port-B (front mic-in)
1578 * 2:Port-C (line-in)
1579 * 3:Port-F (mic2-in)
1580 * 4:Port-E (mic-in)
1581 * 5:CD
1582 * 6:Port-G
1583 * 7:Port-H
1584 * 8:Port-D (line-in/2)
1585 * 9:Mix
1586 *
1587 * Proposed pin assignments by the datasheet
1588 *
1589 * 6-stack
1590 * Port-A front headphone
1591 * B front mic-in
1592 * C rear line-in
1593 * D rear front-out
1594 * E rear mic-in
1595 * F rear surround
1596 * G rear CLFE
1597 * H rear side
1598 *
1599 * 3-stack
1600 * Port-A front headphone
1601 * B front mic
1602 * C rear line-in/surround
1603 * D rear front-out
1604 * E rear mic-in/CLFE
1605 *
1606 * laptop
1607 * Port-A headphone
1608 * B mic-in
1609 * C docking station
1610 * D internal speaker (with EAPD)
1611 * E/F quad mic array
1612 */
1613
1614
1615/* models */
1616enum {
1617 AD1988_6STACK,
1618 AD1988_6STACK_DIG,
1619 AD1988_3STACK,
1620 AD1988_3STACK_DIG,
1621 AD1988_LAPTOP,
1622 AD1988_LAPTOP_DIG,
Takashi Iwaid32410b12005-11-24 16:06:23 +01001623 AD1988_AUTO,
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001624 AD1988_MODEL_LAST,
1625};
1626
Takashi Iwaid32410b12005-11-24 16:06:23 +01001627/* reivision id to check workarounds */
1628#define AD1988A_REV2 0x100200
1629
Takashi Iwai1a806f42006-07-03 15:58:16 +02001630#define is_rev2(codec) \
1631 ((codec)->vendor_id == 0x11d41988 && \
1632 (codec)->revision_id == AD1988A_REV2)
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001633
1634/*
1635 * mixers
1636 */
1637
Takashi Iwaid32410b12005-11-24 16:06:23 +01001638static hda_nid_t ad1988_6stack_dac_nids[4] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001639 0x04, 0x06, 0x05, 0x0a
1640};
1641
Takashi Iwaid32410b12005-11-24 16:06:23 +01001642static hda_nid_t ad1988_3stack_dac_nids[3] = {
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001643 0x04, 0x05, 0x0a
Takashi Iwaid32410b12005-11-24 16:06:23 +01001644};
1645
1646/* for AD1988A revision-2, DAC2-4 are swapped */
1647static hda_nid_t ad1988_6stack_dac_nids_rev2[4] = {
1648 0x04, 0x05, 0x0a, 0x06
1649};
1650
1651static hda_nid_t ad1988_3stack_dac_nids_rev2[3] = {
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001652 0x04, 0x0a, 0x06
Takashi Iwaid32410b12005-11-24 16:06:23 +01001653};
1654
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001655static hda_nid_t ad1988_adc_nids[3] = {
1656 0x08, 0x09, 0x0f
1657};
1658
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001659static hda_nid_t ad1988_capsrc_nids[3] = {
1660 0x0c, 0x0d, 0x0e
1661};
1662
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001663#define AD1988_SPDIF_OUT 0x02
1664#define AD1988_SPDIF_IN 0x07
1665
1666static struct hda_input_mux ad1988_6stack_capture_source = {
1667 .num_items = 5,
1668 .items = {
1669 { "Front Mic", 0x0 },
1670 { "Line", 0x1 },
1671 { "Mic", 0x4 },
1672 { "CD", 0x5 },
1673 { "Mix", 0x9 },
1674 },
1675};
1676
1677static struct hda_input_mux ad1988_laptop_capture_source = {
1678 .num_items = 3,
1679 .items = {
1680 { "Mic/Line", 0x0 },
1681 { "CD", 0x5 },
1682 { "Mix", 0x9 },
1683 },
1684};
1685
1686/*
1687 */
1688static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
1689 struct snd_ctl_elem_info *uinfo)
1690{
1691 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1692 struct ad198x_spec *spec = codec->spec;
1693 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
1694 spec->num_channel_mode);
1695}
1696
1697static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
1698 struct snd_ctl_elem_value *ucontrol)
1699{
1700 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1701 struct ad198x_spec *spec = codec->spec;
1702 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
1703 spec->num_channel_mode, spec->multiout.max_channels);
1704}
1705
1706static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
1707 struct snd_ctl_elem_value *ucontrol)
1708{
1709 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1710 struct ad198x_spec *spec = codec->spec;
Takashi Iwai4e195a72006-07-28 14:47:34 +02001711 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
1712 spec->num_channel_mode,
1713 &spec->multiout.max_channels);
Takashi Iwaibd2033f2006-10-10 19:49:31 +02001714 if (err >= 0 && spec->need_dac_fix)
Takashi Iwai2125cad2006-03-27 12:52:22 +02001715 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwai4e195a72006-07-28 14:47:34 +02001716 return err;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001717}
1718
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001719/* 6-stack mode */
Takashi Iwaid32410b12005-11-24 16:06:23 +01001720static struct snd_kcontrol_new ad1988_6stack_mixers1[] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001721 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1722 HDA_CODEC_VOLUME("Surround Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1723 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1724 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
1725 HDA_CODEC_VOLUME("Side Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
Takashi Iwai2ece5f422006-07-06 19:16:40 +02001726 { } /* end */
Takashi Iwaid32410b12005-11-24 16:06:23 +01001727};
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001728
Takashi Iwaid32410b12005-11-24 16:06:23 +01001729static struct snd_kcontrol_new ad1988_6stack_mixers1_rev2[] = {
1730 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1731 HDA_CODEC_VOLUME("Surround Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1732 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
1733 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0a, 2, 0x0, HDA_OUTPUT),
1734 HDA_CODEC_VOLUME("Side Playback Volume", 0x06, 0x0, HDA_OUTPUT),
Takashi Iwai2ece5f422006-07-06 19:16:40 +02001735 { } /* end */
Takashi Iwaid32410b12005-11-24 16:06:23 +01001736};
1737
1738static struct snd_kcontrol_new ad1988_6stack_mixers2[] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001739 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
1740 HDA_BIND_MUTE("Surround Playback Switch", 0x2a, 2, HDA_INPUT),
1741 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x27, 1, 2, HDA_INPUT),
1742 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x27, 2, 2, HDA_INPUT),
1743 HDA_BIND_MUTE("Side Playback Switch", 0x28, 2, HDA_INPUT),
1744 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1745 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1746
1747 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1748 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1749 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1750 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1751 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1752 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1753 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1754 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1755
1756 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1757 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1758
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001759 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001760 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1761
1762 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1763 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1764
1765 { } /* end */
1766};
1767
1768/* 3-stack mode */
Takashi Iwaid32410b12005-11-24 16:06:23 +01001769static struct snd_kcontrol_new ad1988_3stack_mixers1[] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001770 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
Takashi Iwaid32410b12005-11-24 16:06:23 +01001771 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001772 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1773 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
Takashi Iwai2ece5f422006-07-06 19:16:40 +02001774 { } /* end */
Takashi Iwaid32410b12005-11-24 16:06:23 +01001775};
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001776
Takashi Iwaid32410b12005-11-24 16:06:23 +01001777static struct snd_kcontrol_new ad1988_3stack_mixers1_rev2[] = {
1778 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001779 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1780 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x06, 1, 0x0, HDA_OUTPUT),
1781 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x06, 2, 0x0, HDA_OUTPUT),
Takashi Iwai2ece5f422006-07-06 19:16:40 +02001782 { } /* end */
Takashi Iwaid32410b12005-11-24 16:06:23 +01001783};
1784
1785static struct snd_kcontrol_new ad1988_3stack_mixers2[] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001786 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
Takashi Iwaid32410b12005-11-24 16:06:23 +01001787 HDA_BIND_MUTE("Surround Playback Switch", 0x2c, 2, HDA_INPUT),
1788 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x26, 1, 2, HDA_INPUT),
1789 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x26, 2, 2, HDA_INPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001790 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1791 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1792
1793 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1794 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1795 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1796 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1797 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1798 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1799 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1800 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1801
1802 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1803 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1804
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001805 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001806 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1807
1808 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1809 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1810 {
1811 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1812 .name = "Channel Mode",
1813 .info = ad198x_ch_mode_info,
1814 .get = ad198x_ch_mode_get,
1815 .put = ad198x_ch_mode_put,
1816 },
1817
1818 { } /* end */
1819};
1820
1821/* laptop mode */
1822static struct snd_kcontrol_new ad1988_laptop_mixers[] = {
1823 HDA_CODEC_VOLUME("PCM Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1824 HDA_CODEC_MUTE("PCM Playback Switch", 0x29, 0x0, HDA_INPUT),
1825 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1826
1827 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1828 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1829 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1830 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1831 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1832 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1833
1834 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1835 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1836
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001837 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001838 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1839
1840 HDA_CODEC_VOLUME("Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1841
1842 {
1843 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1844 .name = "External Amplifier",
Takashi Iwai18a815d2006-03-01 19:54:39 +01001845 .info = ad198x_eapd_info,
1846 .get = ad198x_eapd_get,
1847 .put = ad198x_eapd_put,
1848 .private_value = 0x12 | (1 << 8), /* port-D, inversed */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001849 },
1850
1851 { } /* end */
1852};
1853
1854/* capture */
1855static struct snd_kcontrol_new ad1988_capture_mixers[] = {
1856 HDA_CODEC_VOLUME("Capture Volume", 0x0c, 0x0, HDA_OUTPUT),
1857 HDA_CODEC_MUTE("Capture Switch", 0x0c, 0x0, HDA_OUTPUT),
1858 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x0d, 0x0, HDA_OUTPUT),
1859 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x0d, 0x0, HDA_OUTPUT),
1860 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x0e, 0x0, HDA_OUTPUT),
1861 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x0e, 0x0, HDA_OUTPUT),
1862 {
1863 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1864 /* The multiple "Capture Source" controls confuse alsamixer
1865 * So call somewhat different..
1866 * FIXME: the controls appear in the "playback" view!
1867 */
1868 /* .name = "Capture Source", */
1869 .name = "Input Source",
1870 .count = 3,
1871 .info = ad198x_mux_enum_info,
1872 .get = ad198x_mux_enum_get,
1873 .put = ad198x_mux_enum_put,
1874 },
1875 { } /* end */
1876};
1877
1878static int ad1988_spdif_playback_source_info(struct snd_kcontrol *kcontrol,
1879 struct snd_ctl_elem_info *uinfo)
1880{
1881 static char *texts[] = {
1882 "PCM", "ADC1", "ADC2", "ADC3"
1883 };
1884 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1885 uinfo->count = 1;
1886 uinfo->value.enumerated.items = 4;
1887 if (uinfo->value.enumerated.item >= 4)
1888 uinfo->value.enumerated.item = 3;
1889 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1890 return 0;
1891}
1892
1893static int ad1988_spdif_playback_source_get(struct snd_kcontrol *kcontrol,
1894 struct snd_ctl_elem_value *ucontrol)
1895{
1896 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1897 unsigned int sel;
1898
1899 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1900 if (sel > 0) {
1901 sel = snd_hda_codec_read(codec, 0x0b, 0, AC_VERB_GET_CONNECT_SEL, 0);
1902 if (sel <= 3)
1903 sel++;
1904 else
1905 sel = 0;
1906 }
1907 ucontrol->value.enumerated.item[0] = sel;
1908 return 0;
1909}
1910
1911static int ad1988_spdif_playback_source_put(struct snd_kcontrol *kcontrol,
1912 struct snd_ctl_elem_value *ucontrol)
1913{
1914 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1915 unsigned int sel;
1916 int change;
1917
1918 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1919 if (! ucontrol->value.enumerated.item[0]) {
1920 change = sel != 0;
1921 if (change)
1922 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL, 0);
1923 } else {
1924 change = sel == 0;
1925 if (change)
1926 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL, 1);
1927 sel = snd_hda_codec_read(codec, 0x0b, 0, AC_VERB_GET_CONNECT_SEL, 0) + 1;
1928 change |= sel == ucontrol->value.enumerated.item[0];
1929 if (change)
1930 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL,
1931 ucontrol->value.enumerated.item[0] - 1);
1932 }
1933 return change;
1934}
1935
1936static struct snd_kcontrol_new ad1988_spdif_out_mixers[] = {
1937 HDA_CODEC_VOLUME("IEC958 Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1938 {
1939 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1940 .name = "IEC958 Playback Source",
1941 .info = ad1988_spdif_playback_source_info,
1942 .get = ad1988_spdif_playback_source_get,
1943 .put = ad1988_spdif_playback_source_put,
1944 },
1945 { } /* end */
1946};
1947
1948static struct snd_kcontrol_new ad1988_spdif_in_mixers[] = {
1949 HDA_CODEC_VOLUME("IEC958 Capture Volume", 0x1c, 0x0, HDA_INPUT),
1950 { } /* end */
1951};
1952
1953
1954/*
1955 * initialization verbs
1956 */
1957
1958/*
1959 * for 6-stack (+dig)
1960 */
1961static struct hda_verb ad1988_6stack_init_verbs[] = {
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001962 /* Front, Surround, CLFE, side DAC; unmute as default */
1963 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1964 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1965 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1966 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001967 /* Port-A front headphon path */
1968 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
1969 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1970 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1971 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1972 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1973 /* Port-D line-out path */
1974 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1975 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1976 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1977 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1978 /* Port-F surround path */
1979 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1980 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1981 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1982 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1983 /* Port-G CLFE path */
1984 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1985 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1986 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1987 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1988 /* Port-H side path */
1989 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1990 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1991 {0x25, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1992 {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1993 /* Mono out path */
1994 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
1995 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1996 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1997 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1998 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
1999 /* Port-B front mic-in path */
2000 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2001 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2002 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2003 /* Port-C line-in path */
2004 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2005 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2006 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2007 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2008 /* Port-E mic-in path */
2009 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2010 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2011 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2012 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
2013
2014 { }
2015};
2016
2017static struct hda_verb ad1988_capture_init_verbs[] = {
2018 /* mute analog mix */
2019 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2020 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2021 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2022 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2023 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2024 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2025 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2026 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2027 /* select ADCs - front-mic */
2028 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2029 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2030 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2031 /* ADCs; muted */
2032 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2033 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2034 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2035
2036 { }
2037};
2038
2039static struct hda_verb ad1988_spdif_init_verbs[] = {
2040 /* SPDIF out sel */
2041 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0}, /* PCM */
2042 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0}, /* ADC1 */
2043 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2044 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2045 /* SPDIF out pin */
2046 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x27}, /* 0dB */
2047 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x17}, /* 0dB */
2048
2049 { }
2050};
2051
2052/*
2053 * verbs for 3stack (+dig)
2054 */
2055static struct hda_verb ad1988_3stack_ch2_init[] = {
2056 /* set port-C to line-in */
2057 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2058 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
2059 /* set port-E to mic-in */
2060 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2061 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
2062 { } /* end */
2063};
2064
2065static struct hda_verb ad1988_3stack_ch6_init[] = {
2066 /* set port-C to surround out */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002067 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Takashi Iwaid32410b12005-11-24 16:06:23 +01002068 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002069 /* set port-E to CLFE out */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002070 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Takashi Iwaid32410b12005-11-24 16:06:23 +01002071 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002072 { } /* end */
2073};
2074
2075static struct hda_channel_mode ad1988_3stack_modes[2] = {
2076 { 2, ad1988_3stack_ch2_init },
2077 { 6, ad1988_3stack_ch6_init },
2078};
2079
2080static struct hda_verb ad1988_3stack_init_verbs[] = {
Takashi Iwai2e5b9562005-11-21 16:36:15 +01002081 /* Front, Surround, CLFE, side DAC; unmute as default */
2082 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2083 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2084 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2085 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002086 /* Port-A front headphon path */
2087 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
2088 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2089 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2090 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2091 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2092 /* Port-D line-out path */
2093 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2094 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2095 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2096 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2097 /* Mono out path */
2098 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2099 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2100 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2101 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2102 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2103 /* Port-B front mic-in path */
2104 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2105 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2106 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Takashi Iwaid32410b12005-11-24 16:06:23 +01002107 /* Port-C line-in/surround path - 6ch mode as default */
2108 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2109 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002110 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Takashi Iwaid32410b12005-11-24 16:06:23 +01002111 {0x31, AC_VERB_SET_CONNECT_SEL, 0x0}, /* output sel: DAC 0x05 */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002112 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
Takashi Iwaid32410b12005-11-24 16:06:23 +01002113 /* Port-E mic-in/CLFE path - 6ch mode as default */
2114 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2115 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002116 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002117 {0x32, AC_VERB_SET_CONNECT_SEL, 0x1}, /* output sel: DAC 0x0a */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002118 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
2119 /* mute analog mix */
2120 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2121 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2122 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2123 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2124 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2125 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2126 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2127 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2128 /* select ADCs - front-mic */
2129 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2130 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2131 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2132 /* ADCs; muted */
2133 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2134 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2135 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2136 { }
2137};
2138
2139/*
2140 * verbs for laptop mode (+dig)
2141 */
2142static struct hda_verb ad1988_laptop_hp_on[] = {
2143 /* unmute port-A and mute port-D */
2144 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2145 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2146 { } /* end */
2147};
2148static struct hda_verb ad1988_laptop_hp_off[] = {
2149 /* mute port-A and unmute port-D */
2150 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2151 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
2152 { } /* end */
2153};
2154
2155#define AD1988_HP_EVENT 0x01
2156
2157static struct hda_verb ad1988_laptop_init_verbs[] = {
Takashi Iwai2e5b9562005-11-21 16:36:15 +01002158 /* Front, Surround, CLFE, side DAC; unmute as default */
2159 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2160 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2161 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2162 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002163 /* Port-A front headphon path */
2164 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
2165 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2166 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2167 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2168 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2169 /* unsolicited event for pin-sense */
2170 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1988_HP_EVENT },
2171 /* Port-D line-out path + EAPD */
2172 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2173 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2174 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2175 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2176 {0x12, AC_VERB_SET_EAPD_BTLENABLE, 0x00}, /* EAPD-off */
2177 /* Mono out path */
2178 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2179 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2180 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2181 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2182 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2183 /* Port-B mic-in path */
2184 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2185 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2186 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2187 /* Port-C docking station - try to output */
2188 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2189 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2190 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2191 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2192 /* mute analog mix */
2193 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2194 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2195 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2196 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2197 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2198 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2199 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2200 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2201 /* select ADCs - mic */
2202 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2203 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2204 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2205 /* ADCs; muted */
2206 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2207 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2208 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2209 { }
2210};
2211
2212static void ad1988_laptop_unsol_event(struct hda_codec *codec, unsigned int res)
2213{
2214 if ((res >> 26) != AD1988_HP_EVENT)
2215 return;
2216 if (snd_hda_codec_read(codec, 0x11, 0, AC_VERB_GET_PIN_SENSE, 0) & (1 << 31))
2217 snd_hda_sequence_write(codec, ad1988_laptop_hp_on);
2218 else
2219 snd_hda_sequence_write(codec, ad1988_laptop_hp_off);
2220}
2221
2222
2223/*
Takashi Iwaid32410b12005-11-24 16:06:23 +01002224 * Automatic parse of I/O pins from the BIOS configuration
2225 */
2226
2227#define NUM_CONTROL_ALLOC 32
2228#define NUM_VERB_ALLOC 32
2229
2230enum {
2231 AD_CTL_WIDGET_VOL,
2232 AD_CTL_WIDGET_MUTE,
2233 AD_CTL_BIND_MUTE,
2234};
2235static struct snd_kcontrol_new ad1988_control_templates[] = {
2236 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2237 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2238 HDA_BIND_MUTE(NULL, 0, 0, 0),
2239};
2240
2241/* add dynamic controls */
2242static int add_control(struct ad198x_spec *spec, int type, const char *name,
2243 unsigned long val)
2244{
2245 struct snd_kcontrol_new *knew;
2246
2247 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2248 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2249
2250 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2251 if (! knew)
2252 return -ENOMEM;
2253 if (spec->kctl_alloc) {
2254 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2255 kfree(spec->kctl_alloc);
2256 }
2257 spec->kctl_alloc = knew;
2258 spec->num_kctl_alloc = num;
2259 }
2260
2261 knew = &spec->kctl_alloc[spec->num_kctl_used];
2262 *knew = ad1988_control_templates[type];
2263 knew->name = kstrdup(name, GFP_KERNEL);
2264 if (! knew->name)
2265 return -ENOMEM;
2266 knew->private_value = val;
2267 spec->num_kctl_used++;
2268 return 0;
2269}
2270
2271#define AD1988_PIN_CD_NID 0x18
2272#define AD1988_PIN_BEEP_NID 0x10
2273
2274static hda_nid_t ad1988_mixer_nids[8] = {
2275 /* A B C D E F G H */
2276 0x22, 0x2b, 0x2c, 0x29, 0x26, 0x2a, 0x27, 0x28
2277};
2278
2279static inline hda_nid_t ad1988_idx_to_dac(struct hda_codec *codec, int idx)
2280{
2281 static hda_nid_t idx_to_dac[8] = {
2282 /* A B C D E F G H */
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002283 0x04, 0x06, 0x05, 0x04, 0x0a, 0x06, 0x05, 0x0a
Takashi Iwaid32410b12005-11-24 16:06:23 +01002284 };
2285 static hda_nid_t idx_to_dac_rev2[8] = {
2286 /* A B C D E F G H */
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002287 0x04, 0x05, 0x0a, 0x04, 0x06, 0x05, 0x0a, 0x06
Takashi Iwaid32410b12005-11-24 16:06:23 +01002288 };
Takashi Iwai1a806f42006-07-03 15:58:16 +02002289 if (is_rev2(codec))
Takashi Iwaid32410b12005-11-24 16:06:23 +01002290 return idx_to_dac_rev2[idx];
2291 else
2292 return idx_to_dac[idx];
2293}
2294
2295static hda_nid_t ad1988_boost_nids[8] = {
2296 0x38, 0x39, 0x3a, 0x3d, 0x3c, 0x3b, 0, 0
2297};
2298
2299static int ad1988_pin_idx(hda_nid_t nid)
2300{
2301 static hda_nid_t ad1988_io_pins[8] = {
2302 0x11, 0x14, 0x15, 0x12, 0x17, 0x16, 0x24, 0x25
2303 };
2304 int i;
2305 for (i = 0; i < ARRAY_SIZE(ad1988_io_pins); i++)
2306 if (ad1988_io_pins[i] == nid)
2307 return i;
2308 return 0; /* should be -1 */
2309}
2310
2311static int ad1988_pin_to_loopback_idx(hda_nid_t nid)
2312{
2313 static int loopback_idx[8] = {
2314 2, 0, 1, 3, 4, 5, 1, 4
2315 };
2316 switch (nid) {
2317 case AD1988_PIN_CD_NID:
2318 return 6;
2319 default:
2320 return loopback_idx[ad1988_pin_idx(nid)];
2321 }
2322}
2323
2324static int ad1988_pin_to_adc_idx(hda_nid_t nid)
2325{
2326 static int adc_idx[8] = {
2327 0, 1, 2, 8, 4, 3, 6, 7
2328 };
2329 switch (nid) {
2330 case AD1988_PIN_CD_NID:
2331 return 5;
2332 default:
2333 return adc_idx[ad1988_pin_idx(nid)];
2334 }
2335}
2336
2337/* fill in the dac_nids table from the parsed pin configuration */
2338static int ad1988_auto_fill_dac_nids(struct hda_codec *codec,
2339 const struct auto_pin_cfg *cfg)
2340{
2341 struct ad198x_spec *spec = codec->spec;
2342 int i, idx;
2343
2344 spec->multiout.dac_nids = spec->private_dac_nids;
2345
2346 /* check the pins hardwired to audio widget */
2347 for (i = 0; i < cfg->line_outs; i++) {
2348 idx = ad1988_pin_idx(cfg->line_out_pins[i]);
2349 spec->multiout.dac_nids[i] = ad1988_idx_to_dac(codec, idx);
2350 }
2351 spec->multiout.num_dacs = cfg->line_outs;
2352 return 0;
2353}
2354
2355/* add playback controls from the parsed DAC table */
2356static int ad1988_auto_create_multi_out_ctls(struct ad198x_spec *spec,
2357 const struct auto_pin_cfg *cfg)
2358{
2359 char name[32];
2360 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2361 hda_nid_t nid;
2362 int i, err;
2363
2364 for (i = 0; i < cfg->line_outs; i++) {
2365 hda_nid_t dac = spec->multiout.dac_nids[i];
2366 if (! dac)
2367 continue;
2368 nid = ad1988_mixer_nids[ad1988_pin_idx(cfg->line_out_pins[i])];
2369 if (i == 2) {
2370 /* Center/LFE */
2371 err = add_control(spec, AD_CTL_WIDGET_VOL,
2372 "Center Playback Volume",
2373 HDA_COMPOSE_AMP_VAL(dac, 1, 0, HDA_OUTPUT));
2374 if (err < 0)
2375 return err;
2376 err = add_control(spec, AD_CTL_WIDGET_VOL,
2377 "LFE Playback Volume",
2378 HDA_COMPOSE_AMP_VAL(dac, 2, 0, HDA_OUTPUT));
2379 if (err < 0)
2380 return err;
2381 err = add_control(spec, AD_CTL_BIND_MUTE,
2382 "Center Playback Switch",
2383 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT));
2384 if (err < 0)
2385 return err;
2386 err = add_control(spec, AD_CTL_BIND_MUTE,
2387 "LFE Playback Switch",
2388 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT));
2389 if (err < 0)
2390 return err;
2391 } else {
2392 sprintf(name, "%s Playback Volume", chname[i]);
2393 err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2394 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT));
2395 if (err < 0)
2396 return err;
2397 sprintf(name, "%s Playback Switch", chname[i]);
2398 err = add_control(spec, AD_CTL_BIND_MUTE, name,
2399 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
2400 if (err < 0)
2401 return err;
2402 }
2403 }
2404 return 0;
2405}
2406
2407/* add playback controls for speaker and HP outputs */
2408static int ad1988_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
2409 const char *pfx)
2410{
2411 struct ad198x_spec *spec = codec->spec;
2412 hda_nid_t nid;
2413 int idx, err;
2414 char name[32];
2415
2416 if (! pin)
2417 return 0;
2418
2419 idx = ad1988_pin_idx(pin);
2420 nid = ad1988_idx_to_dac(codec, idx);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002421 /* specify the DAC as the extra output */
2422 if (! spec->multiout.hp_nid)
Takashi Iwaid32410b12005-11-24 16:06:23 +01002423 spec->multiout.hp_nid = nid;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002424 else
2425 spec->multiout.extra_out_nid[0] = nid;
Takashi Iwaid32410b12005-11-24 16:06:23 +01002426 /* control HP volume/switch on the output mixer amp */
2427 sprintf(name, "%s Playback Volume", pfx);
2428 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2429 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2430 return err;
2431 nid = ad1988_mixer_nids[idx];
2432 sprintf(name, "%s Playback Switch", pfx);
2433 if ((err = add_control(spec, AD_CTL_BIND_MUTE, name,
2434 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2435 return err;
2436 return 0;
2437}
2438
2439/* create input playback/capture controls for the given pin */
2440static int new_analog_input(struct ad198x_spec *spec, hda_nid_t pin,
2441 const char *ctlname, int boost)
2442{
2443 char name[32];
2444 int err, idx;
2445
2446 sprintf(name, "%s Playback Volume", ctlname);
2447 idx = ad1988_pin_to_loopback_idx(pin);
2448 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2449 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2450 return err;
2451 sprintf(name, "%s Playback Switch", ctlname);
2452 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE, name,
2453 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2454 return err;
2455 if (boost) {
2456 hda_nid_t bnid;
2457 idx = ad1988_pin_idx(pin);
2458 bnid = ad1988_boost_nids[idx];
2459 if (bnid) {
2460 sprintf(name, "%s Boost", ctlname);
2461 return add_control(spec, AD_CTL_WIDGET_VOL, name,
2462 HDA_COMPOSE_AMP_VAL(bnid, 3, idx, HDA_OUTPUT));
2463
2464 }
2465 }
2466 return 0;
2467}
2468
2469/* create playback/capture controls for input pins */
2470static int ad1988_auto_create_analog_input_ctls(struct ad198x_spec *spec,
2471 const struct auto_pin_cfg *cfg)
2472{
Takashi Iwaid32410b12005-11-24 16:06:23 +01002473 struct hda_input_mux *imux = &spec->private_imux;
2474 int i, err;
2475
2476 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwai4a471b72005-12-07 13:56:29 +01002477 err = new_analog_input(spec, cfg->input_pins[i],
2478 auto_pin_cfg_labels[i],
Takashi Iwaid32410b12005-11-24 16:06:23 +01002479 i <= AUTO_PIN_FRONT_MIC);
2480 if (err < 0)
2481 return err;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002482 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
Takashi Iwaid32410b12005-11-24 16:06:23 +01002483 imux->items[imux->num_items].index = ad1988_pin_to_adc_idx(cfg->input_pins[i]);
2484 imux->num_items++;
2485 }
2486 imux->items[imux->num_items].label = "Mix";
2487 imux->items[imux->num_items].index = 9;
2488 imux->num_items++;
2489
2490 if ((err = add_control(spec, AD_CTL_WIDGET_VOL,
2491 "Analog Mix Playback Volume",
2492 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2493 return err;
2494 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE,
2495 "Analog Mix Playback Switch",
2496 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2497 return err;
2498
2499 return 0;
2500}
2501
2502static void ad1988_auto_set_output_and_unmute(struct hda_codec *codec,
2503 hda_nid_t nid, int pin_type,
2504 int dac_idx)
2505{
2506 /* set as output */
2507 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2508 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2509 switch (nid) {
2510 case 0x11: /* port-A - DAC 04 */
2511 snd_hda_codec_write(codec, 0x37, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2512 break;
2513 case 0x14: /* port-B - DAC 06 */
2514 snd_hda_codec_write(codec, 0x30, 0, AC_VERB_SET_CONNECT_SEL, 0x02);
2515 break;
2516 case 0x15: /* port-C - DAC 05 */
2517 snd_hda_codec_write(codec, 0x31, 0, AC_VERB_SET_CONNECT_SEL, 0x00);
2518 break;
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002519 case 0x17: /* port-E - DAC 0a */
Takashi Iwaid32410b12005-11-24 16:06:23 +01002520 snd_hda_codec_write(codec, 0x32, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2521 break;
2522 case 0x13: /* mono - DAC 04 */
2523 snd_hda_codec_write(codec, 0x36, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2524 break;
2525 }
2526}
2527
2528static void ad1988_auto_init_multi_out(struct hda_codec *codec)
2529{
2530 struct ad198x_spec *spec = codec->spec;
2531 int i;
2532
2533 for (i = 0; i < spec->autocfg.line_outs; i++) {
2534 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2535 ad1988_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2536 }
2537}
2538
2539static void ad1988_auto_init_extra_out(struct hda_codec *codec)
2540{
2541 struct ad198x_spec *spec = codec->spec;
2542 hda_nid_t pin;
2543
Takashi Iwai82bc9552006-03-21 11:24:42 +01002544 pin = spec->autocfg.speaker_pins[0];
Takashi Iwaid32410b12005-11-24 16:06:23 +01002545 if (pin) /* connect to front */
2546 ad1988_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002547 pin = spec->autocfg.hp_pins[0];
Takashi Iwaid32410b12005-11-24 16:06:23 +01002548 if (pin) /* connect to front */
2549 ad1988_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2550}
2551
2552static void ad1988_auto_init_analog_input(struct hda_codec *codec)
2553{
2554 struct ad198x_spec *spec = codec->spec;
2555 int i, idx;
2556
2557 for (i = 0; i < AUTO_PIN_LAST; i++) {
2558 hda_nid_t nid = spec->autocfg.input_pins[i];
2559 if (! nid)
2560 continue;
2561 switch (nid) {
2562 case 0x15: /* port-C */
2563 snd_hda_codec_write(codec, 0x33, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2564 break;
2565 case 0x17: /* port-E */
2566 snd_hda_codec_write(codec, 0x34, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2567 break;
2568 }
2569 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2570 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
2571 if (nid != AD1988_PIN_CD_NID)
2572 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2573 AMP_OUT_MUTE);
2574 idx = ad1988_pin_idx(nid);
2575 if (ad1988_boost_nids[idx])
2576 snd_hda_codec_write(codec, ad1988_boost_nids[idx], 0,
2577 AC_VERB_SET_AMP_GAIN_MUTE,
2578 AMP_OUT_ZERO);
2579 }
2580}
2581
2582/* parse the BIOS configuration and set up the alc_spec */
2583/* return 1 if successful, 0 if the proper config is not found, or a negative error code */
2584static int ad1988_parse_auto_config(struct hda_codec *codec)
2585{
2586 struct ad198x_spec *spec = codec->spec;
2587 int err;
2588
Kailang Yangdf694da2005-12-05 19:42:22 +01002589 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
Takashi Iwaid32410b12005-11-24 16:06:23 +01002590 return err;
2591 if ((err = ad1988_auto_fill_dac_nids(codec, &spec->autocfg)) < 0)
2592 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002593 if (! spec->autocfg.line_outs)
Takashi Iwaid32410b12005-11-24 16:06:23 +01002594 return 0; /* can't find valid BIOS pin config */
2595 if ((err = ad1988_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
Takashi Iwai82bc9552006-03-21 11:24:42 +01002596 (err = ad1988_auto_create_extra_out(codec,
2597 spec->autocfg.speaker_pins[0],
Takashi Iwaid32410b12005-11-24 16:06:23 +01002598 "Speaker")) < 0 ||
Takashi Iwaieb06ed82006-09-20 17:10:27 +02002599 (err = ad1988_auto_create_extra_out(codec, spec->autocfg.hp_pins[0],
Takashi Iwaid32410b12005-11-24 16:06:23 +01002600 "Headphone")) < 0 ||
2601 (err = ad1988_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
2602 return err;
2603
2604 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2605
2606 if (spec->autocfg.dig_out_pin)
2607 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2608 if (spec->autocfg.dig_in_pin)
2609 spec->dig_in_nid = AD1988_SPDIF_IN;
2610
2611 if (spec->kctl_alloc)
2612 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
2613
2614 spec->init_verbs[spec->num_init_verbs++] = ad1988_6stack_init_verbs;
2615
2616 spec->input_mux = &spec->private_imux;
2617
2618 return 1;
2619}
2620
2621/* init callback for auto-configuration model -- overriding the default init */
2622static int ad1988_auto_init(struct hda_codec *codec)
2623{
2624 ad198x_init(codec);
2625 ad1988_auto_init_multi_out(codec);
2626 ad1988_auto_init_extra_out(codec);
2627 ad1988_auto_init_analog_input(codec);
2628 return 0;
2629}
2630
2631
2632/*
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002633 */
2634
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002635static const char *ad1988_models[AD1988_MODEL_LAST] = {
2636 [AD1988_6STACK] = "6stack",
2637 [AD1988_6STACK_DIG] = "6stack-dig",
2638 [AD1988_3STACK] = "3stack",
2639 [AD1988_3STACK_DIG] = "3stack-dig",
2640 [AD1988_LAPTOP] = "laptop",
2641 [AD1988_LAPTOP_DIG] = "laptop-dig",
2642 [AD1988_AUTO] = "auto",
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002643};
2644
Tobin Davisa64c8cd2007-03-12 11:36:00 +01002645static struct snd_pci_quirk ad1988_cfg_tbl[] = {
2646 SND_PCI_QUIRK(0x1043, 0x81f6, "Asus M2N-SLI", AD1988_6STACK_DIG),
Tobin Davis18768992007-03-12 22:20:51 +01002647 SND_PCI_QUIRK(0x1043, 0x81ec, "Asus P5B-DLX", AD1988_6STACK_DIG),
Tobin Davisa64c8cd2007-03-12 11:36:00 +01002648 {}
2649};
2650
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002651static int patch_ad1988(struct hda_codec *codec)
2652{
2653 struct ad198x_spec *spec;
2654 int board_config;
2655
2656 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2657 if (spec == NULL)
2658 return -ENOMEM;
2659
Ingo Molnar62932df2006-01-16 16:34:20 +01002660 mutex_init(&spec->amp_mutex);
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002661 codec->spec = spec;
2662
Takashi Iwai1a806f42006-07-03 15:58:16 +02002663 if (is_rev2(codec))
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002664 snd_printk(KERN_INFO "patch_analog: AD1988A rev.2 is detected, enable workarounds\n");
2665
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002666 board_config = snd_hda_check_board_config(codec, AD1988_MODEL_LAST,
Tobin Davisa64c8cd2007-03-12 11:36:00 +01002667 ad1988_models, ad1988_cfg_tbl);
Takashi Iwaif5fcc132006-11-24 17:07:44 +01002668 if (board_config < 0) {
Takashi Iwaid32410b12005-11-24 16:06:23 +01002669 printk(KERN_INFO "hda_codec: Unknown model for AD1988, trying auto-probe from BIOS...\n");
2670 board_config = AD1988_AUTO;
2671 }
2672
2673 if (board_config == AD1988_AUTO) {
2674 /* automatic parse from the BIOS config */
2675 int err = ad1988_parse_auto_config(codec);
2676 if (err < 0) {
2677 ad198x_free(codec);
2678 return err;
2679 } else if (! err) {
2680 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using 6-stack mode...\n");
2681 board_config = AD1988_6STACK;
2682 }
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002683 }
2684
2685 switch (board_config) {
2686 case AD1988_6STACK:
2687 case AD1988_6STACK_DIG:
2688 spec->multiout.max_channels = 8;
2689 spec->multiout.num_dacs = 4;
Takashi Iwai1a806f42006-07-03 15:58:16 +02002690 if (is_rev2(codec))
Takashi Iwaid32410b12005-11-24 16:06:23 +01002691 spec->multiout.dac_nids = ad1988_6stack_dac_nids_rev2;
2692 else
2693 spec->multiout.dac_nids = ad1988_6stack_dac_nids;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002694 spec->input_mux = &ad1988_6stack_capture_source;
Takashi Iwaid32410b12005-11-24 16:06:23 +01002695 spec->num_mixers = 2;
Takashi Iwai1a806f42006-07-03 15:58:16 +02002696 if (is_rev2(codec))
Takashi Iwaid32410b12005-11-24 16:06:23 +01002697 spec->mixers[0] = ad1988_6stack_mixers1_rev2;
2698 else
2699 spec->mixers[0] = ad1988_6stack_mixers1;
2700 spec->mixers[1] = ad1988_6stack_mixers2;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002701 spec->num_init_verbs = 1;
2702 spec->init_verbs[0] = ad1988_6stack_init_verbs;
2703 if (board_config == AD1988_6STACK_DIG) {
2704 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2705 spec->dig_in_nid = AD1988_SPDIF_IN;
2706 }
2707 break;
2708 case AD1988_3STACK:
2709 case AD1988_3STACK_DIG:
2710 spec->multiout.max_channels = 6;
2711 spec->multiout.num_dacs = 3;
Takashi Iwai1a806f42006-07-03 15:58:16 +02002712 if (is_rev2(codec))
Takashi Iwaid32410b12005-11-24 16:06:23 +01002713 spec->multiout.dac_nids = ad1988_3stack_dac_nids_rev2;
2714 else
2715 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002716 spec->input_mux = &ad1988_6stack_capture_source;
2717 spec->channel_mode = ad1988_3stack_modes;
2718 spec->num_channel_mode = ARRAY_SIZE(ad1988_3stack_modes);
Takashi Iwaid32410b12005-11-24 16:06:23 +01002719 spec->num_mixers = 2;
Takashi Iwai1a806f42006-07-03 15:58:16 +02002720 if (is_rev2(codec))
Takashi Iwaid32410b12005-11-24 16:06:23 +01002721 spec->mixers[0] = ad1988_3stack_mixers1_rev2;
2722 else
2723 spec->mixers[0] = ad1988_3stack_mixers1;
2724 spec->mixers[1] = ad1988_3stack_mixers2;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002725 spec->num_init_verbs = 1;
2726 spec->init_verbs[0] = ad1988_3stack_init_verbs;
2727 if (board_config == AD1988_3STACK_DIG)
2728 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2729 break;
2730 case AD1988_LAPTOP:
2731 case AD1988_LAPTOP_DIG:
2732 spec->multiout.max_channels = 2;
2733 spec->multiout.num_dacs = 1;
Takashi Iwaid32410b12005-11-24 16:06:23 +01002734 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002735 spec->input_mux = &ad1988_laptop_capture_source;
2736 spec->num_mixers = 1;
2737 spec->mixers[0] = ad1988_laptop_mixers;
2738 spec->num_init_verbs = 1;
2739 spec->init_verbs[0] = ad1988_laptop_init_verbs;
2740 if (board_config == AD1988_LAPTOP_DIG)
2741 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2742 break;
2743 }
2744
Takashi Iwaid32410b12005-11-24 16:06:23 +01002745 spec->num_adc_nids = ARRAY_SIZE(ad1988_adc_nids);
2746 spec->adc_nids = ad1988_adc_nids;
2747 spec->capsrc_nids = ad1988_capsrc_nids;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002748 spec->mixers[spec->num_mixers++] = ad1988_capture_mixers;
2749 spec->init_verbs[spec->num_init_verbs++] = ad1988_capture_init_verbs;
2750 if (spec->multiout.dig_out_nid) {
2751 spec->mixers[spec->num_mixers++] = ad1988_spdif_out_mixers;
2752 spec->init_verbs[spec->num_init_verbs++] = ad1988_spdif_init_verbs;
2753 }
2754 if (spec->dig_in_nid)
2755 spec->mixers[spec->num_mixers++] = ad1988_spdif_in_mixers;
2756
2757 codec->patch_ops = ad198x_patch_ops;
2758 switch (board_config) {
Takashi Iwaid32410b12005-11-24 16:06:23 +01002759 case AD1988_AUTO:
2760 codec->patch_ops.init = ad1988_auto_init;
2761 break;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002762 case AD1988_LAPTOP:
2763 case AD1988_LAPTOP_DIG:
2764 codec->patch_ops.unsol_event = ad1988_laptop_unsol_event;
2765 break;
2766 }
2767
2768 return 0;
2769}
2770
2771
2772/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 * patch entries
2774 */
2775struct hda_codec_preset snd_hda_preset_analog[] = {
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02002776 { .id = 0x11d41981, .name = "AD1981", .patch = patch_ad1981 },
2777 { .id = 0x11d41983, .name = "AD1983", .patch = patch_ad1983 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 { .id = 0x11d41986, .name = "AD1986A", .patch = patch_ad1986a },
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002779 { .id = 0x11d41988, .name = "AD1988", .patch = patch_ad1988 },
Takashi Iwai71b2ccc2006-04-21 16:09:31 +02002780 { .id = 0x11d4198b, .name = "AD1988B", .patch = patch_ad1988 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 {} /* terminator */
2782};