blob: 3c722e667bc8cf4d4686d571f7953017c72474c6 [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 Iwaif953eff2005-04-08 15:05:13 +020053 hda_nid_t dac_nids[4]; /* 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 */
76 hda_nid_t multich_pin[4]; /* max 8-channel */
77 struct hda_verb multi_init[9]; /* 2 verbs for each pin + terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078};
79
80/*
81 * input MUX
82 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010083static int cmi_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
86 struct cmi_spec *spec = codec->spec;
87 return snd_hda_input_mux_info(spec->input_mux, uinfo);
88}
89
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010090static int cmi_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
92 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
93 struct cmi_spec *spec = codec->spec;
94 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
95
96 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
97 return 0;
98}
99
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100100static int cmi_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
103 struct cmi_spec *spec = codec->spec;
104 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
105
106 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
107 spec->adc_nids[adc_idx], &spec->cur_mux[adc_idx]);
108}
109
110/*
111 * shared line-in, mic for surrounds
112 */
113
114/* 3-stack / 2 channel */
115static struct hda_verb cmi9880_ch2_init[] = {
116 /* set line-in PIN for input */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200117 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 /* set mic PIN for input, also enable vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200119 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 /* route front PCM (DAC1) to HP */
121 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
122 {}
123};
124
125/* 3-stack / 6 channel */
126static struct hda_verb cmi9880_ch6_init[] = {
127 /* set line-in PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200128 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /* set mic PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200130 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* route front PCM (DAC1) to HP */
132 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
133 {}
134};
135
136/* 3-stack+front / 8 channel */
137static struct hda_verb cmi9880_ch8_init[] = {
138 /* set line-in PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200139 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* set mic PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200141 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 /* route rear-surround PCM (DAC4) to HP */
143 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x03 },
144 {}
145};
146
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100147static struct hda_channel_mode cmi9880_channel_modes[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 { 2, cmi9880_ch2_init },
149 { 6, cmi9880_ch6_init },
150 { 8, cmi9880_ch8_init },
151};
152
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100153static int cmi_ch_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
156 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100157 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_modes,
158 spec->num_channel_modes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100161static int cmi_ch_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
164 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100165 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_modes,
166 spec->num_channel_modes, spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100169static int cmi_ch_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
172 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100173 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_modes,
174 spec->num_channel_modes, &spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
177/*
178 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100179static struct snd_kcontrol_new cmi9880_basic_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* CMI9880 has no playback volumes! */
181 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT), /* front */
182 HDA_CODEC_MUTE("Surround Playback Switch", 0x04, 0x0, HDA_OUTPUT),
183 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
184 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
185 HDA_CODEC_MUTE("Side Playback Switch", 0x06, 0x0, HDA_OUTPUT),
186 {
187 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
188 /* The multiple "Capture Source" controls confuse alsamixer
189 * So call somewhat different..
190 * FIXME: the controls appear in the "playback" view!
191 */
192 /* .name = "Capture Source", */
193 .name = "Input Source",
194 .count = 2,
195 .info = cmi_mux_enum_info,
196 .get = cmi_mux_enum_get,
197 .put = cmi_mux_enum_put,
198 },
199 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0, HDA_INPUT),
200 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0, HDA_INPUT),
201 HDA_CODEC_MUTE("Capture Switch", 0x08, 0, HDA_INPUT),
202 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0, HDA_INPUT),
203 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x23, 0, HDA_OUTPUT),
204 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x23, 0, HDA_OUTPUT),
205 { } /* end */
206};
207
208/*
209 * shared I/O pins
210 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100211static struct snd_kcontrol_new cmi9880_ch_mode_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 {
213 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
214 .name = "Channel Mode",
215 .info = cmi_ch_mode_info,
216 .get = cmi_ch_mode_get,
217 .put = cmi_ch_mode_put,
218 },
219 { } /* end */
220};
221
222/* AUD-in selections:
223 * 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x1f 0x20
224 */
225static struct hda_input_mux cmi9880_basic_mux = {
226 .num_items = 4,
227 .items = {
228 { "Front Mic", 0x5 },
229 { "Rear Mic", 0x2 },
230 { "Line", 0x1 },
231 { "CD", 0x7 },
232 }
233};
234
235static struct hda_input_mux cmi9880_no_line_mux = {
236 .num_items = 3,
237 .items = {
238 { "Front Mic", 0x5 },
239 { "Rear Mic", 0x2 },
240 { "CD", 0x7 },
241 }
242};
243
244/* front, rear, clfe, rear_surr */
245static hda_nid_t cmi9880_dac_nids[4] = {
246 0x03, 0x04, 0x05, 0x06
247};
248/* ADC0, ADC1 */
249static hda_nid_t cmi9880_adc_nids[2] = {
250 0x08, 0x09
251};
252
253#define CMI_DIG_OUT_NID 0x07
254#define CMI_DIG_IN_NID 0x0a
255
256/*
257 */
258static struct hda_verb cmi9880_basic_init[] = {
259 /* port-D for line out (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200260 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* port-E for HP out (front panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200262 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 /* route front PCM to HP */
264 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
265 /* port-A for surround (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200266 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* port-G for CLFE (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200268 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100269 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x02 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* port-H for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200271 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100272 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x01 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 /* port-C for line-in (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200274 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 /* port-B for mic-in (rear panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200276 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /* port-F for mic-in (front panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200278 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* CD-in */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200280 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* route front mic to ADC1/2 */
282 { 0x08, AC_VERB_SET_CONNECT_SEL, 0x05 },
283 { 0x09, AC_VERB_SET_CONNECT_SEL, 0x05 },
284 {} /* terminator */
285};
286
287static struct hda_verb cmi9880_allout_init[] = {
288 /* port-D for line out (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200289 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* port-E for HP out (front panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200291 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* route front PCM to HP */
293 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
294 /* port-A for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200295 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 /* port-G for CLFE (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200297 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100298 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x02 },
299 /* port-H for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200300 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100301 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x01 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* port-C for surround (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200303 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* port-B for mic-in (rear panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200305 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* port-F for mic-in (front panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200307 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* CD-in */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200309 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 /* route front mic to ADC1/2 */
311 { 0x08, AC_VERB_SET_CONNECT_SEL, 0x05 },
312 { 0x09, AC_VERB_SET_CONNECT_SEL, 0x05 },
313 {} /* terminator */
314};
315
316/*
317 */
318static int cmi9880_build_controls(struct hda_codec *codec)
319{
320 struct cmi_spec *spec = codec->spec;
321 int err;
322
323 err = snd_hda_add_new_ctls(codec, cmi9880_basic_mixer);
324 if (err < 0)
325 return err;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100326 if (spec->channel_modes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 err = snd_hda_add_new_ctls(codec, cmi9880_ch_mode_mixer);
328 if (err < 0)
329 return err;
330 }
331 if (spec->multiout.dig_out_nid) {
332 err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid);
333 if (err < 0)
334 return err;
335 }
336 if (spec->dig_in_nid) {
337 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
338 if (err < 0)
339 return err;
340 }
341 return 0;
342}
343
Takashi Iwaif953eff2005-04-08 15:05:13 +0200344/* fill in the multi_dac_nids table, which will decide
345 which audio widget to use for each channel */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200346static int cmi9880_fill_multi_dac_nids(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200347{
348 struct cmi_spec *spec = codec->spec;
349 hda_nid_t nid;
350 int assigned[4];
351 int i, j;
352
353 /* clear the table, only one c-media dac assumed here */
354 memset(spec->dac_nids, 0, sizeof(spec->dac_nids));
355 memset(assigned, 0, sizeof(assigned));
356 /* check the pins we found */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200357 for (i = 0; i < cfg->line_outs; i++) {
358 nid = cfg->line_out_pins[i];
Takashi Iwaif953eff2005-04-08 15:05:13 +0200359 /* nid 0x0b~0x0e is hardwired to audio widget 0x3~0x6 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200360 if (nid >= 0x0b && nid <= 0x0e) {
361 spec->dac_nids[i] = (nid - 0x0b) + 0x03;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200362 assigned[nid - 0x0b] = 1;
363 }
364 }
365 /* left pin can be connect to any audio widget */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200366 for (i = 0; i < cfg->line_outs; i++) {
367 nid = cfg->line_out_pins[i];
368 if (nid <= 0x0e)
369 continue;
370 /* search for an empty channel */
371 for (j = 0; j < cfg->line_outs; j++) {
372 if (! assigned[j]) {
Nicolas Grazianofb92e6f2005-07-27 17:25:08 +0200373 spec->dac_nids[i] = j + 0x03;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200374 assigned[j] = 1;
375 break;
376 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200377 }
378 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200379 spec->num_dacs = cfg->line_outs;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200380 return 0;
381}
382
383/* create multi_init table, which is used for multichannel initialization */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200384static int cmi9880_fill_multi_init(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200385{
386 struct cmi_spec *spec = codec->spec;
387 hda_nid_t nid;
388 int i, j, k, len;
389
390 /* clear the table, only one c-media dac assumed here */
391 memset(spec->multi_init, 0, sizeof(spec->multi_init));
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200392 for (j = 0, i = 0; i < cfg->line_outs; i++) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200393 hda_nid_t conn[4];
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200394 nid = cfg->line_out_pins[i];
Takashi Iwaif953eff2005-04-08 15:05:13 +0200395 /* set as output */
396 spec->multi_init[j].nid = nid;
397 spec->multi_init[j].verb = AC_VERB_SET_PIN_WIDGET_CONTROL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200398 spec->multi_init[j].param = PIN_OUT;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200399 j++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200400 if (nid > 0x0e) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200401 /* set connection */
402 spec->multi_init[j].nid = nid;
403 spec->multi_init[j].verb = AC_VERB_SET_CONNECT_SEL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200404 spec->multi_init[j].param = 0;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200405 /* find the index in connect list */
406 len = snd_hda_get_connections(codec, nid, conn, 4);
407 for (k = 0; k < len; k++)
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200408 if (conn[k] == spec->dac_nids[i]) {
Nicolas Grazianofb92e6f2005-07-27 17:25:08 +0200409 spec->multi_init[j].param = k;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200410 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200411 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200412 j++;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200413 }
414 }
415 return 0;
416}
417
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418static int cmi9880_init(struct hda_codec *codec)
419{
420 struct cmi_spec *spec = codec->spec;
421 if (spec->board_config == CMI_ALLOUT)
422 snd_hda_sequence_write(codec, cmi9880_allout_init);
423 else
424 snd_hda_sequence_write(codec, cmi9880_basic_init);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200425 if (spec->board_config == CMI_AUTO)
426 snd_hda_sequence_write(codec, spec->multi_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return 0;
428}
429
430#ifdef CONFIG_PM
431/*
432 * resume
433 */
434static int cmi9880_resume(struct hda_codec *codec)
435{
436 struct cmi_spec *spec = codec->spec;
437
438 cmi9880_init(codec);
439 snd_hda_resume_ctls(codec, cmi9880_basic_mixer);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100440 if (spec->channel_modes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 snd_hda_resume_ctls(codec, cmi9880_ch_mode_mixer);
442 if (spec->multiout.dig_out_nid)
443 snd_hda_resume_spdif_out(codec);
444 if (spec->dig_in_nid)
445 snd_hda_resume_spdif_in(codec);
446
447 return 0;
448}
449#endif
450
451/*
452 * Analog playback callbacks
453 */
454static int cmi9880_playback_pcm_open(struct hda_pcm_stream *hinfo,
455 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100456 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 struct cmi_spec *spec = codec->spec;
459 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
460}
461
462static int cmi9880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
463 struct hda_codec *codec,
464 unsigned int stream_tag,
465 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100466 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 struct cmi_spec *spec = codec->spec;
469 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
470 format, substream);
471}
472
473static int cmi9880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
474 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100475 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 struct cmi_spec *spec = codec->spec;
478 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
479}
480
481/*
482 * Digital out
483 */
484static int cmi9880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
485 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100486 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct cmi_spec *spec = codec->spec;
489 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
490}
491
492static int cmi9880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
493 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100494 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 struct cmi_spec *spec = codec->spec;
497 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
498}
499
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200500static int cmi9880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
501 struct hda_codec *codec,
502 unsigned int stream_tag,
503 unsigned int format,
504 struct snd_pcm_substream *substream)
505{
506 struct cmi_spec *spec = codec->spec;
507 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
508 format, substream);
509}
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/*
512 * Analog capture
513 */
514static int cmi9880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
515 struct hda_codec *codec,
516 unsigned int stream_tag,
517 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100518 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 struct cmi_spec *spec = codec->spec;
521
522 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
523 stream_tag, 0, format);
524 return 0;
525}
526
527static int cmi9880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
528 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100529 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 struct cmi_spec *spec = codec->spec;
532
533 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number], 0, 0, 0);
534 return 0;
535}
536
537
538/*
539 */
540static struct hda_pcm_stream cmi9880_pcm_analog_playback = {
541 .substreams = 1,
542 .channels_min = 2,
543 .channels_max = 8,
544 .nid = 0x03, /* NID to query formats and rates */
545 .ops = {
546 .open = cmi9880_playback_pcm_open,
547 .prepare = cmi9880_playback_pcm_prepare,
548 .cleanup = cmi9880_playback_pcm_cleanup
549 },
550};
551
552static struct hda_pcm_stream cmi9880_pcm_analog_capture = {
553 .substreams = 2,
554 .channels_min = 2,
555 .channels_max = 2,
556 .nid = 0x08, /* NID to query formats and rates */
557 .ops = {
558 .prepare = cmi9880_capture_pcm_prepare,
559 .cleanup = cmi9880_capture_pcm_cleanup
560 },
561};
562
563static struct hda_pcm_stream cmi9880_pcm_digital_playback = {
564 .substreams = 1,
565 .channels_min = 2,
566 .channels_max = 2,
567 /* NID is set in cmi9880_build_pcms */
568 .ops = {
569 .open = cmi9880_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200570 .close = cmi9880_dig_playback_pcm_close,
571 .prepare = cmi9880_dig_playback_pcm_prepare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 },
573};
574
575static struct hda_pcm_stream cmi9880_pcm_digital_capture = {
576 .substreams = 1,
577 .channels_min = 2,
578 .channels_max = 2,
579 /* NID is set in cmi9880_build_pcms */
580};
581
582static int cmi9880_build_pcms(struct hda_codec *codec)
583{
584 struct cmi_spec *spec = codec->spec;
585 struct hda_pcm *info = spec->pcm_rec;
586
587 codec->num_pcms = 1;
588 codec->pcm_info = info;
589
590 info->name = "CMI9880";
591 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cmi9880_pcm_analog_playback;
592 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cmi9880_pcm_analog_capture;
593
594 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
595 codec->num_pcms++;
596 info++;
597 info->name = "CMI9880 Digital";
598 if (spec->multiout.dig_out_nid) {
599 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cmi9880_pcm_digital_playback;
600 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
601 }
602 if (spec->dig_in_nid) {
603 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cmi9880_pcm_digital_capture;
604 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
605 }
606 }
607
608 return 0;
609}
610
611static void cmi9880_free(struct hda_codec *codec)
612{
613 kfree(codec->spec);
614}
615
616/*
617 */
618
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100619static const char *cmi9880_models[CMI_MODELS] = {
620 [CMI_MINIMAL] = "minimal",
621 [CMI_MIN_FP] = "min_fp",
622 [CMI_FULL] = "full",
623 [CMI_FULL_DIG] = "full_dig",
624 [CMI_ALLOUT] = "allout",
625 [CMI_AUTO] = "auto",
626};
627
628static struct snd_pci_quirk cmi9880_cfg_tbl[] = {
629 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", CMI_FULL_DIG),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 {} /* terminator */
631};
632
633static struct hda_codec_ops cmi9880_patch_ops = {
634 .build_controls = cmi9880_build_controls,
635 .build_pcms = cmi9880_build_pcms,
636 .init = cmi9880_init,
637 .free = cmi9880_free,
638#ifdef CONFIG_PM
639 .resume = cmi9880_resume,
640#endif
641};
642
643static int patch_cmi9880(struct hda_codec *codec)
644{
645 struct cmi_spec *spec;
646
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200647 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (spec == NULL)
649 return -ENOMEM;
650
651 codec->spec = spec;
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100652 spec->board_config = snd_hda_check_board_config(codec, CMI_MODELS,
653 cmi9880_models,
654 cmi9880_cfg_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (spec->board_config < 0) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200656 snd_printdd(KERN_INFO "hda_codec: Unknown model for CMI9880\n");
657 spec->board_config = CMI_AUTO; /* try everything */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659
Takashi Iwaif953eff2005-04-08 15:05:13 +0200660 /* copy default DAC NIDs */
661 memcpy(spec->dac_nids, cmi9880_dac_nids, sizeof(spec->dac_nids));
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200662 spec->num_dacs = 4;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 switch (spec->board_config) {
665 case CMI_MINIMAL:
666 case CMI_MIN_FP:
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100667 spec->channel_modes = cmi9880_channel_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (spec->board_config == CMI_MINIMAL)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100669 spec->num_channel_modes = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 else {
671 spec->front_panel = 1;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100672 spec->num_channel_modes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 spec->multiout.max_channels = cmi9880_channel_modes[0].channels;
675 spec->input_mux = &cmi9880_basic_mux;
676 break;
677 case CMI_FULL:
678 case CMI_FULL_DIG:
679 spec->front_panel = 1;
680 spec->multiout.max_channels = 8;
681 spec->input_mux = &cmi9880_basic_mux;
682 if (spec->board_config == CMI_FULL_DIG) {
683 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
684 spec->dig_in_nid = CMI_DIG_IN_NID;
685 }
686 break;
687 case CMI_ALLOUT:
688 spec->front_panel = 1;
689 spec->multiout.max_channels = 8;
690 spec->no_line_in = 1;
691 spec->input_mux = &cmi9880_no_line_mux;
692 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
693 break;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200694 case CMI_AUTO:
695 {
696 unsigned int port_e, port_f, port_g, port_h;
697 unsigned int port_spdifi, port_spdifo;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200698 struct auto_pin_cfg cfg;
699
Takashi Iwaif953eff2005-04-08 15:05:13 +0200700 /* collect pin default configuration */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200701 port_e = snd_hda_codec_read(codec, 0x0f, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
702 port_f = snd_hda_codec_read(codec, 0x10, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200703 spec->front_panel = 1;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200704 if (get_defcfg_connect(port_e) == AC_JACK_PORT_NONE ||
705 get_defcfg_connect(port_f) == AC_JACK_PORT_NONE) {
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200706 port_g = snd_hda_codec_read(codec, 0x1f, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
707 port_h = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100708 spec->channel_modes = cmi9880_channel_modes;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200709 /* no front panel */
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200710 if (get_defcfg_connect(port_g) == AC_JACK_PORT_NONE ||
711 get_defcfg_connect(port_h) == AC_JACK_PORT_NONE) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200712 /* no optional rear panel */
713 spec->board_config = CMI_MINIMAL;
714 spec->front_panel = 0;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100715 spec->num_channel_modes = 2;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200716 } else {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200717 spec->board_config = CMI_MIN_FP;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100718 spec->num_channel_modes = 3;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200719 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200720 spec->input_mux = &cmi9880_basic_mux;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200721 spec->multiout.max_channels = cmi9880_channel_modes[0].channels;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200722 } else {
723 spec->input_mux = &cmi9880_basic_mux;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200724 port_spdifi = snd_hda_codec_read(codec, 0x13, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
725 port_spdifo = snd_hda_codec_read(codec, 0x12, 0, AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200726 if (get_defcfg_connect(port_spdifo) != AC_JACK_PORT_NONE)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200727 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200728 if (get_defcfg_connect(port_spdifi) != AC_JACK_PORT_NONE)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200729 spec->dig_in_nid = CMI_DIG_IN_NID;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200730 spec->multiout.max_channels = 8;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200731 }
Kailang Yangdf694da2005-12-05 19:42:22 +0100732 snd_hda_parse_pin_def_config(codec, &cfg, NULL);
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200733 if (cfg.line_outs) {
734 spec->multiout.max_channels = cfg.line_outs * 2;
735 cmi9880_fill_multi_dac_nids(codec, &cfg);
736 cmi9880_fill_multi_init(codec, &cfg);
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200737 } else
738 snd_printd("patch_cmedia: cannot detect association in defcfg\n");
Takashi Iwaif953eff2005-04-08 15:05:13 +0200739 break;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200743 spec->multiout.num_dacs = spec->num_dacs;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200744 spec->multiout.dac_nids = spec->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 spec->adc_nids = cmi9880_adc_nids;
747
748 codec->patch_ops = cmi9880_patch_ops;
749
750 return 0;
751}
752
753/*
754 * patch entries
755 */
756struct hda_codec_preset snd_hda_preset_cmedia[] = {
757 { .id = 0x13f69880, .name = "CMI9880", .patch = patch_cmi9880 },
758 { .id = 0x434d4980, .name = "CMI9880", .patch = patch_cmi9880 },
759 {} /* terminator */
760};