xref: /openbmc/linux/sound/pci/hda/patch_conexant.c (revision bc7a166dd1530965aa80966f267235f067c5fddf)
1c9b443d4STobin Davis /*
2c9b443d4STobin Davis  * HD audio interface patch for Conexant HDA audio codec
3c9b443d4STobin Davis  *
4c9b443d4STobin Davis  * Copyright (c) 2006 Pototskiy Akex <alex.pototskiy@gmail.com>
5c9b443d4STobin Davis  * 		      Takashi Iwai <tiwai@suse.de>
6c9b443d4STobin Davis  * 		      Tobin Davis  <tdavis@dsl-only.net>
7c9b443d4STobin Davis  *
8c9b443d4STobin Davis  *  This driver is free software; you can redistribute it and/or modify
9c9b443d4STobin Davis  *  it under the terms of the GNU General Public License as published by
10c9b443d4STobin Davis  *  the Free Software Foundation; either version 2 of the License, or
11c9b443d4STobin Davis  *  (at your option) any later version.
12c9b443d4STobin Davis  *
13c9b443d4STobin Davis  *  This driver is distributed in the hope that it will be useful,
14c9b443d4STobin Davis  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15c9b443d4STobin Davis  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16c9b443d4STobin Davis  *  GNU General Public License for more details.
17c9b443d4STobin Davis  *
18c9b443d4STobin Davis  *  You should have received a copy of the GNU General Public License
19c9b443d4STobin Davis  *  along with this program; if not, write to the Free Software
20c9b443d4STobin Davis  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21c9b443d4STobin Davis  */
22c9b443d4STobin Davis 
23c9b443d4STobin Davis #include <linux/init.h>
24c9b443d4STobin Davis #include <linux/delay.h>
25c9b443d4STobin Davis #include <linux/slab.h>
26c9b443d4STobin Davis #include <linux/pci.h>
27c9b443d4STobin Davis #include <sound/core.h>
28*bc7a166dSUlrich Dangel #include <sound/jack.h>
29*bc7a166dSUlrich Dangel 
30c9b443d4STobin Davis #include "hda_codec.h"
31c9b443d4STobin Davis #include "hda_local.h"
32c9b443d4STobin Davis 
33c9b443d4STobin Davis #define CXT_PIN_DIR_IN              0x00
34c9b443d4STobin Davis #define CXT_PIN_DIR_OUT             0x01
35c9b443d4STobin Davis #define CXT_PIN_DIR_INOUT           0x02
36c9b443d4STobin Davis #define CXT_PIN_DIR_IN_NOMICBIAS    0x03
37c9b443d4STobin Davis #define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
38c9b443d4STobin Davis 
39c9b443d4STobin Davis #define CONEXANT_HP_EVENT	0x37
40c9b443d4STobin Davis #define CONEXANT_MIC_EVENT	0x38
41c9b443d4STobin Davis 
42*bc7a166dSUlrich Dangel /* Conexant 5051 specific */
43c9b443d4STobin Davis 
44*bc7a166dSUlrich Dangel #define CXT5051_SPDIF_OUT	0x1C
45*bc7a166dSUlrich Dangel #define CXT5051_PORTB_EVENT	0x38
46*bc7a166dSUlrich Dangel #define CXT5051_PORTC_EVENT	0x39
47*bc7a166dSUlrich Dangel 
48*bc7a166dSUlrich Dangel 
49*bc7a166dSUlrich Dangel struct conexant_jack {
50*bc7a166dSUlrich Dangel 
51*bc7a166dSUlrich Dangel 	hda_nid_t nid;
52*bc7a166dSUlrich Dangel 	int type;
53*bc7a166dSUlrich Dangel 	struct snd_jack *jack;
54*bc7a166dSUlrich Dangel 
55*bc7a166dSUlrich Dangel };
56c9b443d4STobin Davis 
57c9b443d4STobin Davis struct conexant_spec {
58c9b443d4STobin Davis 
59c9b443d4STobin Davis 	struct snd_kcontrol_new *mixers[5];
60c9b443d4STobin Davis 	int num_mixers;
61c9b443d4STobin Davis 
62c9b443d4STobin Davis 	const struct hda_verb *init_verbs[5];	/* initialization verbs
63c9b443d4STobin Davis 						 * don't forget NULL
64c9b443d4STobin Davis 						 * termination!
65c9b443d4STobin Davis 						 */
66c9b443d4STobin Davis 	unsigned int num_init_verbs;
67c9b443d4STobin Davis 
68c9b443d4STobin Davis 	/* playback */
69c9b443d4STobin Davis 	struct hda_multi_out multiout;	/* playback set-up
70c9b443d4STobin Davis 					 * max_channels, dacs must be set
71c9b443d4STobin Davis 					 * dig_out_nid and hp_nid are optional
72c9b443d4STobin Davis 					 */
73c9b443d4STobin Davis 	unsigned int cur_eapd;
7482f30040STobin Davis 	unsigned int hp_present;
75c9b443d4STobin Davis 	unsigned int need_dac_fix;
76c9b443d4STobin Davis 
77c9b443d4STobin Davis 	/* capture */
78c9b443d4STobin Davis 	unsigned int num_adc_nids;
79c9b443d4STobin Davis 	hda_nid_t *adc_nids;
80c9b443d4STobin Davis 	hda_nid_t dig_in_nid;		/* digital-in NID; optional */
81c9b443d4STobin Davis 
82461e2c78STakashi Iwai 	unsigned int cur_adc_idx;
83461e2c78STakashi Iwai 	hda_nid_t cur_adc;
84461e2c78STakashi Iwai 	unsigned int cur_adc_stream_tag;
85461e2c78STakashi Iwai 	unsigned int cur_adc_format;
86461e2c78STakashi Iwai 
87c9b443d4STobin Davis 	/* capture source */
88c9b443d4STobin Davis 	const struct hda_input_mux *input_mux;
89c9b443d4STobin Davis 	hda_nid_t *capsrc_nids;
90c9b443d4STobin Davis 	unsigned int cur_mux[3];
91c9b443d4STobin Davis 
92c9b443d4STobin Davis 	/* channel model */
93c9b443d4STobin Davis 	const struct hda_channel_mode *channel_mode;
94c9b443d4STobin Davis 	int num_channel_mode;
95c9b443d4STobin Davis 
96c9b443d4STobin Davis 	/* PCM information */
97c9b443d4STobin Davis 	struct hda_pcm pcm_rec[2];	/* used in build_pcms() */
98c9b443d4STobin Davis 
99c9b443d4STobin Davis 	unsigned int spdif_route;
100c9b443d4STobin Davis 
101*bc7a166dSUlrich Dangel 	/* jack detection */
102*bc7a166dSUlrich Dangel 	struct snd_array jacks;
103*bc7a166dSUlrich Dangel 
104c9b443d4STobin Davis 	/* dynamic controls, init_verbs and input_mux */
105c9b443d4STobin Davis 	struct auto_pin_cfg autocfg;
106c9b443d4STobin Davis 	struct hda_input_mux private_imux;
10741923e44STakashi Iwai 	hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
108c9b443d4STobin Davis 
109c9b443d4STobin Davis };
110c9b443d4STobin Davis 
111c9b443d4STobin Davis static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
112c9b443d4STobin Davis 				      struct hda_codec *codec,
113c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
114c9b443d4STobin Davis {
115c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
1169a08160bSTakashi Iwai 	return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
1179a08160bSTakashi Iwai 					     hinfo);
118c9b443d4STobin Davis }
119c9b443d4STobin Davis 
120c9b443d4STobin Davis static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
121c9b443d4STobin Davis 					 struct hda_codec *codec,
122c9b443d4STobin Davis 					 unsigned int stream_tag,
123c9b443d4STobin Davis 					 unsigned int format,
124c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
125c9b443d4STobin Davis {
126c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
127c9b443d4STobin Davis 	return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
128c9b443d4STobin Davis 						stream_tag,
129c9b443d4STobin Davis 						format, substream);
130c9b443d4STobin Davis }
131c9b443d4STobin Davis 
132c9b443d4STobin Davis static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
133c9b443d4STobin Davis 					 struct hda_codec *codec,
134c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
135c9b443d4STobin Davis {
136c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
137c9b443d4STobin Davis 	return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
138c9b443d4STobin Davis }
139c9b443d4STobin Davis 
140c9b443d4STobin Davis /*
141c9b443d4STobin Davis  * Digital out
142c9b443d4STobin Davis  */
143c9b443d4STobin Davis static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
144c9b443d4STobin Davis 					  struct hda_codec *codec,
145c9b443d4STobin Davis 					  struct snd_pcm_substream *substream)
146c9b443d4STobin Davis {
147c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
148c9b443d4STobin Davis 	return snd_hda_multi_out_dig_open(codec, &spec->multiout);
149c9b443d4STobin Davis }
150c9b443d4STobin Davis 
151c9b443d4STobin Davis static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
152c9b443d4STobin Davis 					 struct hda_codec *codec,
153c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
154c9b443d4STobin Davis {
155c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
156c9b443d4STobin Davis 	return snd_hda_multi_out_dig_close(codec, &spec->multiout);
157c9b443d4STobin Davis }
158c9b443d4STobin Davis 
1596b97eb45STakashi Iwai static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1606b97eb45STakashi Iwai 					 struct hda_codec *codec,
1616b97eb45STakashi Iwai 					 unsigned int stream_tag,
1626b97eb45STakashi Iwai 					 unsigned int format,
1636b97eb45STakashi Iwai 					 struct snd_pcm_substream *substream)
1646b97eb45STakashi Iwai {
1656b97eb45STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1666b97eb45STakashi Iwai 	return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1676b97eb45STakashi Iwai 					     stream_tag,
1686b97eb45STakashi Iwai 					     format, substream);
1696b97eb45STakashi Iwai }
1706b97eb45STakashi Iwai 
171c9b443d4STobin Davis /*
172c9b443d4STobin Davis  * Analog capture
173c9b443d4STobin Davis  */
174c9b443d4STobin Davis static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
175c9b443d4STobin Davis 				      struct hda_codec *codec,
176c9b443d4STobin Davis 				      unsigned int stream_tag,
177c9b443d4STobin Davis 				      unsigned int format,
178c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
179c9b443d4STobin Davis {
180c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
181c9b443d4STobin Davis 	snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
182c9b443d4STobin Davis 				   stream_tag, 0, format);
183c9b443d4STobin Davis 	return 0;
184c9b443d4STobin Davis }
185c9b443d4STobin Davis 
186c9b443d4STobin Davis static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
187c9b443d4STobin Davis 				      struct hda_codec *codec,
188c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
189c9b443d4STobin Davis {
190c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
191888afa15STakashi Iwai 	snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
192c9b443d4STobin Davis 	return 0;
193c9b443d4STobin Davis }
194c9b443d4STobin Davis 
195c9b443d4STobin Davis 
196c9b443d4STobin Davis 
197c9b443d4STobin Davis static struct hda_pcm_stream conexant_pcm_analog_playback = {
198c9b443d4STobin Davis 	.substreams = 1,
199c9b443d4STobin Davis 	.channels_min = 2,
200c9b443d4STobin Davis 	.channels_max = 2,
201c9b443d4STobin Davis 	.nid = 0, /* fill later */
202c9b443d4STobin Davis 	.ops = {
203c9b443d4STobin Davis 		.open = conexant_playback_pcm_open,
204c9b443d4STobin Davis 		.prepare = conexant_playback_pcm_prepare,
205c9b443d4STobin Davis 		.cleanup = conexant_playback_pcm_cleanup
206c9b443d4STobin Davis 	},
207c9b443d4STobin Davis };
208c9b443d4STobin Davis 
209c9b443d4STobin Davis static struct hda_pcm_stream conexant_pcm_analog_capture = {
210c9b443d4STobin Davis 	.substreams = 1,
211c9b443d4STobin Davis 	.channels_min = 2,
212c9b443d4STobin Davis 	.channels_max = 2,
213c9b443d4STobin Davis 	.nid = 0, /* fill later */
214c9b443d4STobin Davis 	.ops = {
215c9b443d4STobin Davis 		.prepare = conexant_capture_pcm_prepare,
216c9b443d4STobin Davis 		.cleanup = conexant_capture_pcm_cleanup
217c9b443d4STobin Davis 	},
218c9b443d4STobin Davis };
219c9b443d4STobin Davis 
220c9b443d4STobin Davis 
221c9b443d4STobin Davis static struct hda_pcm_stream conexant_pcm_digital_playback = {
222c9b443d4STobin Davis 	.substreams = 1,
223c9b443d4STobin Davis 	.channels_min = 2,
224c9b443d4STobin Davis 	.channels_max = 2,
225c9b443d4STobin Davis 	.nid = 0, /* fill later */
226c9b443d4STobin Davis 	.ops = {
227c9b443d4STobin Davis 		.open = conexant_dig_playback_pcm_open,
2286b97eb45STakashi Iwai 		.close = conexant_dig_playback_pcm_close,
2296b97eb45STakashi Iwai 		.prepare = conexant_dig_playback_pcm_prepare
230c9b443d4STobin Davis 	},
231c9b443d4STobin Davis };
232c9b443d4STobin Davis 
233c9b443d4STobin Davis static struct hda_pcm_stream conexant_pcm_digital_capture = {
234c9b443d4STobin Davis 	.substreams = 1,
235c9b443d4STobin Davis 	.channels_min = 2,
236c9b443d4STobin Davis 	.channels_max = 2,
237c9b443d4STobin Davis 	/* NID is set in alc_build_pcms */
238c9b443d4STobin Davis };
239c9b443d4STobin Davis 
240461e2c78STakashi Iwai static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
241461e2c78STakashi Iwai 				      struct hda_codec *codec,
242461e2c78STakashi Iwai 				      unsigned int stream_tag,
243461e2c78STakashi Iwai 				      unsigned int format,
244461e2c78STakashi Iwai 				      struct snd_pcm_substream *substream)
245461e2c78STakashi Iwai {
246461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
247461e2c78STakashi Iwai 	spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
248461e2c78STakashi Iwai 	spec->cur_adc_stream_tag = stream_tag;
249461e2c78STakashi Iwai 	spec->cur_adc_format = format;
250461e2c78STakashi Iwai 	snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
251461e2c78STakashi Iwai 	return 0;
252461e2c78STakashi Iwai }
253461e2c78STakashi Iwai 
254461e2c78STakashi Iwai static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
255461e2c78STakashi Iwai 				      struct hda_codec *codec,
256461e2c78STakashi Iwai 				      struct snd_pcm_substream *substream)
257461e2c78STakashi Iwai {
258461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
259888afa15STakashi Iwai 	snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
260461e2c78STakashi Iwai 	spec->cur_adc = 0;
261461e2c78STakashi Iwai 	return 0;
262461e2c78STakashi Iwai }
263461e2c78STakashi Iwai 
264461e2c78STakashi Iwai static struct hda_pcm_stream cx5051_pcm_analog_capture = {
265461e2c78STakashi Iwai 	.substreams = 1,
266461e2c78STakashi Iwai 	.channels_min = 2,
267461e2c78STakashi Iwai 	.channels_max = 2,
268461e2c78STakashi Iwai 	.nid = 0, /* fill later */
269461e2c78STakashi Iwai 	.ops = {
270461e2c78STakashi Iwai 		.prepare = cx5051_capture_pcm_prepare,
271461e2c78STakashi Iwai 		.cleanup = cx5051_capture_pcm_cleanup
272461e2c78STakashi Iwai 	},
273461e2c78STakashi Iwai };
274461e2c78STakashi Iwai 
275c9b443d4STobin Davis static int conexant_build_pcms(struct hda_codec *codec)
276c9b443d4STobin Davis {
277c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
278c9b443d4STobin Davis 	struct hda_pcm *info = spec->pcm_rec;
279c9b443d4STobin Davis 
280c9b443d4STobin Davis 	codec->num_pcms = 1;
281c9b443d4STobin Davis 	codec->pcm_info = info;
282c9b443d4STobin Davis 
283c9b443d4STobin Davis 	info->name = "CONEXANT Analog";
284c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
285c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
286c9b443d4STobin Davis 		spec->multiout.max_channels;
287c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
288c9b443d4STobin Davis 		spec->multiout.dac_nids[0];
289461e2c78STakashi Iwai 	if (codec->vendor_id == 0x14f15051)
290461e2c78STakashi Iwai 		info->stream[SNDRV_PCM_STREAM_CAPTURE] =
291461e2c78STakashi Iwai 			cx5051_pcm_analog_capture;
292461e2c78STakashi Iwai 	else
293461e2c78STakashi Iwai 		info->stream[SNDRV_PCM_STREAM_CAPTURE] =
294461e2c78STakashi Iwai 			conexant_pcm_analog_capture;
295c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
296c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
297c9b443d4STobin Davis 
298c9b443d4STobin Davis 	if (spec->multiout.dig_out_nid) {
299c9b443d4STobin Davis 		info++;
300c9b443d4STobin Davis 		codec->num_pcms++;
301c9b443d4STobin Davis 		info->name = "Conexant Digital";
3027ba72ba1STakashi Iwai 		info->pcm_type = HDA_PCM_TYPE_SPDIF;
303c9b443d4STobin Davis 		info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
304c9b443d4STobin Davis 			conexant_pcm_digital_playback;
305c9b443d4STobin Davis 		info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
306c9b443d4STobin Davis 			spec->multiout.dig_out_nid;
307c9b443d4STobin Davis 		if (spec->dig_in_nid) {
308c9b443d4STobin Davis 			info->stream[SNDRV_PCM_STREAM_CAPTURE] =
309c9b443d4STobin Davis 				conexant_pcm_digital_capture;
310c9b443d4STobin Davis 			info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
311c9b443d4STobin Davis 				spec->dig_in_nid;
312c9b443d4STobin Davis 		}
313c9b443d4STobin Davis 	}
314c9b443d4STobin Davis 
315c9b443d4STobin Davis 	return 0;
316c9b443d4STobin Davis }
317c9b443d4STobin Davis 
318c9b443d4STobin Davis static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
319c9b443d4STobin Davis 	       			  struct snd_ctl_elem_info *uinfo)
320c9b443d4STobin Davis {
321c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
322c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
323c9b443d4STobin Davis 
324c9b443d4STobin Davis 	return snd_hda_input_mux_info(spec->input_mux, uinfo);
325c9b443d4STobin Davis }
326c9b443d4STobin Davis 
327c9b443d4STobin Davis static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
328c9b443d4STobin Davis 				 struct snd_ctl_elem_value *ucontrol)
329c9b443d4STobin Davis {
330c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
331c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
332c9b443d4STobin Davis 	unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
333c9b443d4STobin Davis 
334c9b443d4STobin Davis 	ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
335c9b443d4STobin Davis 	return 0;
336c9b443d4STobin Davis }
337c9b443d4STobin Davis 
338c9b443d4STobin Davis static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
339c9b443d4STobin Davis 				 struct snd_ctl_elem_value *ucontrol)
340c9b443d4STobin Davis {
341c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
342c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
343c9b443d4STobin Davis 	unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
344c9b443d4STobin Davis 
345c9b443d4STobin Davis 	return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
346c9b443d4STobin Davis 				     spec->capsrc_nids[adc_idx],
347c9b443d4STobin Davis 				     &spec->cur_mux[adc_idx]);
348c9b443d4STobin Davis }
349c9b443d4STobin Davis 
350*bc7a166dSUlrich Dangel static int conexant_add_jack(struct hda_codec *codec,
351*bc7a166dSUlrich Dangel 		hda_nid_t nid, int type)
352*bc7a166dSUlrich Dangel {
353*bc7a166dSUlrich Dangel 	struct conexant_spec *spec;
354*bc7a166dSUlrich Dangel 	struct conexant_jack *jack;
355*bc7a166dSUlrich Dangel 	const char *name;
356*bc7a166dSUlrich Dangel 
357*bc7a166dSUlrich Dangel 	spec = codec->spec;
358*bc7a166dSUlrich Dangel 	snd_array_init(&spec->jacks, sizeof(*jack), 32);
359*bc7a166dSUlrich Dangel 	jack = snd_array_new(&spec->jacks);
360*bc7a166dSUlrich Dangel 	name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ;
361*bc7a166dSUlrich Dangel 
362*bc7a166dSUlrich Dangel 	if (!jack)
363*bc7a166dSUlrich Dangel 		return -ENOMEM;
364*bc7a166dSUlrich Dangel 
365*bc7a166dSUlrich Dangel 	jack->nid = nid;
366*bc7a166dSUlrich Dangel 	jack->type = type;
367*bc7a166dSUlrich Dangel 
368*bc7a166dSUlrich Dangel 	return snd_jack_new(codec->bus->card, name, type, &jack->jack);
369*bc7a166dSUlrich Dangel }
370*bc7a166dSUlrich Dangel 
371*bc7a166dSUlrich Dangel static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
372*bc7a166dSUlrich Dangel {
373*bc7a166dSUlrich Dangel 	struct conexant_spec *spec = codec->spec;
374*bc7a166dSUlrich Dangel 	struct conexant_jack *jacks = spec->jacks.list;
375*bc7a166dSUlrich Dangel 
376*bc7a166dSUlrich Dangel 	if (jacks) {
377*bc7a166dSUlrich Dangel 		int i;
378*bc7a166dSUlrich Dangel 		for (i = 0; i < spec->jacks.used; i++) {
379*bc7a166dSUlrich Dangel 			if (jacks->nid == nid) {
380*bc7a166dSUlrich Dangel 				unsigned int present;
381*bc7a166dSUlrich Dangel 				present = snd_hda_codec_read(codec, nid, 0,
382*bc7a166dSUlrich Dangel 						AC_VERB_GET_PIN_SENSE, 0) &
383*bc7a166dSUlrich Dangel 					AC_PINSENSE_PRESENCE;
384*bc7a166dSUlrich Dangel 
385*bc7a166dSUlrich Dangel 				present = (present) ? jacks->type : 0 ;
386*bc7a166dSUlrich Dangel 
387*bc7a166dSUlrich Dangel 				snd_jack_report(jacks->jack,
388*bc7a166dSUlrich Dangel 						present);
389*bc7a166dSUlrich Dangel 			}
390*bc7a166dSUlrich Dangel 			jacks++;
391*bc7a166dSUlrich Dangel 		}
392*bc7a166dSUlrich Dangel 	}
393*bc7a166dSUlrich Dangel }
394*bc7a166dSUlrich Dangel 
395*bc7a166dSUlrich Dangel static int conexant_init_jacks(struct hda_codec *codec)
396*bc7a166dSUlrich Dangel {
397*bc7a166dSUlrich Dangel #ifdef CONFIG_SND_JACK
398*bc7a166dSUlrich Dangel 	struct conexant_spec *spec = codec->spec;
399*bc7a166dSUlrich Dangel 	int i;
400*bc7a166dSUlrich Dangel 
401*bc7a166dSUlrich Dangel 	for (i = 0; i < spec->num_init_verbs; i++) {
402*bc7a166dSUlrich Dangel 		const struct hda_verb *hv;
403*bc7a166dSUlrich Dangel 
404*bc7a166dSUlrich Dangel 		hv = spec->init_verbs[i];
405*bc7a166dSUlrich Dangel 		while (hv->nid) {
406*bc7a166dSUlrich Dangel 			int err = 0;
407*bc7a166dSUlrich Dangel 			switch (hv->param ^ AC_USRSP_EN) {
408*bc7a166dSUlrich Dangel 			case CONEXANT_HP_EVENT:
409*bc7a166dSUlrich Dangel 				err = conexant_add_jack(codec, hv->nid,
410*bc7a166dSUlrich Dangel 						SND_JACK_HEADPHONE);
411*bc7a166dSUlrich Dangel 				conexant_report_jack(codec, hv->nid);
412*bc7a166dSUlrich Dangel 				break;
413*bc7a166dSUlrich Dangel 			case CXT5051_PORTC_EVENT:
414*bc7a166dSUlrich Dangel 			case CONEXANT_MIC_EVENT:
415*bc7a166dSUlrich Dangel 				err = conexant_add_jack(codec, hv->nid,
416*bc7a166dSUlrich Dangel 						SND_JACK_MICROPHONE);
417*bc7a166dSUlrich Dangel 				conexant_report_jack(codec, hv->nid);
418*bc7a166dSUlrich Dangel 				break;
419*bc7a166dSUlrich Dangel 			}
420*bc7a166dSUlrich Dangel 			if (err < 0)
421*bc7a166dSUlrich Dangel 				return err;
422*bc7a166dSUlrich Dangel 			++hv;
423*bc7a166dSUlrich Dangel 		}
424*bc7a166dSUlrich Dangel 	}
425*bc7a166dSUlrich Dangel #endif
426*bc7a166dSUlrich Dangel 	return 0;
427*bc7a166dSUlrich Dangel 
428*bc7a166dSUlrich Dangel }
429*bc7a166dSUlrich Dangel 
430c9b443d4STobin Davis static int conexant_init(struct hda_codec *codec)
431c9b443d4STobin Davis {
432c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
433c9b443d4STobin Davis 	int i;
434c9b443d4STobin Davis 
435c9b443d4STobin Davis 	for (i = 0; i < spec->num_init_verbs; i++)
436c9b443d4STobin Davis 		snd_hda_sequence_write(codec, spec->init_verbs[i]);
437c9b443d4STobin Davis 	return 0;
438c9b443d4STobin Davis }
439c9b443d4STobin Davis 
440c9b443d4STobin Davis static void conexant_free(struct hda_codec *codec)
441c9b443d4STobin Davis {
442*bc7a166dSUlrich Dangel #ifdef CONFIG_SND_JACK
443*bc7a166dSUlrich Dangel 	struct conexant_spec *spec = codec->spec;
444*bc7a166dSUlrich Dangel 	if (spec->jacks.list) {
445*bc7a166dSUlrich Dangel 		struct conexant_jack *jacks = spec->jacks.list;
446*bc7a166dSUlrich Dangel 		int i;
447*bc7a166dSUlrich Dangel 		for (i = 0; i < spec->jacks.used; i++)
448*bc7a166dSUlrich Dangel 			snd_device_free(codec->bus->card, &jacks[i].jack);
449*bc7a166dSUlrich Dangel 		snd_array_free(&spec->jacks);
450*bc7a166dSUlrich Dangel 	}
451*bc7a166dSUlrich Dangel #endif
452c9b443d4STobin Davis 	kfree(codec->spec);
453c9b443d4STobin Davis }
454c9b443d4STobin Davis 
455c9b443d4STobin Davis static int conexant_build_controls(struct hda_codec *codec)
456c9b443d4STobin Davis {
457c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
458c9b443d4STobin Davis 	unsigned int i;
459c9b443d4STobin Davis 	int err;
460c9b443d4STobin Davis 
461c9b443d4STobin Davis 	for (i = 0; i < spec->num_mixers; i++) {
462c9b443d4STobin Davis 		err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
463c9b443d4STobin Davis 		if (err < 0)
464c9b443d4STobin Davis 			return err;
465c9b443d4STobin Davis 	}
466c9b443d4STobin Davis 	if (spec->multiout.dig_out_nid) {
467c9b443d4STobin Davis 		err = snd_hda_create_spdif_out_ctls(codec,
468c9b443d4STobin Davis 						    spec->multiout.dig_out_nid);
469c9b443d4STobin Davis 		if (err < 0)
470c9b443d4STobin Davis 			return err;
4719a08160bSTakashi Iwai 		err = snd_hda_create_spdif_share_sw(codec,
4729a08160bSTakashi Iwai 						    &spec->multiout);
4739a08160bSTakashi Iwai 		if (err < 0)
4749a08160bSTakashi Iwai 			return err;
4759a08160bSTakashi Iwai 		spec->multiout.share_spdif = 1;
476c9b443d4STobin Davis 	}
477c9b443d4STobin Davis 	if (spec->dig_in_nid) {
478c9b443d4STobin Davis 		err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
479c9b443d4STobin Davis 		if (err < 0)
480c9b443d4STobin Davis 			return err;
481c9b443d4STobin Davis 	}
482c9b443d4STobin Davis 	return 0;
483c9b443d4STobin Davis }
484c9b443d4STobin Davis 
485c9b443d4STobin Davis static struct hda_codec_ops conexant_patch_ops = {
486c9b443d4STobin Davis 	.build_controls = conexant_build_controls,
487c9b443d4STobin Davis 	.build_pcms = conexant_build_pcms,
488c9b443d4STobin Davis 	.init = conexant_init,
489c9b443d4STobin Davis 	.free = conexant_free,
490c9b443d4STobin Davis };
491c9b443d4STobin Davis 
492c9b443d4STobin Davis /*
493c9b443d4STobin Davis  * EAPD control
494c9b443d4STobin Davis  * the private value = nid | (invert << 8)
495c9b443d4STobin Davis  */
496c9b443d4STobin Davis 
497a5ce8890STakashi Iwai #define cxt_eapd_info		snd_ctl_boolean_mono_info
498c9b443d4STobin Davis 
49982f30040STobin Davis static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
500c9b443d4STobin Davis 			     struct snd_ctl_elem_value *ucontrol)
501c9b443d4STobin Davis {
502c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
503c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
504c9b443d4STobin Davis 	int invert = (kcontrol->private_value >> 8) & 1;
505c9b443d4STobin Davis 	if (invert)
506c9b443d4STobin Davis 		ucontrol->value.integer.value[0] = !spec->cur_eapd;
507c9b443d4STobin Davis 	else
508c9b443d4STobin Davis 		ucontrol->value.integer.value[0] = spec->cur_eapd;
509c9b443d4STobin Davis 	return 0;
51082f30040STobin Davis 
511c9b443d4STobin Davis }
512c9b443d4STobin Davis 
51382f30040STobin Davis static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
514c9b443d4STobin Davis 			     struct snd_ctl_elem_value *ucontrol)
515c9b443d4STobin Davis {
516c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
517c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
518c9b443d4STobin Davis 	int invert = (kcontrol->private_value >> 8) & 1;
519c9b443d4STobin Davis 	hda_nid_t nid = kcontrol->private_value & 0xff;
520c9b443d4STobin Davis 	unsigned int eapd;
52182f30040STobin Davis 
52268ea7b2fSTakashi Iwai 	eapd = !!ucontrol->value.integer.value[0];
523c9b443d4STobin Davis 	if (invert)
524c9b443d4STobin Davis 		eapd = !eapd;
52582beb8fdSTakashi Iwai 	if (eapd == spec->cur_eapd)
526c9b443d4STobin Davis 		return 0;
52782f30040STobin Davis 
528c9b443d4STobin Davis 	spec->cur_eapd = eapd;
52982beb8fdSTakashi Iwai 	snd_hda_codec_write_cache(codec, nid,
530c9b443d4STobin Davis 				  0, AC_VERB_SET_EAPD_BTLENABLE,
531c9b443d4STobin Davis 				  eapd ? 0x02 : 0x00);
532c9b443d4STobin Davis 	return 1;
533c9b443d4STobin Davis }
534c9b443d4STobin Davis 
53586d72bdfSTakashi Iwai /* controls for test mode */
53686d72bdfSTakashi Iwai #ifdef CONFIG_SND_DEBUG
53786d72bdfSTakashi Iwai 
53882f30040STobin Davis #define CXT_EAPD_SWITCH(xname, nid, mask) \
53982f30040STobin Davis 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
54082f30040STobin Davis 	  .info = cxt_eapd_info, \
54182f30040STobin Davis 	  .get = cxt_eapd_get, \
54282f30040STobin Davis 	  .put = cxt_eapd_put, \
54382f30040STobin Davis 	  .private_value = nid | (mask<<16) }
54482f30040STobin Davis 
54582f30040STobin Davis 
54682f30040STobin Davis 
547c9b443d4STobin Davis static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
548c9b443d4STobin Davis 				 struct snd_ctl_elem_info *uinfo)
549c9b443d4STobin Davis {
550c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
551c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
552c9b443d4STobin Davis 	return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
553c9b443d4STobin Davis 				    spec->num_channel_mode);
554c9b443d4STobin Davis }
555c9b443d4STobin Davis 
556c9b443d4STobin Davis static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
557c9b443d4STobin Davis 				struct snd_ctl_elem_value *ucontrol)
558c9b443d4STobin Davis {
559c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
560c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
561c9b443d4STobin Davis 	return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
562c9b443d4STobin Davis 				   spec->num_channel_mode,
563c9b443d4STobin Davis 				   spec->multiout.max_channels);
564c9b443d4STobin Davis }
565c9b443d4STobin Davis 
566c9b443d4STobin Davis static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
567c9b443d4STobin Davis 				struct snd_ctl_elem_value *ucontrol)
568c9b443d4STobin Davis {
569c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
570c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
571c9b443d4STobin Davis 	int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
572c9b443d4STobin Davis 				      spec->num_channel_mode,
573c9b443d4STobin Davis 				      &spec->multiout.max_channels);
574c9b443d4STobin Davis 	if (err >= 0 && spec->need_dac_fix)
575c9b443d4STobin Davis 		spec->multiout.num_dacs = spec->multiout.max_channels / 2;
576c9b443d4STobin Davis 	return err;
577c9b443d4STobin Davis }
578c9b443d4STobin Davis 
579c9b443d4STobin Davis #define CXT_PIN_MODE(xname, nid, dir) \
580c9b443d4STobin Davis 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
581c9b443d4STobin Davis 	  .info = conexant_ch_mode_info, \
582c9b443d4STobin Davis 	  .get = conexant_ch_mode_get, \
583c9b443d4STobin Davis 	  .put = conexant_ch_mode_put, \
584c9b443d4STobin Davis 	  .private_value = nid | (dir<<16) }
585c9b443d4STobin Davis 
58686d72bdfSTakashi Iwai #endif /* CONFIG_SND_DEBUG */
58786d72bdfSTakashi Iwai 
588c9b443d4STobin Davis /* Conexant 5045 specific */
589c9b443d4STobin Davis 
590c9b443d4STobin Davis static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
591c9b443d4STobin Davis static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
592c9b443d4STobin Davis static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
593cbef9789STakashi Iwai #define CXT5045_SPDIF_OUT	0x18
594c9b443d4STobin Davis 
5955cd57529STobin Davis static struct hda_channel_mode cxt5045_modes[1] = {
5965cd57529STobin Davis 	{ 2, NULL },
5975cd57529STobin Davis };
598c9b443d4STobin Davis 
599c9b443d4STobin Davis static struct hda_input_mux cxt5045_capture_source = {
600c9b443d4STobin Davis 	.num_items = 2,
601c9b443d4STobin Davis 	.items = {
60282f30040STobin Davis 		{ "IntMic", 0x1 },
603f4beee94SJiang zhe 		{ "ExtMic", 0x2 },
604c9b443d4STobin Davis 	}
605c9b443d4STobin Davis };
606c9b443d4STobin Davis 
6075218c892SJiang Zhe static struct hda_input_mux cxt5045_capture_source_benq = {
6085218c892SJiang Zhe 	.num_items = 3,
6095218c892SJiang Zhe 	.items = {
6105218c892SJiang Zhe 		{ "IntMic", 0x1 },
6115218c892SJiang Zhe 		{ "ExtMic", 0x2 },
6125218c892SJiang Zhe 		{ "LineIn", 0x3 },
6135218c892SJiang Zhe 	}
6145218c892SJiang Zhe };
6155218c892SJiang Zhe 
6162de3c232SJiang zhe static struct hda_input_mux cxt5045_capture_source_hp530 = {
6172de3c232SJiang zhe 	.num_items = 2,
6182de3c232SJiang zhe 	.items = {
6192de3c232SJiang zhe 		{ "ExtMic", 0x1 },
6202de3c232SJiang zhe 		{ "IntMic", 0x2 },
6212de3c232SJiang zhe 	}
6222de3c232SJiang zhe };
6232de3c232SJiang zhe 
624c9b443d4STobin Davis /* turn on/off EAPD (+ mute HP) as a master switch */
625c9b443d4STobin Davis static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
626c9b443d4STobin Davis 				    struct snd_ctl_elem_value *ucontrol)
627c9b443d4STobin Davis {
628c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
629c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
63082f30040STobin Davis 	unsigned int bits;
631c9b443d4STobin Davis 
63282f30040STobin Davis 	if (!cxt_eapd_put(kcontrol, ucontrol))
633c9b443d4STobin Davis 		return 0;
634c9b443d4STobin Davis 
63582f30040STobin Davis 	/* toggle internal speakers mute depending of presence of
63682f30040STobin Davis 	 * the headphone jack
63782f30040STobin Davis 	 */
63847fd830aSTakashi Iwai 	bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
63947fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
64047fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
6417f29673bSTobin Davis 
64247fd830aSTakashi Iwai 	bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
64347fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
64447fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
645c9b443d4STobin Davis 	return 1;
646c9b443d4STobin Davis }
647c9b443d4STobin Davis 
648c9b443d4STobin Davis /* bind volumes of both NID 0x10 and 0x11 */
649cca3b371STakashi Iwai static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
650cca3b371STakashi Iwai 	.ops = &snd_hda_bind_vol,
651cca3b371STakashi Iwai 	.values = {
652cca3b371STakashi Iwai 		HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
653cca3b371STakashi Iwai 		HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
654cca3b371STakashi Iwai 		0
655cca3b371STakashi Iwai 	},
656cca3b371STakashi Iwai };
657c9b443d4STobin Davis 
6587f29673bSTobin Davis /* toggle input of built-in and mic jack appropriately */
6597f29673bSTobin Davis static void cxt5045_hp_automic(struct hda_codec *codec)
6607f29673bSTobin Davis {
6617f29673bSTobin Davis 	static struct hda_verb mic_jack_on[] = {
6627f29673bSTobin Davis 		{0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
6637f29673bSTobin Davis 		{0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
6647f29673bSTobin Davis 		{}
6657f29673bSTobin Davis 	};
6667f29673bSTobin Davis 	static struct hda_verb mic_jack_off[] = {
6677f29673bSTobin Davis 		{0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
6687f29673bSTobin Davis 		{0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
6697f29673bSTobin Davis 		{}
6707f29673bSTobin Davis 	};
6717f29673bSTobin Davis 	unsigned int present;
6727f29673bSTobin Davis 
6737f29673bSTobin Davis 	present = snd_hda_codec_read(codec, 0x12, 0,
6747f29673bSTobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6757f29673bSTobin Davis 	if (present)
6767f29673bSTobin Davis 		snd_hda_sequence_write(codec, mic_jack_on);
6777f29673bSTobin Davis 	else
6787f29673bSTobin Davis 		snd_hda_sequence_write(codec, mic_jack_off);
6797f29673bSTobin Davis }
6807f29673bSTobin Davis 
681c9b443d4STobin Davis 
682c9b443d4STobin Davis /* mute internal speaker if HP is plugged */
683c9b443d4STobin Davis static void cxt5045_hp_automute(struct hda_codec *codec)
684c9b443d4STobin Davis {
68582f30040STobin Davis 	struct conexant_spec *spec = codec->spec;
686dd87da1cSTobin Davis 	unsigned int bits;
687c9b443d4STobin Davis 
68882f30040STobin Davis 	spec->hp_present = snd_hda_codec_read(codec, 0x11, 0,
689c9b443d4STobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
690dd87da1cSTobin Davis 
69147fd830aSTakashi Iwai 	bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
69247fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
69347fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
694c9b443d4STobin Davis }
695c9b443d4STobin Davis 
696c9b443d4STobin Davis /* unsolicited event for HP jack sensing */
697c9b443d4STobin Davis static void cxt5045_hp_unsol_event(struct hda_codec *codec,
698c9b443d4STobin Davis 				   unsigned int res)
699c9b443d4STobin Davis {
700c9b443d4STobin Davis 	res >>= 26;
701c9b443d4STobin Davis 	switch (res) {
702c9b443d4STobin Davis 	case CONEXANT_HP_EVENT:
703c9b443d4STobin Davis 		cxt5045_hp_automute(codec);
704c9b443d4STobin Davis 		break;
7057f29673bSTobin Davis 	case CONEXANT_MIC_EVENT:
7067f29673bSTobin Davis 		cxt5045_hp_automic(codec);
7077f29673bSTobin Davis 		break;
7087f29673bSTobin Davis 
709c9b443d4STobin Davis 	}
710c9b443d4STobin Davis }
711c9b443d4STobin Davis 
712c9b443d4STobin Davis static struct snd_kcontrol_new cxt5045_mixers[] = {
713c9b443d4STobin Davis 	{
714c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
715c9b443d4STobin Davis 		.name = "Capture Source",
716c9b443d4STobin Davis 		.info = conexant_mux_enum_info,
717c9b443d4STobin Davis 		.get = conexant_mux_enum_get,
718c9b443d4STobin Davis 		.put = conexant_mux_enum_put
719c9b443d4STobin Davis 	},
720c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
721c8229c38STakashi Iwai 	HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
722c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
723c8229c38STakashi Iwai 	HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
724c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
725c8229c38STakashi Iwai 	HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
726c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
727c8229c38STakashi Iwai 	HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
728c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
729c8229c38STakashi Iwai 	HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
730cca3b371STakashi Iwai 	HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
731c9b443d4STobin Davis 	{
732c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
733c9b443d4STobin Davis 		.name = "Master Playback Switch",
73482f30040STobin Davis 		.info = cxt_eapd_info,
73582f30040STobin Davis 		.get = cxt_eapd_get,
736c9b443d4STobin Davis 		.put = cxt5045_hp_master_sw_put,
73782f30040STobin Davis 		.private_value = 0x10,
738c9b443d4STobin Davis 	},
739c9b443d4STobin Davis 
740c9b443d4STobin Davis 	{}
741c9b443d4STobin Davis };
742c9b443d4STobin Davis 
7435218c892SJiang Zhe static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
7445218c892SJiang Zhe 	HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
7455218c892SJiang Zhe 	HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
7465218c892SJiang Zhe 	HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
7475218c892SJiang Zhe 	HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
7485218c892SJiang Zhe 
7495218c892SJiang Zhe 	{}
7505218c892SJiang Zhe };
7515218c892SJiang Zhe 
7522de3c232SJiang zhe static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
7532de3c232SJiang zhe 	{
7542de3c232SJiang zhe 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7552de3c232SJiang zhe 		.name = "Capture Source",
7562de3c232SJiang zhe 		.info = conexant_mux_enum_info,
7572de3c232SJiang zhe 		.get = conexant_mux_enum_get,
7582de3c232SJiang zhe 		.put = conexant_mux_enum_put
7592de3c232SJiang zhe 	},
7602de3c232SJiang zhe 	HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
7612de3c232SJiang zhe 	HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
7622de3c232SJiang zhe 	HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
7632de3c232SJiang zhe 	HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
7642de3c232SJiang zhe 	HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
7652de3c232SJiang zhe 	HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
7662de3c232SJiang zhe 	HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
7672de3c232SJiang zhe 	HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
7682de3c232SJiang zhe 	HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
7692de3c232SJiang zhe 	HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
7702de3c232SJiang zhe 	HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
7712de3c232SJiang zhe 	{
7722de3c232SJiang zhe 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7732de3c232SJiang zhe 		.name = "Master Playback Switch",
7742de3c232SJiang zhe 		.info = cxt_eapd_info,
7752de3c232SJiang zhe 		.get = cxt_eapd_get,
7762de3c232SJiang zhe 		.put = cxt5045_hp_master_sw_put,
7772de3c232SJiang zhe 		.private_value = 0x10,
7782de3c232SJiang zhe 	},
7792de3c232SJiang zhe 
7802de3c232SJiang zhe 	{}
7812de3c232SJiang zhe };
7822de3c232SJiang zhe 
783c9b443d4STobin Davis static struct hda_verb cxt5045_init_verbs[] = {
784c9b443d4STobin Davis 	/* Line in, Mic */
7854090dffbSTakashi Iwai 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
7867f29673bSTobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
787c9b443d4STobin Davis 	/* HP, Amp  */
788c8229c38STakashi Iwai 	{0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
789c8229c38STakashi Iwai 	{0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
79082f30040STobin Davis 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
791c8229c38STakashi Iwai 	{0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
792c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
793c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
794c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
795c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
796c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
79782f30040STobin Davis 	/* Record selector: Int mic */
7987f29673bSTobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
79982f30040STobin Davis 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
800c9b443d4STobin Davis 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
801c9b443d4STobin Davis 	/* SPDIF route: PCM */
802cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
803c9b443d4STobin Davis 	{ 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
804c9b443d4STobin Davis 	/* EAPD */
80582f30040STobin Davis 	{0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
806c9b443d4STobin Davis 	{ } /* end */
807c9b443d4STobin Davis };
808c9b443d4STobin Davis 
8095218c892SJiang Zhe static struct hda_verb cxt5045_benq_init_verbs[] = {
8105218c892SJiang Zhe 	/* Int Mic, Mic */
8115218c892SJiang Zhe 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
8125218c892SJiang Zhe 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
8135218c892SJiang Zhe 	/* Line In,HP, Amp  */
8145218c892SJiang Zhe 	{0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8155218c892SJiang Zhe 	{0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
8165218c892SJiang Zhe 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8175218c892SJiang Zhe 	{0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
8185218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8195218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8205218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
8215218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
8225218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
8235218c892SJiang Zhe 	/* Record selector: Int mic */
8245218c892SJiang Zhe 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
8255218c892SJiang Zhe 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
8265218c892SJiang Zhe 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
8275218c892SJiang Zhe 	/* SPDIF route: PCM */
828cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8295218c892SJiang Zhe 	{0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
8305218c892SJiang Zhe 	/* EAPD */
8315218c892SJiang Zhe 	{0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
8325218c892SJiang Zhe 	{ } /* end */
8335218c892SJiang Zhe };
8347f29673bSTobin Davis 
8357f29673bSTobin Davis static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
8367f29673bSTobin Davis 	/* pin sensing on HP jack */
8377f29673bSTobin Davis 	{0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
838d3091fadSTakashi Iwai 	{ } /* end */
8397f29673bSTobin Davis };
8407f29673bSTobin Davis 
8417f29673bSTobin Davis static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
8427f29673bSTobin Davis 	/* pin sensing on HP jack */
8437f29673bSTobin Davis 	{0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
844d3091fadSTakashi Iwai 	{ } /* end */
8457f29673bSTobin Davis };
8467f29673bSTobin Davis 
847c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
848c9b443d4STobin Davis /* Test configuration for debugging, modelled after the ALC260 test
849c9b443d4STobin Davis  * configuration.
850c9b443d4STobin Davis  */
851c9b443d4STobin Davis static struct hda_input_mux cxt5045_test_capture_source = {
852c9b443d4STobin Davis 	.num_items = 5,
853c9b443d4STobin Davis 	.items = {
854c9b443d4STobin Davis 		{ "MIXER", 0x0 },
855c9b443d4STobin Davis 		{ "MIC1 pin", 0x1 },
856c9b443d4STobin Davis 		{ "LINE1 pin", 0x2 },
857c9b443d4STobin Davis 		{ "HP-OUT pin", 0x3 },
858c9b443d4STobin Davis 		{ "CD pin", 0x4 },
859c9b443d4STobin Davis         },
860c9b443d4STobin Davis };
861c9b443d4STobin Davis 
862c9b443d4STobin Davis static struct snd_kcontrol_new cxt5045_test_mixer[] = {
863c9b443d4STobin Davis 
864c9b443d4STobin Davis 	/* Output controls */
865c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
866c9b443d4STobin Davis 	HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
8677f29673bSTobin Davis 	HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
8687f29673bSTobin Davis 	HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
8697f29673bSTobin Davis 	HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
8707f29673bSTobin Davis 	HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
871c9b443d4STobin Davis 
872c9b443d4STobin Davis 	/* Modes for retasking pin widgets */
873c9b443d4STobin Davis 	CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
874c9b443d4STobin Davis 	CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
875c9b443d4STobin Davis 
87682f30040STobin Davis 	/* EAPD Switch Control */
87782f30040STobin Davis 	CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
87882f30040STobin Davis 
879c9b443d4STobin Davis 	/* Loopback mixer controls */
880c9b443d4STobin Davis 
8817f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
8827f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
8837f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
8847f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
8857f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
8867f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
8877f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
8887f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
8897f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
8907f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
891c9b443d4STobin Davis 	{
892c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
893c9b443d4STobin Davis 		.name = "Input Source",
894c9b443d4STobin Davis 		.info = conexant_mux_enum_info,
895c9b443d4STobin Davis 		.get = conexant_mux_enum_get,
896c9b443d4STobin Davis 		.put = conexant_mux_enum_put,
897c9b443d4STobin Davis 	},
898fb3409e7STobin Davis 	/* Audio input controls */
899fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
900fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
901fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
902fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
903fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
904fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
905fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
906fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
907fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
908fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
909c9b443d4STobin Davis 	{ } /* end */
910c9b443d4STobin Davis };
911c9b443d4STobin Davis 
912c9b443d4STobin Davis static struct hda_verb cxt5045_test_init_verbs[] = {
9137f29673bSTobin Davis 	/* Set connections */
9147f29673bSTobin Davis 	{ 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
9157f29673bSTobin Davis 	{ 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
9167f29673bSTobin Davis 	{ 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
917c9b443d4STobin Davis 	/* Enable retasking pins as output, initially without power amp */
918c9b443d4STobin Davis 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9197f29673bSTobin Davis 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
920c9b443d4STobin Davis 
921c9b443d4STobin Davis 	/* Disable digital (SPDIF) pins initially, but users can enable
922c9b443d4STobin Davis 	 * them via a mixer switch.  In the case of SPDIF-out, this initverb
923c9b443d4STobin Davis 	 * payload also sets the generation to 0, output to be in "consumer"
924c9b443d4STobin Davis 	 * PCM format, copyright asserted, no pre-emphasis and no validity
925c9b443d4STobin Davis 	 * control.
926c9b443d4STobin Davis 	 */
927cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
928cbef9789STakashi Iwai 	{0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
929c9b443d4STobin Davis 
930c9b443d4STobin Davis 	/* Start with output sum widgets muted and their output gains at min */
931c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
932c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
933c9b443d4STobin Davis 
934c9b443d4STobin Davis 	/* Unmute retasking pin widget output buffers since the default
935c9b443d4STobin Davis 	 * state appears to be output.  As the pin mode is changed by the
936c9b443d4STobin Davis 	 * user the pin mode control will take care of enabling the pin's
937c9b443d4STobin Davis 	 * input/output buffers as needed.
938c9b443d4STobin Davis 	 */
939c9b443d4STobin Davis 	{0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
940c9b443d4STobin Davis 	{0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
941c9b443d4STobin Davis 
942c9b443d4STobin Davis 	/* Mute capture amp left and right */
943c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
944c9b443d4STobin Davis 
945c9b443d4STobin Davis 	/* Set ADC connection select to match default mixer setting (mic1
946c9b443d4STobin Davis 	 * pin)
947c9b443d4STobin Davis 	 */
948c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
9497f29673bSTobin Davis 	{0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
950c9b443d4STobin Davis 
951c9b443d4STobin Davis 	/* Mute all inputs to mixer widget (even unconnected ones) */
952c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
953c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
954c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
955c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
956c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
957c9b443d4STobin Davis 
958c9b443d4STobin Davis 	{ }
959c9b443d4STobin Davis };
960c9b443d4STobin Davis #endif
961c9b443d4STobin Davis 
962c9b443d4STobin Davis 
963c9b443d4STobin Davis /* initialize jack-sensing, too */
964c9b443d4STobin Davis static int cxt5045_init(struct hda_codec *codec)
965c9b443d4STobin Davis {
966c9b443d4STobin Davis 	conexant_init(codec);
967c9b443d4STobin Davis 	cxt5045_hp_automute(codec);
968c9b443d4STobin Davis 	return 0;
969c9b443d4STobin Davis }
970c9b443d4STobin Davis 
971c9b443d4STobin Davis 
972c9b443d4STobin Davis enum {
97315908c36SMarc Boucher 	CXT5045_LAPTOP_HPSENSE,
97415908c36SMarc Boucher 	CXT5045_LAPTOP_MICSENSE,
97515908c36SMarc Boucher 	CXT5045_LAPTOP_HPMICSENSE,
9765218c892SJiang Zhe 	CXT5045_BENQ,
9772de3c232SJiang zhe 	CXT5045_LAPTOP_HP530,
978c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
979c9b443d4STobin Davis 	CXT5045_TEST,
980c9b443d4STobin Davis #endif
981f5fcc13cSTakashi Iwai 	CXT5045_MODELS
982c9b443d4STobin Davis };
983c9b443d4STobin Davis 
984f5fcc13cSTakashi Iwai static const char *cxt5045_models[CXT5045_MODELS] = {
98515908c36SMarc Boucher 	[CXT5045_LAPTOP_HPSENSE]	= "laptop-hpsense",
98615908c36SMarc Boucher 	[CXT5045_LAPTOP_MICSENSE]	= "laptop-micsense",
98715908c36SMarc Boucher 	[CXT5045_LAPTOP_HPMICSENSE]	= "laptop-hpmicsense",
9885218c892SJiang Zhe 	[CXT5045_BENQ]			= "benq",
9892de3c232SJiang zhe 	[CXT5045_LAPTOP_HP530]		= "laptop-hp530",
990c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
991f5fcc13cSTakashi Iwai 	[CXT5045_TEST]		= "test",
992c9b443d4STobin Davis #endif
993f5fcc13cSTakashi Iwai };
994c9b443d4STobin Davis 
995f5fcc13cSTakashi Iwai static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
99615908c36SMarc Boucher 	SND_PCI_QUIRK(0x103c, 0x30a5, "HP", CXT5045_LAPTOP_HPSENSE),
99715908c36SMarc Boucher 	SND_PCI_QUIRK(0x103c, 0x30b2, "HP DV Series", CXT5045_LAPTOP_HPSENSE),
99815908c36SMarc Boucher 	SND_PCI_QUIRK(0x103c, 0x30b5, "HP DV2120", CXT5045_LAPTOP_HPSENSE),
99915908c36SMarc Boucher 	SND_PCI_QUIRK(0x103c, 0x30b7, "HP DV6000Z", CXT5045_LAPTOP_HPSENSE),
100015908c36SMarc Boucher 	SND_PCI_QUIRK(0x103c, 0x30bb, "HP DV8000", CXT5045_LAPTOP_HPSENSE),
100115908c36SMarc Boucher 	SND_PCI_QUIRK(0x103c, 0x30cd, "HP DV Series", CXT5045_LAPTOP_HPSENSE),
10020f6a5156STakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV9533EG", CXT5045_LAPTOP_HPSENSE),
10032de3c232SJiang zhe 	SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
100415908c36SMarc Boucher 	SND_PCI_QUIRK(0x103c, 0x30d9, "HP Spartan", CXT5045_LAPTOP_HPSENSE),
10056a9dccd6STakashi Iwai 	SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
10065218c892SJiang Zhe 	SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
100715908c36SMarc Boucher 	SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
100815908c36SMarc Boucher 	SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
10099e464154STakashi Iwai 	SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
10109e464154STakashi Iwai 		      CXT5045_LAPTOP_HPMICSENSE),
101115908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
101215908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
101315908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
101415908c36SMarc Boucher 	SND_PCI_QUIRK(0x1631, 0xc106, "Packard Bell", CXT5045_LAPTOP_HPMICSENSE),
101515908c36SMarc Boucher 	SND_PCI_QUIRK(0x1631, 0xc107, "Packard Bell", CXT5045_LAPTOP_HPMICSENSE),
101615908c36SMarc Boucher 	SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
1017c9b443d4STobin Davis 	{}
1018c9b443d4STobin Davis };
1019c9b443d4STobin Davis 
1020c9b443d4STobin Davis static int patch_cxt5045(struct hda_codec *codec)
1021c9b443d4STobin Davis {
1022c9b443d4STobin Davis 	struct conexant_spec *spec;
1023c9b443d4STobin Davis 	int board_config;
1024c9b443d4STobin Davis 
1025c9b443d4STobin Davis 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1026c9b443d4STobin Davis 	if (!spec)
1027c9b443d4STobin Davis 		return -ENOMEM;
1028c9b443d4STobin Davis 	codec->spec = spec;
1029c9b443d4STobin Davis 
1030c9b443d4STobin Davis 	spec->multiout.max_channels = 2;
1031c9b443d4STobin Davis 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1032c9b443d4STobin Davis 	spec->multiout.dac_nids = cxt5045_dac_nids;
1033c9b443d4STobin Davis 	spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1034c9b443d4STobin Davis 	spec->num_adc_nids = 1;
1035c9b443d4STobin Davis 	spec->adc_nids = cxt5045_adc_nids;
1036c9b443d4STobin Davis 	spec->capsrc_nids = cxt5045_capsrc_nids;
1037c9b443d4STobin Davis 	spec->input_mux = &cxt5045_capture_source;
1038c9b443d4STobin Davis 	spec->num_mixers = 1;
1039c9b443d4STobin Davis 	spec->mixers[0] = cxt5045_mixers;
1040c9b443d4STobin Davis 	spec->num_init_verbs = 1;
1041c9b443d4STobin Davis 	spec->init_verbs[0] = cxt5045_init_verbs;
1042c9b443d4STobin Davis 	spec->spdif_route = 0;
10435cd57529STobin Davis 	spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes),
10445cd57529STobin Davis 	spec->channel_mode = cxt5045_modes,
10455cd57529STobin Davis 
1046c9b443d4STobin Davis 
1047c9b443d4STobin Davis 	codec->patch_ops = conexant_patch_ops;
1048c9b443d4STobin Davis 
1049f5fcc13cSTakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1050f5fcc13cSTakashi Iwai 						  cxt5045_models,
1051f5fcc13cSTakashi Iwai 						  cxt5045_cfg_tbl);
1052c9b443d4STobin Davis 	switch (board_config) {
105315908c36SMarc Boucher 	case CXT5045_LAPTOP_HPSENSE:
10547f29673bSTobin Davis 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1055c9b443d4STobin Davis 		spec->input_mux = &cxt5045_capture_source;
1056c9b443d4STobin Davis 		spec->num_init_verbs = 2;
10577f29673bSTobin Davis 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
10587f29673bSTobin Davis 		spec->mixers[0] = cxt5045_mixers;
10597f29673bSTobin Davis 		codec->patch_ops.init = cxt5045_init;
10607f29673bSTobin Davis 		break;
106115908c36SMarc Boucher 	case CXT5045_LAPTOP_MICSENSE:
106286376df6STakashi Iwai 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
10637f29673bSTobin Davis 		spec->input_mux = &cxt5045_capture_source;
10647f29673bSTobin Davis 		spec->num_init_verbs = 2;
10657f29673bSTobin Davis 		spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
1066c9b443d4STobin Davis 		spec->mixers[0] = cxt5045_mixers;
1067c9b443d4STobin Davis 		codec->patch_ops.init = cxt5045_init;
1068c9b443d4STobin Davis 		break;
106915908c36SMarc Boucher 	default:
107015908c36SMarc Boucher 	case CXT5045_LAPTOP_HPMICSENSE:
107115908c36SMarc Boucher 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
107215908c36SMarc Boucher 		spec->input_mux = &cxt5045_capture_source;
107315908c36SMarc Boucher 		spec->num_init_verbs = 3;
107415908c36SMarc Boucher 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
107515908c36SMarc Boucher 		spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
107615908c36SMarc Boucher 		spec->mixers[0] = cxt5045_mixers;
107715908c36SMarc Boucher 		codec->patch_ops.init = cxt5045_init;
107815908c36SMarc Boucher 		break;
10795218c892SJiang Zhe 	case CXT5045_BENQ:
10805218c892SJiang Zhe 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
10815218c892SJiang Zhe 		spec->input_mux = &cxt5045_capture_source_benq;
10825218c892SJiang Zhe 		spec->num_init_verbs = 1;
10835218c892SJiang Zhe 		spec->init_verbs[0] = cxt5045_benq_init_verbs;
10845218c892SJiang Zhe 		spec->mixers[0] = cxt5045_mixers;
10855218c892SJiang Zhe 		spec->mixers[1] = cxt5045_benq_mixers;
10865218c892SJiang Zhe 		spec->num_mixers = 2;
10875218c892SJiang Zhe 		codec->patch_ops.init = cxt5045_init;
10885218c892SJiang Zhe 		break;
10892de3c232SJiang zhe 	case CXT5045_LAPTOP_HP530:
10902de3c232SJiang zhe 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
10912de3c232SJiang zhe 		spec->input_mux = &cxt5045_capture_source_hp530;
10922de3c232SJiang zhe 		spec->num_init_verbs = 2;
10932de3c232SJiang zhe 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
10942de3c232SJiang zhe 		spec->mixers[0] = cxt5045_mixers_hp530;
10952de3c232SJiang zhe 		codec->patch_ops.init = cxt5045_init;
10962de3c232SJiang zhe 		break;
1097c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1098c9b443d4STobin Davis 	case CXT5045_TEST:
1099c9b443d4STobin Davis 		spec->input_mux = &cxt5045_test_capture_source;
1100c9b443d4STobin Davis 		spec->mixers[0] = cxt5045_test_mixer;
1101c9b443d4STobin Davis 		spec->init_verbs[0] = cxt5045_test_init_verbs;
110215908c36SMarc Boucher 		break;
110315908c36SMarc Boucher 
1104c9b443d4STobin Davis #endif
1105c9b443d4STobin Davis 	}
110648ecb7e8STakashi Iwai 
1107031005f7STakashi Iwai 	switch (codec->subsystem_id >> 16) {
1108031005f7STakashi Iwai 	case 0x103c:
1109031005f7STakashi Iwai 		/* HP laptop has a really bad sound over 0dB on NID 0x17.
111048ecb7e8STakashi Iwai 		 * Fix max PCM level to 0 dB
111148ecb7e8STakashi Iwai 		 * (originall it has 0x2b steps with 0dB offset 0x14)
111248ecb7e8STakashi Iwai 		 */
111348ecb7e8STakashi Iwai 		snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
111448ecb7e8STakashi Iwai 					  (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
111548ecb7e8STakashi Iwai 					  (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
111648ecb7e8STakashi Iwai 					  (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
111748ecb7e8STakashi Iwai 					  (1 << AC_AMPCAP_MUTE_SHIFT));
1118031005f7STakashi Iwai 		break;
1119031005f7STakashi Iwai 	}
112048ecb7e8STakashi Iwai 
1121c9b443d4STobin Davis 	return 0;
1122c9b443d4STobin Davis }
1123c9b443d4STobin Davis 
1124c9b443d4STobin Davis 
1125c9b443d4STobin Davis /* Conexant 5047 specific */
112682f30040STobin Davis #define CXT5047_SPDIF_OUT	0x11
1127c9b443d4STobin Davis 
112882f30040STobin Davis static hda_nid_t cxt5047_dac_nids[2] = { 0x10, 0x1c };
1129c9b443d4STobin Davis static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1130c9b443d4STobin Davis static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
1131c9b443d4STobin Davis 
11325cd57529STobin Davis static struct hda_channel_mode cxt5047_modes[1] = {
11335cd57529STobin Davis 	{ 2, NULL },
11345cd57529STobin Davis };
1135c9b443d4STobin Davis 
1136c9b443d4STobin Davis static struct hda_input_mux cxt5047_capture_source = {
11377f29673bSTobin Davis 	.num_items = 1,
1138c9b443d4STobin Davis 	.items = {
11397f29673bSTobin Davis 		{ "Mic", 0x2 },
1140c9b443d4STobin Davis 	}
1141c9b443d4STobin Davis };
1142c9b443d4STobin Davis 
1143c9b443d4STobin Davis static struct hda_input_mux cxt5047_hp_capture_source = {
1144c9b443d4STobin Davis 	.num_items = 1,
1145c9b443d4STobin Davis 	.items = {
114682f30040STobin Davis 		{ "ExtMic", 0x2 },
114782f30040STobin Davis 	}
114882f30040STobin Davis };
114982f30040STobin Davis 
115082f30040STobin Davis static struct hda_input_mux cxt5047_toshiba_capture_source = {
115182f30040STobin Davis 	.num_items = 2,
115282f30040STobin Davis 	.items = {
115382f30040STobin Davis 		{ "ExtMic", 0x2 },
115482f30040STobin Davis 		{ "Line-In", 0x1 },
1155c9b443d4STobin Davis 	}
1156c9b443d4STobin Davis };
1157c9b443d4STobin Davis 
1158c9b443d4STobin Davis /* turn on/off EAPD (+ mute HP) as a master switch */
1159c9b443d4STobin Davis static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1160c9b443d4STobin Davis 				    struct snd_ctl_elem_value *ucontrol)
1161c9b443d4STobin Davis {
1162c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1163c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
116482f30040STobin Davis 	unsigned int bits;
1165c9b443d4STobin Davis 
116682f30040STobin Davis 	if (!cxt_eapd_put(kcontrol, ucontrol))
1167c9b443d4STobin Davis 		return 0;
1168c9b443d4STobin Davis 
116982f30040STobin Davis 	/* toggle internal speakers mute depending of presence of
117082f30040STobin Davis 	 * the headphone jack
117182f30040STobin Davis 	 */
117247fd830aSTakashi Iwai 	bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
117347fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
117447fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
117547fd830aSTakashi Iwai 	bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
117647fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
117747fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
1178c9b443d4STobin Davis 	return 1;
1179c9b443d4STobin Davis }
1180c9b443d4STobin Davis 
118182f30040STobin Davis /* bind volumes of both NID 0x13 (Headphones) and 0x1d (Speakers) */
1182cca3b371STakashi Iwai static struct hda_bind_ctls cxt5047_bind_master_vol = {
1183cca3b371STakashi Iwai 	.ops = &snd_hda_bind_vol,
1184cca3b371STakashi Iwai 	.values = {
1185cca3b371STakashi Iwai 		HDA_COMPOSE_AMP_VAL(0x13, 3, 0, HDA_OUTPUT),
1186cca3b371STakashi Iwai 		HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
1187cca3b371STakashi Iwai 		0
1188cca3b371STakashi Iwai 	},
1189cca3b371STakashi Iwai };
1190c9b443d4STobin Davis 
1191c9b443d4STobin Davis /* mute internal speaker if HP is plugged */
1192c9b443d4STobin Davis static void cxt5047_hp_automute(struct hda_codec *codec)
1193c9b443d4STobin Davis {
119482f30040STobin Davis 	struct conexant_spec *spec = codec->spec;
1195dd87da1cSTobin Davis 	unsigned int bits;
1196c9b443d4STobin Davis 
119782f30040STobin Davis 	spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
1198c9b443d4STobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1199dd87da1cSTobin Davis 
120047fd830aSTakashi Iwai 	bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
120147fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
120247fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
120382f30040STobin Davis 	/* Mute/Unmute PCM 2 for good measure - some systems need this */
120447fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x1c, HDA_OUTPUT, 0,
120547fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
1206c9b443d4STobin Davis }
1207c9b443d4STobin Davis 
1208fb3409e7STobin Davis /* mute internal speaker if HP is plugged */
1209fb3409e7STobin Davis static void cxt5047_hp2_automute(struct hda_codec *codec)
1210fb3409e7STobin Davis {
1211fb3409e7STobin Davis 	struct conexant_spec *spec = codec->spec;
1212fb3409e7STobin Davis 	unsigned int bits;
1213fb3409e7STobin Davis 
1214fb3409e7STobin Davis 	spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
1215fb3409e7STobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1216fb3409e7STobin Davis 
121747fd830aSTakashi Iwai 	bits = spec->hp_present ? HDA_AMP_MUTE : 0;
121847fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
121947fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
1220fb3409e7STobin Davis 	/* Mute/Unmute PCM 2 for good measure - some systems need this */
122147fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x1c, HDA_OUTPUT, 0,
122247fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
1223fb3409e7STobin Davis }
1224fb3409e7STobin Davis 
1225c9b443d4STobin Davis /* toggle input of built-in and mic jack appropriately */
1226c9b443d4STobin Davis static void cxt5047_hp_automic(struct hda_codec *codec)
1227c9b443d4STobin Davis {
1228c9b443d4STobin Davis 	static struct hda_verb mic_jack_on[] = {
12299f113e0eSMarc Boucher 		{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12309f113e0eSMarc Boucher 		{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1231c9b443d4STobin Davis 		{}
1232c9b443d4STobin Davis 	};
1233c9b443d4STobin Davis 	static struct hda_verb mic_jack_off[] = {
12349f113e0eSMarc Boucher 		{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12359f113e0eSMarc Boucher 		{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1236c9b443d4STobin Davis 		{}
1237c9b443d4STobin Davis 	};
1238c9b443d4STobin Davis 	unsigned int present;
1239c9b443d4STobin Davis 
12407f29673bSTobin Davis 	present = snd_hda_codec_read(codec, 0x15, 0,
1241c9b443d4STobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1242c9b443d4STobin Davis 	if (present)
1243c9b443d4STobin Davis 		snd_hda_sequence_write(codec, mic_jack_on);
1244c9b443d4STobin Davis 	else
1245c9b443d4STobin Davis 		snd_hda_sequence_write(codec, mic_jack_off);
1246c9b443d4STobin Davis }
1247c9b443d4STobin Davis 
1248c9b443d4STobin Davis /* unsolicited event for HP jack sensing */
1249c9b443d4STobin Davis static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1250c9b443d4STobin Davis 				  unsigned int res)
1251c9b443d4STobin Davis {
12529f113e0eSMarc Boucher 	switch (res >> 26) {
1253c9b443d4STobin Davis 	case CONEXANT_HP_EVENT:
1254c9b443d4STobin Davis 		cxt5047_hp_automute(codec);
1255c9b443d4STobin Davis 		break;
1256c9b443d4STobin Davis 	case CONEXANT_MIC_EVENT:
1257c9b443d4STobin Davis 		cxt5047_hp_automic(codec);
1258c9b443d4STobin Davis 		break;
1259c9b443d4STobin Davis 	}
1260c9b443d4STobin Davis }
1261c9b443d4STobin Davis 
1262fb3409e7STobin Davis /* unsolicited event for HP jack sensing - non-EAPD systems */
1263fb3409e7STobin Davis static void cxt5047_hp2_unsol_event(struct hda_codec *codec,
1264fb3409e7STobin Davis 				  unsigned int res)
1265fb3409e7STobin Davis {
1266fb3409e7STobin Davis 	res >>= 26;
1267fb3409e7STobin Davis 	switch (res) {
1268fb3409e7STobin Davis 	case CONEXANT_HP_EVENT:
1269fb3409e7STobin Davis 		cxt5047_hp2_automute(codec);
1270fb3409e7STobin Davis 		break;
1271fb3409e7STobin Davis 	case CONEXANT_MIC_EVENT:
1272fb3409e7STobin Davis 		cxt5047_hp_automic(codec);
1273fb3409e7STobin Davis 		break;
1274fb3409e7STobin Davis 	}
1275fb3409e7STobin Davis }
1276fb3409e7STobin Davis 
1277c9b443d4STobin Davis static struct snd_kcontrol_new cxt5047_mixers[] = {
1278c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
1279c9b443d4STobin Davis 	HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19, 0x02, HDA_INPUT),
12807f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mic Gain Volume", 0x1a, 0x0, HDA_OUTPUT),
12817f29673bSTobin Davis 	HDA_CODEC_MUTE("Mic Gain Switch", 0x1a, 0x0, HDA_OUTPUT),
1282c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1283c9b443d4STobin Davis 	HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1284c9b443d4STobin Davis 	HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1285c9b443d4STobin Davis 	HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
128682f30040STobin Davis 	HDA_CODEC_VOLUME("PCM-2 Volume", 0x1c, 0x00, HDA_OUTPUT),
128782f30040STobin Davis 	HDA_CODEC_MUTE("PCM-2 Switch", 0x1c, 0x00, HDA_OUTPUT),
1288b7589cebSTobin Davis 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x00, HDA_OUTPUT),
1289b7589cebSTobin Davis 	HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x00, HDA_OUTPUT),
1290b7589cebSTobin Davis 	HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1291b7589cebSTobin Davis 	HDA_CODEC_MUTE("Headphone Playback Switch", 0x13, 0x00, HDA_OUTPUT),
129282f30040STobin Davis 
129382f30040STobin Davis 	{}
129482f30040STobin Davis };
129582f30040STobin Davis 
129682f30040STobin Davis static struct snd_kcontrol_new cxt5047_toshiba_mixers[] = {
129782f30040STobin Davis 	{
129882f30040STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
129982f30040STobin Davis 		.name = "Capture Source",
130082f30040STobin Davis 		.info = conexant_mux_enum_info,
130182f30040STobin Davis 		.get = conexant_mux_enum_get,
130282f30040STobin Davis 		.put = conexant_mux_enum_put
130382f30040STobin Davis 	},
130482f30040STobin Davis 	HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
130582f30040STobin Davis 	HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19, 0x02, HDA_INPUT),
130682f30040STobin Davis 	HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
130782f30040STobin Davis 	HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
130882f30040STobin Davis 	HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
130982f30040STobin Davis 	HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1310cca3b371STakashi Iwai 	HDA_BIND_VOL("Master Playback Volume", &cxt5047_bind_master_vol),
131182f30040STobin Davis 	{
131282f30040STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
131382f30040STobin Davis 		.name = "Master Playback Switch",
131482f30040STobin Davis 		.info = cxt_eapd_info,
131582f30040STobin Davis 		.get = cxt_eapd_get,
1316c9b443d4STobin Davis 		.put = cxt5047_hp_master_sw_put,
1317c9b443d4STobin Davis 		.private_value = 0x13,
1318c9b443d4STobin Davis 	},
1319c9b443d4STobin Davis 
1320c9b443d4STobin Davis 	{}
1321c9b443d4STobin Davis };
1322c9b443d4STobin Davis 
1323c9b443d4STobin Davis static struct snd_kcontrol_new cxt5047_hp_mixers[] = {
1324c9b443d4STobin Davis 	{
1325c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1326c9b443d4STobin Davis 		.name = "Capture Source",
1327c9b443d4STobin Davis 		.info = conexant_mux_enum_info,
1328c9b443d4STobin Davis 		.get = conexant_mux_enum_get,
1329c9b443d4STobin Davis 		.put = conexant_mux_enum_put
1330c9b443d4STobin Davis 	},
1331c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
1332c9b443d4STobin Davis 	HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19,0x02,HDA_INPUT),
1333c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1334c9b443d4STobin Davis 	HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1335c9b443d4STobin Davis 	HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1336c9b443d4STobin Davis 	HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1337c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1338c9b443d4STobin Davis 	{
1339c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1340c9b443d4STobin Davis 		.name = "Master Playback Switch",
134182f30040STobin Davis 		.info = cxt_eapd_info,
134282f30040STobin Davis 		.get = cxt_eapd_get,
1343c9b443d4STobin Davis 		.put = cxt5047_hp_master_sw_put,
1344c9b443d4STobin Davis 		.private_value = 0x13,
1345c9b443d4STobin Davis 	},
1346c9b443d4STobin Davis 	{ } /* end */
1347c9b443d4STobin Davis };
1348c9b443d4STobin Davis 
1349c9b443d4STobin Davis static struct hda_verb cxt5047_init_verbs[] = {
1350c9b443d4STobin Davis 	/* Line in, Mic, Built-in Mic */
1351c9b443d4STobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1352c9b443d4STobin Davis 	{0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1353c9b443d4STobin Davis 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
13547f29673bSTobin Davis 	/* HP, Speaker  */
1355b7589cebSTobin Davis 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1356b7589cebSTobin Davis 	{0x13, AC_VERB_SET_CONNECT_SEL,0x1},
13577f29673bSTobin Davis 	{0x1d, AC_VERB_SET_CONNECT_SEL,0x0},
13587f29673bSTobin Davis 	/* Record selector: Mic */
13597f29673bSTobin Davis 	{0x12, AC_VERB_SET_CONNECT_SEL,0x03},
13607f29673bSTobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE,
13617f29673bSTobin Davis 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
13627f29673bSTobin Davis 	{0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
1363c9b443d4STobin Davis 	{0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1364c9b443d4STobin Davis 	 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1365c9b443d4STobin Davis 	{0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1366c9b443d4STobin Davis 	 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
1367c9b443d4STobin Davis 	/* SPDIF route: PCM */
1368c9b443d4STobin Davis 	{ 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
136982f30040STobin Davis 	/* Enable unsolicited events */
137082f30040STobin Davis 	{0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
137182f30040STobin Davis 	{0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
1372c9b443d4STobin Davis 	{ } /* end */
1373c9b443d4STobin Davis };
1374c9b443d4STobin Davis 
1375c9b443d4STobin Davis /* configuration for Toshiba Laptops */
1376c9b443d4STobin Davis static struct hda_verb cxt5047_toshiba_init_verbs[] = {
1377c9b443d4STobin Davis 	{0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0 }, /* default on */
1378c9b443d4STobin Davis 	/* pin sensing on HP and Mic jacks */
1379c9b443d4STobin Davis 	{0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1380c9b443d4STobin Davis 	{0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
138182f30040STobin Davis 	/* Speaker routing */
138282f30040STobin Davis 	{0x1d, AC_VERB_SET_CONNECT_SEL,0x1},
1383c9b443d4STobin Davis 	{}
1384c9b443d4STobin Davis };
1385c9b443d4STobin Davis 
1386c9b443d4STobin Davis /* configuration for HP Laptops */
1387c9b443d4STobin Davis static struct hda_verb cxt5047_hp_init_verbs[] = {
138882f30040STobin Davis 	/* pin sensing on HP jack */
1389c9b443d4STobin Davis 	{0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1390b84f08d4STakashi Iwai 	/* 0x13 is actually shared by both HP and speaker;
1391b84f08d4STakashi Iwai 	 * setting the connection to 0 (=0x19) makes the master volume control
1392b84f08d4STakashi Iwai 	 * working mysteriouslly...
1393b84f08d4STakashi Iwai 	 */
1394b84f08d4STakashi Iwai 	{0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
139582f30040STobin Davis 	/* Record selector: Ext Mic */
139682f30040STobin Davis 	{0x12, AC_VERB_SET_CONNECT_SEL,0x03},
139782f30040STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE,
139882f30040STobin Davis 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
139982f30040STobin Davis 	/* Speaker routing */
140082f30040STobin Davis 	{0x1d, AC_VERB_SET_CONNECT_SEL,0x1},
1401c9b443d4STobin Davis 	{}
1402c9b443d4STobin Davis };
1403c9b443d4STobin Davis 
1404c9b443d4STobin Davis /* Test configuration for debugging, modelled after the ALC260 test
1405c9b443d4STobin Davis  * configuration.
1406c9b443d4STobin Davis  */
1407c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1408c9b443d4STobin Davis static struct hda_input_mux cxt5047_test_capture_source = {
140982f30040STobin Davis 	.num_items = 4,
1410c9b443d4STobin Davis 	.items = {
141182f30040STobin Davis 		{ "LINE1 pin", 0x0 },
141282f30040STobin Davis 		{ "MIC1 pin", 0x1 },
141382f30040STobin Davis 		{ "MIC2 pin", 0x2 },
141482f30040STobin Davis 		{ "CD pin", 0x3 },
1415c9b443d4STobin Davis         },
1416c9b443d4STobin Davis };
1417c9b443d4STobin Davis 
1418c9b443d4STobin Davis static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1419c9b443d4STobin Davis 
1420c9b443d4STobin Davis 	/* Output only controls */
142182f30040STobin Davis 	HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
142282f30040STobin Davis 	HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
142382f30040STobin Davis 	HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
142482f30040STobin Davis 	HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
1425c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1426c9b443d4STobin Davis 	HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1427c9b443d4STobin Davis 	HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1428c9b443d4STobin Davis 	HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
142982f30040STobin Davis 	HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
143082f30040STobin Davis 	HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
143182f30040STobin Davis 	HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
143282f30040STobin Davis 	HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
1433c9b443d4STobin Davis 
1434c9b443d4STobin Davis 	/* Modes for retasking pin widgets */
1435c9b443d4STobin Davis 	CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1436c9b443d4STobin Davis 	CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1437c9b443d4STobin Davis 
143882f30040STobin Davis 	/* EAPD Switch Control */
143982f30040STobin Davis 	CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
144082f30040STobin Davis 
1441c9b443d4STobin Davis 	/* Loopback mixer controls */
144282f30040STobin Davis 	HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
144382f30040STobin Davis 	HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
144482f30040STobin Davis 	HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
144582f30040STobin Davis 	HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
144682f30040STobin Davis 	HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
144782f30040STobin Davis 	HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
144882f30040STobin Davis 	HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
144982f30040STobin Davis 	HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
1450c9b443d4STobin Davis 
145182f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
145282f30040STobin Davis 	HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
145382f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
145482f30040STobin Davis 	HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
145582f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
145682f30040STobin Davis 	HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
145782f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
145882f30040STobin Davis 	HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
1459c9b443d4STobin Davis 	{
1460c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1461c9b443d4STobin Davis 		.name = "Input Source",
1462c9b443d4STobin Davis 		.info = conexant_mux_enum_info,
1463c9b443d4STobin Davis 		.get = conexant_mux_enum_get,
1464c9b443d4STobin Davis 		.put = conexant_mux_enum_put,
1465c9b443d4STobin Davis 	},
14669f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
14679f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
14689f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
14699f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
14709f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
14719f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
14729f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
14739f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
14749f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
14759f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
14769f113e0eSMarc Boucher 
1477c9b443d4STobin Davis 	{ } /* end */
1478c9b443d4STobin Davis };
1479c9b443d4STobin Davis 
1480c9b443d4STobin Davis static struct hda_verb cxt5047_test_init_verbs[] = {
1481c9b443d4STobin Davis 	/* Enable retasking pins as output, initially without power amp */
1482c9b443d4STobin Davis 	{0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1483c9b443d4STobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1484c9b443d4STobin Davis 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1485c9b443d4STobin Davis 
1486c9b443d4STobin Davis 	/* Disable digital (SPDIF) pins initially, but users can enable
1487c9b443d4STobin Davis 	 * them via a mixer switch.  In the case of SPDIF-out, this initverb
1488c9b443d4STobin Davis 	 * payload also sets the generation to 0, output to be in "consumer"
1489c9b443d4STobin Davis 	 * PCM format, copyright asserted, no pre-emphasis and no validity
1490c9b443d4STobin Davis 	 * control.
1491c9b443d4STobin Davis 	 */
1492c9b443d4STobin Davis 	{0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1493c9b443d4STobin Davis 
1494c9b443d4STobin Davis 	/* Ensure mic1, mic2, line1 pin widgets take input from the
1495c9b443d4STobin Davis 	 * OUT1 sum bus when acting as an output.
1496c9b443d4STobin Davis 	 */
1497c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1498c9b443d4STobin Davis 	{0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1499c9b443d4STobin Davis 
1500c9b443d4STobin Davis 	/* Start with output sum widgets muted and their output gains at min */
1501c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1502c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1503c9b443d4STobin Davis 
1504c9b443d4STobin Davis 	/* Unmute retasking pin widget output buffers since the default
1505c9b443d4STobin Davis 	 * state appears to be output.  As the pin mode is changed by the
1506c9b443d4STobin Davis 	 * user the pin mode control will take care of enabling the pin's
1507c9b443d4STobin Davis 	 * input/output buffers as needed.
1508c9b443d4STobin Davis 	 */
1509c9b443d4STobin Davis 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1510c9b443d4STobin Davis 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1511c9b443d4STobin Davis 	{0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1512c9b443d4STobin Davis 
1513c9b443d4STobin Davis 	/* Mute capture amp left and right */
1514c9b443d4STobin Davis 	{0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1515c9b443d4STobin Davis 
1516c9b443d4STobin Davis 	/* Set ADC connection select to match default mixer setting (mic1
1517c9b443d4STobin Davis 	 * pin)
1518c9b443d4STobin Davis 	 */
1519c9b443d4STobin Davis 	{0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1520c9b443d4STobin Davis 
1521c9b443d4STobin Davis 	/* Mute all inputs to mixer widget (even unconnected ones) */
1522c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1523c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1524c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1525c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1526c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1527c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1528c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1529c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1530c9b443d4STobin Davis 
1531c9b443d4STobin Davis 	{ }
1532c9b443d4STobin Davis };
1533c9b443d4STobin Davis #endif
1534c9b443d4STobin Davis 
1535c9b443d4STobin Davis 
1536c9b443d4STobin Davis /* initialize jack-sensing, too */
1537c9b443d4STobin Davis static int cxt5047_hp_init(struct hda_codec *codec)
1538c9b443d4STobin Davis {
1539c9b443d4STobin Davis 	conexant_init(codec);
1540c9b443d4STobin Davis 	cxt5047_hp_automute(codec);
1541c9b443d4STobin Davis 	return 0;
1542c9b443d4STobin Davis }
1543c9b443d4STobin Davis 
1544c9b443d4STobin Davis 
1545c9b443d4STobin Davis enum {
1546f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP,		/* Laptops w/o EAPD support */
1547f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP_HP,	/* Some HP laptops */
1548f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP_EAPD,	/* Laptops with EAPD support */
1549c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1550c9b443d4STobin Davis 	CXT5047_TEST,
1551c9b443d4STobin Davis #endif
1552f5fcc13cSTakashi Iwai 	CXT5047_MODELS
1553c9b443d4STobin Davis };
1554c9b443d4STobin Davis 
1555f5fcc13cSTakashi Iwai static const char *cxt5047_models[CXT5047_MODELS] = {
1556f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP]	= "laptop",
1557f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP_HP]	= "laptop-hp",
1558f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP_EAPD]	= "laptop-eapd",
1559c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1560f5fcc13cSTakashi Iwai 	[CXT5047_TEST]		= "test",
1561c9b443d4STobin Davis #endif
1562f5fcc13cSTakashi Iwai };
1563c9b443d4STobin Davis 
1564f5fcc13cSTakashi Iwai static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
1565f5fcc13cSTakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30a0, "HP DV1000", CXT5047_LAPTOP),
1566ac3e3741STakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
1567f5fcc13cSTakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30b2, "HP DV2000T/DV3000T", CXT5047_LAPTOP),
156882f30040STobin Davis 	SND_PCI_QUIRK(0x103c, 0x30b5, "HP DV2000Z", CXT5047_LAPTOP),
1569f5fcc13cSTakashi Iwai 	SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
1570c9b443d4STobin Davis 	{}
1571c9b443d4STobin Davis };
1572c9b443d4STobin Davis 
1573c9b443d4STobin Davis static int patch_cxt5047(struct hda_codec *codec)
1574c9b443d4STobin Davis {
1575c9b443d4STobin Davis 	struct conexant_spec *spec;
1576c9b443d4STobin Davis 	int board_config;
1577c9b443d4STobin Davis 
1578c9b443d4STobin Davis 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1579c9b443d4STobin Davis 	if (!spec)
1580c9b443d4STobin Davis 		return -ENOMEM;
1581c9b443d4STobin Davis 	codec->spec = spec;
1582c9b443d4STobin Davis 
1583c9b443d4STobin Davis 	spec->multiout.max_channels = 2;
1584c9b443d4STobin Davis 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1585c9b443d4STobin Davis 	spec->multiout.dac_nids = cxt5047_dac_nids;
1586c9b443d4STobin Davis 	spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1587c9b443d4STobin Davis 	spec->num_adc_nids = 1;
1588c9b443d4STobin Davis 	spec->adc_nids = cxt5047_adc_nids;
1589c9b443d4STobin Davis 	spec->capsrc_nids = cxt5047_capsrc_nids;
1590c9b443d4STobin Davis 	spec->input_mux = &cxt5047_capture_source;
1591c9b443d4STobin Davis 	spec->num_mixers = 1;
1592c9b443d4STobin Davis 	spec->mixers[0] = cxt5047_mixers;
1593c9b443d4STobin Davis 	spec->num_init_verbs = 1;
1594c9b443d4STobin Davis 	spec->init_verbs[0] = cxt5047_init_verbs;
1595c9b443d4STobin Davis 	spec->spdif_route = 0;
15965cd57529STobin Davis 	spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
15975cd57529STobin Davis 	spec->channel_mode = cxt5047_modes,
1598c9b443d4STobin Davis 
1599c9b443d4STobin Davis 	codec->patch_ops = conexant_patch_ops;
1600c9b443d4STobin Davis 
1601f5fcc13cSTakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1602f5fcc13cSTakashi Iwai 						  cxt5047_models,
1603f5fcc13cSTakashi Iwai 						  cxt5047_cfg_tbl);
1604c9b443d4STobin Davis 	switch (board_config) {
1605c9b443d4STobin Davis 	case CXT5047_LAPTOP:
1606fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp2_unsol_event;
1607c9b443d4STobin Davis 		break;
1608c9b443d4STobin Davis 	case CXT5047_LAPTOP_HP:
1609c9b443d4STobin Davis 		spec->input_mux = &cxt5047_hp_capture_source;
1610c9b443d4STobin Davis 		spec->num_init_verbs = 2;
1611c9b443d4STobin Davis 		spec->init_verbs[1] = cxt5047_hp_init_verbs;
1612c9b443d4STobin Davis 		spec->mixers[0] = cxt5047_hp_mixers;
1613fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1614c9b443d4STobin Davis 		codec->patch_ops.init = cxt5047_hp_init;
1615c9b443d4STobin Davis 		break;
1616c9b443d4STobin Davis 	case CXT5047_LAPTOP_EAPD:
161782f30040STobin Davis 		spec->input_mux = &cxt5047_toshiba_capture_source;
1618c9b443d4STobin Davis 		spec->num_init_verbs = 2;
1619c9b443d4STobin Davis 		spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
162082f30040STobin Davis 		spec->mixers[0] = cxt5047_toshiba_mixers;
1621fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1622c9b443d4STobin Davis 		break;
1623c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1624c9b443d4STobin Davis 	case CXT5047_TEST:
1625c9b443d4STobin Davis 		spec->input_mux = &cxt5047_test_capture_source;
1626c9b443d4STobin Davis 		spec->mixers[0] = cxt5047_test_mixer;
1627c9b443d4STobin Davis 		spec->init_verbs[0] = cxt5047_test_init_verbs;
1628fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1629c9b443d4STobin Davis #endif
1630c9b443d4STobin Davis 	}
1631c9b443d4STobin Davis 	return 0;
1632c9b443d4STobin Davis }
1633c9b443d4STobin Davis 
1634461e2c78STakashi Iwai /* Conexant 5051 specific */
1635461e2c78STakashi Iwai static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1636461e2c78STakashi Iwai static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
1637461e2c78STakashi Iwai 
1638461e2c78STakashi Iwai static struct hda_channel_mode cxt5051_modes[1] = {
1639461e2c78STakashi Iwai 	{ 2, NULL },
1640461e2c78STakashi Iwai };
1641461e2c78STakashi Iwai 
1642461e2c78STakashi Iwai static void cxt5051_update_speaker(struct hda_codec *codec)
1643461e2c78STakashi Iwai {
1644461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1645461e2c78STakashi Iwai 	unsigned int pinctl;
1646461e2c78STakashi Iwai 	pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1647461e2c78STakashi Iwai 	snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1648461e2c78STakashi Iwai 			    pinctl);
1649461e2c78STakashi Iwai }
1650461e2c78STakashi Iwai 
1651461e2c78STakashi Iwai /* turn on/off EAPD (+ mute HP) as a master switch */
1652461e2c78STakashi Iwai static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1653461e2c78STakashi Iwai 				    struct snd_ctl_elem_value *ucontrol)
1654461e2c78STakashi Iwai {
1655461e2c78STakashi Iwai 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1656461e2c78STakashi Iwai 
1657461e2c78STakashi Iwai 	if (!cxt_eapd_put(kcontrol, ucontrol))
1658461e2c78STakashi Iwai 		return 0;
1659461e2c78STakashi Iwai 	cxt5051_update_speaker(codec);
1660461e2c78STakashi Iwai 	return 1;
1661461e2c78STakashi Iwai }
1662461e2c78STakashi Iwai 
1663461e2c78STakashi Iwai /* toggle input of built-in and mic jack appropriately */
1664461e2c78STakashi Iwai static void cxt5051_portb_automic(struct hda_codec *codec)
1665461e2c78STakashi Iwai {
1666461e2c78STakashi Iwai 	unsigned int present;
1667461e2c78STakashi Iwai 
1668461e2c78STakashi Iwai 	present = snd_hda_codec_read(codec, 0x17, 0,
1669461e2c78STakashi Iwai 				     AC_VERB_GET_PIN_SENSE, 0) &
1670461e2c78STakashi Iwai 		AC_PINSENSE_PRESENCE;
1671461e2c78STakashi Iwai 	snd_hda_codec_write(codec, 0x14, 0,
1672461e2c78STakashi Iwai 			    AC_VERB_SET_CONNECT_SEL,
1673461e2c78STakashi Iwai 			    present ? 0x01 : 0x00);
1674461e2c78STakashi Iwai }
1675461e2c78STakashi Iwai 
1676461e2c78STakashi Iwai /* switch the current ADC according to the jack state */
1677461e2c78STakashi Iwai static void cxt5051_portc_automic(struct hda_codec *codec)
1678461e2c78STakashi Iwai {
1679461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1680461e2c78STakashi Iwai 	unsigned int present;
1681461e2c78STakashi Iwai 	hda_nid_t new_adc;
1682461e2c78STakashi Iwai 
1683461e2c78STakashi Iwai 	present = snd_hda_codec_read(codec, 0x18, 0,
1684461e2c78STakashi Iwai 				     AC_VERB_GET_PIN_SENSE, 0) &
1685461e2c78STakashi Iwai 		AC_PINSENSE_PRESENCE;
1686461e2c78STakashi Iwai 	if (present)
1687461e2c78STakashi Iwai 		spec->cur_adc_idx = 1;
1688461e2c78STakashi Iwai 	else
1689461e2c78STakashi Iwai 		spec->cur_adc_idx = 0;
1690461e2c78STakashi Iwai 	new_adc = spec->adc_nids[spec->cur_adc_idx];
1691461e2c78STakashi Iwai 	if (spec->cur_adc && spec->cur_adc != new_adc) {
1692461e2c78STakashi Iwai 		/* stream is running, let's swap the current ADC */
1693888afa15STakashi Iwai 		snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
1694461e2c78STakashi Iwai 		spec->cur_adc = new_adc;
1695461e2c78STakashi Iwai 		snd_hda_codec_setup_stream(codec, new_adc,
1696461e2c78STakashi Iwai 					   spec->cur_adc_stream_tag, 0,
1697461e2c78STakashi Iwai 					   spec->cur_adc_format);
1698461e2c78STakashi Iwai 	}
1699461e2c78STakashi Iwai }
1700461e2c78STakashi Iwai 
1701461e2c78STakashi Iwai /* mute internal speaker if HP is plugged */
1702461e2c78STakashi Iwai static void cxt5051_hp_automute(struct hda_codec *codec)
1703461e2c78STakashi Iwai {
1704461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1705461e2c78STakashi Iwai 
1706461e2c78STakashi Iwai 	spec->hp_present = snd_hda_codec_read(codec, 0x16, 0,
1707461e2c78STakashi Iwai 				     AC_VERB_GET_PIN_SENSE, 0) &
1708461e2c78STakashi Iwai 		AC_PINSENSE_PRESENCE;
1709461e2c78STakashi Iwai 	cxt5051_update_speaker(codec);
1710461e2c78STakashi Iwai }
1711461e2c78STakashi Iwai 
1712461e2c78STakashi Iwai /* unsolicited event for HP jack sensing */
1713461e2c78STakashi Iwai static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1714461e2c78STakashi Iwai 				   unsigned int res)
1715461e2c78STakashi Iwai {
1716461e2c78STakashi Iwai 	switch (res >> 26) {
1717461e2c78STakashi Iwai 	case CONEXANT_HP_EVENT:
1718461e2c78STakashi Iwai 		cxt5051_hp_automute(codec);
1719461e2c78STakashi Iwai 		break;
1720461e2c78STakashi Iwai 	case CXT5051_PORTB_EVENT:
1721461e2c78STakashi Iwai 		cxt5051_portb_automic(codec);
1722461e2c78STakashi Iwai 		break;
1723461e2c78STakashi Iwai 	case CXT5051_PORTC_EVENT:
1724461e2c78STakashi Iwai 		cxt5051_portc_automic(codec);
1725461e2c78STakashi Iwai 		break;
1726461e2c78STakashi Iwai 	}
1727461e2c78STakashi Iwai }
1728461e2c78STakashi Iwai 
1729461e2c78STakashi Iwai static struct snd_kcontrol_new cxt5051_mixers[] = {
1730461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1731461e2c78STakashi Iwai 	HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1732461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1733461e2c78STakashi Iwai 	HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1734461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1735461e2c78STakashi Iwai 	HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1736461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1737461e2c78STakashi Iwai 	{
1738461e2c78STakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1739461e2c78STakashi Iwai 		.name = "Master Playback Switch",
1740461e2c78STakashi Iwai 		.info = cxt_eapd_info,
1741461e2c78STakashi Iwai 		.get = cxt_eapd_get,
1742461e2c78STakashi Iwai 		.put = cxt5051_hp_master_sw_put,
1743461e2c78STakashi Iwai 		.private_value = 0x1a,
1744461e2c78STakashi Iwai 	},
1745461e2c78STakashi Iwai 
1746461e2c78STakashi Iwai 	{}
1747461e2c78STakashi Iwai };
1748461e2c78STakashi Iwai 
1749461e2c78STakashi Iwai static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1750461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1751461e2c78STakashi Iwai 	HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1752461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1753461e2c78STakashi Iwai 	HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1754461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1755461e2c78STakashi Iwai 	{
1756461e2c78STakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1757461e2c78STakashi Iwai 		.name = "Master Playback Switch",
1758461e2c78STakashi Iwai 		.info = cxt_eapd_info,
1759461e2c78STakashi Iwai 		.get = cxt_eapd_get,
1760461e2c78STakashi Iwai 		.put = cxt5051_hp_master_sw_put,
1761461e2c78STakashi Iwai 		.private_value = 0x1a,
1762461e2c78STakashi Iwai 	},
1763461e2c78STakashi Iwai 
1764461e2c78STakashi Iwai 	{}
1765461e2c78STakashi Iwai };
1766461e2c78STakashi Iwai 
1767461e2c78STakashi Iwai static struct hda_verb cxt5051_init_verbs[] = {
1768461e2c78STakashi Iwai 	/* Line in, Mic */
1769461e2c78STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1770461e2c78STakashi Iwai 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1771461e2c78STakashi Iwai 	{0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1772461e2c78STakashi Iwai 	{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1773461e2c78STakashi Iwai 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1774461e2c78STakashi Iwai 	{0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1775461e2c78STakashi Iwai 	/* SPK  */
1776461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1777461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1778461e2c78STakashi Iwai 	/* HP, Amp  */
1779461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1780461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1781461e2c78STakashi Iwai 	/* DAC1 */
1782461e2c78STakashi Iwai 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1783461e2c78STakashi Iwai 	/* Record selector: Int mic */
1784461e2c78STakashi Iwai 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1785461e2c78STakashi Iwai 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1786461e2c78STakashi Iwai 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1787461e2c78STakashi Iwai 	/* SPDIF route: PCM */
1788461e2c78STakashi Iwai 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1789461e2c78STakashi Iwai 	/* EAPD */
1790461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1791461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1792461e2c78STakashi Iwai 	{0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1793461e2c78STakashi Iwai 	{0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1794461e2c78STakashi Iwai 	{ } /* end */
1795461e2c78STakashi Iwai };
1796461e2c78STakashi Iwai 
1797461e2c78STakashi Iwai /* initialize jack-sensing, too */
1798461e2c78STakashi Iwai static int cxt5051_init(struct hda_codec *codec)
1799461e2c78STakashi Iwai {
1800461e2c78STakashi Iwai 	conexant_init(codec);
1801461e2c78STakashi Iwai 	if (codec->patch_ops.unsol_event) {
1802461e2c78STakashi Iwai 		cxt5051_hp_automute(codec);
1803461e2c78STakashi Iwai 		cxt5051_portb_automic(codec);
1804461e2c78STakashi Iwai 		cxt5051_portc_automic(codec);
1805461e2c78STakashi Iwai 	}
1806461e2c78STakashi Iwai 	return 0;
1807461e2c78STakashi Iwai }
1808461e2c78STakashi Iwai 
1809461e2c78STakashi Iwai 
1810461e2c78STakashi Iwai enum {
1811461e2c78STakashi Iwai 	CXT5051_LAPTOP,	 /* Laptops w/ EAPD support */
1812461e2c78STakashi Iwai 	CXT5051_HP,	/* no docking */
1813461e2c78STakashi Iwai 	CXT5051_MODELS
1814461e2c78STakashi Iwai };
1815461e2c78STakashi Iwai 
1816461e2c78STakashi Iwai static const char *cxt5051_models[CXT5051_MODELS] = {
1817461e2c78STakashi Iwai 	[CXT5051_LAPTOP]	= "laptop",
1818461e2c78STakashi Iwai 	[CXT5051_HP]		= "hp",
1819461e2c78STakashi Iwai };
1820461e2c78STakashi Iwai 
1821461e2c78STakashi Iwai static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
1822461e2c78STakashi Iwai 	SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1823461e2c78STakashi Iwai 		      CXT5051_LAPTOP),
1824461e2c78STakashi Iwai 	SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
1825461e2c78STakashi Iwai 	{}
1826461e2c78STakashi Iwai };
1827461e2c78STakashi Iwai 
1828461e2c78STakashi Iwai static int patch_cxt5051(struct hda_codec *codec)
1829461e2c78STakashi Iwai {
1830461e2c78STakashi Iwai 	struct conexant_spec *spec;
1831461e2c78STakashi Iwai 	int board_config;
1832461e2c78STakashi Iwai 
1833461e2c78STakashi Iwai 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1834461e2c78STakashi Iwai 	if (!spec)
1835461e2c78STakashi Iwai 		return -ENOMEM;
1836461e2c78STakashi Iwai 	codec->spec = spec;
1837461e2c78STakashi Iwai 
1838461e2c78STakashi Iwai 	codec->patch_ops = conexant_patch_ops;
1839461e2c78STakashi Iwai 	codec->patch_ops.init = cxt5051_init;
1840461e2c78STakashi Iwai 
1841461e2c78STakashi Iwai 	spec->multiout.max_channels = 2;
1842461e2c78STakashi Iwai 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1843461e2c78STakashi Iwai 	spec->multiout.dac_nids = cxt5051_dac_nids;
1844461e2c78STakashi Iwai 	spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1845461e2c78STakashi Iwai 	spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1846461e2c78STakashi Iwai 	spec->adc_nids = cxt5051_adc_nids;
1847461e2c78STakashi Iwai 	spec->num_mixers = 1;
1848461e2c78STakashi Iwai 	spec->mixers[0] = cxt5051_mixers;
1849461e2c78STakashi Iwai 	spec->num_init_verbs = 1;
1850461e2c78STakashi Iwai 	spec->init_verbs[0] = cxt5051_init_verbs;
1851461e2c78STakashi Iwai 	spec->spdif_route = 0;
1852461e2c78STakashi Iwai 	spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1853461e2c78STakashi Iwai 	spec->channel_mode = cxt5051_modes;
1854461e2c78STakashi Iwai 	spec->cur_adc = 0;
1855461e2c78STakashi Iwai 	spec->cur_adc_idx = 0;
1856461e2c78STakashi Iwai 
1857461e2c78STakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1858461e2c78STakashi Iwai 						  cxt5051_models,
1859461e2c78STakashi Iwai 						  cxt5051_cfg_tbl);
1860461e2c78STakashi Iwai 	switch (board_config) {
1861461e2c78STakashi Iwai 	case CXT5051_HP:
1862461e2c78STakashi Iwai 		codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1863461e2c78STakashi Iwai 		spec->mixers[0] = cxt5051_hp_mixers;
1864461e2c78STakashi Iwai 		break;
1865461e2c78STakashi Iwai 	default:
1866461e2c78STakashi Iwai 	case CXT5051_LAPTOP:
1867461e2c78STakashi Iwai 		codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1868461e2c78STakashi Iwai 		break;
1869461e2c78STakashi Iwai 	}
1870461e2c78STakashi Iwai 
1871461e2c78STakashi Iwai 	return 0;
1872461e2c78STakashi Iwai }
1873461e2c78STakashi Iwai 
1874461e2c78STakashi Iwai 
1875461e2c78STakashi Iwai /*
1876461e2c78STakashi Iwai  */
1877461e2c78STakashi Iwai 
18781289e9e8STakashi Iwai static struct hda_codec_preset snd_hda_preset_conexant[] = {
187982f30040STobin Davis 	{ .id = 0x14f15045, .name = "CX20549 (Venice)",
188082f30040STobin Davis 	  .patch = patch_cxt5045 },
188182f30040STobin Davis 	{ .id = 0x14f15047, .name = "CX20551 (Waikiki)",
188282f30040STobin Davis 	  .patch = patch_cxt5047 },
1883461e2c78STakashi Iwai 	{ .id = 0x14f15051, .name = "CX20561 (Hermosa)",
1884461e2c78STakashi Iwai 	  .patch = patch_cxt5051 },
1885c9b443d4STobin Davis 	{} /* terminator */
1886c9b443d4STobin Davis };
18871289e9e8STakashi Iwai 
18881289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15045");
18891289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15047");
18901289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15051");
18911289e9e8STakashi Iwai 
18921289e9e8STakashi Iwai MODULE_LICENSE("GPL");
18931289e9e8STakashi Iwai MODULE_DESCRIPTION("Conexant HD-audio codec");
18941289e9e8STakashi Iwai 
18951289e9e8STakashi Iwai static struct hda_codec_preset_list conexant_list = {
18961289e9e8STakashi Iwai 	.preset = snd_hda_preset_conexant,
18971289e9e8STakashi Iwai 	.owner = THIS_MODULE,
18981289e9e8STakashi Iwai };
18991289e9e8STakashi Iwai 
19001289e9e8STakashi Iwai static int __init patch_conexant_init(void)
19011289e9e8STakashi Iwai {
19021289e9e8STakashi Iwai 	return snd_hda_add_codec_preset(&conexant_list);
19031289e9e8STakashi Iwai }
19041289e9e8STakashi Iwai 
19051289e9e8STakashi Iwai static void __exit patch_conexant_exit(void)
19061289e9e8STakashi Iwai {
19071289e9e8STakashi Iwai 	snd_hda_delete_codec_preset(&conexant_list);
19081289e9e8STakashi Iwai }
19091289e9e8STakashi Iwai 
19101289e9e8STakashi Iwai module_init(patch_conexant_init)
19111289e9e8STakashi Iwai module_exit(patch_conexant_exit)
1912