2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for C-Media CMI9880
6 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
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.
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.
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
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"
35 /* board config type */
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 */
42 CMI_AUTO
, /* let driver guess it */
48 unsigned int no_line_in
: 1; /* no line-in (5-jack) */
49 unsigned int front_panel
: 1; /* has front-panel 2-jack */
52 struct hda_multi_out multiout
;
53 hda_nid_t dac_nids
[4]; /* NID for each DAC */
61 const struct hda_input_mux
*input_mux
;
62 unsigned int cur_mux
[2];
65 int num_channel_modes
;
66 const struct hda_channel_mode
*channel_modes
;
68 struct hda_pcm pcm_rec
[2]; /* PCM information */
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
;
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 */
83 static int cmi_mux_enum_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
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
);
90 static int cmi_mux_enum_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
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
);
96 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
100 static int cmi_mux_enum_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
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
);
106 return snd_hda_input_mux_put(codec
, spec
->input_mux
, ucontrol
,
107 spec
->adc_nids
[adc_idx
], &spec
->cur_mux
[adc_idx
]);
111 * shared line-in, mic for surrounds
114 /* 3-stack / 2 channel */
115 static struct hda_verb cmi9880_ch2_init
[] = {
116 /* set line-in PIN for input */
117 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
118 /* set mic PIN for input, also enable vref */
119 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
120 /* route front PCM (DAC1) to HP */
121 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
125 /* 3-stack / 6 channel */
126 static struct hda_verb cmi9880_ch6_init
[] = {
127 /* set line-in PIN for output */
128 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
129 /* set mic PIN for output */
130 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
131 /* route front PCM (DAC1) to HP */
132 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
136 /* 3-stack+front / 8 channel */
137 static struct hda_verb cmi9880_ch8_init
[] = {
138 /* set line-in PIN for output */
139 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
140 /* set mic PIN for output */
141 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
142 /* route rear-surround PCM (DAC4) to HP */
143 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x03 },
147 static struct hda_channel_mode cmi9880_channel_modes
[3] = {
148 { 2, cmi9880_ch2_init
},
149 { 6, cmi9880_ch6_init
},
150 { 8, cmi9880_ch8_init
},
153 static int cmi_ch_mode_info(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_info
*uinfo
)
155 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
156 struct cmi_spec
*spec
= codec
->spec
;
157 return snd_hda_ch_mode_info(codec
, uinfo
, spec
->channel_modes
,
158 spec
->num_channel_modes
);
161 static int cmi_ch_mode_get(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
163 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
164 struct cmi_spec
*spec
= codec
->spec
;
165 return snd_hda_ch_mode_get(codec
, ucontrol
, spec
->channel_modes
,
166 spec
->num_channel_modes
, spec
->multiout
.max_channels
);
169 static int cmi_ch_mode_put(struct snd_kcontrol
*kcontrol
, struct snd_ctl_elem_value
*ucontrol
)
171 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
172 struct cmi_spec
*spec
= codec
->spec
;
173 return snd_hda_ch_mode_put(codec
, ucontrol
, spec
->channel_modes
,
174 spec
->num_channel_modes
, &spec
->multiout
.max_channels
);
179 static struct snd_kcontrol_new cmi9880_basic_mixer
[] = {
180 /* 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
),
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!
192 /* .name = "Capture Source", */
193 .name
= "Input Source",
195 .info
= cmi_mux_enum_info
,
196 .get
= cmi_mux_enum_get
,
197 .put
= cmi_mux_enum_put
,
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
),
211 static struct snd_kcontrol_new cmi9880_ch_mode_mixer
[] = {
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
,
222 /* AUD-in selections:
223 * 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x1f 0x20
225 static struct hda_input_mux cmi9880_basic_mux
= {
228 { "Front Mic", 0x5 },
235 static struct hda_input_mux cmi9880_no_line_mux
= {
238 { "Front Mic", 0x5 },
244 /* front, rear, clfe, rear_surr */
245 static hda_nid_t cmi9880_dac_nids
[4] = {
246 0x03, 0x04, 0x05, 0x06
249 static hda_nid_t cmi9880_adc_nids
[2] = {
253 #define CMI_DIG_OUT_NID 0x07
254 #define CMI_DIG_IN_NID 0x0a
258 static struct hda_verb cmi9880_basic_init
[] = {
259 /* port-D for line out (rear panel) */
260 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
261 /* port-E for HP out (front panel) */
262 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
263 /* route front PCM to HP */
264 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
265 /* port-A for surround (rear panel) */
266 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
267 /* port-G for CLFE (rear panel) */
268 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
269 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x02 },
270 /* port-H for side (rear panel) */
271 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
272 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x01 },
273 /* port-C for line-in (rear panel) */
274 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
275 /* port-B for mic-in (rear panel) with vref */
276 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
277 /* port-F for mic-in (front panel) with vref */
278 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
280 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
281 /* route front mic to ADC1/2 */
282 { 0x08, AC_VERB_SET_CONNECT_SEL
, 0x05 },
283 { 0x09, AC_VERB_SET_CONNECT_SEL
, 0x05 },
287 static struct hda_verb cmi9880_allout_init
[] = {
288 /* port-D for line out (rear panel) */
289 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
290 /* port-E for HP out (front panel) */
291 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
292 /* route front PCM to HP */
293 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
294 /* port-A for side (rear panel) */
295 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
296 /* port-G for CLFE (rear panel) */
297 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
298 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x02 },
299 /* port-H for side (rear panel) */
300 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
301 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x01 },
302 /* port-C for surround (rear panel) */
303 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
304 /* port-B for mic-in (rear panel) with vref */
305 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
306 /* port-F for mic-in (front panel) with vref */
307 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
309 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
310 /* route front mic to ADC1/2 */
311 { 0x08, AC_VERB_SET_CONNECT_SEL
, 0x05 },
312 { 0x09, AC_VERB_SET_CONNECT_SEL
, 0x05 },
318 static int cmi9880_build_controls(struct hda_codec
*codec
)
320 struct cmi_spec
*spec
= codec
->spec
;
323 err
= snd_hda_add_new_ctls(codec
, cmi9880_basic_mixer
);
326 if (spec
->channel_modes
) {
327 err
= snd_hda_add_new_ctls(codec
, cmi9880_ch_mode_mixer
);
331 if (spec
->multiout
.dig_out_nid
) {
332 err
= snd_hda_create_spdif_out_ctls(codec
, spec
->multiout
.dig_out_nid
);
336 if (spec
->dig_in_nid
) {
337 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
344 /* fill in the multi_dac_nids table, which will decide
345 which audio widget to use for each channel */
346 static int cmi9880_fill_multi_dac_nids(struct hda_codec
*codec
, const struct auto_pin_cfg
*cfg
)
348 struct cmi_spec
*spec
= codec
->spec
;
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 */
357 for (i
= 0; i
< cfg
->line_outs
; i
++) {
358 nid
= cfg
->line_out_pins
[i
];
359 /* nid 0x0b~0x0e is hardwired to audio widget 0x3~0x6 */
360 if (nid
>= 0x0b && nid
<= 0x0e) {
361 spec
->dac_nids
[i
] = (nid
- 0x0b) + 0x03;
362 assigned
[nid
- 0x0b] = 1;
365 /* left pin can be connect to any audio widget */
366 for (i
= 0; i
< cfg
->line_outs
; i
++) {
367 nid
= cfg
->line_out_pins
[i
];
370 /* search for an empty channel */
371 for (j
= 0; j
< cfg
->line_outs
; j
++) {
373 spec
->dac_nids
[i
] = j
+ 0x03;
379 spec
->num_dacs
= cfg
->line_outs
;
383 /* create multi_init table, which is used for multichannel initialization */
384 static int cmi9880_fill_multi_init(struct hda_codec
*codec
, const struct auto_pin_cfg
*cfg
)
386 struct cmi_spec
*spec
= codec
->spec
;
390 /* clear the table, only one c-media dac assumed here */
391 memset(spec
->multi_init
, 0, sizeof(spec
->multi_init
));
392 for (j
= 0, i
= 0; i
< cfg
->line_outs
; i
++) {
394 nid
= cfg
->line_out_pins
[i
];
396 spec
->multi_init
[j
].nid
= nid
;
397 spec
->multi_init
[j
].verb
= AC_VERB_SET_PIN_WIDGET_CONTROL
;
398 spec
->multi_init
[j
].param
= PIN_OUT
;
402 spec
->multi_init
[j
].nid
= nid
;
403 spec
->multi_init
[j
].verb
= AC_VERB_SET_CONNECT_SEL
;
404 spec
->multi_init
[j
].param
= 0;
405 /* find the index in connect list */
406 len
= snd_hda_get_connections(codec
, nid
, conn
, 4);
407 for (k
= 0; k
< len
; k
++)
408 if (conn
[k
] == spec
->dac_nids
[i
]) {
409 spec
->multi_init
[j
].param
= k
;
418 static int cmi9880_init(struct hda_codec
*codec
)
420 struct cmi_spec
*spec
= codec
->spec
;
421 if (spec
->board_config
== CMI_ALLOUT
)
422 snd_hda_sequence_write(codec
, cmi9880_allout_init
);
424 snd_hda_sequence_write(codec
, cmi9880_basic_init
);
425 if (spec
->board_config
== CMI_AUTO
)
426 snd_hda_sequence_write(codec
, spec
->multi_init
);
434 static int cmi9880_resume(struct hda_codec
*codec
)
436 struct cmi_spec
*spec
= codec
->spec
;
439 snd_hda_resume_ctls(codec
, cmi9880_basic_mixer
);
440 if (spec
->channel_modes
)
441 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
);
452 * Analog playback callbacks
454 static int cmi9880_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
455 struct hda_codec
*codec
,
456 struct snd_pcm_substream
*substream
)
458 struct cmi_spec
*spec
= codec
->spec
;
459 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
);
462 static int cmi9880_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
463 struct hda_codec
*codec
,
464 unsigned int stream_tag
,
466 struct snd_pcm_substream
*substream
)
468 struct cmi_spec
*spec
= codec
->spec
;
469 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
, stream_tag
,
473 static int cmi9880_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
474 struct hda_codec
*codec
,
475 struct snd_pcm_substream
*substream
)
477 struct cmi_spec
*spec
= codec
->spec
;
478 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
484 static int cmi9880_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
485 struct hda_codec
*codec
,
486 struct snd_pcm_substream
*substream
)
488 struct cmi_spec
*spec
= codec
->spec
;
489 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
492 static int cmi9880_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
493 struct hda_codec
*codec
,
494 struct snd_pcm_substream
*substream
)
496 struct cmi_spec
*spec
= codec
->spec
;
497 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
503 static int cmi9880_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
504 struct hda_codec
*codec
,
505 unsigned int stream_tag
,
507 struct snd_pcm_substream
*substream
)
509 struct cmi_spec
*spec
= codec
->spec
;
511 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
],
512 stream_tag
, 0, format
);
516 static int cmi9880_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
517 struct hda_codec
*codec
,
518 struct snd_pcm_substream
*substream
)
520 struct cmi_spec
*spec
= codec
->spec
;
522 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
], 0, 0, 0);
529 static struct hda_pcm_stream cmi9880_pcm_analog_playback
= {
533 .nid
= 0x03, /* NID to query formats and rates */
535 .open
= cmi9880_playback_pcm_open
,
536 .prepare
= cmi9880_playback_pcm_prepare
,
537 .cleanup
= cmi9880_playback_pcm_cleanup
541 static struct hda_pcm_stream cmi9880_pcm_analog_capture
= {
545 .nid
= 0x08, /* NID to query formats and rates */
547 .prepare
= cmi9880_capture_pcm_prepare
,
548 .cleanup
= cmi9880_capture_pcm_cleanup
552 static struct hda_pcm_stream cmi9880_pcm_digital_playback
= {
556 /* NID is set in cmi9880_build_pcms */
558 .open
= cmi9880_dig_playback_pcm_open
,
559 .close
= cmi9880_dig_playback_pcm_close
563 static struct hda_pcm_stream cmi9880_pcm_digital_capture
= {
567 /* NID is set in cmi9880_build_pcms */
570 static int cmi9880_build_pcms(struct hda_codec
*codec
)
572 struct cmi_spec
*spec
= codec
->spec
;
573 struct hda_pcm
*info
= spec
->pcm_rec
;
576 codec
->pcm_info
= info
;
578 info
->name
= "CMI9880";
579 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = cmi9880_pcm_analog_playback
;
580 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = cmi9880_pcm_analog_capture
;
582 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
585 info
->name
= "CMI9880 Digital";
586 if (spec
->multiout
.dig_out_nid
) {
587 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = cmi9880_pcm_digital_playback
;
588 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dig_out_nid
;
590 if (spec
->dig_in_nid
) {
591 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = cmi9880_pcm_digital_capture
;
592 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->dig_in_nid
;
599 static void cmi9880_free(struct hda_codec
*codec
)
607 static const char *cmi9880_models
[CMI_MODELS
] = {
608 [CMI_MINIMAL
] = "minimal",
609 [CMI_MIN_FP
] = "min_fp",
611 [CMI_FULL_DIG
] = "full_dig",
612 [CMI_ALLOUT
] = "allout",
616 static struct snd_pci_quirk cmi9880_cfg_tbl
[] = {
617 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", CMI_FULL_DIG
),
621 static struct hda_codec_ops cmi9880_patch_ops
= {
622 .build_controls
= cmi9880_build_controls
,
623 .build_pcms
= cmi9880_build_pcms
,
624 .init
= cmi9880_init
,
625 .free
= cmi9880_free
,
627 .resume
= cmi9880_resume
,
631 static int patch_cmi9880(struct hda_codec
*codec
)
633 struct cmi_spec
*spec
;
635 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
640 spec
->board_config
= snd_hda_check_board_config(codec
, CMI_MODELS
,
643 if (spec
->board_config
< 0) {
644 snd_printdd(KERN_INFO
"hda_codec: Unknown model for CMI9880\n");
645 spec
->board_config
= CMI_AUTO
; /* try everything */
648 /* copy default DAC NIDs */
649 memcpy(spec
->dac_nids
, cmi9880_dac_nids
, sizeof(spec
->dac_nids
));
652 switch (spec
->board_config
) {
655 spec
->channel_modes
= cmi9880_channel_modes
;
656 if (spec
->board_config
== CMI_MINIMAL
)
657 spec
->num_channel_modes
= 2;
659 spec
->front_panel
= 1;
660 spec
->num_channel_modes
= 3;
662 spec
->multiout
.max_channels
= cmi9880_channel_modes
[0].channels
;
663 spec
->input_mux
= &cmi9880_basic_mux
;
667 spec
->front_panel
= 1;
668 spec
->multiout
.max_channels
= 8;
669 spec
->input_mux
= &cmi9880_basic_mux
;
670 if (spec
->board_config
== CMI_FULL_DIG
) {
671 spec
->multiout
.dig_out_nid
= CMI_DIG_OUT_NID
;
672 spec
->dig_in_nid
= CMI_DIG_IN_NID
;
676 spec
->front_panel
= 1;
677 spec
->multiout
.max_channels
= 8;
678 spec
->no_line_in
= 1;
679 spec
->input_mux
= &cmi9880_no_line_mux
;
680 spec
->multiout
.dig_out_nid
= CMI_DIG_OUT_NID
;
684 unsigned int port_e
, port_f
, port_g
, port_h
;
685 unsigned int port_spdifi
, port_spdifo
;
686 struct auto_pin_cfg cfg
;
688 /* collect pin default configuration */
689 port_e
= snd_hda_codec_read(codec
, 0x0f, 0, AC_VERB_GET_CONFIG_DEFAULT
, 0);
690 port_f
= snd_hda_codec_read(codec
, 0x10, 0, AC_VERB_GET_CONFIG_DEFAULT
, 0);
691 spec
->front_panel
= 1;
692 if (get_defcfg_connect(port_e
) == AC_JACK_PORT_NONE
||
693 get_defcfg_connect(port_f
) == AC_JACK_PORT_NONE
) {
694 port_g
= snd_hda_codec_read(codec
, 0x1f, 0, AC_VERB_GET_CONFIG_DEFAULT
, 0);
695 port_h
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_CONFIG_DEFAULT
, 0);
696 spec
->channel_modes
= cmi9880_channel_modes
;
698 if (get_defcfg_connect(port_g
) == AC_JACK_PORT_NONE
||
699 get_defcfg_connect(port_h
) == AC_JACK_PORT_NONE
) {
700 /* no optional rear panel */
701 spec
->board_config
= CMI_MINIMAL
;
702 spec
->front_panel
= 0;
703 spec
->num_channel_modes
= 2;
705 spec
->board_config
= CMI_MIN_FP
;
706 spec
->num_channel_modes
= 3;
708 spec
->input_mux
= &cmi9880_basic_mux
;
709 spec
->multiout
.max_channels
= cmi9880_channel_modes
[0].channels
;
711 spec
->input_mux
= &cmi9880_basic_mux
;
712 port_spdifi
= snd_hda_codec_read(codec
, 0x13, 0, AC_VERB_GET_CONFIG_DEFAULT
, 0);
713 port_spdifo
= snd_hda_codec_read(codec
, 0x12, 0, AC_VERB_GET_CONFIG_DEFAULT
, 0);
714 if (get_defcfg_connect(port_spdifo
) != AC_JACK_PORT_NONE
)
715 spec
->multiout
.dig_out_nid
= CMI_DIG_OUT_NID
;
716 if (get_defcfg_connect(port_spdifi
) != AC_JACK_PORT_NONE
)
717 spec
->dig_in_nid
= CMI_DIG_IN_NID
;
718 spec
->multiout
.max_channels
= 8;
720 snd_hda_parse_pin_def_config(codec
, &cfg
, NULL
);
722 spec
->multiout
.max_channels
= cfg
.line_outs
* 2;
723 cmi9880_fill_multi_dac_nids(codec
, &cfg
);
724 cmi9880_fill_multi_init(codec
, &cfg
);
726 snd_printd("patch_cmedia: cannot detect association in defcfg\n");
731 spec
->multiout
.num_dacs
= spec
->num_dacs
;
732 spec
->multiout
.dac_nids
= spec
->dac_nids
;
734 spec
->adc_nids
= cmi9880_adc_nids
;
736 codec
->patch_ops
= cmi9880_patch_ops
;
744 struct hda_codec_preset snd_hda_preset_cmedia
[] = {
745 { .id
= 0x13f69880, .name
= "CMI9880", .patch
= patch_cmi9880
},
746 { .id
= 0x434d4980, .name
= "CMI9880", .patch
= patch_cmi9880
},