blob: 061ea5965dd5dc17b6af0fa32f69c658831e335c [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/slab.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040026#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <sound/core.h>
28#include "hda_codec.h"
29#include "hda_local.h"
Takashi Iwai128bc4b2012-05-07 17:42:31 +020030#include "hda_auto_parser.h"
Takashi Iwaib060fb02012-12-19 17:35:47 +010031#include "hda_jack.h"
32#include "hda_generic.h"
33
Takashi Iwai998caa42014-02-10 18:18:17 +010034#undef ENABLE_CMI_STATIC_QUIRKS
35
36#ifdef ENABLE_CMI_STATIC_QUIRKS
Takashi Iwaif953eff2005-04-08 15:05:13 +020037#define NUM_PINS 11
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39
40/* board config type */
41enum {
42 CMI_MINIMAL, /* back 3-jack */
43 CMI_MIN_FP, /* back 3-jack + front-panel 2-jack */
44 CMI_FULL, /* back 6-jack + front-panel 2-jack */
45 CMI_FULL_DIG, /* back 6-jack + front-panel 2-jack + digital I/O */
46 CMI_ALLOUT, /* back 5-jack + front-panel 2-jack + digital out */
Takashi Iwaif953eff2005-04-08 15:05:13 +020047 CMI_AUTO, /* let driver guess it */
Takashi Iwaif5fcc132006-11-24 17:07:44 +010048 CMI_MODELS
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
Takashi Iwai998caa42014-02-10 18:18:17 +010050#endif /* ENABLE_CMI_STATIC_QUIRKS */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52struct cmi_spec {
Takashi Iwaib060fb02012-12-19 17:35:47 +010053 struct hda_gen_spec gen;
54
Takashi Iwai998caa42014-02-10 18:18:17 +010055#ifdef ENABLE_CMI_STATIC_QUIRKS
Takashi Iwaib060fb02012-12-19 17:35:47 +010056 /* below are only for static models */
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 int board_config;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned int no_line_in: 1; /* no line-in (5-jack) */
60 unsigned int front_panel: 1; /* has front-panel 2-jack */
61
62 /* playback */
63 struct hda_multi_out multiout;
Takashi Iwai41923e42007-10-22 17:20:10 +020064 hda_nid_t dac_nids[AUTO_CFG_MAX_OUTS]; /* NID for each DAC */
Takashi Iwaie9edcee2005-06-13 14:16:38 +020065 int num_dacs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 /* capture */
Takashi Iwai779d0652011-05-02 11:34:20 +020068 const hda_nid_t *adc_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 hda_nid_t dig_in_nid;
70
71 /* capture source */
72 const struct hda_input_mux *input_mux;
73 unsigned int cur_mux[2];
74
75 /* channel mode */
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +010076 int num_channel_modes;
77 const struct hda_channel_mode *channel_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79 struct hda_pcm pcm_rec[2]; /* PCM information */
Takashi Iwaif953eff2005-04-08 15:05:13 +020080
André Goddard Rosaaf901ca2009-11-14 13:09:05 -020081 /* pin default configuration */
Takashi Iwaif953eff2005-04-08 15:05:13 +020082 hda_nid_t pin_nid[NUM_PINS];
83 unsigned int def_conf[NUM_PINS];
84 unsigned int pin_def_confs;
85
86 /* multichannel pins */
Takashi Iwaif953eff2005-04-08 15:05:13 +020087 struct hda_verb multi_init[9]; /* 2 verbs for each pin + terminator */
Takashi Iwai998caa42014-02-10 18:18:17 +010088#endif /* ENABLE_CMI_STATIC_QUIRKS */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089};
90
Takashi Iwai998caa42014-02-10 18:18:17 +010091#ifdef ENABLE_CMI_STATIC_QUIRKS
Linus Torvalds1da177e2005-04-16 15:20:36 -070092/*
93 * input MUX
94 */
Takashi Iwaic8b6bf92005-11-17 14:57:47 +010095static int cmi_mux_enum_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
98 struct cmi_spec *spec = codec->spec;
99 return snd_hda_input_mux_info(spec->input_mux, uinfo);
100}
101
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100102static int cmi_mux_enum_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
105 struct cmi_spec *spec = codec->spec;
106 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
107
108 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
109 return 0;
110}
111
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100112static int cmi_mux_enum_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
115 struct cmi_spec *spec = codec->spec;
116 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
117
118 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
119 spec->adc_nids[adc_idx], &spec->cur_mux[adc_idx]);
120}
121
122/*
123 * shared line-in, mic for surrounds
124 */
125
126/* 3-stack / 2 channel */
Takashi Iwai779d0652011-05-02 11:34:20 +0200127static const struct hda_verb cmi9880_ch2_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* set line-in PIN for input */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200129 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* set mic PIN for input, also enable vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200131 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /* route front PCM (DAC1) to HP */
133 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
134 {}
135};
136
137/* 3-stack / 6 channel */
Takashi Iwai779d0652011-05-02 11:34:20 +0200138static const struct hda_verb cmi9880_ch6_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* set line-in PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200140 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 /* set mic PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200142 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 /* route front PCM (DAC1) to HP */
144 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
145 {}
146};
147
148/* 3-stack+front / 8 channel */
Takashi Iwai779d0652011-05-02 11:34:20 +0200149static const struct hda_verb cmi9880_ch8_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 /* set line-in PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200151 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 /* set mic PIN for output */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200153 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 /* route rear-surround PCM (DAC4) to HP */
155 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x03 },
156 {}
157};
158
Takashi Iwai779d0652011-05-02 11:34:20 +0200159static const struct hda_channel_mode cmi9880_channel_modes[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 { 2, cmi9880_ch2_init },
161 { 6, cmi9880_ch6_init },
162 { 8, cmi9880_ch8_init },
163};
164
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100165static int cmi_ch_mode_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
167 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
168 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100169 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_modes,
170 spec->num_channel_modes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100173static int cmi_ch_mode_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
176 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100177 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_modes,
178 spec->num_channel_modes, spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179}
180
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100181static int cmi_ch_mode_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
184 struct cmi_spec *spec = codec->spec;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100185 return snd_hda_ch_mode_put(codec, ucontrol, spec->channel_modes,
186 spec->num_channel_modes, &spec->multiout.max_channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189/*
190 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200191static const struct snd_kcontrol_new cmi9880_basic_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 /* CMI9880 has no playback volumes! */
193 HDA_CODEC_MUTE("PCM Playback Switch", 0x03, 0x0, HDA_OUTPUT), /* front */
194 HDA_CODEC_MUTE("Surround Playback Switch", 0x04, 0x0, HDA_OUTPUT),
195 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
196 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
197 HDA_CODEC_MUTE("Side Playback Switch", 0x06, 0x0, HDA_OUTPUT),
198 {
199 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
200 /* The multiple "Capture Source" controls confuse alsamixer
201 * So call somewhat different..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 */
203 /* .name = "Capture Source", */
204 .name = "Input Source",
205 .count = 2,
206 .info = cmi_mux_enum_info,
207 .get = cmi_mux_enum_get,
208 .put = cmi_mux_enum_put,
209 },
210 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0, HDA_INPUT),
211 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0, HDA_INPUT),
212 HDA_CODEC_MUTE("Capture Switch", 0x08, 0, HDA_INPUT),
213 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0, HDA_INPUT),
Jaroslav Kyselad355c82a2009-11-03 15:47:25 +0100214 HDA_CODEC_VOLUME("Beep Playback Volume", 0x23, 0, HDA_OUTPUT),
215 HDA_CODEC_MUTE("Beep Playback Switch", 0x23, 0, HDA_OUTPUT),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 { } /* end */
217};
218
219/*
220 * shared I/O pins
221 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200222static const struct snd_kcontrol_new cmi9880_ch_mode_mixer[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 {
224 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
225 .name = "Channel Mode",
226 .info = cmi_ch_mode_info,
227 .get = cmi_ch_mode_get,
228 .put = cmi_ch_mode_put,
229 },
230 { } /* end */
231};
232
233/* AUD-in selections:
234 * 0x0b 0x0c 0x0d 0x0e 0x0f 0x10 0x11 0x1f 0x20
235 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200236static const struct hda_input_mux cmi9880_basic_mux = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 .num_items = 4,
238 .items = {
239 { "Front Mic", 0x5 },
240 { "Rear Mic", 0x2 },
241 { "Line", 0x1 },
242 { "CD", 0x7 },
243 }
244};
245
Takashi Iwai779d0652011-05-02 11:34:20 +0200246static const struct hda_input_mux cmi9880_no_line_mux = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .num_items = 3,
248 .items = {
249 { "Front Mic", 0x5 },
250 { "Rear Mic", 0x2 },
251 { "CD", 0x7 },
252 }
253};
254
255/* front, rear, clfe, rear_surr */
Takashi Iwai779d0652011-05-02 11:34:20 +0200256static const hda_nid_t cmi9880_dac_nids[4] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 0x03, 0x04, 0x05, 0x06
258};
259/* ADC0, ADC1 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200260static const hda_nid_t cmi9880_adc_nids[2] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 0x08, 0x09
262};
263
264#define CMI_DIG_OUT_NID 0x07
265#define CMI_DIG_IN_NID 0x0a
266
267/*
268 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200269static const struct hda_verb cmi9880_basic_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 /* port-D for line out (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200271 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 /* port-E for HP out (front panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200273 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 /* route front PCM to HP */
275 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
276 /* port-A for surround (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200277 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /* port-G for CLFE (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200279 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100280 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x02 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /* port-H for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200282 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100283 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x01 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 /* port-C for line-in (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200285 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /* port-B for mic-in (rear panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200287 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* port-F for mic-in (front panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200289 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 /* CD-in */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200291 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /* route front mic to ADC1/2 */
293 { 0x08, AC_VERB_SET_CONNECT_SEL, 0x05 },
294 { 0x09, AC_VERB_SET_CONNECT_SEL, 0x05 },
295 {} /* terminator */
296};
297
Takashi Iwai779d0652011-05-02 11:34:20 +0200298static const struct hda_verb cmi9880_allout_init[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 /* port-D for line out (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200300 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* port-E for HP out (front panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200302 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 /* route front PCM to HP */
304 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
305 /* port-A for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200306 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 /* port-G for CLFE (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200308 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100309 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x02 },
310 /* port-H for side (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200311 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
ChenLi Tiend05b2812005-03-24 20:47:35 +0100312 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x01 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* port-C for surround (rear panel) */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200314 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 /* port-B for mic-in (rear panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200316 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 /* port-F for mic-in (front panel) with vref */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200318 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* CD-in */
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200320 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 /* route front mic to ADC1/2 */
322 { 0x08, AC_VERB_SET_CONNECT_SEL, 0x05 },
323 { 0x09, AC_VERB_SET_CONNECT_SEL, 0x05 },
324 {} /* terminator */
325};
326
327/*
328 */
329static int cmi9880_build_controls(struct hda_codec *codec)
330{
331 struct cmi_spec *spec = codec->spec;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100332 struct snd_kcontrol *kctl;
333 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 err = snd_hda_add_new_ctls(codec, cmi9880_basic_mixer);
336 if (err < 0)
337 return err;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100338 if (spec->channel_modes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 err = snd_hda_add_new_ctls(codec, cmi9880_ch_mode_mixer);
340 if (err < 0)
341 return err;
342 }
343 if (spec->multiout.dig_out_nid) {
Stephen Warren74b654c2011-06-01 11:14:18 -0600344 err = snd_hda_create_spdif_out_ctls(codec,
345 spec->multiout.dig_out_nid,
346 spec->multiout.dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (err < 0)
348 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +0100349 err = snd_hda_create_spdif_share_sw(codec,
350 &spec->multiout);
351 if (err < 0)
352 return err;
353 spec->multiout.share_spdif = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 if (spec->dig_in_nid) {
356 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
357 if (err < 0)
358 return err;
359 }
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100360
361 /* assign Capture Source enums to NID */
362 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
363 for (i = 0; kctl && i < kctl->count; i++) {
Takashi Iwai21949f02009-12-23 08:31:59 +0100364 err = snd_hda_add_nid(codec, kctl, i, spec->adc_nids[i]);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +0100365 if (err < 0)
366 return err;
367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return 0;
369}
370
371static int cmi9880_init(struct hda_codec *codec)
372{
373 struct cmi_spec *spec = codec->spec;
374 if (spec->board_config == CMI_ALLOUT)
375 snd_hda_sequence_write(codec, cmi9880_allout_init);
376 else
377 snd_hda_sequence_write(codec, cmi9880_basic_init);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200378 if (spec->board_config == CMI_AUTO)
379 snd_hda_sequence_write(codec, spec->multi_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return 0;
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/*
384 * Analog playback callbacks
385 */
386static int cmi9880_playback_pcm_open(struct hda_pcm_stream *hinfo,
387 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100388 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 struct cmi_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +0100391 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
392 hinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395static int cmi9880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
396 struct hda_codec *codec,
397 unsigned int stream_tag,
398 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100399 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 struct cmi_spec *spec = codec->spec;
402 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, stream_tag,
403 format, substream);
404}
405
406static int cmi9880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
407 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100408 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 struct cmi_spec *spec = codec->spec;
411 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
412}
413
414/*
415 * Digital out
416 */
417static int cmi9880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
418 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100419 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 struct cmi_spec *spec = codec->spec;
422 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
423}
424
425static int cmi9880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
426 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100427 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 struct cmi_spec *spec = codec->spec;
430 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
431}
432
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200433static int cmi9880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
434 struct hda_codec *codec,
435 unsigned int stream_tag,
436 unsigned int format,
437 struct snd_pcm_substream *substream)
438{
439 struct cmi_spec *spec = codec->spec;
440 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag,
441 format, substream);
442}
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/*
445 * Analog capture
446 */
447static int cmi9880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
448 struct hda_codec *codec,
449 unsigned int stream_tag,
450 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100451 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 struct cmi_spec *spec = codec->spec;
454
455 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
456 stream_tag, 0, format);
457 return 0;
458}
459
460static int cmi9880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
461 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100462 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct cmi_spec *spec = codec->spec;
465
Takashi Iwai888afa12008-03-18 09:57:50 +0100466 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 return 0;
468}
469
470
471/*
472 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200473static const struct hda_pcm_stream cmi9880_pcm_analog_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 .substreams = 1,
475 .channels_min = 2,
476 .channels_max = 8,
477 .nid = 0x03, /* NID to query formats and rates */
478 .ops = {
479 .open = cmi9880_playback_pcm_open,
480 .prepare = cmi9880_playback_pcm_prepare,
481 .cleanup = cmi9880_playback_pcm_cleanup
482 },
483};
484
Takashi Iwai779d0652011-05-02 11:34:20 +0200485static const struct hda_pcm_stream cmi9880_pcm_analog_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 .substreams = 2,
487 .channels_min = 2,
488 .channels_max = 2,
489 .nid = 0x08, /* NID to query formats and rates */
490 .ops = {
491 .prepare = cmi9880_capture_pcm_prepare,
492 .cleanup = cmi9880_capture_pcm_cleanup
493 },
494};
495
Takashi Iwai779d0652011-05-02 11:34:20 +0200496static const struct hda_pcm_stream cmi9880_pcm_digital_playback = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 .substreams = 1,
498 .channels_min = 2,
499 .channels_max = 2,
500 /* NID is set in cmi9880_build_pcms */
501 .ops = {
502 .open = cmi9880_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200503 .close = cmi9880_dig_playback_pcm_close,
504 .prepare = cmi9880_dig_playback_pcm_prepare
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 },
506};
507
Takashi Iwai779d0652011-05-02 11:34:20 +0200508static const struct hda_pcm_stream cmi9880_pcm_digital_capture = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 .substreams = 1,
510 .channels_min = 2,
511 .channels_max = 2,
512 /* NID is set in cmi9880_build_pcms */
513};
514
515static int cmi9880_build_pcms(struct hda_codec *codec)
516{
517 struct cmi_spec *spec = codec->spec;
518 struct hda_pcm *info = spec->pcm_rec;
519
520 codec->num_pcms = 1;
521 codec->pcm_info = info;
522
523 info->name = "CMI9880";
524 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cmi9880_pcm_analog_playback;
525 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cmi9880_pcm_analog_capture;
526
527 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
528 codec->num_pcms++;
529 info++;
530 info->name = "CMI9880 Digital";
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100531 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (spec->multiout.dig_out_nid) {
533 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = cmi9880_pcm_digital_playback;
534 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
535 }
536 if (spec->dig_in_nid) {
537 info->stream[SNDRV_PCM_STREAM_CAPTURE] = cmi9880_pcm_digital_capture;
538 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
539 }
540 }
541
542 return 0;
543}
544
545static void cmi9880_free(struct hda_codec *codec)
546{
547 kfree(codec->spec);
548}
549
550/*
551 */
552
Takashi Iwaiea734962011-01-17 11:29:34 +0100553static const char * const cmi9880_models[CMI_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100554 [CMI_MINIMAL] = "minimal",
555 [CMI_MIN_FP] = "min_fp",
556 [CMI_FULL] = "full",
557 [CMI_FULL_DIG] = "full_dig",
558 [CMI_ALLOUT] = "allout",
559 [CMI_AUTO] = "auto",
560};
561
Takashi Iwai779d0652011-05-02 11:34:20 +0200562static const struct snd_pci_quirk cmi9880_cfg_tbl[] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100563 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", CMI_FULL_DIG),
Takashi Iwai79d06432008-05-30 16:54:49 +0200564 SND_PCI_QUIRK(0x1854, 0x002b, "LG LS75", CMI_MINIMAL),
Jiang zhe5b030382008-04-14 13:26:53 +0200565 SND_PCI_QUIRK(0x1854, 0x0032, "LG", CMI_FULL_DIG),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 {} /* terminator */
567};
568
Takashi Iwai779d0652011-05-02 11:34:20 +0200569static const struct hda_codec_ops cmi9880_patch_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 .build_controls = cmi9880_build_controls,
571 .build_pcms = cmi9880_build_pcms,
572 .init = cmi9880_init,
573 .free = cmi9880_free,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574};
Takashi Iwai998caa42014-02-10 18:18:17 +0100575#endif /* ENABLE_CMI_STATIC_QUIRKS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Takashi Iwaib060fb02012-12-19 17:35:47 +0100577/*
578 * stuff for auto-parser
579 */
580static const struct hda_codec_ops cmi_auto_patch_ops = {
581 .build_controls = snd_hda_gen_build_controls,
582 .build_pcms = snd_hda_gen_build_pcms,
583 .init = snd_hda_gen_init,
584 .free = snd_hda_gen_free,
Takashi Iwai8a6c21a2013-01-18 07:51:17 +0100585 .unsol_event = snd_hda_jack_unsol_event,
Takashi Iwaib060fb02012-12-19 17:35:47 +0100586};
587
588static int cmi_parse_auto_config(struct hda_codec *codec)
589{
590 struct cmi_spec *spec = codec->spec;
591 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
592 int err;
593
594 snd_hda_gen_spec_init(&spec->gen);
595
596 err = snd_hda_parse_pin_defcfg(codec, cfg, NULL, 0);
597 if (err < 0)
Takashi Iwai998caa42014-02-10 18:18:17 +0100598 goto error;
Takashi Iwaib060fb02012-12-19 17:35:47 +0100599 err = snd_hda_gen_parse_auto_config(codec, cfg);
600 if (err < 0)
Takashi Iwai998caa42014-02-10 18:18:17 +0100601 goto error;
Takashi Iwaib060fb02012-12-19 17:35:47 +0100602
603 codec->patch_ops = cmi_auto_patch_ops;
604 return 0;
Takashi Iwai998caa42014-02-10 18:18:17 +0100605
606 error:
607 snd_hda_gen_free(codec);
608 return err;
Takashi Iwaib060fb02012-12-19 17:35:47 +0100609}
610
Takashi Iwai998caa42014-02-10 18:18:17 +0100611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612static int patch_cmi9880(struct hda_codec *codec)
613{
614 struct cmi_spec *spec;
615
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200616 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (spec == NULL)
618 return -ENOMEM;
619
620 codec->spec = spec;
Takashi Iwai998caa42014-02-10 18:18:17 +0100621#ifdef ENABLE_CMI_STATIC_QUIRKS
Takashi Iwaif5fcc132006-11-24 17:07:44 +0100622 spec->board_config = snd_hda_check_board_config(codec, CMI_MODELS,
623 cmi9880_models,
624 cmi9880_cfg_tbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (spec->board_config < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100626 codec_dbg(codec, "%s: BIOS auto-probing.\n",
Takashi Iwai9a11f1a2009-07-28 16:01:20 +0200627 codec->chip_name);
Takashi Iwaif953eff2005-04-08 15:05:13 +0200628 spec->board_config = CMI_AUTO; /* try everything */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630
Takashi Iwai998caa42014-02-10 18:18:17 +0100631 if (spec->board_config == CMI_AUTO)
632 return cmi_parse_auto_config(codec);
Takashi Iwaib060fb02012-12-19 17:35:47 +0100633
Takashi Iwaif953eff2005-04-08 15:05:13 +0200634 /* copy default DAC NIDs */
635 memcpy(spec->dac_nids, cmi9880_dac_nids, sizeof(spec->dac_nids));
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200636 spec->num_dacs = 4;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 switch (spec->board_config) {
639 case CMI_MINIMAL:
640 case CMI_MIN_FP:
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100641 spec->channel_modes = cmi9880_channel_modes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (spec->board_config == CMI_MINIMAL)
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100643 spec->num_channel_modes = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 else {
645 spec->front_panel = 1;
Takashi Iwaid2a6d7d2005-11-17 11:06:29 +0100646 spec->num_channel_modes = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 spec->multiout.max_channels = cmi9880_channel_modes[0].channels;
649 spec->input_mux = &cmi9880_basic_mux;
650 break;
651 case CMI_FULL:
652 case CMI_FULL_DIG:
653 spec->front_panel = 1;
654 spec->multiout.max_channels = 8;
655 spec->input_mux = &cmi9880_basic_mux;
656 if (spec->board_config == CMI_FULL_DIG) {
657 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
658 spec->dig_in_nid = CMI_DIG_IN_NID;
659 }
660 break;
661 case CMI_ALLOUT:
Takashi Iwaib060fb02012-12-19 17:35:47 +0100662 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 spec->front_panel = 1;
664 spec->multiout.max_channels = 8;
665 spec->no_line_in = 1;
666 spec->input_mux = &cmi9880_no_line_mux;
667 spec->multiout.dig_out_nid = CMI_DIG_OUT_NID;
668 break;
669 }
670
Takashi Iwaie9edcee2005-06-13 14:16:38 +0200671 spec->multiout.num_dacs = spec->num_dacs;
Takashi Iwaif953eff2005-04-08 15:05:13 +0200672 spec->multiout.dac_nids = spec->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 spec->adc_nids = cmi9880_adc_nids;
675
676 codec->patch_ops = cmi9880_patch_ops;
677
678 return 0;
Takashi Iwai998caa42014-02-10 18:18:17 +0100679#else
680 return cmi_parse_auto_config(codec);
681#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684/*
685 * patch entries
686 */
Takashi Iwai779d0652011-05-02 11:34:20 +0200687static const struct hda_codec_preset snd_hda_preset_cmedia[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 { .id = 0x13f69880, .name = "CMI9880", .patch = patch_cmi9880 },
689 { .id = 0x434d4980, .name = "CMI9880", .patch = patch_cmi9880 },
690 {} /* terminator */
691};
Takashi Iwai1289e9e2008-11-27 15:47:11 +0100692
693MODULE_ALIAS("snd-hda-codec-id:13f69880");
694MODULE_ALIAS("snd-hda-codec-id:434d4980");
695
696MODULE_LICENSE("GPL");
697MODULE_DESCRIPTION("C-Media HD-audio codec");
698
699static struct hda_codec_preset_list cmedia_list = {
700 .preset = snd_hda_preset_cmedia,
701 .owner = THIS_MODULE,
702};
703
704static int __init patch_cmedia_init(void)
705{
706 return snd_hda_add_codec_preset(&cmedia_list);
707}
708
709static void __exit patch_cmedia_exit(void)
710{
711 snd_hda_delete_codec_preset(&cmedia_list);
712}
713
714module_init(patch_cmedia_init)
715module_exit(patch_cmedia_exit)