blob: 9eaf99b01aecdf5172336dd5f642e463b2e66154 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/init.h>
25#include <linux/delay.h>
26#include <linux/slab.h>
27#include <linux/pci.h>
28#include <sound/core.h>
29#include "hda_codec.h"
30#include "hda_local.h"
Takashi Iwaif953eff2005-04-08 15:05:13 +020031#define NUM_PINS 11
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33
34/* board config type */
35enum {
36 CMI_MINIMAL, /* back 3-jack */
37 CMI_MIN_FP, /* back 3-jack + front-panel 2-jack */
38 CMI_FULL, /* back 6-jack + front-panel 2-jack */
39 CMI_FULL_DIG, /* back 6-jack + front-panel 2-jack + digital I/O */
40 CMI_ALLOUT, /* back 5-jack + front-panel 2-jack + digital out */
Takashi Iwaif953eff2005-04-08 15:05:13 +020041 CMI_AUTO, /* let driver guess it */
Takashi Iwaif5fcc132006-11-24 17:07:44 +010042 CMI_MODELS
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
45struct cmi_spec {
46 int board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 unsigned int no_line_in: 1; /* no line-in (5-jack) */
48 unsigned int front_panel: 1; /* has front-panel 2-jack */
49
50 /* playback */
51 struct hda_multi_out multiout;
Takashi Iwai41923e42007-10-22 17:20:10 +020052 hda_nid_t dac_nids[AUTO_CFG_MAX_OUTS]; /* NID for each DAC */
Takashi Iwaie9edcee2005-06-13 14:16:38 +020053 int num_dacs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55 /* capture */
Takashi Iwai779d0652011-05-02 11:34:20 +020056 const hda_nid_t *adc_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 hda_nid_t dig_in_nid;
58
59 /* capture source */
60 const struct hda_input_mux *input_mux;
61 unsigned int cur_mux[2];
62
63 /* channel mode */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +010064 int num_channel_modes;
65 const struct hda_channel_mode *channel_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 struct hda_pcm pcm_rec[2]; /* PCM information */
Takashi Iwaif953eff2005-04-08 15:05:13 +020068
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020069 /* pin default configuration */
Takashi Iwaif953eff2005-04-08 15:05:13 +020070 hda_nid_t pin_nid[NUM_PINS];
71 unsigned int def_conf[NUM_PINS];
72 unsigned int pin_def_confs;
73
74 /* multichannel pins */
Takashi Iwaif953eff2005-04-08 15:05:13 +020075 struct hda_verb multi_init[9]; /* 2 verbs for each pin + terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -070076};
77
78/*
79 * input MUX
80 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010081static int cmi_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
84 struct cmi_spec *spec = codec->spec;
85 return snd_hda_input_mux_info(spec->input_mux, uinfo);
86}
87
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010088static int cmi_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089{
90 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
91 struct cmi_spec *spec = codec->spec;
92 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
93
94 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
95 return 0;
96}
97
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010098static int cmi_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
100 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
101 struct cmi_spec *spec = codec->spec;
102 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
103
104 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
105 spec->adc_nids[adc_idx], &spec->cur_mux[adc_idx]);
106}
107
108/*
109 * shared line-in, mic for surrounds
110 */
111
112/* 3-stack / 2 channel */
Takashi Iwai779d0652011-05-02 11:34:20 +0200113static const struct hda_verb cmi9880_ch2_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 /* set line-in PIN for input */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200115 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 /* set mic PIN for input, also enable vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200117 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 /* route front PCM (DAC1) to HP */
119 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
120 {}
121};
122
123/* 3-stack / 6 channel */
Takashi Iwai779d0652011-05-02 11:34:20 +0200124static const struct hda_verb cmi9880_ch6_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* set line-in PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200126 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 /* set mic PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200128 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /* route front PCM (DAC1) to HP */
130 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
131 {}
132};
133
134/* 3-stack+front / 8 channel */
Takashi Iwai779d0652011-05-02 11:34:20 +0200135static const struct hda_verb cmi9880_ch8_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 /* set line-in PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200137 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 /* set mic PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200139 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /* route rear-surround PCM (DAC4) to HP */
141 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x03 },
142 {}
143};
144
Takashi Iwai779d0652011-05-02 11:34:20 +0200145static const struct hda_channel_mode cmi9880_channel_modes[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 { 2, cmi9880_ch2_init },
147 { 6, cmi9880_ch6_init },
148 { 8, cmi9880_ch8_init },
149};
150
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100151static int cmi_ch_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
154 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100155 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_modes,
156 spec->num_channel_modes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100159static int cmi_ch_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
161 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
162 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100163 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_modes,
164 spec->num_channel_modes, spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165}
166
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100167static int cmi_ch_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
170 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100171 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_modes,
172 spec->num_channel_modes, &spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
174
175/*
176 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200177static const struct snd_kcontrol_new cmi9880_basic_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* CMI9880 has no playback volumes! */
179 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT), /* front */
180 HDA_CODEC_MUTE("Surround Playback Switch", 0x04, 0x0, HDA_OUTPUT),
181 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
182 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
183 HDA_CODEC_MUTE("Side Playback Switch", 0x06, 0x0, HDA_OUTPUT),
184 {
185 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
186 /* The multiple "Capture Source" controls confuse alsamixer
187 * So call somewhat different..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 */
189 /* .name = "Capture Source", */
190 .name = "Input Source",
191 .count = 2,
192 .info = cmi_mux_enum_info,
193 .get = cmi_mux_enum_get,
194 .put = cmi_mux_enum_put,
195 },
196 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0, HDA_INPUT),
197 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0, HDA_INPUT),
198 HDA_CODEC_MUTE("Capture Switch", 0x08, 0, HDA_INPUT),
199 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0, HDA_INPUT),
Jaroslav Kyselad355c82a2009-11-03 15:47:25 +0100200 HDA_CODEC_VOLUME("Beep Playback Volume", 0x23, 0, HDA_OUTPUT),
201 HDA_CODEC_MUTE("Beep Playback Switch", 0x23, 0, HDA_OUTPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 { } /* end */
203};
204
205/*
206 * shared I/O pins
207 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200208static const struct snd_kcontrol_new cmi9880_ch_mode_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 {
210 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
211 .name = "Channel Mode",
212 .info = cmi_ch_mode_info,
213 .get = cmi_ch_mode_get,
214 .put = cmi_ch_mode_put,
215 },
216 { } /* end */
217};
218
219/* AUD-in selections:
220 * 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x1f 0x20
221 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200222static const struct hda_input_mux cmi9880_basic_mux = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 .num_items = 4,
224 .items = {
225 { "Front Mic", 0x5 },
226 { "Rear Mic", 0x2 },
227 { "Line", 0x1 },
228 { "CD", 0x7 },
229 }
230};
231
Takashi Iwai779d0652011-05-02 11:34:20 +0200232static const struct hda_input_mux cmi9880_no_line_mux = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 .num_items = 3,
234 .items = {
235 { "Front Mic", 0x5 },
236 { "Rear Mic", 0x2 },
237 { "CD", 0x7 },
238 }
239};
240
241/* front, rear, clfe, rear_surr */
Takashi Iwai779d0652011-05-02 11:34:20 +0200242static const hda_nid_t cmi9880_dac_nids[4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 0x03, 0x04, 0x05, 0x06
244};
245/* ADC0, ADC1 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200246static const hda_nid_t cmi9880_adc_nids[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 0x08, 0x09
248};
249
250#define CMI_DIG_OUT_NID 0x07
251#define CMI_DIG_IN_NID 0x0a
252
253/*
254 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200255static const struct hda_verb cmi9880_basic_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* port-D for line out (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200257 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* port-E for HP out (front panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200259 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 /* route front PCM to HP */
261 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
262 /* port-A for surround (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200263 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* port-G for CLFE (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200265 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100266 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x02 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* port-H for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200268 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100269 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x01 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* port-C for line-in (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200271 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* port-B for mic-in (rear panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200273 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* port-F for mic-in (front panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200275 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* CD-in */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200277 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* route front mic to ADC1/2 */
279 { 0x08, AC_VERB_SET_CONNECT_SEL, 0x05 },
280 { 0x09, AC_VERB_SET_CONNECT_SEL, 0x05 },
281 {} /* terminator */
282};
283
Takashi Iwai779d0652011-05-02 11:34:20 +0200284static const struct hda_verb cmi9880_allout_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 /* port-D for line out (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200286 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /* port-E for HP out (front panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200288 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /* route front PCM to HP */
290 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
291 /* port-A for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200292 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 /* port-G for CLFE (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200294 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100295 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x02 },
296 /* port-H for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200297 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100298 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x01 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* port-C for surround (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200300 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* port-B for mic-in (rear panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200302 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 /* port-F for mic-in (front panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200304 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 /* CD-in */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200306 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* route front mic to ADC1/2 */
308 { 0x08, AC_VERB_SET_CONNECT_SEL, 0x05 },
309 { 0x09, AC_VERB_SET_CONNECT_SEL, 0x05 },
310 {} /* terminator */
311};
312
313/*
314 */
315static int cmi9880_build_controls(struct hda_codec *codec)
316{
317 struct cmi_spec *spec = codec->spec;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100318 struct snd_kcontrol *kctl;
319 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 err = snd_hda_add_new_ctls(codec, cmi9880_basic_mixer);
322 if (err < 0)
323 return err;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100324 if (spec->channel_modes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 err = snd_hda_add_new_ctls(codec, cmi9880_ch_mode_mixer);
326 if (err < 0)
327 return err;
328 }
329 if (spec->multiout.dig_out_nid) {
Stephen Warren74b654c2011-06-01 11:14:18 -0600330 err = snd_hda_create_spdif_out_ctls(codec,
331 spec->multiout.dig_out_nid,
332 spec->multiout.dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (err < 0)
334 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +0100335 err = snd_hda_create_spdif_share_sw(codec,
336 &spec->multiout);
337 if (err < 0)
338 return err;
339 spec->multiout.share_spdif = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341 if (spec->dig_in_nid) {
342 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
343 if (err < 0)
344 return err;
345 }
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100346
347 /* assign Capture Source enums to NID */
348 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
349 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai21949f02009-12-23 08:31:59 +0100350 err = snd_hda_add_nid(codec, kctl, i, spec->adc_nids[i]);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100351 if (err < 0)
352 return err;
353 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 0;
355}
356
Takashi Iwaif953eff2005-04-08 15:05:13 +0200357/* fill in the multi_dac_nids table, which will decide
358 which audio widget to use for each channel */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200359static int cmi9880_fill_multi_dac_nids(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200360{
361 struct cmi_spec *spec = codec->spec;
362 hda_nid_t nid;
363 int assigned[4];
364 int i, j;
365
366 /* clear the table, only one c-media dac assumed here */
367 memset(spec->dac_nids, 0, sizeof(spec->dac_nids));
368 memset(assigned, 0, sizeof(assigned));
369 /* check the pins we found */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200370 for (i = 0; i < cfg->line_outs; i++) {
371 nid = cfg->line_out_pins[i];
Takashi Iwaif953eff2005-04-08 15:05:13 +0200372 /* nid 0x0b~0x0e is hardwired to audio widget 0x3~0x6 */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200373 if (nid >= 0x0b && nid <= 0x0e) {
374 spec->dac_nids[i] = (nid - 0x0b) + 0x03;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200375 assigned[nid - 0x0b] = 1;
376 }
377 }
378 /* left pin can be connect to any audio widget */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200379 for (i = 0; i < cfg->line_outs; i++) {
380 nid = cfg->line_out_pins[i];
381 if (nid <= 0x0e)
382 continue;
383 /* search for an empty channel */
384 for (j = 0; j < cfg->line_outs; j++) {
385 if (! assigned[j]) {
Nicolas Grazianofb92e6f2005-07-27 17:25:08 +0200386 spec->dac_nids[i] = j + 0x03;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200387 assigned[j] = 1;
388 break;
389 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200390 }
391 }
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200392 spec->num_dacs = cfg->line_outs;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200393 return 0;
394}
395
396/* create multi_init table, which is used for multichannel initialization */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200397static int cmi9880_fill_multi_init(struct hda_codec *codec, const struct auto_pin_cfg *cfg)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200398{
399 struct cmi_spec *spec = codec->spec;
400 hda_nid_t nid;
401 int i, j, k, len;
402
403 /* clear the table, only one c-media dac assumed here */
404 memset(spec->multi_init, 0, sizeof(spec->multi_init));
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200405 for (j = 0, i = 0; i < cfg->line_outs; i++) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200406 hda_nid_t conn[4];
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200407 nid = cfg->line_out_pins[i];
Takashi Iwaif953eff2005-04-08 15:05:13 +0200408 /* set as output */
409 spec->multi_init[j].nid = nid;
410 spec->multi_init[j].verb = AC_VERB_SET_PIN_WIDGET_CONTROL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200411 spec->multi_init[j].param = PIN_OUT;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200412 j++;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200413 if (nid > 0x0e) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200414 /* set connection */
415 spec->multi_init[j].nid = nid;
416 spec->multi_init[j].verb = AC_VERB_SET_CONNECT_SEL;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200417 spec->multi_init[j].param = 0;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200418 /* find the index in connect list */
419 len = snd_hda_get_connections(codec, nid, conn, 4);
420 for (k = 0; k < len; k++)
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200421 if (conn[k] == spec->dac_nids[i]) {
Nicolas Grazianofb92e6f2005-07-27 17:25:08 +0200422 spec->multi_init[j].param = k;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200423 break;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200424 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200425 j++;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200426 }
427 }
428 return 0;
429}
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static int cmi9880_init(struct hda_codec *codec)
432{
433 struct cmi_spec *spec = codec->spec;
434 if (spec->board_config == CMI_ALLOUT)
435 snd_hda_sequence_write(codec, cmi9880_allout_init);
436 else
437 snd_hda_sequence_write(codec, cmi9880_basic_init);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200438 if (spec->board_config == CMI_AUTO)
439 snd_hda_sequence_write(codec, spec->multi_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 return 0;
441}
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443/*
444 * Analog playback callbacks
445 */
446static int cmi9880_playback_pcm_open(struct hda_pcm_stream *hinfo,
447 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100448 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
450 struct cmi_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +0100451 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
452 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453}
454
455static int cmi9880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
456 struct hda_codec *codec,
457 unsigned int stream_tag,
458 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100459 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 struct cmi_spec *spec = codec->spec;
462 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
463 format, substream);
464}
465
466static int cmi9880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
467 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100468 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
470 struct cmi_spec *spec = codec->spec;
471 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
472}
473
474/*
475 * Digital out
476 */
477static int cmi9880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
478 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100479 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct cmi_spec *spec = codec->spec;
482 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
483}
484
485static int cmi9880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
486 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100487 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
489 struct cmi_spec *spec = codec->spec;
490 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
491}
492
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200493static int cmi9880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
494 struct hda_codec *codec,
495 unsigned int stream_tag,
496 unsigned int format,
497 struct snd_pcm_substream *substream)
498{
499 struct cmi_spec *spec = codec->spec;
500 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
501 format, substream);
502}
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504/*
505 * Analog capture
506 */
507static int cmi9880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
508 struct hda_codec *codec,
509 unsigned int stream_tag,
510 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100511 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 struct cmi_spec *spec = codec->spec;
514
515 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
516 stream_tag, 0, format);
517 return 0;
518}
519
520static int cmi9880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
521 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100522 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 struct cmi_spec *spec = codec->spec;
525
Takashi Iwai888afa12008-03-18 09:57:50 +0100526 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return 0;
528}
529
530
531/*
532 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200533static const struct hda_pcm_stream cmi9880_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 .substreams = 1,
535 .channels_min = 2,
536 .channels_max = 8,
537 .nid = 0x03, /* NID to query formats and rates */
538 .ops = {
539 .open = cmi9880_playback_pcm_open,
540 .prepare = cmi9880_playback_pcm_prepare,
541 .cleanup = cmi9880_playback_pcm_cleanup
542 },
543};
544
Takashi Iwai779d0652011-05-02 11:34:20 +0200545static const struct hda_pcm_stream cmi9880_pcm_analog_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 .substreams = 2,
547 .channels_min = 2,
548 .channels_max = 2,
549 .nid = 0x08, /* NID to query formats and rates */
550 .ops = {
551 .prepare = cmi9880_capture_pcm_prepare,
552 .cleanup = cmi9880_capture_pcm_cleanup
553 },
554};
555
Takashi Iwai779d0652011-05-02 11:34:20 +0200556static const struct hda_pcm_stream cmi9880_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 .substreams = 1,
558 .channels_min = 2,
559 .channels_max = 2,
560 /* NID is set in cmi9880_build_pcms */
561 .ops = {
562 .open = cmi9880_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200563 .close = cmi9880_dig_playback_pcm_close,
564 .prepare = cmi9880_dig_playback_pcm_prepare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 },
566};
567
Takashi Iwai779d0652011-05-02 11:34:20 +0200568static const struct hda_pcm_stream cmi9880_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 .substreams = 1,
570 .channels_min = 2,
571 .channels_max = 2,
572 /* NID is set in cmi9880_build_pcms */
573};
574
575static int cmi9880_build_pcms(struct hda_codec *codec)
576{
577 struct cmi_spec *spec = codec->spec;
578 struct hda_pcm *info = spec->pcm_rec;
579
580 codec->num_pcms = 1;
581 codec->pcm_info = info;
582
583 info->name = "CMI9880";
584 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cmi9880_pcm_analog_playback;
585 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cmi9880_pcm_analog_capture;
586
587 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
588 codec->num_pcms++;
589 info++;
590 info->name = "CMI9880 Digital";
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100591 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (spec->multiout.dig_out_nid) {
593 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cmi9880_pcm_digital_playback;
594 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
595 }
596 if (spec->dig_in_nid) {
597 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cmi9880_pcm_digital_capture;
598 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
599 }
600 }
601
602 return 0;
603}
604
605static void cmi9880_free(struct hda_codec *codec)
606{
607 kfree(codec->spec);
608}
609
610/*
611 */
612
Takashi Iwaiea734962011-01-17 11:29:34 +0100613static const char * const cmi9880_models[CMI_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100614 [CMI_MINIMAL] = "minimal",
615 [CMI_MIN_FP] = "min_fp",
616 [CMI_FULL] = "full",
617 [CMI_FULL_DIG] = "full_dig",
618 [CMI_ALLOUT] = "allout",
619 [CMI_AUTO] = "auto",
620};
621
Takashi Iwai779d0652011-05-02 11:34:20 +0200622static const struct snd_pci_quirk cmi9880_cfg_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100623 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", CMI_FULL_DIG),
Takashi Iwai79d06432008-05-30 16:54:49 +0200624 SND_PCI_QUIRK(0x1854, 0x002b, "LG LS75", CMI_MINIMAL),
Jiang zhe5b030382008-04-14 13:26:53 +0200625 SND_PCI_QUIRK(0x1854, 0x0032, "LG", CMI_FULL_DIG),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 {} /* terminator */
627};
628
Takashi Iwai779d0652011-05-02 11:34:20 +0200629static const struct hda_codec_ops cmi9880_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 .build_controls = cmi9880_build_controls,
631 .build_pcms = cmi9880_build_pcms,
632 .init = cmi9880_init,
633 .free = cmi9880_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634};
635
636static int patch_cmi9880(struct hda_codec *codec)
637{
638 struct cmi_spec *spec;
639
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200640 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (spec == NULL)
642 return -ENOMEM;
643
644 codec->spec = spec;
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100645 spec->board_config = snd_hda_check_board_config(codec, CMI_MODELS,
646 cmi9880_models,
647 cmi9880_cfg_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (spec->board_config < 0) {
Takashi Iwai9a11f1a2009-07-28 16:01:20 +0200649 snd_printdd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
650 codec->chip_name);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200651 spec->board_config = CMI_AUTO; /* try everything */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
Takashi Iwaif953eff2005-04-08 15:05:13 +0200654 /* copy default DAC NIDs */
655 memcpy(spec->dac_nids, cmi9880_dac_nids, sizeof(spec->dac_nids));
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200656 spec->num_dacs = 4;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 switch (spec->board_config) {
659 case CMI_MINIMAL:
660 case CMI_MIN_FP:
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100661 spec->channel_modes = cmi9880_channel_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (spec->board_config == CMI_MINIMAL)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100663 spec->num_channel_modes = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 else {
665 spec->front_panel = 1;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100666 spec->num_channel_modes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 spec->multiout.max_channels = cmi9880_channel_modes[0].channels;
669 spec->input_mux = &cmi9880_basic_mux;
670 break;
671 case CMI_FULL:
672 case CMI_FULL_DIG:
673 spec->front_panel = 1;
674 spec->multiout.max_channels = 8;
675 spec->input_mux = &cmi9880_basic_mux;
676 if (spec->board_config == CMI_FULL_DIG) {
677 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
678 spec->dig_in_nid = CMI_DIG_IN_NID;
679 }
680 break;
681 case CMI_ALLOUT:
682 spec->front_panel = 1;
683 spec->multiout.max_channels = 8;
684 spec->no_line_in = 1;
685 spec->input_mux = &cmi9880_no_line_mux;
686 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
687 break;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200688 case CMI_AUTO:
689 {
690 unsigned int port_e, port_f, port_g, port_h;
691 unsigned int port_spdifi, port_spdifo;
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200692 struct auto_pin_cfg cfg;
693
Takashi Iwaif953eff2005-04-08 15:05:13 +0200694 /* collect pin default configuration */
Takashi Iwai2f334f92009-02-20 14:37:42 +0100695 port_e = snd_hda_codec_get_pincfg(codec, 0x0f);
696 port_f = snd_hda_codec_get_pincfg(codec, 0x10);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200697 spec->front_panel = 1;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200698 if (get_defcfg_connect(port_e) == AC_JACK_PORT_NONE ||
699 get_defcfg_connect(port_f) == AC_JACK_PORT_NONE) {
Takashi Iwai2f334f92009-02-20 14:37:42 +0100700 port_g = snd_hda_codec_get_pincfg(codec, 0x1f);
701 port_h = snd_hda_codec_get_pincfg(codec, 0x20);
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100702 spec->channel_modes = cmi9880_channel_modes;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200703 /* no front panel */
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200704 if (get_defcfg_connect(port_g) == AC_JACK_PORT_NONE ||
705 get_defcfg_connect(port_h) == AC_JACK_PORT_NONE) {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200706 /* no optional rear panel */
707 spec->board_config = CMI_MINIMAL;
708 spec->front_panel = 0;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100709 spec->num_channel_modes = 2;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200710 } else {
Takashi Iwaif953eff2005-04-08 15:05:13 +0200711 spec->board_config = CMI_MIN_FP;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100712 spec->num_channel_modes = 3;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200713 }
Takashi Iwaif953eff2005-04-08 15:05:13 +0200714 spec->input_mux = &cmi9880_basic_mux;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200715 spec->multiout.max_channels = cmi9880_channel_modes[0].channels;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200716 } else {
717 spec->input_mux = &cmi9880_basic_mux;
Takashi Iwai2f334f92009-02-20 14:37:42 +0100718 port_spdifi = snd_hda_codec_get_pincfg(codec, 0x13);
719 port_spdifo = snd_hda_codec_get_pincfg(codec, 0x12);
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200720 if (get_defcfg_connect(port_spdifo) != AC_JACK_PORT_NONE)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200721 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200722 if (get_defcfg_connect(port_spdifi) != AC_JACK_PORT_NONE)
Takashi Iwaif953eff2005-04-08 15:05:13 +0200723 spec->dig_in_nid = CMI_DIG_IN_NID;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200724 spec->multiout.max_channels = 8;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200725 }
Kailang Yangdf694da2005-12-05 19:42:22 +0100726 snd_hda_parse_pin_def_config(codec, &cfg, NULL);
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200727 if (cfg.line_outs) {
728 spec->multiout.max_channels = cfg.line_outs * 2;
729 cmi9880_fill_multi_dac_nids(codec, &cfg);
730 cmi9880_fill_multi_init(codec, &cfg);
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200731 } else
732 snd_printd("patch_cmedia: cannot detect association in defcfg\n");
Takashi Iwaif953eff2005-04-08 15:05:13 +0200733 break;
Takashi Iwaid21b37e2005-04-20 13:45:55 +0200734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200737 spec->multiout.num_dacs = spec->num_dacs;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200738 spec->multiout.dac_nids = spec->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 spec->adc_nids = cmi9880_adc_nids;
741
742 codec->patch_ops = cmi9880_patch_ops;
743
744 return 0;
745}
746
747/*
748 * patch entries
749 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200750static const struct hda_codec_preset snd_hda_preset_cmedia[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 { .id = 0x13f69880, .name = "CMI9880", .patch = patch_cmi9880 },
752 { .id = 0x434d4980, .name = "CMI9880", .patch = patch_cmi9880 },
753 {} /* terminator */
754};
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100755
756MODULE_ALIAS("snd-hda-codec-id:13f69880");
757MODULE_ALIAS("snd-hda-codec-id:434d4980");
758
759MODULE_LICENSE("GPL");
760MODULE_DESCRIPTION("C-Media HD-audio codec");
761
762static struct hda_codec_preset_list cmedia_list = {
763 .preset = snd_hda_preset_cmedia,
764 .owner = THIS_MODULE,
765};
766
767static int __init patch_cmedia_init(void)
768{
769 return snd_hda_add_codec_preset(&cmedia_list);
770}
771
772static void __exit patch_cmedia_exit(void)
773{
774 snd_hda_delete_codec_preset(&cmedia_list);
775}
776
777module_init(patch_cmedia_init)
778module_exit(patch_cmedia_exit)