2 * HD audio interface patch for AD1986A
4 * Copyright (c) 2005 Takashi Iwai <tiwai@suse.de>
6 * This driver is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This driver is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include <sound/driver.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/slab.h>
25 #include <linux/pci.h>
26 #include <sound/core.h>
27 #include "hda_codec.h"
28 #include "hda_local.h"
31 struct semaphore amp_mutex
; /* PCM volume/mute control mutex */
32 struct hda_multi_out multiout
; /* playback */
33 unsigned int cur_mux
; /* capture source */
34 struct hda_pcm pcm_rec
[2]; /* PCM information */
37 #define AD1986A_SPDIF_OUT 0x02
38 #define AD1986A_FRONT_DAC 0x03
39 #define AD1986A_SURR_DAC 0x04
40 #define AD1986A_CLFE_DAC 0x05
41 #define AD1986A_ADC 0x06
43 static hda_nid_t ad1986a_dac_nids
[3] = {
44 AD1986A_FRONT_DAC
, AD1986A_SURR_DAC
, AD1986A_CLFE_DAC
47 static struct hda_input_mux ad1986a_capture_source
= {
63 * bind volumes/mutes of 3 DACs as a single PCM control for simplicity
66 #define ad1986a_pcm_amp_vol_info snd_hda_mixer_amp_volume_info
68 static int ad1986a_pcm_amp_vol_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
70 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
71 struct ad1986a_spec
*ad
= codec
->spec
;
74 snd_hda_mixer_amp_volume_get(kcontrol
, ucontrol
);
79 static int ad1986a_pcm_amp_vol_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
81 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
82 struct ad1986a_spec
*ad
= codec
->spec
;
86 for (i
= 0; i
< ARRAY_SIZE(ad1986a_dac_nids
); i
++) {
87 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids
[i
], 3, 0, HDA_OUTPUT
);
88 change
|= snd_hda_mixer_amp_volume_put(kcontrol
, ucontrol
);
90 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC
, 3, 0, HDA_OUTPUT
);
95 #define ad1986a_pcm_amp_sw_info snd_hda_mixer_amp_volume_info
97 static int ad1986a_pcm_amp_sw_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
99 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
100 struct ad1986a_spec
*ad
= codec
->spec
;
102 down(&ad
->amp_mutex
);
103 snd_hda_mixer_amp_switch_get(kcontrol
, ucontrol
);
108 static int ad1986a_pcm_amp_sw_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
110 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
111 struct ad1986a_spec
*ad
= codec
->spec
;
114 down(&ad
->amp_mutex
);
115 for (i
= 0; i
< ARRAY_SIZE(ad1986a_dac_nids
); i
++) {
116 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(ad1986a_dac_nids
[i
], 3, 0, HDA_OUTPUT
);
117 change
|= snd_hda_mixer_amp_switch_put(kcontrol
, ucontrol
);
119 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC
, 3, 0, HDA_OUTPUT
);
127 static int ad1986a_mux_enum_info(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
*uinfo
)
129 return snd_hda_input_mux_info(&ad1986a_capture_source
, uinfo
);
132 static int ad1986a_mux_enum_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
134 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
135 struct ad1986a_spec
*spec
= codec
->spec
;
137 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
;
141 static int ad1986a_mux_enum_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
143 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
144 struct ad1986a_spec
*spec
= codec
->spec
;
146 return snd_hda_input_mux_put(codec
, &ad1986a_capture_source
, ucontrol
,
147 AD1986A_ADC
, &spec
->cur_mux
);
153 static snd_kcontrol_new_t ad1986a_mixers
[] = {
155 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
156 .name
= "PCM Playback Volume",
157 .info
= ad1986a_pcm_amp_vol_info
,
158 .get
= ad1986a_pcm_amp_vol_get
,
159 .put
= ad1986a_pcm_amp_vol_put
,
160 .private_value
= HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC
, 3, 0, HDA_OUTPUT
)
163 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
164 .name
= "PCM Playback Switch",
165 .info
= ad1986a_pcm_amp_sw_info
,
166 .get
= ad1986a_pcm_amp_sw_get
,
167 .put
= ad1986a_pcm_amp_sw_put
,
168 .private_value
= HDA_COMPOSE_AMP_VAL(AD1986A_FRONT_DAC
, 3, 0, HDA_OUTPUT
)
170 HDA_CODEC_VOLUME("Front Playback Volume", 0x1b, 0x0, HDA_OUTPUT
),
171 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
172 HDA_CODEC_VOLUME("Surround Playback Volume", 0x1c, 0x0, HDA_OUTPUT
),
173 HDA_CODEC_MUTE("Surround Playback Switch", 0x1c, 0x0, HDA_OUTPUT
),
174 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x1d, 1, 0x0, HDA_OUTPUT
),
175 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x1d, 2, 0x0, HDA_OUTPUT
),
176 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x1d, 1, 0x0, HDA_OUTPUT
),
177 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x1d, 2, 0x0, HDA_OUTPUT
),
178 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x1a, 0x0, HDA_OUTPUT
),
179 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT
),
180 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_OUTPUT
),
181 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
182 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x0, HDA_OUTPUT
),
183 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x0, HDA_OUTPUT
),
184 HDA_CODEC_VOLUME("Aux Playback Volume", 0x16, 0x0, HDA_OUTPUT
),
185 HDA_CODEC_MUTE("Aux Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
186 HDA_CODEC_VOLUME("Mic Playback Volume", 0x13, 0x0, HDA_OUTPUT
),
187 HDA_CODEC_MUTE("Mic Playback Switch", 0x13, 0x0, HDA_OUTPUT
),
188 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x18, 0x0, HDA_OUTPUT
),
189 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x18, 0x0, HDA_OUTPUT
),
190 HDA_CODEC_VOLUME("Mono Playback Volume", 0x1e, 0x0, HDA_OUTPUT
),
191 HDA_CODEC_MUTE("Mono Playback Switch", 0x1e, 0x0, HDA_OUTPUT
),
192 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x0, HDA_OUTPUT
),
193 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x0, HDA_OUTPUT
),
195 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
196 .name
= "Capture Source",
197 .info
= ad1986a_mux_enum_info
,
198 .get
= ad1986a_mux_enum_get
,
199 .put
= ad1986a_mux_enum_put
,
201 HDA_CODEC_MUTE("Stereo Downmix Switch", 0x09, 0x0, HDA_OUTPUT
),
206 * initialization verbs
208 static struct hda_verb ad1986a_init_verbs
[] = {
209 /* Front, Surround, CLFE DAC; mute as default */
210 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
211 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
212 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
214 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
215 /* HP, Line-Out, Surround, CLFE selectors */
216 {0x0a, AC_VERB_SET_CONNECT_SEL
, 0x0},
217 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0x0},
218 {0x0c, AC_VERB_SET_CONNECT_SEL
, 0x0},
219 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0x0},
221 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0x0},
222 /* Mic selector: Mic 1/2 pin */
223 {0x0f, AC_VERB_SET_CONNECT_SEL
, 0x0},
224 /* Line-in selector: Line-in */
225 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x0},
227 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x0},
228 /* Record selector: mic */
229 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x0},
230 /* Mic, Phone, CD, Aux, Line-In amp; mute as default */
231 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
232 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
233 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
234 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
235 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
237 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x0},
238 /* HP, Line-Out, Surround, CLFE, Mono pins; mute as default */
239 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
240 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
241 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
242 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
243 {0x1e, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080},
248 static int ad1986a_init(struct hda_codec
*codec
)
250 snd_hda_sequence_write(codec
, ad1986a_init_verbs
);
254 static int ad1986a_build_controls(struct hda_codec
*codec
)
258 err
= snd_hda_add_new_ctls(codec
, ad1986a_mixers
);
261 err
= snd_hda_create_spdif_out_ctls(codec
, AD1986A_SPDIF_OUT
);
268 * Analog playback callbacks
270 static int ad1986a_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
271 struct hda_codec
*codec
,
272 snd_pcm_substream_t
*substream
)
274 struct ad1986a_spec
*spec
= codec
->spec
;
275 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
);
278 static int ad1986a_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
279 struct hda_codec
*codec
,
280 unsigned int stream_tag
,
282 snd_pcm_substream_t
*substream
)
284 struct ad1986a_spec
*spec
= codec
->spec
;
285 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
, stream_tag
,
289 static int ad1986a_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
290 struct hda_codec
*codec
,
291 snd_pcm_substream_t
*substream
)
293 struct ad1986a_spec
*spec
= codec
->spec
;
294 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
300 static int ad1986a_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
301 struct hda_codec
*codec
,
302 snd_pcm_substream_t
*substream
)
304 struct ad1986a_spec
*spec
= codec
->spec
;
305 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
308 static int ad1986a_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
309 struct hda_codec
*codec
,
310 snd_pcm_substream_t
*substream
)
312 struct ad1986a_spec
*spec
= codec
->spec
;
313 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
319 static int ad1986a_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
320 struct hda_codec
*codec
,
321 unsigned int stream_tag
,
323 snd_pcm_substream_t
*substream
)
325 snd_hda_codec_setup_stream(codec
, AD1986A_ADC
, stream_tag
, 0, format
);
329 static int ad1986a_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
330 struct hda_codec
*codec
,
331 snd_pcm_substream_t
*substream
)
333 snd_hda_codec_setup_stream(codec
, AD1986A_ADC
, 0, 0, 0);
340 static struct hda_pcm_stream ad1986a_pcm_analog_playback
= {
344 .nid
= AD1986A_FRONT_DAC
, /* NID to query formats and rates */
346 .open
= ad1986a_playback_pcm_open
,
347 .prepare
= ad1986a_playback_pcm_prepare
,
348 .cleanup
= ad1986a_playback_pcm_cleanup
352 static struct hda_pcm_stream ad1986a_pcm_analog_capture
= {
356 .nid
= AD1986A_ADC
, /* NID to query formats and rates */
358 .prepare
= ad1986a_capture_pcm_prepare
,
359 .cleanup
= ad1986a_capture_pcm_cleanup
363 static struct hda_pcm_stream ad1986a_pcm_digital_playback
= {
367 .nid
= AD1986A_SPDIF_OUT
,
369 .open
= ad1986a_dig_playback_pcm_open
,
370 .close
= ad1986a_dig_playback_pcm_close
374 static int ad1986a_build_pcms(struct hda_codec
*codec
)
376 struct ad1986a_spec
*spec
= codec
->spec
;
377 struct hda_pcm
*info
= spec
->pcm_rec
;
380 codec
->pcm_info
= info
;
382 info
->name
= "AD1986A Analog";
383 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = ad1986a_pcm_analog_playback
;
384 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = ad1986a_pcm_analog_capture
;
387 info
->name
= "AD1986A Digital";
388 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = ad1986a_pcm_digital_playback
;
393 static void ad1986a_free(struct hda_codec
*codec
)
399 static int ad1986a_resume(struct hda_codec
*codec
)
402 snd_hda_resume_ctls(codec
, ad1986a_mixers
);
403 snd_hda_resume_spdif_out(codec
);
408 static struct hda_codec_ops ad1986a_patch_ops
= {
409 .build_controls
= ad1986a_build_controls
,
410 .build_pcms
= ad1986a_build_pcms
,
411 .init
= ad1986a_init
,
412 .free
= ad1986a_free
,
414 .resume
= ad1986a_resume
,
418 static int patch_ad1986a(struct hda_codec
*codec
)
420 struct ad1986a_spec
*spec
;
422 spec
= kcalloc(1, sizeof(*spec
), GFP_KERNEL
);
426 init_MUTEX(&spec
->amp_mutex
);
429 spec
->multiout
.max_channels
= 6;
430 spec
->multiout
.num_dacs
= ARRAY_SIZE(ad1986a_dac_nids
);
431 spec
->multiout
.dac_nids
= ad1986a_dac_nids
;
432 spec
->multiout
.dig_out_nid
= AD1986A_SPDIF_OUT
;
434 codec
->patch_ops
= ad1986a_patch_ops
;
442 struct hda_codec_preset snd_hda_preset_analog
[] = {
443 { .id
= 0x11d41986, .name
= "AD1986A", .patch
= patch_ad1986a
},