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 <linux/init.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
27 #include <linux/pci.h>
28 #include <linux/module.h>
29 #include <sound/core.h>
30 #include "hda_codec.h"
31 #include "hda_local.h"
32 #include "hda_auto_parser.h"
36 /* board config type */
38 CMI_MINIMAL
, /* back 3-jack */
39 CMI_MIN_FP
, /* back 3-jack + front-panel 2-jack */
40 CMI_FULL
, /* back 6-jack + front-panel 2-jack */
41 CMI_FULL_DIG
, /* back 6-jack + front-panel 2-jack + digital I/O */
42 CMI_ALLOUT
, /* back 5-jack + front-panel 2-jack + digital out */
43 CMI_AUTO
, /* let driver guess it */
49 unsigned int no_line_in
: 1; /* no line-in (5-jack) */
50 unsigned int front_panel
: 1; /* has front-panel 2-jack */
53 struct hda_multi_out multiout
;
54 hda_nid_t dac_nids
[AUTO_CFG_MAX_OUTS
]; /* NID for each DAC */
58 const hda_nid_t
*adc_nids
;
62 const struct hda_input_mux
*input_mux
;
63 unsigned int cur_mux
[2];
66 int num_channel_modes
;
67 const struct hda_channel_mode
*channel_modes
;
69 struct hda_pcm pcm_rec
[2]; /* PCM information */
71 /* pin default configuration */
72 hda_nid_t pin_nid
[NUM_PINS
];
73 unsigned int def_conf
[NUM_PINS
];
74 unsigned int pin_def_confs
;
76 /* multichannel pins */
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 const 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 const 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 const 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 const 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 const 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..
191 /* .name = "Capture Source", */
192 .name
= "Input Source",
194 .info
= cmi_mux_enum_info
,
195 .get
= cmi_mux_enum_get
,
196 .put
= cmi_mux_enum_put
,
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("Beep Playback Volume", 0x23, 0, HDA_OUTPUT
),
203 HDA_CODEC_MUTE("Beep Playback Switch", 0x23, 0, HDA_OUTPUT
),
210 static const struct snd_kcontrol_new cmi9880_ch_mode_mixer
[] = {
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
,
221 /* AUD-in selections:
222 * 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x1f 0x20
224 static const struct hda_input_mux cmi9880_basic_mux
= {
227 { "Front Mic", 0x5 },
234 static const struct hda_input_mux cmi9880_no_line_mux
= {
237 { "Front Mic", 0x5 },
243 /* front, rear, clfe, rear_surr */
244 static const hda_nid_t cmi9880_dac_nids
[4] = {
245 0x03, 0x04, 0x05, 0x06
248 static const hda_nid_t cmi9880_adc_nids
[2] = {
252 #define CMI_DIG_OUT_NID 0x07
253 #define CMI_DIG_IN_NID 0x0a
257 static const struct hda_verb cmi9880_basic_init
[] = {
258 /* port-D for line out (rear panel) */
259 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
260 /* port-E for HP out (front panel) */
261 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
262 /* route front PCM to HP */
263 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
264 /* port-A for surround (rear panel) */
265 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
266 /* port-G for CLFE (rear panel) */
267 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
268 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x02 },
269 /* port-H for side (rear panel) */
270 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
271 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x01 },
272 /* port-C for line-in (rear panel) */
273 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
274 /* port-B for mic-in (rear panel) with vref */
275 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
276 /* port-F for mic-in (front panel) with vref */
277 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
279 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
280 /* route front mic to ADC1/2 */
281 { 0x08, AC_VERB_SET_CONNECT_SEL
, 0x05 },
282 { 0x09, AC_VERB_SET_CONNECT_SEL
, 0x05 },
286 static const struct hda_verb cmi9880_allout_init
[] = {
287 /* port-D for line out (rear panel) */
288 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
289 /* port-E for HP out (front panel) */
290 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
291 /* route front PCM to HP */
292 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
293 /* port-A for side (rear panel) */
294 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
295 /* port-G for CLFE (rear panel) */
296 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
297 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x02 },
298 /* port-H for side (rear panel) */
299 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
300 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x01 },
301 /* port-C for surround (rear panel) */
302 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
303 /* port-B for mic-in (rear panel) with vref */
304 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
305 /* port-F for mic-in (front panel) with vref */
306 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
308 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
309 /* route front mic to ADC1/2 */
310 { 0x08, AC_VERB_SET_CONNECT_SEL
, 0x05 },
311 { 0x09, AC_VERB_SET_CONNECT_SEL
, 0x05 },
317 static int cmi9880_build_controls(struct hda_codec
*codec
)
319 struct cmi_spec
*spec
= codec
->spec
;
320 struct snd_kcontrol
*kctl
;
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
,
333 spec
->multiout
.dig_out_nid
,
334 spec
->multiout
.dig_out_nid
);
337 err
= snd_hda_create_spdif_share_sw(codec
,
341 spec
->multiout
.share_spdif
= 1;
343 if (spec
->dig_in_nid
) {
344 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
349 /* assign Capture Source enums to NID */
350 kctl
= snd_hda_find_mixer_ctl(codec
, "Capture Source");
351 for (i
= 0; kctl
&& i
< kctl
->count
; i
++) {
352 err
= snd_hda_add_nid(codec
, kctl
, i
, spec
->adc_nids
[i
]);
359 /* fill in the multi_dac_nids table, which will decide
360 which audio widget to use for each channel */
361 static int cmi9880_fill_multi_dac_nids(struct hda_codec
*codec
, const struct auto_pin_cfg
*cfg
)
363 struct cmi_spec
*spec
= codec
->spec
;
368 /* clear the table, only one c-media dac assumed here */
369 memset(spec
->dac_nids
, 0, sizeof(spec
->dac_nids
));
370 memset(assigned
, 0, sizeof(assigned
));
371 /* check the pins we found */
372 for (i
= 0; i
< cfg
->line_outs
; i
++) {
373 nid
= cfg
->line_out_pins
[i
];
374 /* nid 0x0b~0x0e is hardwired to audio widget 0x3~0x6 */
375 if (nid
>= 0x0b && nid
<= 0x0e) {
376 spec
->dac_nids
[i
] = (nid
- 0x0b) + 0x03;
377 assigned
[nid
- 0x0b] = 1;
380 /* left pin can be connect to any audio widget */
381 for (i
= 0; i
< cfg
->line_outs
; i
++) {
382 nid
= cfg
->line_out_pins
[i
];
385 /* search for an empty channel */
386 for (j
= 0; j
< cfg
->line_outs
; j
++) {
388 spec
->dac_nids
[i
] = j
+ 0x03;
394 spec
->num_dacs
= cfg
->line_outs
;
398 /* create multi_init table, which is used for multichannel initialization */
399 static int cmi9880_fill_multi_init(struct hda_codec
*codec
, const struct auto_pin_cfg
*cfg
)
401 struct cmi_spec
*spec
= codec
->spec
;
405 /* clear the table, only one c-media dac assumed here */
406 memset(spec
->multi_init
, 0, sizeof(spec
->multi_init
));
407 for (j
= 0, i
= 0; i
< cfg
->line_outs
; i
++) {
408 nid
= cfg
->line_out_pins
[i
];
410 spec
->multi_init
[j
].nid
= nid
;
411 spec
->multi_init
[j
].verb
= AC_VERB_SET_PIN_WIDGET_CONTROL
;
412 spec
->multi_init
[j
].param
= PIN_OUT
;
416 spec
->multi_init
[j
].nid
= nid
;
417 spec
->multi_init
[j
].verb
= AC_VERB_SET_CONNECT_SEL
;
418 spec
->multi_init
[j
].param
= 0;
419 /* find the index in connect list */
420 k
= snd_hda_get_conn_index(codec
, nid
,
421 spec
->dac_nids
[i
], 0);
423 spec
->multi_init
[j
].param
= k
;
430 static int cmi9880_init(struct hda_codec
*codec
)
432 struct cmi_spec
*spec
= codec
->spec
;
433 if (spec
->board_config
== CMI_ALLOUT
)
434 snd_hda_sequence_write(codec
, cmi9880_allout_init
);
436 snd_hda_sequence_write(codec
, cmi9880_basic_init
);
437 if (spec
->board_config
== CMI_AUTO
)
438 snd_hda_sequence_write(codec
, spec
->multi_init
);
443 * Analog playback callbacks
445 static int cmi9880_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
446 struct hda_codec
*codec
,
447 struct snd_pcm_substream
*substream
)
449 struct cmi_spec
*spec
= codec
->spec
;
450 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
454 static int cmi9880_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
455 struct hda_codec
*codec
,
456 unsigned int stream_tag
,
458 struct snd_pcm_substream
*substream
)
460 struct cmi_spec
*spec
= codec
->spec
;
461 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
, stream_tag
,
465 static int cmi9880_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
466 struct hda_codec
*codec
,
467 struct snd_pcm_substream
*substream
)
469 struct cmi_spec
*spec
= codec
->spec
;
470 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
476 static int cmi9880_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
477 struct hda_codec
*codec
,
478 struct snd_pcm_substream
*substream
)
480 struct cmi_spec
*spec
= codec
->spec
;
481 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
484 static int cmi9880_dig_playback_pcm_close(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_close(codec
, &spec
->multiout
);
492 static int cmi9880_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
493 struct hda_codec
*codec
,
494 unsigned int stream_tag
,
496 struct snd_pcm_substream
*substream
)
498 struct cmi_spec
*spec
= codec
->spec
;
499 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
, stream_tag
,
506 static int cmi9880_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
507 struct hda_codec
*codec
,
508 unsigned int stream_tag
,
510 struct snd_pcm_substream
*substream
)
512 struct cmi_spec
*spec
= codec
->spec
;
514 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
],
515 stream_tag
, 0, format
);
519 static int cmi9880_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
520 struct hda_codec
*codec
,
521 struct snd_pcm_substream
*substream
)
523 struct cmi_spec
*spec
= codec
->spec
;
525 snd_hda_codec_cleanup_stream(codec
, spec
->adc_nids
[substream
->number
]);
532 static const struct hda_pcm_stream cmi9880_pcm_analog_playback
= {
536 .nid
= 0x03, /* NID to query formats and rates */
538 .open
= cmi9880_playback_pcm_open
,
539 .prepare
= cmi9880_playback_pcm_prepare
,
540 .cleanup
= cmi9880_playback_pcm_cleanup
544 static const struct hda_pcm_stream cmi9880_pcm_analog_capture
= {
548 .nid
= 0x08, /* NID to query formats and rates */
550 .prepare
= cmi9880_capture_pcm_prepare
,
551 .cleanup
= cmi9880_capture_pcm_cleanup
555 static const struct hda_pcm_stream cmi9880_pcm_digital_playback
= {
559 /* NID is set in cmi9880_build_pcms */
561 .open
= cmi9880_dig_playback_pcm_open
,
562 .close
= cmi9880_dig_playback_pcm_close
,
563 .prepare
= cmi9880_dig_playback_pcm_prepare
567 static const struct hda_pcm_stream cmi9880_pcm_digital_capture
= {
571 /* NID is set in cmi9880_build_pcms */
574 static int cmi9880_build_pcms(struct hda_codec
*codec
)
576 struct cmi_spec
*spec
= codec
->spec
;
577 struct hda_pcm
*info
= spec
->pcm_rec
;
580 codec
->pcm_info
= info
;
582 info
->name
= "CMI9880";
583 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = cmi9880_pcm_analog_playback
;
584 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = cmi9880_pcm_analog_capture
;
586 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
589 info
->name
= "CMI9880 Digital";
590 info
->pcm_type
= HDA_PCM_TYPE_SPDIF
;
591 if (spec
->multiout
.dig_out_nid
) {
592 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = cmi9880_pcm_digital_playback
;
593 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dig_out_nid
;
595 if (spec
->dig_in_nid
) {
596 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = cmi9880_pcm_digital_capture
;
597 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->dig_in_nid
;
604 static void cmi9880_free(struct hda_codec
*codec
)
612 static const char * const cmi9880_models
[CMI_MODELS
] = {
613 [CMI_MINIMAL
] = "minimal",
614 [CMI_MIN_FP
] = "min_fp",
616 [CMI_FULL_DIG
] = "full_dig",
617 [CMI_ALLOUT
] = "allout",
621 static const struct snd_pci_quirk cmi9880_cfg_tbl
[] = {
622 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", CMI_FULL_DIG
),
623 SND_PCI_QUIRK(0x1854, 0x002b, "LG LS75", CMI_MINIMAL
),
624 SND_PCI_QUIRK(0x1854, 0x0032, "LG", CMI_FULL_DIG
),
628 static const struct hda_codec_ops cmi9880_patch_ops
= {
629 .build_controls
= cmi9880_build_controls
,
630 .build_pcms
= cmi9880_build_pcms
,
631 .init
= cmi9880_init
,
632 .free
= cmi9880_free
,
635 static int patch_cmi9880(struct hda_codec
*codec
)
637 struct cmi_spec
*spec
;
639 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
644 spec
->board_config
= snd_hda_check_board_config(codec
, CMI_MODELS
,
647 if (spec
->board_config
< 0) {
648 snd_printdd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
650 spec
->board_config
= CMI_AUTO
; /* try everything */
653 /* copy default DAC NIDs */
654 memcpy(spec
->dac_nids
, cmi9880_dac_nids
, sizeof(spec
->dac_nids
));
657 switch (spec
->board_config
) {
660 spec
->channel_modes
= cmi9880_channel_modes
;
661 if (spec
->board_config
== CMI_MINIMAL
)
662 spec
->num_channel_modes
= 2;
664 spec
->front_panel
= 1;
665 spec
->num_channel_modes
= 3;
667 spec
->multiout
.max_channels
= cmi9880_channel_modes
[0].channels
;
668 spec
->input_mux
= &cmi9880_basic_mux
;
672 spec
->front_panel
= 1;
673 spec
->multiout
.max_channels
= 8;
674 spec
->input_mux
= &cmi9880_basic_mux
;
675 if (spec
->board_config
== CMI_FULL_DIG
) {
676 spec
->multiout
.dig_out_nid
= CMI_DIG_OUT_NID
;
677 spec
->dig_in_nid
= CMI_DIG_IN_NID
;
681 spec
->front_panel
= 1;
682 spec
->multiout
.max_channels
= 8;
683 spec
->no_line_in
= 1;
684 spec
->input_mux
= &cmi9880_no_line_mux
;
685 spec
->multiout
.dig_out_nid
= CMI_DIG_OUT_NID
;
689 unsigned int port_e
, port_f
, port_g
, port_h
;
690 unsigned int port_spdifi
, port_spdifo
;
691 struct auto_pin_cfg cfg
;
693 /* collect pin default configuration */
694 port_e
= snd_hda_codec_get_pincfg(codec
, 0x0f);
695 port_f
= snd_hda_codec_get_pincfg(codec
, 0x10);
696 spec
->front_panel
= 1;
697 if (get_defcfg_connect(port_e
) == AC_JACK_PORT_NONE
||
698 get_defcfg_connect(port_f
) == AC_JACK_PORT_NONE
) {
699 port_g
= snd_hda_codec_get_pincfg(codec
, 0x1f);
700 port_h
= snd_hda_codec_get_pincfg(codec
, 0x20);
701 spec
->channel_modes
= cmi9880_channel_modes
;
703 if (get_defcfg_connect(port_g
) == AC_JACK_PORT_NONE
||
704 get_defcfg_connect(port_h
) == AC_JACK_PORT_NONE
) {
705 /* no optional rear panel */
706 spec
->board_config
= CMI_MINIMAL
;
707 spec
->front_panel
= 0;
708 spec
->num_channel_modes
= 2;
710 spec
->board_config
= CMI_MIN_FP
;
711 spec
->num_channel_modes
= 3;
713 spec
->input_mux
= &cmi9880_basic_mux
;
714 spec
->multiout
.max_channels
= cmi9880_channel_modes
[0].channels
;
716 spec
->input_mux
= &cmi9880_basic_mux
;
717 port_spdifi
= snd_hda_codec_get_pincfg(codec
, 0x13);
718 port_spdifo
= snd_hda_codec_get_pincfg(codec
, 0x12);
719 if (get_defcfg_connect(port_spdifo
) != AC_JACK_PORT_NONE
)
720 spec
->multiout
.dig_out_nid
= CMI_DIG_OUT_NID
;
721 if (get_defcfg_connect(port_spdifi
) != AC_JACK_PORT_NONE
)
722 spec
->dig_in_nid
= CMI_DIG_IN_NID
;
723 spec
->multiout
.max_channels
= 8;
725 snd_hda_parse_pin_def_config(codec
, &cfg
, NULL
);
727 spec
->multiout
.max_channels
= cfg
.line_outs
* 2;
728 cmi9880_fill_multi_dac_nids(codec
, &cfg
);
729 cmi9880_fill_multi_init(codec
, &cfg
);
731 snd_printd("patch_cmedia: cannot detect association in defcfg\n");
736 spec
->multiout
.num_dacs
= spec
->num_dacs
;
737 spec
->multiout
.dac_nids
= spec
->dac_nids
;
739 spec
->adc_nids
= cmi9880_adc_nids
;
741 codec
->patch_ops
= cmi9880_patch_ops
;
749 static const struct hda_codec_preset snd_hda_preset_cmedia
[] = {
750 { .id
= 0x13f69880, .name
= "CMI9880", .patch
= patch_cmi9880
},
751 { .id
= 0x434d4980, .name
= "CMI9880", .patch
= patch_cmi9880
},
755 MODULE_ALIAS("snd-hda-codec-id:13f69880");
756 MODULE_ALIAS("snd-hda-codec-id:434d4980");
758 MODULE_LICENSE("GPL");
759 MODULE_DESCRIPTION("C-Media HD-audio codec");
761 static struct hda_codec_preset_list cmedia_list
= {
762 .preset
= snd_hda_preset_cmedia
,
763 .owner
= THIS_MODULE
,
766 static int __init
patch_cmedia_init(void)
768 return snd_hda_add_codec_preset(&cmedia_list
);
771 static void __exit
patch_cmedia_exit(void)
773 snd_hda_delete_codec_preset(&cmedia_list
);
776 module_init(patch_cmedia_init
)
777 module_exit(patch_cmedia_exit
)