blob: 2bfe37e8543cd75fad840821505fb57f2fd11498 [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
195/*
196 * Analog capture
197 */
198static int ad198x_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
199 struct hda_codec *codec,
200 unsigned int stream_tag,
201 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100202 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200203{
204 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100205 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
206 stream_tag, 0, format);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200207 return 0;
208}
209
210static int ad198x_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
211 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100212 struct snd_pcm_substream *substream)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200213{
214 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100215 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
216 0, 0, 0);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200217 return 0;
218}
219
220
221/*
222 */
223static struct hda_pcm_stream ad198x_pcm_analog_playback = {
224 .substreams = 1,
225 .channels_min = 2,
Takashi Iwai985be542005-11-02 18:26:49 +0100226 .channels_max = 6, /* changed later */
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200227 .nid = 0, /* fill later */
228 .ops = {
229 .open = ad198x_playback_pcm_open,
230 .prepare = ad198x_playback_pcm_prepare,
231 .cleanup = ad198x_playback_pcm_cleanup
232 },
233};
234
235static struct hda_pcm_stream ad198x_pcm_analog_capture = {
Takashi Iwai985be542005-11-02 18:26:49 +0100236 .substreams = 1,
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200237 .channels_min = 2,
238 .channels_max = 2,
239 .nid = 0, /* fill later */
240 .ops = {
241 .prepare = ad198x_capture_pcm_prepare,
242 .cleanup = ad198x_capture_pcm_cleanup
243 },
244};
245
246static struct hda_pcm_stream ad198x_pcm_digital_playback = {
247 .substreams = 1,
248 .channels_min = 2,
249 .channels_max = 2,
250 .nid = 0, /* fill later */
251 .ops = {
252 .open = ad198x_dig_playback_pcm_open,
253 .close = ad198x_dig_playback_pcm_close
254 },
255};
256
Takashi Iwai985be542005-11-02 18:26:49 +0100257static struct hda_pcm_stream ad198x_pcm_digital_capture = {
258 .substreams = 1,
259 .channels_min = 2,
260 .channels_max = 2,
261 /* NID is set in alc_build_pcms */
262};
263
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200264static int ad198x_build_pcms(struct hda_codec *codec)
265{
266 struct ad198x_spec *spec = codec->spec;
267 struct hda_pcm *info = spec->pcm_rec;
268
269 codec->num_pcms = 1;
270 codec->pcm_info = info;
271
272 info->name = "AD198x Analog";
273 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_analog_playback;
274 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->multiout.max_channels;
275 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
276 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_analog_capture;
Takashi Iwai985be542005-11-02 18:26:49 +0100277 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
278 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200279
280 if (spec->multiout.dig_out_nid) {
281 info++;
282 codec->num_pcms++;
283 info->name = "AD198x Digital";
284 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = ad198x_pcm_digital_playback;
285 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
Takashi Iwai985be542005-11-02 18:26:49 +0100286 if (spec->dig_in_nid) {
287 info->stream[SNDRV_PCM_STREAM_CAPTURE] = ad198x_pcm_digital_capture;
288 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
289 }
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200290 }
291
292 return 0;
293}
294
295static void ad198x_free(struct hda_codec *codec)
296{
Takashi Iwaid32410b12005-11-24 16:06:23 +0100297 struct ad198x_spec *spec = codec->spec;
298 unsigned int i;
299
300 if (spec->kctl_alloc) {
301 for (i = 0; i < spec->num_kctl_used; i++)
302 kfree(spec->kctl_alloc[i].name);
303 kfree(spec->kctl_alloc);
304 }
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200305 kfree(codec->spec);
306}
307
308#ifdef CONFIG_PM
309static int ad198x_resume(struct hda_codec *codec)
310{
311 struct ad198x_spec *spec = codec->spec;
Takashi Iwai985be542005-11-02 18:26:49 +0100312 int i;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200313
Takashi Iwai18a815d2006-03-01 19:54:39 +0100314 codec->patch_ops.init(codec);
Takashi Iwai985be542005-11-02 18:26:49 +0100315 for (i = 0; i < spec->num_mixers; i++)
316 snd_hda_resume_ctls(codec, spec->mixers[i]);
317 if (spec->multiout.dig_out_nid)
318 snd_hda_resume_spdif_out(codec);
319 if (spec->dig_in_nid)
320 snd_hda_resume_spdif_in(codec);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200321 return 0;
322}
323#endif
324
325static struct hda_codec_ops ad198x_patch_ops = {
326 .build_controls = ad198x_build_controls,
327 .build_pcms = ad198x_build_pcms,
328 .init = ad198x_init,
329 .free = ad198x_free,
330#ifdef CONFIG_PM
331 .resume = ad198x_resume,
332#endif
333};
334
335
336/*
Takashi Iwai18a815d2006-03-01 19:54:39 +0100337 * EAPD control
338 * the private value = nid | (invert << 8)
339 */
340static int ad198x_eapd_info(struct snd_kcontrol *kcontrol,
341 struct snd_ctl_elem_info *uinfo)
342{
343 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
344 uinfo->count = 1;
345 uinfo->value.integer.min = 0;
346 uinfo->value.integer.max = 1;
347 return 0;
348}
349
350static int ad198x_eapd_get(struct snd_kcontrol *kcontrol,
351 struct snd_ctl_elem_value *ucontrol)
352{
353 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
354 struct ad198x_spec *spec = codec->spec;
355 int invert = (kcontrol->private_value >> 8) & 1;
356 if (invert)
357 ucontrol->value.integer.value[0] = ! spec->cur_eapd;
358 else
359 ucontrol->value.integer.value[0] = spec->cur_eapd;
360 return 0;
361}
362
363static int ad198x_eapd_put(struct snd_kcontrol *kcontrol,
364 struct snd_ctl_elem_value *ucontrol)
365{
366 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
367 struct ad198x_spec *spec = codec->spec;
368 int invert = (kcontrol->private_value >> 8) & 1;
369 hda_nid_t nid = kcontrol->private_value & 0xff;
370 unsigned int eapd;
371 eapd = ucontrol->value.integer.value[0];
372 if (invert)
373 eapd = !eapd;
374 if (eapd == spec->cur_eapd && ! codec->in_resume)
375 return 0;
376 spec->cur_eapd = eapd;
377 snd_hda_codec_write(codec, nid,
378 0, AC_VERB_SET_EAPD_BTLENABLE,
379 eapd ? 0x02 : 0x00);
380 return 1;
381}
382
Takashi Iwai9230d212006-03-13 13:49:49 +0100383static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
384 struct snd_ctl_elem_info *uinfo);
385static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
386 struct snd_ctl_elem_value *ucontrol);
387static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
388 struct snd_ctl_elem_value *ucontrol);
389
390
Takashi Iwai18a815d2006-03-01 19:54:39 +0100391/*
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200392 * AD1986A specific
393 */
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395#define AD1986A_SPDIF_OUT 0x02
396#define AD1986A_FRONT_DAC 0x03
397#define AD1986A_SURR_DAC 0x04
398#define AD1986A_CLFE_DAC 0x05
399#define AD1986A_ADC 0x06
400
401static hda_nid_t ad1986a_dac_nids[3] = {
402 AD1986A_FRONT_DAC, AD1986A_SURR_DAC, AD1986A_CLFE_DAC
403};
Takashi Iwai985be542005-11-02 18:26:49 +0100404static hda_nid_t ad1986a_adc_nids[1] = { AD1986A_ADC };
Takashi Iwai18a815d2006-03-01 19:54:39 +0100405static hda_nid_t ad1986a_capsrc_nids[1] = { 0x12 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407static struct hda_input_mux ad1986a_capture_source = {
408 .num_items = 7,
409 .items = {
410 { "Mic", 0x0 },
411 { "CD", 0x1 },
412 { "Aux", 0x3 },
413 { "Line", 0x4 },
414 { "Mix", 0x5 },
415 { "Mono", 0x6 },
416 { "Phone", 0x7 },
417 },
418};
419
420/*
421 * PCM control
422 *
423 * bind volumes/mutes of 3 DACs as a single PCM control for simplicity
424 */
425
426#define ad1986a_pcm_amp_vol_info snd_hda_mixer_amp_volume_info
427
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100428static int ad1986a_pcm_amp_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200431 struct ad198x_spec *ad = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Ingo Molnar62932df2006-01-16 16:34:20 +0100433 mutex_lock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 snd_hda_mixer_amp_volume_get(kcontrol, ucontrol);
Ingo Molnar62932df2006-01-16 16:34:20 +0100435 mutex_unlock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return 0;
437}
438
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100439static int ad1986a_pcm_amp_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200442 struct ad198x_spec *ad = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 int i, change = 0;
444
Ingo Molnar62932df2006-01-16 16:34:20 +0100445 mutex_lock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
447 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
448 change |= snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
449 }
450 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
Ingo Molnar62932df2006-01-16 16:34:20 +0100451 mutex_unlock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return change;
453}
454
Takashi Iwaiead9b7c2005-06-08 14:48:19 +0200455#define ad1986a_pcm_amp_sw_info snd_hda_mixer_amp_switch_info
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100457static int ad1986a_pcm_amp_sw_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200460 struct ad198x_spec *ad = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Ingo Molnar62932df2006-01-16 16:34:20 +0100462 mutex_lock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
Ingo Molnar62932df2006-01-16 16:34:20 +0100464 mutex_unlock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return 0;
466}
467
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100468static int ad1986a_pcm_amp_sw_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200471 struct ad198x_spec *ad = codec->spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 int i, change = 0;
473
Ingo Molnar62932df2006-01-16 16:34:20 +0100474 mutex_lock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 for (i = 0; i < ARRAY_SIZE(ad1986a_dac_nids); i++) {
476 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids[i], 3, 0, HDA_OUTPUT);
477 change |= snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
478 }
479 kcontrol->private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT);
Ingo Molnar62932df2006-01-16 16:34:20 +0100480 mutex_unlock(&ad->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return change;
482}
483
484/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 * mixers
486 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100487static struct snd_kcontrol_new ad1986a_mixers[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 {
489 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
490 .name = "PCM Playback Volume",
491 .info = ad1986a_pcm_amp_vol_info,
492 .get = ad1986a_pcm_amp_vol_get,
493 .put = ad1986a_pcm_amp_vol_put,
494 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
495 },
496 {
497 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
498 .name = "PCM Playback Switch",
499 .info = ad1986a_pcm_amp_sw_info,
500 .get = ad1986a_pcm_amp_sw_get,
501 .put = ad1986a_pcm_amp_sw_put,
502 .private_value = HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC, 3, 0, HDA_OUTPUT)
503 },
504 HDA_CODEC_VOLUME("Front Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
505 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
506 HDA_CODEC_VOLUME("Surround Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
507 HDA_CODEC_MUTE("Surround Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
508 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x1d, 1, 0x0, HDA_OUTPUT),
509 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x1d, 2, 0x0, HDA_OUTPUT),
510 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x1d, 1, 0x0, HDA_OUTPUT),
511 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x1d, 2, 0x0, HDA_OUTPUT),
512 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
513 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT),
514 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
515 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
516 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
517 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
518 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
519 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
520 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
521 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
522 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
523 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
524 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
525 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT),
526 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
527 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
528 {
529 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
530 .name = "Capture Source",
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200531 .info = ad198x_mux_enum_info,
532 .get = ad198x_mux_enum_get,
533 .put = ad198x_mux_enum_put,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 },
535 HDA_CODEC_MUTE("Stereo Downmix Switch", 0x09, 0x0, HDA_OUTPUT),
536 { } /* end */
537};
538
Takashi Iwai9230d212006-03-13 13:49:49 +0100539/* additional mixers for 3stack mode */
540static struct snd_kcontrol_new ad1986a_3st_mixers[] = {
541 {
542 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
543 .name = "Channel Mode",
544 .info = ad198x_ch_mode_info,
545 .get = ad198x_ch_mode_get,
546 .put = ad198x_ch_mode_put,
547 },
548 { } /* end */
549};
550
551/* laptop model - 2ch only */
552static hda_nid_t ad1986a_laptop_dac_nids[1] = { AD1986A_FRONT_DAC };
553
554static struct snd_kcontrol_new ad1986a_laptop_mixers[] = {
555 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
556 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
557 HDA_CODEC_VOLUME("Master Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
558 HDA_CODEC_MUTE("Master Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
559 /* HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT),
560 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT), */
561 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT),
562 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT),
563 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT),
564 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT),
565 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT),
566 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT),
567 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
568 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
569 /* HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT),
570 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT),
571 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT),
572 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT), */
573 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
574 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
575 {
576 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
577 .name = "Capture Source",
578 .info = ad198x_mux_enum_info,
579 .get = ad198x_mux_enum_get,
580 .put = ad198x_mux_enum_put,
581 },
582 { } /* end */
583};
584
Takashi Iwai825aa9722006-03-17 10:50:49 +0100585/* laptop-eapd model - 2ch only */
586
587/* master controls both pins 0x1a and 0x1b */
588static int ad1986a_laptop_master_vol_put(struct snd_kcontrol *kcontrol,
589 struct snd_ctl_elem_value *ucontrol)
590{
591 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
592 long *valp = ucontrol->value.integer.value;
593 int change;
594
595 change = snd_hda_codec_amp_update(codec, 0x1a, 0, HDA_OUTPUT, 0,
596 0x7f, valp[0] & 0x7f);
597 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
598 0x7f, valp[1] & 0x7f);
599 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
600 0x7f, valp[0] & 0x7f);
601 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
602 0x7f, valp[1] & 0x7f);
603 return change;
604}
605
606static int ad1986a_laptop_master_sw_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 0x80, valp[0] ? 0 : 0x80);
615 change |= snd_hda_codec_amp_update(codec, 0x1a, 1, HDA_OUTPUT, 0,
616 0x80, valp[1] ? 0 : 0x80);
617 snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
618 0x80, valp[0] ? 0 : 0x80);
619 snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
620 0x80, valp[1] ? 0 : 0x80);
621 return change;
622}
623
624static struct hda_input_mux ad1986a_laptop_eapd_capture_source = {
625 .num_items = 3,
626 .items = {
627 { "Mic", 0x0 },
628 { "Internal Mic", 0x4 },
629 { "Mix", 0x5 },
630 },
631};
632
633static struct snd_kcontrol_new ad1986a_laptop_eapd_mixers[] = {
634 {
635 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
636 .name = "Master Playback Volume",
637 .info = snd_hda_mixer_amp_volume_info,
638 .get = snd_hda_mixer_amp_volume_get,
639 .put = ad1986a_laptop_master_vol_put,
640 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
641 },
642 {
643 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
644 .name = "Master Playback Switch",
645 .info = snd_hda_mixer_amp_switch_info,
646 .get = snd_hda_mixer_amp_switch_get,
647 .put = ad1986a_laptop_master_sw_put,
648 .private_value = HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, HDA_OUTPUT),
649 },
650 HDA_CODEC_VOLUME("PCM Playback Volume", 0x03, 0x0, HDA_OUTPUT),
651 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT),
652 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x0, HDA_OUTPUT),
653 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x0, HDA_OUTPUT),
654 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT),
655 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT),
656 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT),
657 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT),
658 {
659 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
660 .name = "Capture Source",
661 .info = ad198x_mux_enum_info,
662 .get = ad198x_mux_enum_get,
663 .put = ad198x_mux_enum_put,
664 },
665 {
666 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
667 .name = "External Amplifier",
668 .info = ad198x_eapd_info,
669 .get = ad198x_eapd_get,
670 .put = ad198x_eapd_put,
671 .private_value = 0x1b | (1 << 8), /* port-D, inversed */
672 },
673 { } /* end */
674};
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/*
677 * initialization verbs
678 */
679static struct hda_verb ad1986a_init_verbs[] = {
680 /* Front, Surround, CLFE DAC; mute as default */
681 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
682 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
683 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
684 /* Downmix - off */
685 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
686 /* HP, Line-Out, Surround, CLFE selectors */
687 {0x0a, AC_VERB_SET_CONNECT_SEL, 0x0},
688 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0},
689 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
690 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
691 /* Mono selector */
692 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x0},
693 /* Mic selector: Mic 1/2 pin */
694 {0x0f, AC_VERB_SET_CONNECT_SEL, 0x0},
695 /* Line-in selector: Line-in */
696 {0x10, AC_VERB_SET_CONNECT_SEL, 0x0},
697 /* Mic 1/2 swap */
698 {0x11, AC_VERB_SET_CONNECT_SEL, 0x0},
699 /* Record selector: mic */
700 {0x12, AC_VERB_SET_CONNECT_SEL, 0x0},
701 /* Mic, Phone, CD, Aux, Line-In amp; mute as default */
702 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
703 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
704 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
705 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
706 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
707 /* PC beep */
708 {0x18, AC_VERB_SET_CONNECT_SEL, 0x0},
709 /* HP, Line-Out, Surround, CLFE, Mono pins; mute as default */
710 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
711 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
712 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
713 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
714 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200715 /* HP Pin */
716 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
717 /* Front, Surround, CLFE Pins */
718 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
719 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
720 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
721 /* Mono Pin */
722 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
723 /* Mic Pin */
724 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
725 /* Line, Aux, CD, Beep-In Pin */
726 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
727 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
728 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
729 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
730 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 { } /* end */
732};
733
Takashi Iwai9230d212006-03-13 13:49:49 +0100734/* additional verbs for 3-stack model */
735static struct hda_verb ad1986a_3st_init_verbs[] = {
736 /* Mic and line-in selectors */
737 {0x0f, AC_VERB_SET_CONNECT_SEL, 0x2},
738 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
739 { } /* end */
740};
741
742static struct hda_verb ad1986a_ch2_init[] = {
743 /* Surround out -> Line In */
744 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
745 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
746 /* CLFE -> Mic in */
747 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
748 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
749 { } /* end */
750};
751
752static struct hda_verb ad1986a_ch4_init[] = {
753 /* Surround out -> Surround */
754 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
755 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
756 /* CLFE -> Mic in */
757 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
758 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
759 { } /* end */
760};
761
762static struct hda_verb ad1986a_ch6_init[] = {
763 /* Surround out -> Surround out */
764 { 0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
765 { 0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
766 /* CLFE -> CLFE */
767 { 0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
768 { 0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
769 { } /* end */
770};
771
772static struct hda_channel_mode ad1986a_modes[3] = {
773 { 2, ad1986a_ch2_init },
774 { 4, ad1986a_ch4_init },
775 { 6, ad1986a_ch6_init },
776};
777
Takashi Iwai825aa9722006-03-17 10:50:49 +0100778/* eapd initialization */
779static struct hda_verb ad1986a_eapd_init_verbs[] = {
780 {0x1b, AC_VERB_SET_EAPD_BTLENABLE, 0x00},
781 {}
782};
783
Takashi Iwai9230d212006-03-13 13:49:49 +0100784/* models */
Takashi Iwai825aa9722006-03-17 10:50:49 +0100785enum { AD1986A_6STACK, AD1986A_3STACK, AD1986A_LAPTOP, AD1986A_LAPTOP_EAPD };
Takashi Iwai9230d212006-03-13 13:49:49 +0100786
787static struct hda_board_config ad1986a_cfg_tbl[] = {
788 { .modelname = "6stack", .config = AD1986A_6STACK },
789 { .modelname = "3stack", .config = AD1986A_3STACK },
Takashi Iwai82bc9552006-03-21 11:24:42 +0100790 { .pci_subvendor = 0x10de, .pci_subdevice = 0xcb84,
791 .config = AD1986A_3STACK }, /* ASUS A8N-VM CSM */
Takashi Iwai9230d212006-03-13 13:49:49 +0100792 { .modelname = "laptop", .config = AD1986A_LAPTOP },
793 { .pci_subvendor = 0x144d, .pci_subdevice = 0xc01e,
794 .config = AD1986A_LAPTOP }, /* FSC V2060 */
795 { .pci_subvendor = 0x17c0, .pci_subdevice = 0x2017,
796 .config = AD1986A_LAPTOP }, /* Samsung M50 */
Takashi Iwai825aa9722006-03-17 10:50:49 +0100797 { .pci_subvendor = 0x1043, .pci_subdevice = 0x818f,
798 .config = AD1986A_LAPTOP }, /* ASUS P5GV-MX */
799 { .modelname = "laptop-eapd", .config = AD1986A_LAPTOP_EAPD },
800 { .pci_subvendor = 0x144d, .pci_subdevice = 0xc024,
801 .config = AD1986A_LAPTOP_EAPD }, /* Samsung R65-T2300 Charis */
802 { .pci_subvendor = 0x1043, .pci_subdevice = 0x1213,
803 .config = AD1986A_LAPTOP_EAPD }, /* ASUS A6J */
Takashi Iwai9230d212006-03-13 13:49:49 +0100804 {}
805};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807static int patch_ad1986a(struct hda_codec *codec)
808{
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200809 struct ad198x_spec *spec;
Takashi Iwai9230d212006-03-13 13:49:49 +0100810 int board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200812 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 if (spec == NULL)
814 return -ENOMEM;
815
Ingo Molnar62932df2006-01-16 16:34:20 +0100816 mutex_init(&spec->amp_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 codec->spec = spec;
818
819 spec->multiout.max_channels = 6;
820 spec->multiout.num_dacs = ARRAY_SIZE(ad1986a_dac_nids);
821 spec->multiout.dac_nids = ad1986a_dac_nids;
822 spec->multiout.dig_out_nid = AD1986A_SPDIF_OUT;
Takashi Iwai985be542005-11-02 18:26:49 +0100823 spec->num_adc_nids = 1;
824 spec->adc_nids = ad1986a_adc_nids;
Takashi Iwaia7ee8202006-03-01 20:05:39 +0100825 spec->capsrc_nids = ad1986a_capsrc_nids;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200826 spec->input_mux = &ad1986a_capture_source;
Takashi Iwai985be542005-11-02 18:26:49 +0100827 spec->num_mixers = 1;
828 spec->mixers[0] = ad1986a_mixers;
829 spec->num_init_verbs = 1;
830 spec->init_verbs[0] = ad1986a_init_verbs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200832 codec->patch_ops = ad198x_patch_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Takashi Iwai9230d212006-03-13 13:49:49 +0100834 /* override some parameters */
835 board_config = snd_hda_check_board_config(codec, ad1986a_cfg_tbl);
836 switch (board_config) {
837 case AD1986A_3STACK:
838 spec->num_mixers = 2;
839 spec->mixers[1] = ad1986a_3st_mixers;
Takashi Iwai2125cad2006-03-27 12:52:22 +0200840 spec->num_init_verbs = 3;
Takashi Iwai9230d212006-03-13 13:49:49 +0100841 spec->init_verbs[1] = ad1986a_3st_init_verbs;
Takashi Iwai2125cad2006-03-27 12:52:22 +0200842 spec->init_verbs[2] = ad1986a_ch2_init;
Takashi Iwai9230d212006-03-13 13:49:49 +0100843 spec->channel_mode = ad1986a_modes;
844 spec->num_channel_mode = ARRAY_SIZE(ad1986a_modes);
Takashi Iwai2125cad2006-03-27 12:52:22 +0200845 spec->need_dac_fix = 1;
846 spec->multiout.max_channels = 2;
847 spec->multiout.num_dacs = 1;
Takashi Iwai9230d212006-03-13 13:49:49 +0100848 break;
849 case AD1986A_LAPTOP:
850 spec->mixers[0] = ad1986a_laptop_mixers;
851 spec->multiout.max_channels = 2;
852 spec->multiout.num_dacs = 1;
853 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
854 break;
Takashi Iwai825aa9722006-03-17 10:50:49 +0100855 case AD1986A_LAPTOP_EAPD:
856 spec->mixers[0] = ad1986a_laptop_eapd_mixers;
857 spec->num_init_verbs = 2;
858 spec->init_verbs[1] = ad1986a_eapd_init_verbs;
859 spec->multiout.max_channels = 2;
860 spec->multiout.num_dacs = 1;
861 spec->multiout.dac_nids = ad1986a_laptop_dac_nids;
862 spec->multiout.dig_out_nid = 0;
863 spec->input_mux = &ad1986a_laptop_eapd_capture_source;
864 break;
Takashi Iwai9230d212006-03-13 13:49:49 +0100865 }
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return 0;
868}
869
870/*
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200871 * AD1983 specific
872 */
873
874#define AD1983_SPDIF_OUT 0x02
875#define AD1983_DAC 0x03
876#define AD1983_ADC 0x04
877
878static hda_nid_t ad1983_dac_nids[1] = { AD1983_DAC };
Takashi Iwai985be542005-11-02 18:26:49 +0100879static hda_nid_t ad1983_adc_nids[1] = { AD1983_ADC };
Takashi Iwai18a815d2006-03-01 19:54:39 +0100880static hda_nid_t ad1983_capsrc_nids[1] = { 0x15 };
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200881
882static struct hda_input_mux ad1983_capture_source = {
883 .num_items = 4,
884 .items = {
885 { "Mic", 0x0 },
886 { "Line", 0x1 },
887 { "Mix", 0x2 },
888 { "Mix Mono", 0x3 },
889 },
890};
891
892/*
893 * SPDIF playback route
894 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100895static int ad1983_spdif_route_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200896{
897 static char *texts[] = { "PCM", "ADC" };
898
899 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
900 uinfo->count = 1;
901 uinfo->value.enumerated.items = 2;
902 if (uinfo->value.enumerated.item > 1)
903 uinfo->value.enumerated.item = 1;
904 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
905 return 0;
906}
907
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100908static int ad1983_spdif_route_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200909{
910 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
911 struct ad198x_spec *spec = codec->spec;
912
913 ucontrol->value.enumerated.item[0] = spec->spdif_route;
914 return 0;
915}
916
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100917static int ad1983_spdif_route_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200918{
919 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
920 struct ad198x_spec *spec = codec->spec;
921
922 if (spec->spdif_route != ucontrol->value.enumerated.item[0]) {
923 spec->spdif_route = ucontrol->value.enumerated.item[0];
924 snd_hda_codec_write(codec, spec->multiout.dig_out_nid, 0,
925 AC_VERB_SET_CONNECT_SEL, spec->spdif_route);
926 return 1;
927 }
928 return 0;
929}
930
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100931static struct snd_kcontrol_new ad1983_mixers[] = {
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200932 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
933 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
934 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
935 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
936 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
937 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
938 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
939 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
940 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
941 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
942 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
943 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
944 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x10, 1, 0x0, HDA_OUTPUT),
945 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x10, 1, 0x0, HDA_OUTPUT),
946 HDA_CODEC_VOLUME("Mic Boost", 0x0c, 0x0, HDA_OUTPUT),
947 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
948 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
949 {
950 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
951 .name = "Capture Source",
952 .info = ad198x_mux_enum_info,
953 .get = ad198x_mux_enum_get,
954 .put = ad198x_mux_enum_put,
955 },
956 {
957 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Clemens Ladisch10e8d782005-08-03 13:40:08 +0200958 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Route",
Takashi Iwai4a3fdf32005-04-14 13:35:51 +0200959 .info = ad1983_spdif_route_info,
960 .get = ad1983_spdif_route_get,
961 .put = ad1983_spdif_route_put,
962 },
963 { } /* end */
964};
965
966static struct hda_verb ad1983_init_verbs[] = {
967 /* Front, HP, Mono; mute as default */
968 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
969 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
970 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
971 /* Beep, PCM, Mic, Line-In: mute */
972 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
973 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
974 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
975 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
976 /* Front, HP selectors; from Mix */
977 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
978 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
979 /* Mono selector; from Mix */
980 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
981 /* Mic selector; Mic */
982 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0},
983 /* Line-in selector: Line-in */
984 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0},
985 /* Mic boost: 0dB */
986 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
987 /* Record selector: mic */
988 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
989 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
990 /* SPDIF route: PCM */
991 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
992 /* Front Pin */
993 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
994 /* HP Pin */
995 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
996 /* Mono Pin */
997 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
998 /* Mic Pin */
999 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1000 /* Line Pin */
1001 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1002 { } /* end */
1003};
1004
Takashi Iwai985be542005-11-02 18:26:49 +01001005
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001006static int patch_ad1983(struct hda_codec *codec)
1007{
1008 struct ad198x_spec *spec;
1009
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001010 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001011 if (spec == NULL)
1012 return -ENOMEM;
1013
Ingo Molnar62932df2006-01-16 16:34:20 +01001014 mutex_init(&spec->amp_mutex);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001015 codec->spec = spec;
1016
1017 spec->multiout.max_channels = 2;
1018 spec->multiout.num_dacs = ARRAY_SIZE(ad1983_dac_nids);
1019 spec->multiout.dac_nids = ad1983_dac_nids;
1020 spec->multiout.dig_out_nid = AD1983_SPDIF_OUT;
Takashi Iwai985be542005-11-02 18:26:49 +01001021 spec->num_adc_nids = 1;
1022 spec->adc_nids = ad1983_adc_nids;
Takashi Iwai18a815d2006-03-01 19:54:39 +01001023 spec->capsrc_nids = ad1983_capsrc_nids;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001024 spec->input_mux = &ad1983_capture_source;
Takashi Iwai985be542005-11-02 18:26:49 +01001025 spec->num_mixers = 1;
1026 spec->mixers[0] = ad1983_mixers;
1027 spec->num_init_verbs = 1;
1028 spec->init_verbs[0] = ad1983_init_verbs;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001029 spec->spdif_route = 0;
1030
1031 codec->patch_ops = ad198x_patch_ops;
1032
1033 return 0;
1034}
1035
1036
1037/*
1038 * AD1981 HD specific
1039 */
1040
1041#define AD1981_SPDIF_OUT 0x02
1042#define AD1981_DAC 0x03
1043#define AD1981_ADC 0x04
1044
1045static hda_nid_t ad1981_dac_nids[1] = { AD1981_DAC };
Takashi Iwai985be542005-11-02 18:26:49 +01001046static hda_nid_t ad1981_adc_nids[1] = { AD1981_ADC };
Takashi Iwai18a815d2006-03-01 19:54:39 +01001047static hda_nid_t ad1981_capsrc_nids[1] = { 0x15 };
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001048
1049/* 0x0c, 0x09, 0x0e, 0x0f, 0x19, 0x05, 0x18, 0x17 */
1050static struct hda_input_mux ad1981_capture_source = {
1051 .num_items = 7,
1052 .items = {
1053 { "Front Mic", 0x0 },
1054 { "Line", 0x1 },
1055 { "Mix", 0x2 },
1056 { "Mix Mono", 0x3 },
1057 { "CD", 0x4 },
1058 { "Mic", 0x6 },
1059 { "Aux", 0x7 },
1060 },
1061};
1062
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01001063static struct snd_kcontrol_new ad1981_mixers[] = {
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001064 HDA_CODEC_VOLUME("Front Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1065 HDA_CODEC_MUTE("Front Playback Switch", 0x05, 0x0, HDA_OUTPUT),
1066 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1067 HDA_CODEC_MUTE("Headphone Playback Switch", 0x06, 0x0, HDA_OUTPUT),
1068 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x07, 1, 0x0, HDA_OUTPUT),
1069 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x07, 1, 0x0, HDA_OUTPUT),
1070 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1071 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1072 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1073 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1074 HDA_CODEC_VOLUME("Line Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1075 HDA_CODEC_MUTE("Line Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1076 HDA_CODEC_VOLUME("Aux Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1077 HDA_CODEC_MUTE("Aux Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1078 HDA_CODEC_VOLUME("Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1079 HDA_CODEC_MUTE("Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1080 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1081 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1082 HDA_CODEC_VOLUME_MONO("PC Speaker Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1083 HDA_CODEC_MUTE_MONO("PC Speaker Playback Switch", 0x0d, 1, 0x0, HDA_OUTPUT),
1084 HDA_CODEC_VOLUME("Front Mic Boost", 0x08, 0x0, HDA_INPUT),
1085 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x0, HDA_INPUT),
1086 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1087 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1088 {
1089 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1090 .name = "Capture Source",
1091 .info = ad198x_mux_enum_info,
1092 .get = ad198x_mux_enum_get,
1093 .put = ad198x_mux_enum_put,
1094 },
1095 /* identical with AD1983 */
1096 {
1097 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Clemens Ladisch10e8d782005-08-03 13:40:08 +02001098 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,NONE) "Route",
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001099 .info = ad1983_spdif_route_info,
1100 .get = ad1983_spdif_route_get,
1101 .put = ad1983_spdif_route_put,
1102 },
1103 { } /* end */
1104};
1105
1106static struct hda_verb ad1981_init_verbs[] = {
1107 /* Front, HP, Mono; mute as default */
1108 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1109 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1110 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1111 /* Beep, PCM, Front Mic, Line, Rear Mic, Aux, CD-In: mute */
1112 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1113 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1114 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1115 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1116 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1117 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1118 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1119 /* Front, HP selectors; from Mix */
1120 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
1121 {0x06, AC_VERB_SET_CONNECT_SEL, 0x01},
1122 /* Mono selector; from Mix */
1123 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x03},
1124 /* Mic Mixer; select Front Mic */
1125 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1126 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1127 /* Mic boost: 0dB */
1128 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1129 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1130 /* Record selector: Front mic */
1131 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
1132 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1133 /* SPDIF route: PCM */
1134 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0},
1135 /* Front Pin */
1136 {0x05, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1137 /* HP Pin */
1138 {0x06, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
1139 /* Mono Pin */
1140 {0x07, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
1141 /* Front & Rear Mic Pins */
1142 {0x08, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1143 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
1144 /* Line Pin */
1145 {0x09, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
1146 /* Digital Beep */
1147 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
1148 /* Line-Out as Input: disabled */
1149 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1150 { } /* end */
1151};
1152
Takashi Iwai18a815d2006-03-01 19:54:39 +01001153/*
1154 * Patch for HP nx6320
1155 *
1156 * nx6320 uses EAPD in the reserve way - EAPD-on means the internal
1157 * speaker output enabled _and_ mute-LED off.
1158 */
1159
1160#define AD1981_HP_EVENT 0x37
1161#define AD1981_MIC_EVENT 0x38
1162
1163static struct hda_verb ad1981_hp_init_verbs[] = {
1164 {0x05, AC_VERB_SET_EAPD_BTLENABLE, 0x00 }, /* default off */
1165 /* pin sensing on HP and Mic jacks */
1166 {0x06, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_HP_EVENT},
1167 {0x08, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1981_MIC_EVENT},
1168 {}
1169};
1170
1171/* turn on/off EAPD (+ mute HP) as a master switch */
1172static int ad1981_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1173 struct snd_ctl_elem_value *ucontrol)
1174{
1175 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1176 struct ad198x_spec *spec = codec->spec;
1177
1178 if (! ad198x_eapd_put(kcontrol, ucontrol))
1179 return 0;
1180
1181 /* toggle HP mute appropriately */
1182 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1183 0x80, spec->cur_eapd ? 0 : 0x80);
1184 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1185 0x80, spec->cur_eapd ? 0 : 0x80);
1186 return 1;
1187}
1188
1189/* bind volumes of both NID 0x05 and 0x06 */
1190static int ad1981_hp_master_vol_put(struct snd_kcontrol *kcontrol,
1191 struct snd_ctl_elem_value *ucontrol)
1192{
1193 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1194 long *valp = ucontrol->value.integer.value;
1195 int change;
1196
1197 change = snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1198 0x7f, valp[0] & 0x7f);
1199 change |= snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1200 0x7f, valp[1] & 0x7f);
1201 snd_hda_codec_amp_update(codec, 0x06, 0, HDA_OUTPUT, 0,
1202 0x7f, valp[0] & 0x7f);
1203 snd_hda_codec_amp_update(codec, 0x06, 1, HDA_OUTPUT, 0,
1204 0x7f, valp[1] & 0x7f);
1205 return change;
1206}
1207
1208/* mute internal speaker if HP is plugged */
1209static void ad1981_hp_automute(struct hda_codec *codec)
1210{
1211 unsigned int present;
1212
1213 present = snd_hda_codec_read(codec, 0x06, 0,
1214 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1215 snd_hda_codec_amp_update(codec, 0x05, 0, HDA_OUTPUT, 0,
1216 0x80, present ? 0x80 : 0);
1217 snd_hda_codec_amp_update(codec, 0x05, 1, HDA_OUTPUT, 0,
1218 0x80, present ? 0x80 : 0);
1219}
1220
1221/* toggle input of built-in and mic jack appropriately */
1222static void ad1981_hp_automic(struct hda_codec *codec)
1223{
1224 static struct hda_verb mic_jack_on[] = {
1225 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1226 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1227 {}
1228 };
1229 static struct hda_verb mic_jack_off[] = {
1230 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
1231 {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
1232 {}
1233 };
1234 unsigned int present;
1235
1236 present = snd_hda_codec_read(codec, 0x08, 0,
1237 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1238 if (present)
1239 snd_hda_sequence_write(codec, mic_jack_on);
1240 else
1241 snd_hda_sequence_write(codec, mic_jack_off);
1242}
1243
1244/* unsolicited event for HP jack sensing */
1245static void ad1981_hp_unsol_event(struct hda_codec *codec,
1246 unsigned int res)
1247{
1248 res >>= 26;
1249 switch (res) {
1250 case AD1981_HP_EVENT:
1251 ad1981_hp_automute(codec);
1252 break;
1253 case AD1981_MIC_EVENT:
1254 ad1981_hp_automic(codec);
1255 break;
1256 }
1257}
1258
1259static struct hda_input_mux ad1981_hp_capture_source = {
1260 .num_items = 3,
1261 .items = {
1262 { "Mic", 0x0 },
1263 { "Docking-Station", 0x1 },
1264 { "Mix", 0x2 },
1265 },
1266};
1267
1268static struct snd_kcontrol_new ad1981_hp_mixers[] = {
1269 {
1270 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1271 .name = "Master Playback Volume",
1272 .info = snd_hda_mixer_amp_volume_info,
1273 .get = snd_hda_mixer_amp_volume_get,
1274 .put = ad1981_hp_master_vol_put,
1275 .private_value = HDA_COMPOSE_AMP_VAL(0x05, 3, 0, HDA_OUTPUT),
1276 },
1277 {
1278 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1279 .name = "Master Playback Switch",
1280 .info = ad198x_eapd_info,
1281 .get = ad198x_eapd_get,
1282 .put = ad1981_hp_master_sw_put,
1283 .private_value = 0x05,
1284 },
1285 HDA_CODEC_VOLUME("PCM Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1286 HDA_CODEC_MUTE("PCM Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1287#if 0
1288 /* FIXME: analog mic/line loopback doesn't work with my tests...
1289 * (although recording is OK)
1290 */
1291 HDA_CODEC_VOLUME("Mic Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1292 HDA_CODEC_MUTE("Mic Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1293 HDA_CODEC_VOLUME("Docking-Station Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1294 HDA_CODEC_MUTE("Docking-Station Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1295 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x1c, 0x0, HDA_OUTPUT),
1296 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x1c, 0x0, HDA_OUTPUT),
1297 /* FIXME: does this laptop have analog CD connection? */
1298 HDA_CODEC_VOLUME("CD Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1299 HDA_CODEC_MUTE("CD Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1300#endif
1301 HDA_CODEC_VOLUME("Mic Boost", 0x08, 0x0, HDA_INPUT),
1302 HDA_CODEC_VOLUME("Internal Mic Boost", 0x18, 0x0, HDA_INPUT),
1303 HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_OUTPUT),
1304 HDA_CODEC_MUTE("Capture Switch", 0x15, 0x0, HDA_OUTPUT),
1305 {
1306 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1307 .name = "Capture Source",
1308 .info = ad198x_mux_enum_info,
1309 .get = ad198x_mux_enum_get,
1310 .put = ad198x_mux_enum_put,
1311 },
1312 { } /* end */
1313};
1314
1315/* initialize jack-sensing, too */
1316static int ad1981_hp_init(struct hda_codec *codec)
1317{
1318 ad198x_init(codec);
1319 ad1981_hp_automute(codec);
1320 ad1981_hp_automic(codec);
1321 return 0;
1322}
1323
1324/* models */
1325enum { AD1981_BASIC, AD1981_HP };
1326
1327static struct hda_board_config ad1981_cfg_tbl[] = {
1328 { .modelname = "hp", .config = AD1981_HP },
1329 { .pci_subvendor = 0x103c, .pci_subdevice = 0x30aa,
Takashi Iwaib2c28442006-03-21 19:11:50 +01001330 .config = AD1981_HP }, /* HP nx6320 */
1331 { .pci_subvendor = 0x103c, .pci_subdevice = 0x309f,
1332 .config = AD1981_HP }, /* HP nx9420 AngelFire */
Takashi Iwai18a815d2006-03-01 19:54:39 +01001333 { .modelname = "basic", .config = AD1981_BASIC },
1334 {}
1335};
1336
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001337static int patch_ad1981(struct hda_codec *codec)
1338{
1339 struct ad198x_spec *spec;
Takashi Iwai18a815d2006-03-01 19:54:39 +01001340 int board_config;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001341
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001342 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001343 if (spec == NULL)
1344 return -ENOMEM;
1345
Ingo Molnar62932df2006-01-16 16:34:20 +01001346 mutex_init(&spec->amp_mutex);
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001347 codec->spec = spec;
1348
1349 spec->multiout.max_channels = 2;
1350 spec->multiout.num_dacs = ARRAY_SIZE(ad1981_dac_nids);
1351 spec->multiout.dac_nids = ad1981_dac_nids;
1352 spec->multiout.dig_out_nid = AD1981_SPDIF_OUT;
Takashi Iwai985be542005-11-02 18:26:49 +01001353 spec->num_adc_nids = 1;
1354 spec->adc_nids = ad1981_adc_nids;
Takashi Iwai18a815d2006-03-01 19:54:39 +01001355 spec->capsrc_nids = ad1981_capsrc_nids;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001356 spec->input_mux = &ad1981_capture_source;
Takashi Iwai985be542005-11-02 18:26:49 +01001357 spec->num_mixers = 1;
1358 spec->mixers[0] = ad1981_mixers;
1359 spec->num_init_verbs = 1;
1360 spec->init_verbs[0] = ad1981_init_verbs;
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001361 spec->spdif_route = 0;
1362
1363 codec->patch_ops = ad198x_patch_ops;
1364
Takashi Iwai18a815d2006-03-01 19:54:39 +01001365 /* override some parameters */
1366 board_config = snd_hda_check_board_config(codec, ad1981_cfg_tbl);
1367 switch (board_config) {
1368 case AD1981_HP:
1369 spec->mixers[0] = ad1981_hp_mixers;
1370 spec->num_init_verbs = 2;
1371 spec->init_verbs[1] = ad1981_hp_init_verbs;
1372 spec->multiout.dig_out_nid = 0;
1373 spec->input_mux = &ad1981_hp_capture_source;
1374
1375 codec->patch_ops.init = ad1981_hp_init;
1376 codec->patch_ops.unsol_event = ad1981_hp_unsol_event;
1377 break;
1378 }
1379
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02001380 return 0;
1381}
1382
1383
1384/*
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001385 * AD1988
1386 *
1387 * Output pins and routes
1388 *
Takashi Iwaid32410b12005-11-24 16:06:23 +01001389 * Pin Mix Sel DAC (*)
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001390 * port-A 0x11 (mute/hp) <- 0x22 <- 0x37 <- 03/04/06
1391 * port-B 0x14 (mute/hp) <- 0x2b <- 0x30 <- 03/04/06
1392 * port-C 0x15 (mute) <- 0x2c <- 0x31 <- 05/0a
1393 * port-D 0x12 (mute/hp) <- 0x29 <- 04
1394 * port-E 0x17 (mute/hp) <- 0x26 <- 0x32 <- 05/0a
1395 * port-F 0x16 (mute) <- 0x2a <- 06
1396 * port-G 0x24 (mute) <- 0x27 <- 05
1397 * port-H 0x25 (mute) <- 0x28 <- 0a
1398 * mono 0x13 (mute/amp)<- 0x1e <- 0x36 <- 03/04/06
1399 *
Takashi Iwaid32410b12005-11-24 16:06:23 +01001400 * DAC0 = 03h, DAC1 = 04h, DAC2 = 05h, DAC3 = 06h, DAC4 = 0ah
1401 * (*) 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 +01001402 *
1403 * Input pins and routes
1404 *
1405 * pin boost mix input # / adc input #
1406 * port-A 0x11 -> 0x38 -> mix 2, ADC 0
1407 * port-B 0x14 -> 0x39 -> mix 0, ADC 1
1408 * port-C 0x15 -> 0x3a -> 33:0 - mix 1, ADC 2
1409 * port-D 0x12 -> 0x3d -> mix 3, ADC 8
1410 * port-E 0x17 -> 0x3c -> 34:0 - mix 4, ADC 4
1411 * port-F 0x16 -> 0x3b -> mix 5, ADC 3
1412 * port-G 0x24 -> N/A -> 33:1 - mix 1, 34:1 - mix 4, ADC 6
1413 * port-H 0x25 -> N/A -> 33:2 - mix 1, 34:2 - mix 4, ADC 7
1414 *
1415 *
1416 * DAC assignment
Takashi Iwaid32410b12005-11-24 16:06:23 +01001417 * 6stack - front/surr/CLFE/side/opt DACs - 04/06/05/0a/03
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001418 * 3stack - front/surr/CLFE/opt DACs - 04/05/0a/03
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001419 *
1420 * Inputs of Analog Mix (0x20)
1421 * 0:Port-B (front mic)
1422 * 1:Port-C/G/H (line-in)
1423 * 2:Port-A
1424 * 3:Port-D (line-in/2)
1425 * 4:Port-E/G/H (mic-in)
1426 * 5:Port-F (mic2-in)
1427 * 6:CD
1428 * 7:Beep
1429 *
1430 * ADC selection
1431 * 0:Port-A
1432 * 1:Port-B (front mic-in)
1433 * 2:Port-C (line-in)
1434 * 3:Port-F (mic2-in)
1435 * 4:Port-E (mic-in)
1436 * 5:CD
1437 * 6:Port-G
1438 * 7:Port-H
1439 * 8:Port-D (line-in/2)
1440 * 9:Mix
1441 *
1442 * Proposed pin assignments by the datasheet
1443 *
1444 * 6-stack
1445 * Port-A front headphone
1446 * B front mic-in
1447 * C rear line-in
1448 * D rear front-out
1449 * E rear mic-in
1450 * F rear surround
1451 * G rear CLFE
1452 * H rear side
1453 *
1454 * 3-stack
1455 * Port-A front headphone
1456 * B front mic
1457 * C rear line-in/surround
1458 * D rear front-out
1459 * E rear mic-in/CLFE
1460 *
1461 * laptop
1462 * Port-A headphone
1463 * B mic-in
1464 * C docking station
1465 * D internal speaker (with EAPD)
1466 * E/F quad mic array
1467 */
1468
1469
1470/* models */
1471enum {
1472 AD1988_6STACK,
1473 AD1988_6STACK_DIG,
1474 AD1988_3STACK,
1475 AD1988_3STACK_DIG,
1476 AD1988_LAPTOP,
1477 AD1988_LAPTOP_DIG,
Takashi Iwaid32410b12005-11-24 16:06:23 +01001478 AD1988_AUTO,
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001479 AD1988_MODEL_LAST,
1480};
1481
Takashi Iwaid32410b12005-11-24 16:06:23 +01001482/* reivision id to check workarounds */
1483#define AD1988A_REV2 0x100200
1484
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001485
1486/*
1487 * mixers
1488 */
1489
Takashi Iwaid32410b12005-11-24 16:06:23 +01001490static hda_nid_t ad1988_6stack_dac_nids[4] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001491 0x04, 0x06, 0x05, 0x0a
1492};
1493
Takashi Iwaid32410b12005-11-24 16:06:23 +01001494static hda_nid_t ad1988_3stack_dac_nids[3] = {
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001495 0x04, 0x05, 0x0a
Takashi Iwaid32410b12005-11-24 16:06:23 +01001496};
1497
1498/* for AD1988A revision-2, DAC2-4 are swapped */
1499static hda_nid_t ad1988_6stack_dac_nids_rev2[4] = {
1500 0x04, 0x05, 0x0a, 0x06
1501};
1502
1503static hda_nid_t ad1988_3stack_dac_nids_rev2[3] = {
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001504 0x04, 0x0a, 0x06
Takashi Iwaid32410b12005-11-24 16:06:23 +01001505};
1506
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001507static hda_nid_t ad1988_adc_nids[3] = {
1508 0x08, 0x09, 0x0f
1509};
1510
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001511static hda_nid_t ad1988_capsrc_nids[3] = {
1512 0x0c, 0x0d, 0x0e
1513};
1514
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001515#define AD1988_SPDIF_OUT 0x02
1516#define AD1988_SPDIF_IN 0x07
1517
1518static struct hda_input_mux ad1988_6stack_capture_source = {
1519 .num_items = 5,
1520 .items = {
1521 { "Front Mic", 0x0 },
1522 { "Line", 0x1 },
1523 { "Mic", 0x4 },
1524 { "CD", 0x5 },
1525 { "Mix", 0x9 },
1526 },
1527};
1528
1529static struct hda_input_mux ad1988_laptop_capture_source = {
1530 .num_items = 3,
1531 .items = {
1532 { "Mic/Line", 0x0 },
1533 { "CD", 0x5 },
1534 { "Mix", 0x9 },
1535 },
1536};
1537
1538/*
1539 */
1540static int ad198x_ch_mode_info(struct snd_kcontrol *kcontrol,
1541 struct snd_ctl_elem_info *uinfo)
1542{
1543 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1544 struct ad198x_spec *spec = codec->spec;
1545 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
1546 spec->num_channel_mode);
1547}
1548
1549static int ad198x_ch_mode_get(struct snd_kcontrol *kcontrol,
1550 struct snd_ctl_elem_value *ucontrol)
1551{
1552 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1553 struct ad198x_spec *spec = codec->spec;
1554 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
1555 spec->num_channel_mode, spec->multiout.max_channels);
1556}
1557
1558static int ad198x_ch_mode_put(struct snd_kcontrol *kcontrol,
1559 struct snd_ctl_elem_value *ucontrol)
1560{
1561 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1562 struct ad198x_spec *spec = codec->spec;
Takashi Iwai2125cad2006-03-27 12:52:22 +02001563 if (spec->need_dac_fix)
1564 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001565 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
1566 spec->num_channel_mode, &spec->multiout.max_channels);
1567}
1568
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001569/* 6-stack mode */
Takashi Iwaid32410b12005-11-24 16:06:23 +01001570static struct snd_kcontrol_new ad1988_6stack_mixers1[] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001571 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1572 HDA_CODEC_VOLUME("Surround Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1573 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1574 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
1575 HDA_CODEC_VOLUME("Side Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
Takashi Iwaid32410b12005-11-24 16:06:23 +01001576};
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001577
Takashi Iwaid32410b12005-11-24 16:06:23 +01001578static struct snd_kcontrol_new ad1988_6stack_mixers1_rev2[] = {
1579 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1580 HDA_CODEC_VOLUME("Surround Playback Volume", 0x05, 0x0, HDA_OUTPUT),
1581 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
1582 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0a, 2, 0x0, HDA_OUTPUT),
1583 HDA_CODEC_VOLUME("Side Playback Volume", 0x06, 0x0, HDA_OUTPUT),
1584};
1585
1586static struct snd_kcontrol_new ad1988_6stack_mixers2[] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001587 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
1588 HDA_BIND_MUTE("Surround Playback Switch", 0x2a, 2, HDA_INPUT),
1589 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x27, 1, 2, HDA_INPUT),
1590 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x27, 2, 2, HDA_INPUT),
1591 HDA_BIND_MUTE("Side Playback Switch", 0x28, 2, HDA_INPUT),
1592 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1593 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1594
1595 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1596 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1597 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1598 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1599 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1600 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1601 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1602 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1603
1604 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1605 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1606
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001607 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001608 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1609
1610 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1611 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1612
1613 { } /* end */
1614};
1615
1616/* 3-stack mode */
Takashi Iwaid32410b12005-11-24 16:06:23 +01001617static struct snd_kcontrol_new ad1988_3stack_mixers1[] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001618 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
Takashi Iwaid32410b12005-11-24 16:06:23 +01001619 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001620 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x05, 1, 0x0, HDA_OUTPUT),
1621 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x05, 2, 0x0, HDA_OUTPUT),
Takashi Iwaid32410b12005-11-24 16:06:23 +01001622};
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001623
Takashi Iwaid32410b12005-11-24 16:06:23 +01001624static struct snd_kcontrol_new ad1988_3stack_mixers1_rev2[] = {
1625 HDA_CODEC_VOLUME("Front Playback Volume", 0x04, 0x0, HDA_OUTPUT),
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001626 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0a, 0x0, HDA_OUTPUT),
1627 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x06, 1, 0x0, HDA_OUTPUT),
1628 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x06, 2, 0x0, HDA_OUTPUT),
Takashi Iwaid32410b12005-11-24 16:06:23 +01001629};
1630
1631static struct snd_kcontrol_new ad1988_3stack_mixers2[] = {
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001632 HDA_BIND_MUTE("Front Playback Switch", 0x29, 2, HDA_INPUT),
Takashi Iwaid32410b12005-11-24 16:06:23 +01001633 HDA_BIND_MUTE("Surround Playback Switch", 0x2c, 2, HDA_INPUT),
1634 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x26, 1, 2, HDA_INPUT),
1635 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x26, 2, 2, HDA_INPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001636 HDA_BIND_MUTE("Headphone Playback Switch", 0x22, 2, HDA_INPUT),
1637 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1638
1639 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1640 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1641 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1642 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1643 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1644 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1645 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x4, HDA_INPUT),
1646 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x4, HDA_INPUT),
1647
1648 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1649 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1650
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001651 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001652 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1653
1654 HDA_CODEC_VOLUME("Front Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1655 HDA_CODEC_VOLUME("Mic Boost", 0x3c, 0x0, HDA_OUTPUT),
1656 {
1657 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1658 .name = "Channel Mode",
1659 .info = ad198x_ch_mode_info,
1660 .get = ad198x_ch_mode_get,
1661 .put = ad198x_ch_mode_put,
1662 },
1663
1664 { } /* end */
1665};
1666
1667/* laptop mode */
1668static struct snd_kcontrol_new ad1988_laptop_mixers[] = {
1669 HDA_CODEC_VOLUME("PCM Playback Volume", 0x04, 0x0, HDA_OUTPUT),
1670 HDA_CODEC_MUTE("PCM Playback Switch", 0x29, 0x0, HDA_INPUT),
1671 HDA_BIND_MUTE("Mono Playback Switch", 0x1e, 2, HDA_INPUT),
1672
1673 HDA_CODEC_VOLUME("CD Playback Volume", 0x20, 0x6, HDA_INPUT),
1674 HDA_CODEC_MUTE("CD Playback Switch", 0x20, 0x6, HDA_INPUT),
1675 HDA_CODEC_VOLUME("Mic Playback Volume", 0x20, 0x0, HDA_INPUT),
1676 HDA_CODEC_MUTE("Mic Playback Switch", 0x20, 0x0, HDA_INPUT),
1677 HDA_CODEC_VOLUME("Line Playback Volume", 0x20, 0x1, HDA_INPUT),
1678 HDA_CODEC_MUTE("Line Playback Switch", 0x20, 0x1, HDA_INPUT),
1679
1680 HDA_CODEC_VOLUME("Beep Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1681 HDA_CODEC_MUTE("Beep Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1682
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001683 HDA_CODEC_VOLUME("Analog Mix Playback Volume", 0x21, 0x0, HDA_OUTPUT),
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001684 HDA_CODEC_MUTE("Analog Mix Playback Switch", 0x21, 0x0, HDA_OUTPUT),
1685
1686 HDA_CODEC_VOLUME("Mic Boost", 0x39, 0x0, HDA_OUTPUT),
1687
1688 {
1689 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1690 .name = "External Amplifier",
Takashi Iwai18a815d2006-03-01 19:54:39 +01001691 .info = ad198x_eapd_info,
1692 .get = ad198x_eapd_get,
1693 .put = ad198x_eapd_put,
1694 .private_value = 0x12 | (1 << 8), /* port-D, inversed */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001695 },
1696
1697 { } /* end */
1698};
1699
1700/* capture */
1701static struct snd_kcontrol_new ad1988_capture_mixers[] = {
1702 HDA_CODEC_VOLUME("Capture Volume", 0x0c, 0x0, HDA_OUTPUT),
1703 HDA_CODEC_MUTE("Capture Switch", 0x0c, 0x0, HDA_OUTPUT),
1704 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x0d, 0x0, HDA_OUTPUT),
1705 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x0d, 0x0, HDA_OUTPUT),
1706 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x0e, 0x0, HDA_OUTPUT),
1707 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x0e, 0x0, HDA_OUTPUT),
1708 {
1709 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1710 /* The multiple "Capture Source" controls confuse alsamixer
1711 * So call somewhat different..
1712 * FIXME: the controls appear in the "playback" view!
1713 */
1714 /* .name = "Capture Source", */
1715 .name = "Input Source",
1716 .count = 3,
1717 .info = ad198x_mux_enum_info,
1718 .get = ad198x_mux_enum_get,
1719 .put = ad198x_mux_enum_put,
1720 },
1721 { } /* end */
1722};
1723
1724static int ad1988_spdif_playback_source_info(struct snd_kcontrol *kcontrol,
1725 struct snd_ctl_elem_info *uinfo)
1726{
1727 static char *texts[] = {
1728 "PCM", "ADC1", "ADC2", "ADC3"
1729 };
1730 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1731 uinfo->count = 1;
1732 uinfo->value.enumerated.items = 4;
1733 if (uinfo->value.enumerated.item >= 4)
1734 uinfo->value.enumerated.item = 3;
1735 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1736 return 0;
1737}
1738
1739static int ad1988_spdif_playback_source_get(struct snd_kcontrol *kcontrol,
1740 struct snd_ctl_elem_value *ucontrol)
1741{
1742 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1743 unsigned int sel;
1744
1745 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1746 if (sel > 0) {
1747 sel = snd_hda_codec_read(codec, 0x0b, 0, AC_VERB_GET_CONNECT_SEL, 0);
1748 if (sel <= 3)
1749 sel++;
1750 else
1751 sel = 0;
1752 }
1753 ucontrol->value.enumerated.item[0] = sel;
1754 return 0;
1755}
1756
1757static int ad1988_spdif_playback_source_put(struct snd_kcontrol *kcontrol,
1758 struct snd_ctl_elem_value *ucontrol)
1759{
1760 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1761 unsigned int sel;
1762 int change;
1763
1764 sel = snd_hda_codec_read(codec, 0x02, 0, AC_VERB_GET_CONNECT_SEL, 0);
1765 if (! ucontrol->value.enumerated.item[0]) {
1766 change = sel != 0;
1767 if (change)
1768 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL, 0);
1769 } else {
1770 change = sel == 0;
1771 if (change)
1772 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL, 1);
1773 sel = snd_hda_codec_read(codec, 0x0b, 0, AC_VERB_GET_CONNECT_SEL, 0) + 1;
1774 change |= sel == ucontrol->value.enumerated.item[0];
1775 if (change)
1776 snd_hda_codec_write(codec, 0x02, 0, AC_VERB_SET_CONNECT_SEL,
1777 ucontrol->value.enumerated.item[0] - 1);
1778 }
1779 return change;
1780}
1781
1782static struct snd_kcontrol_new ad1988_spdif_out_mixers[] = {
1783 HDA_CODEC_VOLUME("IEC958 Playback Volume", 0x1b, 0x0, HDA_OUTPUT),
1784 {
1785 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1786 .name = "IEC958 Playback Source",
1787 .info = ad1988_spdif_playback_source_info,
1788 .get = ad1988_spdif_playback_source_get,
1789 .put = ad1988_spdif_playback_source_put,
1790 },
1791 { } /* end */
1792};
1793
1794static struct snd_kcontrol_new ad1988_spdif_in_mixers[] = {
1795 HDA_CODEC_VOLUME("IEC958 Capture Volume", 0x1c, 0x0, HDA_INPUT),
1796 { } /* end */
1797};
1798
1799
1800/*
1801 * initialization verbs
1802 */
1803
1804/*
1805 * for 6-stack (+dig)
1806 */
1807static struct hda_verb ad1988_6stack_init_verbs[] = {
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001808 /* Front, Surround, CLFE, side DAC; unmute as default */
1809 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1810 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1811 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1812 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001813 /* Port-A front headphon path */
1814 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
1815 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1816 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1817 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1818 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1819 /* Port-D line-out path */
1820 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1821 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1822 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1823 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1824 /* Port-F surround path */
1825 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1826 {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1827 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1828 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1829 /* Port-G CLFE path */
1830 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1831 {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1832 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1833 {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1834 /* Port-H side path */
1835 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1836 {0x28, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1837 {0x25, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1838 {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1839 /* Mono out path */
1840 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
1841 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1842 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1843 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1844 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
1845 /* Port-B front mic-in path */
1846 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1847 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1848 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1849 /* Port-C line-in path */
1850 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1851 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1852 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1853 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
1854 /* Port-E mic-in path */
1855 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1856 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1857 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1858 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
1859
1860 { }
1861};
1862
1863static struct hda_verb ad1988_capture_init_verbs[] = {
1864 /* mute analog mix */
1865 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1866 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1867 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1868 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1869 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1870 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
1871 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1872 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1873 /* select ADCs - front-mic */
1874 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
1875 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
1876 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
1877 /* ADCs; muted */
1878 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1879 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1880 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1881
1882 { }
1883};
1884
1885static struct hda_verb ad1988_spdif_init_verbs[] = {
1886 /* SPDIF out sel */
1887 {0x02, AC_VERB_SET_CONNECT_SEL, 0x0}, /* PCM */
1888 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x0}, /* ADC1 */
1889 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1890 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1891 /* SPDIF out pin */
1892 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x27}, /* 0dB */
1893 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x17}, /* 0dB */
1894
1895 { }
1896};
1897
1898/*
1899 * verbs for 3stack (+dig)
1900 */
1901static struct hda_verb ad1988_3stack_ch2_init[] = {
1902 /* set port-C to line-in */
1903 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1904 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1905 /* set port-E to mic-in */
1906 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1907 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1908 { } /* end */
1909};
1910
1911static struct hda_verb ad1988_3stack_ch6_init[] = {
1912 /* set port-C to surround out */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001913 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Takashi Iwaid32410b12005-11-24 16:06:23 +01001914 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001915 /* set port-E to CLFE out */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001916 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Takashi Iwaid32410b12005-11-24 16:06:23 +01001917 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001918 { } /* end */
1919};
1920
1921static struct hda_channel_mode ad1988_3stack_modes[2] = {
1922 { 2, ad1988_3stack_ch2_init },
1923 { 6, ad1988_3stack_ch6_init },
1924};
1925
1926static struct hda_verb ad1988_3stack_init_verbs[] = {
Takashi Iwai2e5b9562005-11-21 16:36:15 +01001927 /* Front, Surround, CLFE, side DAC; unmute as default */
1928 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1929 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1930 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1931 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001932 /* Port-A front headphon path */
1933 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
1934 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1935 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1936 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1937 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1938 /* Port-D line-out path */
1939 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1940 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1941 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1942 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1943 /* Mono out path */
1944 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
1945 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1946 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1947 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1948 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
1949 /* Port-B front mic-in path */
1950 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1951 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1952 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Takashi Iwaid32410b12005-11-24 16:06:23 +01001953 /* Port-C line-in/surround path - 6ch mode as default */
1954 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1955 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001956 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Takashi Iwaid32410b12005-11-24 16:06:23 +01001957 {0x31, AC_VERB_SET_CONNECT_SEL, 0x0}, /* output sel: DAC 0x05 */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001958 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
Takashi Iwaid32410b12005-11-24 16:06:23 +01001959 /* Port-E mic-in/CLFE path - 6ch mode as default */
1960 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1961 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001962 {0x3c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01001963 {0x32, AC_VERB_SET_CONNECT_SEL, 0x1}, /* output sel: DAC 0x0a */
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01001964 {0x34, AC_VERB_SET_CONNECT_SEL, 0x0},
1965 /* mute analog mix */
1966 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1967 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1968 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1969 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1970 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1971 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
1972 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1973 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1974 /* select ADCs - front-mic */
1975 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
1976 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
1977 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
1978 /* ADCs; muted */
1979 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1980 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1981 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1982 { }
1983};
1984
1985/*
1986 * verbs for laptop mode (+dig)
1987 */
1988static struct hda_verb ad1988_laptop_hp_on[] = {
1989 /* unmute port-A and mute port-D */
1990 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1991 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1992 { } /* end */
1993};
1994static struct hda_verb ad1988_laptop_hp_off[] = {
1995 /* mute port-A and unmute port-D */
1996 { 0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1997 { 0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1998 { } /* end */
1999};
2000
2001#define AD1988_HP_EVENT 0x01
2002
2003static struct hda_verb ad1988_laptop_init_verbs[] = {
Takashi Iwai2e5b9562005-11-21 16:36:15 +01002004 /* Front, Surround, CLFE, side DAC; unmute as default */
2005 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2006 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2007 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2008 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002009 /* Port-A front headphon path */
2010 {0x37, AC_VERB_SET_CONNECT_SEL, 0x01}, /* DAC1:04h */
2011 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2012 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2013 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2014 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2015 /* unsolicited event for pin-sense */
2016 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1988_HP_EVENT },
2017 /* Port-D line-out path + EAPD */
2018 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2019 {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2020 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2021 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2022 {0x12, AC_VERB_SET_EAPD_BTLENABLE, 0x00}, /* EAPD-off */
2023 /* Mono out path */
2024 {0x36, AC_VERB_SET_CONNECT_SEL, 0x1}, /* DAC1:04h */
2025 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2026 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2027 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2028 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, 0xb01f}, /* unmute, 0dB */
2029 /* Port-B mic-in path */
2030 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2031 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2032 {0x39, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2033 /* Port-C docking station - try to output */
2034 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2035 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2036 {0x3a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2037 {0x33, AC_VERB_SET_CONNECT_SEL, 0x0},
2038 /* mute analog mix */
2039 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2040 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2041 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2042 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2043 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2044 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
2045 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2046 {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2047 /* select ADCs - mic */
2048 {0x0c, AC_VERB_SET_CONNECT_SEL, 0x1},
2049 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x1},
2050 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x1},
2051 /* ADCs; muted */
2052 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2053 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2054 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2055 { }
2056};
2057
2058static void ad1988_laptop_unsol_event(struct hda_codec *codec, unsigned int res)
2059{
2060 if ((res >> 26) != AD1988_HP_EVENT)
2061 return;
2062 if (snd_hda_codec_read(codec, 0x11, 0, AC_VERB_GET_PIN_SENSE, 0) & (1 << 31))
2063 snd_hda_sequence_write(codec, ad1988_laptop_hp_on);
2064 else
2065 snd_hda_sequence_write(codec, ad1988_laptop_hp_off);
2066}
2067
2068
2069/*
Takashi Iwaid32410b12005-11-24 16:06:23 +01002070 * Automatic parse of I/O pins from the BIOS configuration
2071 */
2072
2073#define NUM_CONTROL_ALLOC 32
2074#define NUM_VERB_ALLOC 32
2075
2076enum {
2077 AD_CTL_WIDGET_VOL,
2078 AD_CTL_WIDGET_MUTE,
2079 AD_CTL_BIND_MUTE,
2080};
2081static struct snd_kcontrol_new ad1988_control_templates[] = {
2082 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2083 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2084 HDA_BIND_MUTE(NULL, 0, 0, 0),
2085};
2086
2087/* add dynamic controls */
2088static int add_control(struct ad198x_spec *spec, int type, const char *name,
2089 unsigned long val)
2090{
2091 struct snd_kcontrol_new *knew;
2092
2093 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2094 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2095
2096 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL); /* array + terminator */
2097 if (! knew)
2098 return -ENOMEM;
2099 if (spec->kctl_alloc) {
2100 memcpy(knew, spec->kctl_alloc, sizeof(*knew) * spec->num_kctl_alloc);
2101 kfree(spec->kctl_alloc);
2102 }
2103 spec->kctl_alloc = knew;
2104 spec->num_kctl_alloc = num;
2105 }
2106
2107 knew = &spec->kctl_alloc[spec->num_kctl_used];
2108 *knew = ad1988_control_templates[type];
2109 knew->name = kstrdup(name, GFP_KERNEL);
2110 if (! knew->name)
2111 return -ENOMEM;
2112 knew->private_value = val;
2113 spec->num_kctl_used++;
2114 return 0;
2115}
2116
2117#define AD1988_PIN_CD_NID 0x18
2118#define AD1988_PIN_BEEP_NID 0x10
2119
2120static hda_nid_t ad1988_mixer_nids[8] = {
2121 /* A B C D E F G H */
2122 0x22, 0x2b, 0x2c, 0x29, 0x26, 0x2a, 0x27, 0x28
2123};
2124
2125static inline hda_nid_t ad1988_idx_to_dac(struct hda_codec *codec, int idx)
2126{
2127 static hda_nid_t idx_to_dac[8] = {
2128 /* A B C D E F G H */
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002129 0x04, 0x06, 0x05, 0x04, 0x0a, 0x06, 0x05, 0x0a
Takashi Iwaid32410b12005-11-24 16:06:23 +01002130 };
2131 static hda_nid_t idx_to_dac_rev2[8] = {
2132 /* A B C D E F G H */
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002133 0x04, 0x05, 0x0a, 0x04, 0x06, 0x05, 0x0a, 0x06
Takashi Iwaid32410b12005-11-24 16:06:23 +01002134 };
2135 if (codec->revision_id == AD1988A_REV2)
2136 return idx_to_dac_rev2[idx];
2137 else
2138 return idx_to_dac[idx];
2139}
2140
2141static hda_nid_t ad1988_boost_nids[8] = {
2142 0x38, 0x39, 0x3a, 0x3d, 0x3c, 0x3b, 0, 0
2143};
2144
2145static int ad1988_pin_idx(hda_nid_t nid)
2146{
2147 static hda_nid_t ad1988_io_pins[8] = {
2148 0x11, 0x14, 0x15, 0x12, 0x17, 0x16, 0x24, 0x25
2149 };
2150 int i;
2151 for (i = 0; i < ARRAY_SIZE(ad1988_io_pins); i++)
2152 if (ad1988_io_pins[i] == nid)
2153 return i;
2154 return 0; /* should be -1 */
2155}
2156
2157static int ad1988_pin_to_loopback_idx(hda_nid_t nid)
2158{
2159 static int loopback_idx[8] = {
2160 2, 0, 1, 3, 4, 5, 1, 4
2161 };
2162 switch (nid) {
2163 case AD1988_PIN_CD_NID:
2164 return 6;
2165 default:
2166 return loopback_idx[ad1988_pin_idx(nid)];
2167 }
2168}
2169
2170static int ad1988_pin_to_adc_idx(hda_nid_t nid)
2171{
2172 static int adc_idx[8] = {
2173 0, 1, 2, 8, 4, 3, 6, 7
2174 };
2175 switch (nid) {
2176 case AD1988_PIN_CD_NID:
2177 return 5;
2178 default:
2179 return adc_idx[ad1988_pin_idx(nid)];
2180 }
2181}
2182
2183/* fill in the dac_nids table from the parsed pin configuration */
2184static int ad1988_auto_fill_dac_nids(struct hda_codec *codec,
2185 const struct auto_pin_cfg *cfg)
2186{
2187 struct ad198x_spec *spec = codec->spec;
2188 int i, idx;
2189
2190 spec->multiout.dac_nids = spec->private_dac_nids;
2191
2192 /* check the pins hardwired to audio widget */
2193 for (i = 0; i < cfg->line_outs; i++) {
2194 idx = ad1988_pin_idx(cfg->line_out_pins[i]);
2195 spec->multiout.dac_nids[i] = ad1988_idx_to_dac(codec, idx);
2196 }
2197 spec->multiout.num_dacs = cfg->line_outs;
2198 return 0;
2199}
2200
2201/* add playback controls from the parsed DAC table */
2202static int ad1988_auto_create_multi_out_ctls(struct ad198x_spec *spec,
2203 const struct auto_pin_cfg *cfg)
2204{
2205 char name[32];
2206 static const char *chname[4] = { "Front", "Surround", NULL /*CLFE*/, "Side" };
2207 hda_nid_t nid;
2208 int i, err;
2209
2210 for (i = 0; i < cfg->line_outs; i++) {
2211 hda_nid_t dac = spec->multiout.dac_nids[i];
2212 if (! dac)
2213 continue;
2214 nid = ad1988_mixer_nids[ad1988_pin_idx(cfg->line_out_pins[i])];
2215 if (i == 2) {
2216 /* Center/LFE */
2217 err = add_control(spec, AD_CTL_WIDGET_VOL,
2218 "Center Playback Volume",
2219 HDA_COMPOSE_AMP_VAL(dac, 1, 0, HDA_OUTPUT));
2220 if (err < 0)
2221 return err;
2222 err = add_control(spec, AD_CTL_WIDGET_VOL,
2223 "LFE Playback Volume",
2224 HDA_COMPOSE_AMP_VAL(dac, 2, 0, HDA_OUTPUT));
2225 if (err < 0)
2226 return err;
2227 err = add_control(spec, AD_CTL_BIND_MUTE,
2228 "Center Playback Switch",
2229 HDA_COMPOSE_AMP_VAL(nid, 1, 2, HDA_INPUT));
2230 if (err < 0)
2231 return err;
2232 err = add_control(spec, AD_CTL_BIND_MUTE,
2233 "LFE Playback Switch",
2234 HDA_COMPOSE_AMP_VAL(nid, 2, 2, HDA_INPUT));
2235 if (err < 0)
2236 return err;
2237 } else {
2238 sprintf(name, "%s Playback Volume", chname[i]);
2239 err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2240 HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT));
2241 if (err < 0)
2242 return err;
2243 sprintf(name, "%s Playback Switch", chname[i]);
2244 err = add_control(spec, AD_CTL_BIND_MUTE, name,
2245 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
2246 if (err < 0)
2247 return err;
2248 }
2249 }
2250 return 0;
2251}
2252
2253/* add playback controls for speaker and HP outputs */
2254static int ad1988_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
2255 const char *pfx)
2256{
2257 struct ad198x_spec *spec = codec->spec;
2258 hda_nid_t nid;
2259 int idx, err;
2260 char name[32];
2261
2262 if (! pin)
2263 return 0;
2264
2265 idx = ad1988_pin_idx(pin);
2266 nid = ad1988_idx_to_dac(codec, idx);
Takashi Iwai82bc9552006-03-21 11:24:42 +01002267 /* specify the DAC as the extra output */
2268 if (! spec->multiout.hp_nid)
Takashi Iwaid32410b12005-11-24 16:06:23 +01002269 spec->multiout.hp_nid = nid;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002270 else
2271 spec->multiout.extra_out_nid[0] = nid;
Takashi Iwaid32410b12005-11-24 16:06:23 +01002272 /* control HP volume/switch on the output mixer amp */
2273 sprintf(name, "%s Playback Volume", pfx);
2274 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2275 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT))) < 0)
2276 return err;
2277 nid = ad1988_mixer_nids[idx];
2278 sprintf(name, "%s Playback Switch", pfx);
2279 if ((err = add_control(spec, AD_CTL_BIND_MUTE, name,
2280 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT))) < 0)
2281 return err;
2282 return 0;
2283}
2284
2285/* create input playback/capture controls for the given pin */
2286static int new_analog_input(struct ad198x_spec *spec, hda_nid_t pin,
2287 const char *ctlname, int boost)
2288{
2289 char name[32];
2290 int err, idx;
2291
2292 sprintf(name, "%s Playback Volume", ctlname);
2293 idx = ad1988_pin_to_loopback_idx(pin);
2294 if ((err = add_control(spec, AD_CTL_WIDGET_VOL, name,
2295 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2296 return err;
2297 sprintf(name, "%s Playback Switch", ctlname);
2298 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE, name,
2299 HDA_COMPOSE_AMP_VAL(0x20, 3, idx, HDA_INPUT))) < 0)
2300 return err;
2301 if (boost) {
2302 hda_nid_t bnid;
2303 idx = ad1988_pin_idx(pin);
2304 bnid = ad1988_boost_nids[idx];
2305 if (bnid) {
2306 sprintf(name, "%s Boost", ctlname);
2307 return add_control(spec, AD_CTL_WIDGET_VOL, name,
2308 HDA_COMPOSE_AMP_VAL(bnid, 3, idx, HDA_OUTPUT));
2309
2310 }
2311 }
2312 return 0;
2313}
2314
2315/* create playback/capture controls for input pins */
2316static int ad1988_auto_create_analog_input_ctls(struct ad198x_spec *spec,
2317 const struct auto_pin_cfg *cfg)
2318{
Takashi Iwaid32410b12005-11-24 16:06:23 +01002319 struct hda_input_mux *imux = &spec->private_imux;
2320 int i, err;
2321
2322 for (i = 0; i < AUTO_PIN_LAST; i++) {
Takashi Iwai4a471b72005-12-07 13:56:29 +01002323 err = new_analog_input(spec, cfg->input_pins[i],
2324 auto_pin_cfg_labels[i],
Takashi Iwaid32410b12005-11-24 16:06:23 +01002325 i <= AUTO_PIN_FRONT_MIC);
2326 if (err < 0)
2327 return err;
Takashi Iwai4a471b72005-12-07 13:56:29 +01002328 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
Takashi Iwaid32410b12005-11-24 16:06:23 +01002329 imux->items[imux->num_items].index = ad1988_pin_to_adc_idx(cfg->input_pins[i]);
2330 imux->num_items++;
2331 }
2332 imux->items[imux->num_items].label = "Mix";
2333 imux->items[imux->num_items].index = 9;
2334 imux->num_items++;
2335
2336 if ((err = add_control(spec, AD_CTL_WIDGET_VOL,
2337 "Analog Mix Playback Volume",
2338 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2339 return err;
2340 if ((err = add_control(spec, AD_CTL_WIDGET_MUTE,
2341 "Analog Mix Playback Switch",
2342 HDA_COMPOSE_AMP_VAL(0x21, 3, 0x0, HDA_OUTPUT))) < 0)
2343 return err;
2344
2345 return 0;
2346}
2347
2348static void ad1988_auto_set_output_and_unmute(struct hda_codec *codec,
2349 hda_nid_t nid, int pin_type,
2350 int dac_idx)
2351{
2352 /* set as output */
2353 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
2354 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
2355 switch (nid) {
2356 case 0x11: /* port-A - DAC 04 */
2357 snd_hda_codec_write(codec, 0x37, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2358 break;
2359 case 0x14: /* port-B - DAC 06 */
2360 snd_hda_codec_write(codec, 0x30, 0, AC_VERB_SET_CONNECT_SEL, 0x02);
2361 break;
2362 case 0x15: /* port-C - DAC 05 */
2363 snd_hda_codec_write(codec, 0x31, 0, AC_VERB_SET_CONNECT_SEL, 0x00);
2364 break;
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002365 case 0x17: /* port-E - DAC 0a */
Takashi Iwaid32410b12005-11-24 16:06:23 +01002366 snd_hda_codec_write(codec, 0x32, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2367 break;
2368 case 0x13: /* mono - DAC 04 */
2369 snd_hda_codec_write(codec, 0x36, 0, AC_VERB_SET_CONNECT_SEL, 0x01);
2370 break;
2371 }
2372}
2373
2374static void ad1988_auto_init_multi_out(struct hda_codec *codec)
2375{
2376 struct ad198x_spec *spec = codec->spec;
2377 int i;
2378
2379 for (i = 0; i < spec->autocfg.line_outs; i++) {
2380 hda_nid_t nid = spec->autocfg.line_out_pins[i];
2381 ad1988_auto_set_output_and_unmute(codec, nid, PIN_OUT, i);
2382 }
2383}
2384
2385static void ad1988_auto_init_extra_out(struct hda_codec *codec)
2386{
2387 struct ad198x_spec *spec = codec->spec;
2388 hda_nid_t pin;
2389
Takashi Iwai82bc9552006-03-21 11:24:42 +01002390 pin = spec->autocfg.speaker_pins[0];
Takashi Iwaid32410b12005-11-24 16:06:23 +01002391 if (pin) /* connect to front */
2392 ad1988_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
2393 pin = spec->autocfg.hp_pin;
2394 if (pin) /* connect to front */
2395 ad1988_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
2396}
2397
2398static void ad1988_auto_init_analog_input(struct hda_codec *codec)
2399{
2400 struct ad198x_spec *spec = codec->spec;
2401 int i, idx;
2402
2403 for (i = 0; i < AUTO_PIN_LAST; i++) {
2404 hda_nid_t nid = spec->autocfg.input_pins[i];
2405 if (! nid)
2406 continue;
2407 switch (nid) {
2408 case 0x15: /* port-C */
2409 snd_hda_codec_write(codec, 0x33, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2410 break;
2411 case 0x17: /* port-E */
2412 snd_hda_codec_write(codec, 0x34, 0, AC_VERB_SET_CONNECT_SEL, 0x0);
2413 break;
2414 }
2415 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2416 i <= AUTO_PIN_FRONT_MIC ? PIN_VREF80 : PIN_IN);
2417 if (nid != AD1988_PIN_CD_NID)
2418 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2419 AMP_OUT_MUTE);
2420 idx = ad1988_pin_idx(nid);
2421 if (ad1988_boost_nids[idx])
2422 snd_hda_codec_write(codec, ad1988_boost_nids[idx], 0,
2423 AC_VERB_SET_AMP_GAIN_MUTE,
2424 AMP_OUT_ZERO);
2425 }
2426}
2427
2428/* parse the BIOS configuration and set up the alc_spec */
2429/* return 1 if successful, 0 if the proper config is not found, or a negative error code */
2430static int ad1988_parse_auto_config(struct hda_codec *codec)
2431{
2432 struct ad198x_spec *spec = codec->spec;
2433 int err;
2434
Kailang Yangdf694da2005-12-05 19:42:22 +01002435 if ((err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL)) < 0)
Takashi Iwaid32410b12005-11-24 16:06:23 +01002436 return err;
2437 if ((err = ad1988_auto_fill_dac_nids(codec, &spec->autocfg)) < 0)
2438 return err;
Takashi Iwai82bc9552006-03-21 11:24:42 +01002439 if (! spec->autocfg.line_outs)
Takashi Iwaid32410b12005-11-24 16:06:23 +01002440 return 0; /* can't find valid BIOS pin config */
2441 if ((err = ad1988_auto_create_multi_out_ctls(spec, &spec->autocfg)) < 0 ||
Takashi Iwai82bc9552006-03-21 11:24:42 +01002442 (err = ad1988_auto_create_extra_out(codec,
2443 spec->autocfg.speaker_pins[0],
Takashi Iwaid32410b12005-11-24 16:06:23 +01002444 "Speaker")) < 0 ||
Takashi Iwai82bc9552006-03-21 11:24:42 +01002445 (err = ad1988_auto_create_extra_out(codec, spec->autocfg.hp_pin,
Takashi Iwaid32410b12005-11-24 16:06:23 +01002446 "Headphone")) < 0 ||
2447 (err = ad1988_auto_create_analog_input_ctls(spec, &spec->autocfg)) < 0)
2448 return err;
2449
2450 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
2451
2452 if (spec->autocfg.dig_out_pin)
2453 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2454 if (spec->autocfg.dig_in_pin)
2455 spec->dig_in_nid = AD1988_SPDIF_IN;
2456
2457 if (spec->kctl_alloc)
2458 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
2459
2460 spec->init_verbs[spec->num_init_verbs++] = ad1988_6stack_init_verbs;
2461
2462 spec->input_mux = &spec->private_imux;
2463
2464 return 1;
2465}
2466
2467/* init callback for auto-configuration model -- overriding the default init */
2468static int ad1988_auto_init(struct hda_codec *codec)
2469{
2470 ad198x_init(codec);
2471 ad1988_auto_init_multi_out(codec);
2472 ad1988_auto_init_extra_out(codec);
2473 ad1988_auto_init_analog_input(codec);
2474 return 0;
2475}
2476
2477
2478/*
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002479 */
2480
2481static struct hda_board_config ad1988_cfg_tbl[] = {
2482 { .modelname = "6stack", .config = AD1988_6STACK },
2483 { .modelname = "6stack-dig", .config = AD1988_6STACK_DIG },
2484 { .modelname = "3stack", .config = AD1988_3STACK },
2485 { .modelname = "3stack-dig", .config = AD1988_3STACK_DIG },
2486 { .modelname = "laptop", .config = AD1988_LAPTOP },
2487 { .modelname = "laptop-dig", .config = AD1988_LAPTOP_DIG },
Takashi Iwaid32410b12005-11-24 16:06:23 +01002488 { .modelname = "auto", .config = AD1988_AUTO },
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002489 {}
2490};
2491
2492static int patch_ad1988(struct hda_codec *codec)
2493{
2494 struct ad198x_spec *spec;
2495 int board_config;
2496
2497 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2498 if (spec == NULL)
2499 return -ENOMEM;
2500
Ingo Molnar62932df2006-01-16 16:34:20 +01002501 mutex_init(&spec->amp_mutex);
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002502 codec->spec = spec;
2503
Takashi Iwaif8c7c7b2005-11-24 16:17:20 +01002504 if (codec->revision_id == AD1988A_REV2)
2505 snd_printk(KERN_INFO "patch_analog: AD1988A rev.2 is detected, enable workarounds\n");
2506
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002507 board_config = snd_hda_check_board_config(codec, ad1988_cfg_tbl);
2508 if (board_config < 0 || board_config >= AD1988_MODEL_LAST) {
Takashi Iwaid32410b12005-11-24 16:06:23 +01002509 printk(KERN_INFO "hda_codec: Unknown model for AD1988, trying auto-probe from BIOS...\n");
2510 board_config = AD1988_AUTO;
2511 }
2512
2513 if (board_config == AD1988_AUTO) {
2514 /* automatic parse from the BIOS config */
2515 int err = ad1988_parse_auto_config(codec);
2516 if (err < 0) {
2517 ad198x_free(codec);
2518 return err;
2519 } else if (! err) {
2520 printk(KERN_INFO "hda_codec: Cannot set up configuration from BIOS. Using 6-stack mode...\n");
2521 board_config = AD1988_6STACK;
2522 }
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002523 }
2524
2525 switch (board_config) {
2526 case AD1988_6STACK:
2527 case AD1988_6STACK_DIG:
2528 spec->multiout.max_channels = 8;
2529 spec->multiout.num_dacs = 4;
Takashi Iwaid32410b12005-11-24 16:06:23 +01002530 if (codec->revision_id == AD1988A_REV2)
2531 spec->multiout.dac_nids = ad1988_6stack_dac_nids_rev2;
2532 else
2533 spec->multiout.dac_nids = ad1988_6stack_dac_nids;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002534 spec->input_mux = &ad1988_6stack_capture_source;
Takashi Iwaid32410b12005-11-24 16:06:23 +01002535 spec->num_mixers = 2;
2536 if (codec->revision_id == AD1988A_REV2)
2537 spec->mixers[0] = ad1988_6stack_mixers1_rev2;
2538 else
2539 spec->mixers[0] = ad1988_6stack_mixers1;
2540 spec->mixers[1] = ad1988_6stack_mixers2;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002541 spec->num_init_verbs = 1;
2542 spec->init_verbs[0] = ad1988_6stack_init_verbs;
2543 if (board_config == AD1988_6STACK_DIG) {
2544 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2545 spec->dig_in_nid = AD1988_SPDIF_IN;
2546 }
2547 break;
2548 case AD1988_3STACK:
2549 case AD1988_3STACK_DIG:
2550 spec->multiout.max_channels = 6;
2551 spec->multiout.num_dacs = 3;
Takashi Iwaid32410b12005-11-24 16:06:23 +01002552 if (codec->revision_id == AD1988A_REV2)
2553 spec->multiout.dac_nids = ad1988_3stack_dac_nids_rev2;
2554 else
2555 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002556 spec->input_mux = &ad1988_6stack_capture_source;
2557 spec->channel_mode = ad1988_3stack_modes;
2558 spec->num_channel_mode = ARRAY_SIZE(ad1988_3stack_modes);
Takashi Iwaid32410b12005-11-24 16:06:23 +01002559 spec->num_mixers = 2;
2560 if (codec->revision_id == AD1988A_REV2)
2561 spec->mixers[0] = ad1988_3stack_mixers1_rev2;
2562 else
2563 spec->mixers[0] = ad1988_3stack_mixers1;
2564 spec->mixers[1] = ad1988_3stack_mixers2;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002565 spec->num_init_verbs = 1;
2566 spec->init_verbs[0] = ad1988_3stack_init_verbs;
2567 if (board_config == AD1988_3STACK_DIG)
2568 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2569 break;
2570 case AD1988_LAPTOP:
2571 case AD1988_LAPTOP_DIG:
2572 spec->multiout.max_channels = 2;
2573 spec->multiout.num_dacs = 1;
Takashi Iwaid32410b12005-11-24 16:06:23 +01002574 spec->multiout.dac_nids = ad1988_3stack_dac_nids;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002575 spec->input_mux = &ad1988_laptop_capture_source;
2576 spec->num_mixers = 1;
2577 spec->mixers[0] = ad1988_laptop_mixers;
2578 spec->num_init_verbs = 1;
2579 spec->init_verbs[0] = ad1988_laptop_init_verbs;
2580 if (board_config == AD1988_LAPTOP_DIG)
2581 spec->multiout.dig_out_nid = AD1988_SPDIF_OUT;
2582 break;
2583 }
2584
Takashi Iwaid32410b12005-11-24 16:06:23 +01002585 spec->num_adc_nids = ARRAY_SIZE(ad1988_adc_nids);
2586 spec->adc_nids = ad1988_adc_nids;
2587 spec->capsrc_nids = ad1988_capsrc_nids;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002588 spec->mixers[spec->num_mixers++] = ad1988_capture_mixers;
2589 spec->init_verbs[spec->num_init_verbs++] = ad1988_capture_init_verbs;
2590 if (spec->multiout.dig_out_nid) {
2591 spec->mixers[spec->num_mixers++] = ad1988_spdif_out_mixers;
2592 spec->init_verbs[spec->num_init_verbs++] = ad1988_spdif_init_verbs;
2593 }
2594 if (spec->dig_in_nid)
2595 spec->mixers[spec->num_mixers++] = ad1988_spdif_in_mixers;
2596
2597 codec->patch_ops = ad198x_patch_ops;
2598 switch (board_config) {
Takashi Iwaid32410b12005-11-24 16:06:23 +01002599 case AD1988_AUTO:
2600 codec->patch_ops.init = ad1988_auto_init;
2601 break;
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002602 case AD1988_LAPTOP:
2603 case AD1988_LAPTOP_DIG:
2604 codec->patch_ops.unsol_event = ad1988_laptop_unsol_event;
2605 break;
2606 }
2607
2608 return 0;
2609}
2610
2611
2612/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 * patch entries
2614 */
2615struct hda_codec_preset snd_hda_preset_analog[] = {
Takashi Iwai4a3fdf32005-04-14 13:35:51 +02002616 { .id = 0x11d41981, .name = "AD1981", .patch = patch_ad1981 },
2617 { .id = 0x11d41983, .name = "AD1983", .patch = patch_ad1983 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 { .id = 0x11d41986, .name = "AD1986A", .patch = patch_ad1986a },
Takashi Iwaifd66e0d2005-11-17 15:31:34 +01002619 { .id = 0x11d41988, .name = "AD1988", .patch = patch_ad1988 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 {} /* terminator */
2621};