blob: 6c54793bf424cf4e52d4a922ad4532fa1726a613 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for C-Media CMI9880
5 *
6 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
7 *
8 *
9 * This driver is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This driver is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23
24#include <sound/driver.h>
25#include <linux/init.h>
26#include <linux/delay.h>
27#include <linux/slab.h>
28#include <linux/pci.h>
29#include <sound/core.h>
30#include "hda_codec.h"
31#include "hda_local.h"
Takashi Iwaif953eff2005-04-08 15:05:13 +020032#define NUM_PINS 11
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34
35/* board config type */
36enum {
37 CMI_MINIMAL, /* back 3-jack */
38 CMI_MIN_FP, /* back 3-jack + front-panel 2-jack */
39 CMI_FULL, /* back 6-jack + front-panel 2-jack */
40 CMI_FULL_DIG, /* back 6-jack + front-panel 2-jack + digital I/O */
41 CMI_ALLOUT, /* back 5-jack + front-panel 2-jack + digital out */
Takashi Iwaif953eff2005-04-08 15:05:13 +020042 CMI_AUTO, /* let driver guess it */
Takashi Iwaif5fcc132006-11-24 17:07:44 +010043 CMI_MODELS
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46struct cmi_spec {
47 int board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 unsigned int no_line_in: 1; /* no line-in (5-jack) */
49 unsigned int front_panel: 1; /* has front-panel 2-jack */
50
51 /* playback */
52 struct hda_multi_out multiout;
Takashi Iwai41923e42007-10-22 17:20:10 +020053 hda_nid_t dac_nids[AUTO_CFG_MAX_OUTS]; /* NID for each DAC */
Takashi Iwaie9edcee2005-06-13 14:16:38 +020054 int num_dacs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 /* capture */
57 hda_nid_t *adc_nids;
58 hda_nid_t dig_in_nid;
59
60 /* capture source */
61 const struct hda_input_mux *input_mux;
62 unsigned int cur_mux[2];
63
64 /* channel mode */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +010065 int num_channel_modes;
66 const struct hda_channel_mode *channel_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68 struct hda_pcm pcm_rec[2]; /* PCM information */
Takashi Iwaif953eff2005-04-08 15:05:13 +020069
70 /* pin deafault configuration */
71 hda_nid_t pin_nid[NUM_PINS];
72 unsigned int def_conf[NUM_PINS];
73 unsigned int pin_def_confs;
74
75 /* multichannel pins */
Takashi Iwaif953eff2005-04-08 15:05:13 +020076 struct hda_verb multi_init[9]; /* 2 verbs for each pin + terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
79/*
80 * input MUX
81 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010082static int cmi_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
85 struct cmi_spec *spec = codec->spec;
86 return snd_hda_input_mux_info(spec->input_mux, uinfo);
87}
88
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010089static int cmi_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
92 struct cmi_spec *spec = codec->spec;
93 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
94
95 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
96 return 0;
97}
98
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010099static int cmi_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
102 struct cmi_spec *spec = codec->spec;
103 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
104
105 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
106 spec->adc_nids[adc_idx], &spec->cur_mux[adc_idx]);
107}
108
109/*
110 * shared line-in, mic for surrounds
111 */
112
113/* 3-stack / 2 channel */
114static struct hda_verb cmi9880_ch2_init[] = {
115 /* set line-in PIN for input */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200116 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 /* set mic PIN for input, also enable vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200118 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 /* route front PCM (DAC1) to HP */
120 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
121 {}
122};
123
124/* 3-stack / 6 channel */
125static struct hda_verb cmi9880_ch6_init[] = {
126 /* set line-in PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200127 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* set mic PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200129 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* route front PCM (DAC1) to HP */
131 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
132 {}
133};
134
135/* 3-stack+front / 8 channel */
136static struct hda_verb cmi9880_ch8_init[] = {
137 /* set line-in PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200138 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* set mic PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200140 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* route rear-surround PCM (DAC4) to HP */
142 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x03 },
143 {}
144};
145
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100146static struct hda_channel_mode cmi9880_channel_modes[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 { 2, cmi9880_ch2_init },
148 { 6, cmi9880_ch6_init },
149 { 8, cmi9880_ch8_init },
150};
151
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100152static int cmi_ch_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
155 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100156 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_modes,
157 spec->num_channel_modes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100160static int cmi_ch_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
163 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100164 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_modes,
165 spec->num_channel_modes, spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100168static int cmi_ch_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
170 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
171 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100172 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_modes,
173 spec->num_channel_modes, &spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
176/*
177 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100178static struct snd_kcontrol_new cmi9880_basic_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 /* CMI9880 has no playback volumes! */
180 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT), /* front */
181 HDA_CODEC_MUTE("Surround Playback Switch", 0x04, 0x0, HDA_OUTPUT),
182 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
183 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
184 HDA_CODEC_MUTE("Side Playback Switch", 0x06, 0x0, HDA_OUTPUT),
185 {
186 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
187 /* The multiple "Capture Source" controls confuse alsamixer
188 * So call somewhat different..
189 * FIXME: the controls appear in the "playback" view!
190 */
191 /* .name = "Capture Source", */
192 .name = "Input Source",
193 .count = 2,
194 .info = cmi_mux_enum_info,
195 .get = cmi_mux_enum_get,
196 .put = cmi_mux_enum_put,
197 },
198 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0, HDA_INPUT),
199 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0, HDA_INPUT),
200 HDA_CODEC_MUTE("Capture Switch", 0x08, 0, HDA_INPUT),
201 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0, HDA_INPUT),
202 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x23, 0, HDA_OUTPUT),
203 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x23, 0, HDA_OUTPUT),
204 { } /* end */
205};
206
207/*
208 * shared I/O pins
209 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100210static struct snd_kcontrol_new cmi9880_ch_mode_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 {
212 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
213 .name = "Channel Mode",
214 .info = cmi_ch_mode_info,
215 .get = cmi_ch_mode_get,
216 .put = cmi_ch_mode_put,
217 },
218 { } /* end */
219};
220
221/* AUD-in selections:
222 * 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x1f 0x20
223 */
224static struct hda_input_mux cmi9880_basic_mux = {
225 .num_items = 4,
226 .items = {
227 { "Front Mic", 0x5 },
228 { "Rear Mic", 0x2 },
229 { "Line", 0x1 },
230 { "CD", 0x7 },
231 }
232};
233
234static struct hda_input_mux cmi9880_no_line_mux = {
235 .num_items = 3,
236 .items = {
237 { "Front Mic", 0x5 },
238 { "Rear Mic", 0x2 },
239 { "CD", 0x7 },
240 }
241};
242
243/* front, rear, clfe, rear_surr */
244static hda_nid_t cmi9880_dac_nids[4] = {
245 0x03, 0x04, 0x05, 0x06
246};
247/* ADC0, ADC1 */
248static hda_nid_t cmi9880_adc_nids[2] = {
249 0x08, 0x09
250};
251
252#define CMI_DIG_OUT_NID 0x07
253#define CMI_DIG_IN_NID 0x0a
254
255/*
256 */
257static struct hda_verb cmi9880_basic_init[] = {
258 /* port-D for line out (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200259 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /* port-E for HP out (front panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200261 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* route front PCM to HP */
263 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
264 /* port-A for surround (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200265 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /* port-G for CLFE (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200267 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100268 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x02 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /* port-H for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200270 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100271 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x01 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* port-C for line-in (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200273 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* port-B for mic-in (rear panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200275 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* port-F for mic-in (front panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200277 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* CD-in */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200279 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* route front mic to ADC1/2 */
281 { 0x08, AC_VERB_SET_CONNECT_SEL, 0x05 },
282 { 0x09, AC_VERB_SET_CONNECT_SEL, 0x05 },
283 {} /* terminator */
284};
285
286static struct hda_verb cmi9880_allout_init[] = {
287 /* port-D for line out (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200288 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* port-E for HP out (front panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200290 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* route front PCM to HP */
292 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
293 /* port-A for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200294 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* port-G for CLFE (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200296 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100297 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x02 },
298 /* port-H for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200299 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100300 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x01 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* port-C for surround (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200302 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 /* port-B for mic-in (rear panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200304 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* port-F for mic-in (front panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200306 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* CD-in */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200308 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* route front mic to ADC1/2 */
310 { 0x08, AC_VERB_SET_CONNECT_SEL, 0x05 },
311 { 0x09, AC_VERB_SET_CONNECT_SEL, 0x05 },
312 {} /* terminator */
313};
314
315/*
316 */
317static int cmi9880_build_controls(struct hda_codec *codec)
318{
319 struct cmi_spec *spec = codec->spec;
320 int err;
321
322 err = snd_hda_add_new_ctls(codec, cmi9880_basic_mixer);
323 if (err < 0)
324 return err;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100325 if (spec->channel_modes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 err = snd_hda_add_new_ctls(codec, cmi9880_ch_mode_mixer);
327 if (err < 0)
328 return err;
329 }
330 if (spec->multiout.dig_out_nid) {
331 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
332 if (err < 0)
333 return err;
334 }
335 if (spec->dig_in_nid) {
336 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
337 if (err < 0)
338 return err;
339 }
340 return 0;
341}
342
Takashi Iwaif953eff2005-04-08 15:05:13 +0200343/* fill in the multi_dac_nids table, which will decide
344 which audio widget to use for each channel */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200345static int cmi9880_fill_multi_dac_nids(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200346{
347 struct cmi_spec *spec = codec->spec;
348 hda_nid_t nid;
349 int assigned[4];
350 int i, j;
351
352 /* clear the table, only one c-media dac assumed here */
353 memset(spec->dac_nids, 0, sizeof(spec->dac_nids));
354 memset(assigned, 0, sizeof(assigned));
355 /* check the pins we found */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200356 for (i = 0; i < cfg->line_outs; i++) {
357 nid = cfg->line_out_pins[i];
Takashi Iwaif953eff2005-04-08 15:05:13 +0200358 /* nid 0x0b~0x0e is hardwired to audio widget 0x3~0x6 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200359 if (nid >= 0x0b && nid <= 0x0e) {
360 spec->dac_nids[i] = (nid - 0x0b) + 0x03;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200361 assigned[nid - 0x0b] = 1;
362 }
363 }
364 /* left pin can be connect to any audio widget */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200365 for (i = 0; i < cfg->line_outs; i++) {
366 nid = cfg->line_out_pins[i];
367 if (nid <= 0x0e)
368 continue;
369 /* search for an empty channel */
370 for (j = 0; j < cfg->line_outs; j++) {
371 if (! assigned[j]) {
Nicolas Grazianofb92e6f2005-07-27 17:25:08 +0200372 spec->dac_nids[i] = j + 0x03;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200373 assigned[j] = 1;
374 break;
375 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200376 }
377 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200378 spec->num_dacs = cfg->line_outs;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200379 return 0;
380}
381
382/* create multi_init table, which is used for multichannel initialization */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200383static int cmi9880_fill_multi_init(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200384{
385 struct cmi_spec *spec = codec->spec;
386 hda_nid_t nid;
387 int i, j, k, len;
388
389 /* clear the table, only one c-media dac assumed here */
390 memset(spec->multi_init, 0, sizeof(spec->multi_init));
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200391 for (j = 0, i = 0; i < cfg->line_outs; i++) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200392 hda_nid_t conn[4];
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200393 nid = cfg->line_out_pins[i];
Takashi Iwaif953eff2005-04-08 15:05:13 +0200394 /* set as output */
395 spec->multi_init[j].nid = nid;
396 spec->multi_init[j].verb = AC_VERB_SET_PIN_WIDGET_CONTROL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200397 spec->multi_init[j].param = PIN_OUT;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200398 j++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200399 if (nid > 0x0e) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200400 /* set connection */
401 spec->multi_init[j].nid = nid;
402 spec->multi_init[j].verb = AC_VERB_SET_CONNECT_SEL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200403 spec->multi_init[j].param = 0;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200404 /* find the index in connect list */
405 len = snd_hda_get_connections(codec, nid, conn, 4);
406 for (k = 0; k < len; k++)
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200407 if (conn[k] == spec->dac_nids[i]) {
Nicolas Grazianofb92e6f2005-07-27 17:25:08 +0200408 spec->multi_init[j].param = k;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200409 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200410 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200411 j++;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200412 }
413 }
414 return 0;
415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417static int cmi9880_init(struct hda_codec *codec)
418{
419 struct cmi_spec *spec = codec->spec;
420 if (spec->board_config == CMI_ALLOUT)
421 snd_hda_sequence_write(codec, cmi9880_allout_init);
422 else
423 snd_hda_sequence_write(codec, cmi9880_basic_init);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200424 if (spec->board_config == CMI_AUTO)
425 snd_hda_sequence_write(codec, spec->multi_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return 0;
427}
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429/*
430 * Analog playback callbacks
431 */
432static int cmi9880_playback_pcm_open(struct hda_pcm_stream *hinfo,
433 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100434 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 struct cmi_spec *spec = codec->spec;
437 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
438}
439
440static int cmi9880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
441 struct hda_codec *codec,
442 unsigned int stream_tag,
443 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100444 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct cmi_spec *spec = codec->spec;
447 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
448 format, substream);
449}
450
451static int cmi9880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
452 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100453 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 struct cmi_spec *spec = codec->spec;
456 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
457}
458
459/*
460 * Digital out
461 */
462static int cmi9880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
463 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100464 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 struct cmi_spec *spec = codec->spec;
467 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
468}
469
470static int cmi9880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
471 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100472 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 struct cmi_spec *spec = codec->spec;
475 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
476}
477
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200478static int cmi9880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
479 struct hda_codec *codec,
480 unsigned int stream_tag,
481 unsigned int format,
482 struct snd_pcm_substream *substream)
483{
484 struct cmi_spec *spec = codec->spec;
485 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
486 format, substream);
487}
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/*
490 * Analog capture
491 */
492static int cmi9880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
493 struct hda_codec *codec,
494 unsigned int stream_tag,
495 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100496 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 struct cmi_spec *spec = codec->spec;
499
500 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
501 stream_tag, 0, format);
502 return 0;
503}
504
505static int cmi9880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
506 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100507 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 struct cmi_spec *spec = codec->spec;
510
511 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], 0, 0, 0);
512 return 0;
513}
514
515
516/*
517 */
518static struct hda_pcm_stream cmi9880_pcm_analog_playback = {
519 .substreams = 1,
520 .channels_min = 2,
521 .channels_max = 8,
522 .nid = 0x03, /* NID to query formats and rates */
523 .ops = {
524 .open = cmi9880_playback_pcm_open,
525 .prepare = cmi9880_playback_pcm_prepare,
526 .cleanup = cmi9880_playback_pcm_cleanup
527 },
528};
529
530static struct hda_pcm_stream cmi9880_pcm_analog_capture = {
531 .substreams = 2,
532 .channels_min = 2,
533 .channels_max = 2,
534 .nid = 0x08, /* NID to query formats and rates */
535 .ops = {
536 .prepare = cmi9880_capture_pcm_prepare,
537 .cleanup = cmi9880_capture_pcm_cleanup
538 },
539};
540
541static struct hda_pcm_stream cmi9880_pcm_digital_playback = {
542 .substreams = 1,
543 .channels_min = 2,
544 .channels_max = 2,
545 /* NID is set in cmi9880_build_pcms */
546 .ops = {
547 .open = cmi9880_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200548 .close = cmi9880_dig_playback_pcm_close,
549 .prepare = cmi9880_dig_playback_pcm_prepare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 },
551};
552
553static struct hda_pcm_stream cmi9880_pcm_digital_capture = {
554 .substreams = 1,
555 .channels_min = 2,
556 .channels_max = 2,
557 /* NID is set in cmi9880_build_pcms */
558};
559
560static int cmi9880_build_pcms(struct hda_codec *codec)
561{
562 struct cmi_spec *spec = codec->spec;
563 struct hda_pcm *info = spec->pcm_rec;
564
565 codec->num_pcms = 1;
566 codec->pcm_info = info;
567
568 info->name = "CMI9880";
569 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cmi9880_pcm_analog_playback;
570 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cmi9880_pcm_analog_capture;
571
572 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
573 codec->num_pcms++;
574 info++;
575 info->name = "CMI9880 Digital";
576 if (spec->multiout.dig_out_nid) {
577 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cmi9880_pcm_digital_playback;
578 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
579 }
580 if (spec->dig_in_nid) {
581 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cmi9880_pcm_digital_capture;
582 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
583 }
584 }
585
586 return 0;
587}
588
589static void cmi9880_free(struct hda_codec *codec)
590{
591 kfree(codec->spec);
592}
593
594/*
595 */
596
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100597static const char *cmi9880_models[CMI_MODELS] = {
598 [CMI_MINIMAL] = "minimal",
599 [CMI_MIN_FP] = "min_fp",
600 [CMI_FULL] = "full",
601 [CMI_FULL_DIG] = "full_dig",
602 [CMI_ALLOUT] = "allout",
603 [CMI_AUTO] = "auto",
604};
605
606static struct snd_pci_quirk cmi9880_cfg_tbl[] = {
607 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", CMI_FULL_DIG),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 {} /* terminator */
609};
610
611static struct hda_codec_ops cmi9880_patch_ops = {
612 .build_controls = cmi9880_build_controls,
613 .build_pcms = cmi9880_build_pcms,
614 .init = cmi9880_init,
615 .free = cmi9880_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616};
617
618static int patch_cmi9880(struct hda_codec *codec)
619{
620 struct cmi_spec *spec;
621
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200622 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 if (spec == NULL)
624 return -ENOMEM;
625
626 codec->spec = spec;
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100627 spec->board_config = snd_hda_check_board_config(codec, CMI_MODELS,
628 cmi9880_models,
629 cmi9880_cfg_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (spec->board_config < 0) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200631 snd_printdd(KERN_INFO "hda_codec: Unknown model for CMI9880\n");
632 spec->board_config = CMI_AUTO; /* try everything */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634
Takashi Iwaif953eff2005-04-08 15:05:13 +0200635 /* copy default DAC NIDs */
636 memcpy(spec->dac_nids, cmi9880_dac_nids, sizeof(spec->dac_nids));
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200637 spec->num_dacs = 4;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 switch (spec->board_config) {
640 case CMI_MINIMAL:
641 case CMI_MIN_FP:
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100642 spec->channel_modes = cmi9880_channel_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (spec->board_config == CMI_MINIMAL)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100644 spec->num_channel_modes = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 else {
646 spec->front_panel = 1;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100647 spec->num_channel_modes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 spec->multiout.max_channels = cmi9880_channel_modes[0].channels;
650 spec->input_mux = &cmi9880_basic_mux;
651 break;
652 case CMI_FULL:
653 case CMI_FULL_DIG:
654 spec->front_panel = 1;
655 spec->multiout.max_channels = 8;
656 spec->input_mux = &cmi9880_basic_mux;
657 if (spec->board_config == CMI_FULL_DIG) {
658 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
659 spec->dig_in_nid = CMI_DIG_IN_NID;
660 }
661 break;
662 case CMI_ALLOUT:
663 spec->front_panel = 1;
664 spec->multiout.max_channels = 8;
665 spec->no_line_in = 1;
666 spec->input_mux = &cmi9880_no_line_mux;
667 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
668 break;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200669 case CMI_AUTO:
670 {
671 unsigned int port_e, port_f, port_g, port_h;
672 unsigned int port_spdifi, port_spdifo;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200673 struct auto_pin_cfg cfg;
674
Takashi Iwaif953eff2005-04-08 15:05:13 +0200675 /* collect pin default configuration */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200676 port_e = snd_hda_codec_read(codec, 0x0f, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
677 port_f = snd_hda_codec_read(codec, 0x10, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200678 spec->front_panel = 1;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200679 if (get_defcfg_connect(port_e) == AC_JACK_PORT_NONE ||
680 get_defcfg_connect(port_f) == AC_JACK_PORT_NONE) {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200681 port_g = snd_hda_codec_read(codec, 0x1f, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
682 port_h = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100683 spec->channel_modes = cmi9880_channel_modes;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200684 /* no front panel */
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200685 if (get_defcfg_connect(port_g) == AC_JACK_PORT_NONE ||
686 get_defcfg_connect(port_h) == AC_JACK_PORT_NONE) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200687 /* no optional rear panel */
688 spec->board_config = CMI_MINIMAL;
689 spec->front_panel = 0;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100690 spec->num_channel_modes = 2;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200691 } else {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200692 spec->board_config = CMI_MIN_FP;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100693 spec->num_channel_modes = 3;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200694 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200695 spec->input_mux = &cmi9880_basic_mux;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200696 spec->multiout.max_channels = cmi9880_channel_modes[0].channels;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200697 } else {
698 spec->input_mux = &cmi9880_basic_mux;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200699 port_spdifi = snd_hda_codec_read(codec, 0x13, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
700 port_spdifo = snd_hda_codec_read(codec, 0x12, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200701 if (get_defcfg_connect(port_spdifo) != AC_JACK_PORT_NONE)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200702 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200703 if (get_defcfg_connect(port_spdifi) != AC_JACK_PORT_NONE)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200704 spec->dig_in_nid = CMI_DIG_IN_NID;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200705 spec->multiout.max_channels = 8;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200706 }
Kailang Yangdf694da2005-12-05 19:42:22 +0100707 snd_hda_parse_pin_def_config(codec, &cfg, NULL);
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200708 if (cfg.line_outs) {
709 spec->multiout.max_channels = cfg.line_outs * 2;
710 cmi9880_fill_multi_dac_nids(codec, &cfg);
711 cmi9880_fill_multi_init(codec, &cfg);
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200712 } else
713 snd_printd("patch_cmedia: cannot detect association in defcfg\n");
Takashi Iwaif953eff2005-04-08 15:05:13 +0200714 break;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200718 spec->multiout.num_dacs = spec->num_dacs;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200719 spec->multiout.dac_nids = spec->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 spec->adc_nids = cmi9880_adc_nids;
722
723 codec->patch_ops = cmi9880_patch_ops;
724
725 return 0;
726}
727
728/*
729 * patch entries
730 */
731struct hda_codec_preset snd_hda_preset_cmedia[] = {
732 { .id = 0x13f69880, .name = "CMI9880", .patch = patch_cmi9880 },
733 { .id = 0x434d4980, .name = "CMI9880", .patch = patch_cmi9880 },
734 {} /* terminator */
735};