xref: /openbmc/linux/sound/pci/hda/patch_conexant.c (revision dbaccc0cca830efe9bb3c9e4a1cfcd6503790079)
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>
28bc7a166dSUlrich Dangel #include <sound/jack.h>
29bc7a166dSUlrich 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 
42bc7a166dSUlrich Dangel /* Conexant 5051 specific */
43c9b443d4STobin Davis 
44bc7a166dSUlrich Dangel #define CXT5051_SPDIF_OUT	0x1C
45bc7a166dSUlrich Dangel #define CXT5051_PORTB_EVENT	0x38
46bc7a166dSUlrich Dangel #define CXT5051_PORTC_EVENT	0x39
47bc7a166dSUlrich Dangel 
48bc7a166dSUlrich Dangel 
49bc7a166dSUlrich Dangel struct conexant_jack {
50bc7a166dSUlrich Dangel 
51bc7a166dSUlrich Dangel 	hda_nid_t nid;
52bc7a166dSUlrich Dangel 	int type;
53bc7a166dSUlrich Dangel 	struct snd_jack *jack;
54bc7a166dSUlrich Dangel 
55bc7a166dSUlrich Dangel };
56c9b443d4STobin Davis 
57c9b443d4STobin Davis struct conexant_spec {
58c9b443d4STobin Davis 
59c9b443d4STobin Davis 	struct snd_kcontrol_new *mixers[5];
60c9b443d4STobin Davis 	int num_mixers;
61dd5746a8STakashi Iwai 	hda_nid_t vmaster_nid;
62c9b443d4STobin Davis 
63c9b443d4STobin Davis 	const struct hda_verb *init_verbs[5];	/* initialization verbs
64c9b443d4STobin Davis 						 * don't forget NULL
65c9b443d4STobin Davis 						 * termination!
66c9b443d4STobin Davis 						 */
67c9b443d4STobin Davis 	unsigned int num_init_verbs;
68c9b443d4STobin Davis 
69c9b443d4STobin Davis 	/* playback */
70c9b443d4STobin Davis 	struct hda_multi_out multiout;	/* playback set-up
71c9b443d4STobin Davis 					 * max_channels, dacs must be set
72c9b443d4STobin Davis 					 * dig_out_nid and hp_nid are optional
73c9b443d4STobin Davis 					 */
74c9b443d4STobin Davis 	unsigned int cur_eapd;
7582f30040STobin Davis 	unsigned int hp_present;
7679d7d533STakashi Iwai 	unsigned int no_auto_mic;
77c9b443d4STobin Davis 	unsigned int need_dac_fix;
78c9b443d4STobin Davis 
79c9b443d4STobin Davis 	/* capture */
80c9b443d4STobin Davis 	unsigned int num_adc_nids;
81c9b443d4STobin Davis 	hda_nid_t *adc_nids;
82c9b443d4STobin Davis 	hda_nid_t dig_in_nid;		/* digital-in NID; optional */
83c9b443d4STobin Davis 
84461e2c78STakashi Iwai 	unsigned int cur_adc_idx;
85461e2c78STakashi Iwai 	hda_nid_t cur_adc;
86461e2c78STakashi Iwai 	unsigned int cur_adc_stream_tag;
87461e2c78STakashi Iwai 	unsigned int cur_adc_format;
88461e2c78STakashi Iwai 
89c9b443d4STobin Davis 	/* capture source */
90c9b443d4STobin Davis 	const struct hda_input_mux *input_mux;
91c9b443d4STobin Davis 	hda_nid_t *capsrc_nids;
92c9b443d4STobin Davis 	unsigned int cur_mux[3];
93c9b443d4STobin Davis 
94c9b443d4STobin Davis 	/* channel model */
95c9b443d4STobin Davis 	const struct hda_channel_mode *channel_mode;
96c9b443d4STobin Davis 	int num_channel_mode;
97c9b443d4STobin Davis 
98c9b443d4STobin Davis 	/* PCM information */
99c9b443d4STobin Davis 	struct hda_pcm pcm_rec[2];	/* used in build_pcms() */
100c9b443d4STobin Davis 
101c9b443d4STobin Davis 	unsigned int spdif_route;
102c9b443d4STobin Davis 
103bc7a166dSUlrich Dangel 	/* jack detection */
104bc7a166dSUlrich Dangel 	struct snd_array jacks;
105bc7a166dSUlrich Dangel 
106c9b443d4STobin Davis 	/* dynamic controls, init_verbs and input_mux */
107c9b443d4STobin Davis 	struct auto_pin_cfg autocfg;
108c9b443d4STobin Davis 	struct hda_input_mux private_imux;
10941923e44STakashi Iwai 	hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
110c9b443d4STobin Davis 
1110fb67e98SDaniel Drake 	unsigned int dell_automute;
1120fb67e98SDaniel Drake 	unsigned int port_d_mode;
113*dbaccc0cSDaniel Drake 	unsigned char ext_mic_bias;
114c9b443d4STobin Davis };
115c9b443d4STobin Davis 
116c9b443d4STobin Davis static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
117c9b443d4STobin Davis 				      struct hda_codec *codec,
118c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
119c9b443d4STobin Davis {
120c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
1219a08160bSTakashi Iwai 	return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
1229a08160bSTakashi Iwai 					     hinfo);
123c9b443d4STobin Davis }
124c9b443d4STobin Davis 
125c9b443d4STobin Davis static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
126c9b443d4STobin Davis 					 struct hda_codec *codec,
127c9b443d4STobin Davis 					 unsigned int stream_tag,
128c9b443d4STobin Davis 					 unsigned int format,
129c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
130c9b443d4STobin Davis {
131c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
132c9b443d4STobin Davis 	return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
133c9b443d4STobin Davis 						stream_tag,
134c9b443d4STobin Davis 						format, substream);
135c9b443d4STobin Davis }
136c9b443d4STobin Davis 
137c9b443d4STobin Davis static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
138c9b443d4STobin Davis 					 struct hda_codec *codec,
139c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
140c9b443d4STobin Davis {
141c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
142c9b443d4STobin Davis 	return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
143c9b443d4STobin Davis }
144c9b443d4STobin Davis 
145c9b443d4STobin Davis /*
146c9b443d4STobin Davis  * Digital out
147c9b443d4STobin Davis  */
148c9b443d4STobin Davis static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
149c9b443d4STobin Davis 					  struct hda_codec *codec,
150c9b443d4STobin Davis 					  struct snd_pcm_substream *substream)
151c9b443d4STobin Davis {
152c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
153c9b443d4STobin Davis 	return snd_hda_multi_out_dig_open(codec, &spec->multiout);
154c9b443d4STobin Davis }
155c9b443d4STobin Davis 
156c9b443d4STobin Davis static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
157c9b443d4STobin Davis 					 struct hda_codec *codec,
158c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
159c9b443d4STobin Davis {
160c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
161c9b443d4STobin Davis 	return snd_hda_multi_out_dig_close(codec, &spec->multiout);
162c9b443d4STobin Davis }
163c9b443d4STobin Davis 
1646b97eb45STakashi Iwai static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1656b97eb45STakashi Iwai 					 struct hda_codec *codec,
1666b97eb45STakashi Iwai 					 unsigned int stream_tag,
1676b97eb45STakashi Iwai 					 unsigned int format,
1686b97eb45STakashi Iwai 					 struct snd_pcm_substream *substream)
1696b97eb45STakashi Iwai {
1706b97eb45STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1716b97eb45STakashi Iwai 	return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
1726b97eb45STakashi Iwai 					     stream_tag,
1736b97eb45STakashi Iwai 					     format, substream);
1746b97eb45STakashi Iwai }
1756b97eb45STakashi Iwai 
176c9b443d4STobin Davis /*
177c9b443d4STobin Davis  * Analog capture
178c9b443d4STobin Davis  */
179c9b443d4STobin Davis static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
180c9b443d4STobin Davis 				      struct hda_codec *codec,
181c9b443d4STobin Davis 				      unsigned int stream_tag,
182c9b443d4STobin Davis 				      unsigned int format,
183c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
184c9b443d4STobin Davis {
185c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
186c9b443d4STobin Davis 	snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
187c9b443d4STobin Davis 				   stream_tag, 0, format);
188c9b443d4STobin Davis 	return 0;
189c9b443d4STobin Davis }
190c9b443d4STobin Davis 
191c9b443d4STobin Davis static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
192c9b443d4STobin Davis 				      struct hda_codec *codec,
193c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
194c9b443d4STobin Davis {
195c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
196888afa15STakashi Iwai 	snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
197c9b443d4STobin Davis 	return 0;
198c9b443d4STobin Davis }
199c9b443d4STobin Davis 
200c9b443d4STobin Davis 
201c9b443d4STobin Davis 
202c9b443d4STobin Davis static struct hda_pcm_stream conexant_pcm_analog_playback = {
203c9b443d4STobin Davis 	.substreams = 1,
204c9b443d4STobin Davis 	.channels_min = 2,
205c9b443d4STobin Davis 	.channels_max = 2,
206c9b443d4STobin Davis 	.nid = 0, /* fill later */
207c9b443d4STobin Davis 	.ops = {
208c9b443d4STobin Davis 		.open = conexant_playback_pcm_open,
209c9b443d4STobin Davis 		.prepare = conexant_playback_pcm_prepare,
210c9b443d4STobin Davis 		.cleanup = conexant_playback_pcm_cleanup
211c9b443d4STobin Davis 	},
212c9b443d4STobin Davis };
213c9b443d4STobin Davis 
214c9b443d4STobin Davis static struct hda_pcm_stream conexant_pcm_analog_capture = {
215c9b443d4STobin Davis 	.substreams = 1,
216c9b443d4STobin Davis 	.channels_min = 2,
217c9b443d4STobin Davis 	.channels_max = 2,
218c9b443d4STobin Davis 	.nid = 0, /* fill later */
219c9b443d4STobin Davis 	.ops = {
220c9b443d4STobin Davis 		.prepare = conexant_capture_pcm_prepare,
221c9b443d4STobin Davis 		.cleanup = conexant_capture_pcm_cleanup
222c9b443d4STobin Davis 	},
223c9b443d4STobin Davis };
224c9b443d4STobin Davis 
225c9b443d4STobin Davis 
226c9b443d4STobin Davis static struct hda_pcm_stream conexant_pcm_digital_playback = {
227c9b443d4STobin Davis 	.substreams = 1,
228c9b443d4STobin Davis 	.channels_min = 2,
229c9b443d4STobin Davis 	.channels_max = 2,
230c9b443d4STobin Davis 	.nid = 0, /* fill later */
231c9b443d4STobin Davis 	.ops = {
232c9b443d4STobin Davis 		.open = conexant_dig_playback_pcm_open,
2336b97eb45STakashi Iwai 		.close = conexant_dig_playback_pcm_close,
2346b97eb45STakashi Iwai 		.prepare = conexant_dig_playback_pcm_prepare
235c9b443d4STobin Davis 	},
236c9b443d4STobin Davis };
237c9b443d4STobin Davis 
238c9b443d4STobin Davis static struct hda_pcm_stream conexant_pcm_digital_capture = {
239c9b443d4STobin Davis 	.substreams = 1,
240c9b443d4STobin Davis 	.channels_min = 2,
241c9b443d4STobin Davis 	.channels_max = 2,
242c9b443d4STobin Davis 	/* NID is set in alc_build_pcms */
243c9b443d4STobin Davis };
244c9b443d4STobin Davis 
245461e2c78STakashi Iwai static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
246461e2c78STakashi Iwai 				      struct hda_codec *codec,
247461e2c78STakashi Iwai 				      unsigned int stream_tag,
248461e2c78STakashi Iwai 				      unsigned int format,
249461e2c78STakashi Iwai 				      struct snd_pcm_substream *substream)
250461e2c78STakashi Iwai {
251461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
252461e2c78STakashi Iwai 	spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
253461e2c78STakashi Iwai 	spec->cur_adc_stream_tag = stream_tag;
254461e2c78STakashi Iwai 	spec->cur_adc_format = format;
255461e2c78STakashi Iwai 	snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
256461e2c78STakashi Iwai 	return 0;
257461e2c78STakashi Iwai }
258461e2c78STakashi Iwai 
259461e2c78STakashi Iwai static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
260461e2c78STakashi Iwai 				      struct hda_codec *codec,
261461e2c78STakashi Iwai 				      struct snd_pcm_substream *substream)
262461e2c78STakashi Iwai {
263461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
264888afa15STakashi Iwai 	snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
265461e2c78STakashi Iwai 	spec->cur_adc = 0;
266461e2c78STakashi Iwai 	return 0;
267461e2c78STakashi Iwai }
268461e2c78STakashi Iwai 
269461e2c78STakashi Iwai static struct hda_pcm_stream cx5051_pcm_analog_capture = {
270461e2c78STakashi Iwai 	.substreams = 1,
271461e2c78STakashi Iwai 	.channels_min = 2,
272461e2c78STakashi Iwai 	.channels_max = 2,
273461e2c78STakashi Iwai 	.nid = 0, /* fill later */
274461e2c78STakashi Iwai 	.ops = {
275461e2c78STakashi Iwai 		.prepare = cx5051_capture_pcm_prepare,
276461e2c78STakashi Iwai 		.cleanup = cx5051_capture_pcm_cleanup
277461e2c78STakashi Iwai 	},
278461e2c78STakashi Iwai };
279461e2c78STakashi Iwai 
280c9b443d4STobin Davis static int conexant_build_pcms(struct hda_codec *codec)
281c9b443d4STobin Davis {
282c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
283c9b443d4STobin Davis 	struct hda_pcm *info = spec->pcm_rec;
284c9b443d4STobin Davis 
285c9b443d4STobin Davis 	codec->num_pcms = 1;
286c9b443d4STobin Davis 	codec->pcm_info = info;
287c9b443d4STobin Davis 
288c9b443d4STobin Davis 	info->name = "CONEXANT Analog";
289c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
290c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
291c9b443d4STobin Davis 		spec->multiout.max_channels;
292c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
293c9b443d4STobin Davis 		spec->multiout.dac_nids[0];
294461e2c78STakashi Iwai 	if (codec->vendor_id == 0x14f15051)
295461e2c78STakashi Iwai 		info->stream[SNDRV_PCM_STREAM_CAPTURE] =
296461e2c78STakashi Iwai 			cx5051_pcm_analog_capture;
297461e2c78STakashi Iwai 	else
298461e2c78STakashi Iwai 		info->stream[SNDRV_PCM_STREAM_CAPTURE] =
299461e2c78STakashi Iwai 			conexant_pcm_analog_capture;
300c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
301c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
302c9b443d4STobin Davis 
303c9b443d4STobin Davis 	if (spec->multiout.dig_out_nid) {
304c9b443d4STobin Davis 		info++;
305c9b443d4STobin Davis 		codec->num_pcms++;
306c9b443d4STobin Davis 		info->name = "Conexant Digital";
3077ba72ba1STakashi Iwai 		info->pcm_type = HDA_PCM_TYPE_SPDIF;
308c9b443d4STobin Davis 		info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
309c9b443d4STobin Davis 			conexant_pcm_digital_playback;
310c9b443d4STobin Davis 		info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
311c9b443d4STobin Davis 			spec->multiout.dig_out_nid;
312c9b443d4STobin Davis 		if (spec->dig_in_nid) {
313c9b443d4STobin Davis 			info->stream[SNDRV_PCM_STREAM_CAPTURE] =
314c9b443d4STobin Davis 				conexant_pcm_digital_capture;
315c9b443d4STobin Davis 			info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
316c9b443d4STobin Davis 				spec->dig_in_nid;
317c9b443d4STobin Davis 		}
318c9b443d4STobin Davis 	}
319c9b443d4STobin Davis 
320c9b443d4STobin Davis 	return 0;
321c9b443d4STobin Davis }
322c9b443d4STobin Davis 
323c9b443d4STobin Davis static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
324c9b443d4STobin Davis 	       			  struct snd_ctl_elem_info *uinfo)
325c9b443d4STobin Davis {
326c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
327c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
328c9b443d4STobin Davis 
329c9b443d4STobin Davis 	return snd_hda_input_mux_info(spec->input_mux, uinfo);
330c9b443d4STobin Davis }
331c9b443d4STobin Davis 
332c9b443d4STobin Davis static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
333c9b443d4STobin Davis 				 struct snd_ctl_elem_value *ucontrol)
334c9b443d4STobin Davis {
335c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
336c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
337c9b443d4STobin Davis 	unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
338c9b443d4STobin Davis 
339c9b443d4STobin Davis 	ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
340c9b443d4STobin Davis 	return 0;
341c9b443d4STobin Davis }
342c9b443d4STobin Davis 
343c9b443d4STobin Davis static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
344c9b443d4STobin Davis 				 struct snd_ctl_elem_value *ucontrol)
345c9b443d4STobin Davis {
346c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
347c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
348c9b443d4STobin Davis 	unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
349c9b443d4STobin Davis 
350c9b443d4STobin Davis 	return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
351c9b443d4STobin Davis 				     spec->capsrc_nids[adc_idx],
352c9b443d4STobin Davis 				     &spec->cur_mux[adc_idx]);
353c9b443d4STobin Davis }
354c9b443d4STobin Davis 
3558c8145b8STakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_JACK
35695c09099STakashi Iwai static void conexant_free_jack_priv(struct snd_jack *jack)
35795c09099STakashi Iwai {
35895c09099STakashi Iwai 	struct conexant_jack *jacks = jack->private_data;
35995c09099STakashi Iwai 	jacks->nid = 0;
36095c09099STakashi Iwai 	jacks->jack = NULL;
36195c09099STakashi Iwai }
36295c09099STakashi Iwai 
363bc7a166dSUlrich Dangel static int conexant_add_jack(struct hda_codec *codec,
364bc7a166dSUlrich Dangel 		hda_nid_t nid, int type)
365bc7a166dSUlrich Dangel {
366bc7a166dSUlrich Dangel 	struct conexant_spec *spec;
367bc7a166dSUlrich Dangel 	struct conexant_jack *jack;
368bc7a166dSUlrich Dangel 	const char *name;
36995c09099STakashi Iwai 	int err;
370bc7a166dSUlrich Dangel 
371bc7a166dSUlrich Dangel 	spec = codec->spec;
372bc7a166dSUlrich Dangel 	snd_array_init(&spec->jacks, sizeof(*jack), 32);
373bc7a166dSUlrich Dangel 	jack = snd_array_new(&spec->jacks);
374bc7a166dSUlrich Dangel 	name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ;
375bc7a166dSUlrich Dangel 
376bc7a166dSUlrich Dangel 	if (!jack)
377bc7a166dSUlrich Dangel 		return -ENOMEM;
378bc7a166dSUlrich Dangel 
379bc7a166dSUlrich Dangel 	jack->nid = nid;
380bc7a166dSUlrich Dangel 	jack->type = type;
381bc7a166dSUlrich Dangel 
38295c09099STakashi Iwai 	err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
38395c09099STakashi Iwai 	if (err < 0)
38495c09099STakashi Iwai 		return err;
38595c09099STakashi Iwai 	jack->jack->private_data = jack;
38695c09099STakashi Iwai 	jack->jack->private_free = conexant_free_jack_priv;
38795c09099STakashi Iwai 	return 0;
388bc7a166dSUlrich Dangel }
389bc7a166dSUlrich Dangel 
390bc7a166dSUlrich Dangel static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
391bc7a166dSUlrich Dangel {
392bc7a166dSUlrich Dangel 	struct conexant_spec *spec = codec->spec;
393bc7a166dSUlrich Dangel 	struct conexant_jack *jacks = spec->jacks.list;
394bc7a166dSUlrich Dangel 
395bc7a166dSUlrich Dangel 	if (jacks) {
396bc7a166dSUlrich Dangel 		int i;
397bc7a166dSUlrich Dangel 		for (i = 0; i < spec->jacks.used; i++) {
398bc7a166dSUlrich Dangel 			if (jacks->nid == nid) {
399bc7a166dSUlrich Dangel 				unsigned int present;
400bc7a166dSUlrich Dangel 				present = snd_hda_codec_read(codec, nid, 0,
401bc7a166dSUlrich Dangel 						AC_VERB_GET_PIN_SENSE, 0) &
402bc7a166dSUlrich Dangel 					AC_PINSENSE_PRESENCE;
403bc7a166dSUlrich Dangel 
404bc7a166dSUlrich Dangel 				present = (present) ? jacks->type : 0 ;
405bc7a166dSUlrich Dangel 
406bc7a166dSUlrich Dangel 				snd_jack_report(jacks->jack,
407bc7a166dSUlrich Dangel 						present);
408bc7a166dSUlrich Dangel 			}
409bc7a166dSUlrich Dangel 			jacks++;
410bc7a166dSUlrich Dangel 		}
411bc7a166dSUlrich Dangel 	}
412bc7a166dSUlrich Dangel }
413bc7a166dSUlrich Dangel 
414bc7a166dSUlrich Dangel static int conexant_init_jacks(struct hda_codec *codec)
415bc7a166dSUlrich Dangel {
416bc7a166dSUlrich Dangel 	struct conexant_spec *spec = codec->spec;
417bc7a166dSUlrich Dangel 	int i;
418bc7a166dSUlrich Dangel 
419bc7a166dSUlrich Dangel 	for (i = 0; i < spec->num_init_verbs; i++) {
420bc7a166dSUlrich Dangel 		const struct hda_verb *hv;
421bc7a166dSUlrich Dangel 
422bc7a166dSUlrich Dangel 		hv = spec->init_verbs[i];
423bc7a166dSUlrich Dangel 		while (hv->nid) {
424bc7a166dSUlrich Dangel 			int err = 0;
425bc7a166dSUlrich Dangel 			switch (hv->param ^ AC_USRSP_EN) {
426bc7a166dSUlrich Dangel 			case CONEXANT_HP_EVENT:
427bc7a166dSUlrich Dangel 				err = conexant_add_jack(codec, hv->nid,
428bc7a166dSUlrich Dangel 						SND_JACK_HEADPHONE);
429bc7a166dSUlrich Dangel 				conexant_report_jack(codec, hv->nid);
430bc7a166dSUlrich Dangel 				break;
431bc7a166dSUlrich Dangel 			case CXT5051_PORTC_EVENT:
432bc7a166dSUlrich Dangel 			case CONEXANT_MIC_EVENT:
433bc7a166dSUlrich Dangel 				err = conexant_add_jack(codec, hv->nid,
434bc7a166dSUlrich Dangel 						SND_JACK_MICROPHONE);
435bc7a166dSUlrich Dangel 				conexant_report_jack(codec, hv->nid);
436bc7a166dSUlrich Dangel 				break;
437bc7a166dSUlrich Dangel 			}
438bc7a166dSUlrich Dangel 			if (err < 0)
439bc7a166dSUlrich Dangel 				return err;
440bc7a166dSUlrich Dangel 			++hv;
441bc7a166dSUlrich Dangel 		}
442bc7a166dSUlrich Dangel 	}
443bc7a166dSUlrich Dangel 	return 0;
444bc7a166dSUlrich Dangel 
445bc7a166dSUlrich Dangel }
4465801f992STakashi Iwai #else
4475801f992STakashi Iwai static inline void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
4485801f992STakashi Iwai {
4495801f992STakashi Iwai }
4505801f992STakashi Iwai 
4515801f992STakashi Iwai static inline int conexant_init_jacks(struct hda_codec *codec)
4525801f992STakashi Iwai {
4535801f992STakashi Iwai 	return 0;
4545801f992STakashi Iwai }
4555801f992STakashi Iwai #endif
456bc7a166dSUlrich Dangel 
457c9b443d4STobin Davis static int conexant_init(struct hda_codec *codec)
458c9b443d4STobin Davis {
459c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
460c9b443d4STobin Davis 	int i;
461c9b443d4STobin Davis 
462c9b443d4STobin Davis 	for (i = 0; i < spec->num_init_verbs; i++)
463c9b443d4STobin Davis 		snd_hda_sequence_write(codec, spec->init_verbs[i]);
464c9b443d4STobin Davis 	return 0;
465c9b443d4STobin Davis }
466c9b443d4STobin Davis 
467c9b443d4STobin Davis static void conexant_free(struct hda_codec *codec)
468c9b443d4STobin Davis {
4698c8145b8STakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_JACK
470bc7a166dSUlrich Dangel 	struct conexant_spec *spec = codec->spec;
471bc7a166dSUlrich Dangel 	if (spec->jacks.list) {
472bc7a166dSUlrich Dangel 		struct conexant_jack *jacks = spec->jacks.list;
473bc7a166dSUlrich Dangel 		int i;
47495c09099STakashi Iwai 		for (i = 0; i < spec->jacks.used; i++, jacks++) {
47595c09099STakashi Iwai 			if (jacks->jack)
47695c09099STakashi Iwai 				snd_device_free(codec->bus->card, jacks->jack);
47795c09099STakashi Iwai 		}
478bc7a166dSUlrich Dangel 		snd_array_free(&spec->jacks);
479bc7a166dSUlrich Dangel 	}
480bc7a166dSUlrich Dangel #endif
481c9b443d4STobin Davis 	kfree(codec->spec);
482c9b443d4STobin Davis }
483c9b443d4STobin Davis 
484b880c74aSTakashi Iwai static struct snd_kcontrol_new cxt_capture_mixers[] = {
485b880c74aSTakashi Iwai 	{
486b880c74aSTakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
487b880c74aSTakashi Iwai 		.name = "Capture Source",
488b880c74aSTakashi Iwai 		.info = conexant_mux_enum_info,
489b880c74aSTakashi Iwai 		.get = conexant_mux_enum_get,
490b880c74aSTakashi Iwai 		.put = conexant_mux_enum_put
491b880c74aSTakashi Iwai 	},
492b880c74aSTakashi Iwai 	{}
493b880c74aSTakashi Iwai };
494b880c74aSTakashi Iwai 
495dd5746a8STakashi Iwai static const char *slave_vols[] = {
496dd5746a8STakashi Iwai 	"Headphone Playback Volume",
497dd5746a8STakashi Iwai 	"Speaker Playback Volume",
498dd5746a8STakashi Iwai 	NULL
499dd5746a8STakashi Iwai };
500dd5746a8STakashi Iwai 
501dd5746a8STakashi Iwai static const char *slave_sws[] = {
502dd5746a8STakashi Iwai 	"Headphone Playback Switch",
503dd5746a8STakashi Iwai 	"Speaker Playback Switch",
504dd5746a8STakashi Iwai 	NULL
505dd5746a8STakashi Iwai };
506dd5746a8STakashi Iwai 
507c9b443d4STobin Davis static int conexant_build_controls(struct hda_codec *codec)
508c9b443d4STobin Davis {
509c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
510c9b443d4STobin Davis 	unsigned int i;
511c9b443d4STobin Davis 	int err;
512c9b443d4STobin Davis 
513c9b443d4STobin Davis 	for (i = 0; i < spec->num_mixers; i++) {
514c9b443d4STobin Davis 		err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
515c9b443d4STobin Davis 		if (err < 0)
516c9b443d4STobin Davis 			return err;
517c9b443d4STobin Davis 	}
518c9b443d4STobin Davis 	if (spec->multiout.dig_out_nid) {
519c9b443d4STobin Davis 		err = snd_hda_create_spdif_out_ctls(codec,
520c9b443d4STobin Davis 						    spec->multiout.dig_out_nid);
521c9b443d4STobin Davis 		if (err < 0)
522c9b443d4STobin Davis 			return err;
5239a08160bSTakashi Iwai 		err = snd_hda_create_spdif_share_sw(codec,
5249a08160bSTakashi Iwai 						    &spec->multiout);
5259a08160bSTakashi Iwai 		if (err < 0)
5269a08160bSTakashi Iwai 			return err;
5279a08160bSTakashi Iwai 		spec->multiout.share_spdif = 1;
528c9b443d4STobin Davis 	}
529c9b443d4STobin Davis 	if (spec->dig_in_nid) {
530c9b443d4STobin Davis 		err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
531c9b443d4STobin Davis 		if (err < 0)
532c9b443d4STobin Davis 			return err;
533c9b443d4STobin Davis 	}
534dd5746a8STakashi Iwai 
535dd5746a8STakashi Iwai 	/* if we have no master control, let's create it */
536dd5746a8STakashi Iwai 	if (spec->vmaster_nid &&
537dd5746a8STakashi Iwai 	    !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
538dd5746a8STakashi Iwai 		unsigned int vmaster_tlv[4];
539dd5746a8STakashi Iwai 		snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
540dd5746a8STakashi Iwai 					HDA_OUTPUT, vmaster_tlv);
541dd5746a8STakashi Iwai 		err = snd_hda_add_vmaster(codec, "Master Playback Volume",
542dd5746a8STakashi Iwai 					  vmaster_tlv, slave_vols);
543dd5746a8STakashi Iwai 		if (err < 0)
544dd5746a8STakashi Iwai 			return err;
545dd5746a8STakashi Iwai 	}
546dd5746a8STakashi Iwai 	if (spec->vmaster_nid &&
547dd5746a8STakashi Iwai 	    !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
548dd5746a8STakashi Iwai 		err = snd_hda_add_vmaster(codec, "Master Playback Switch",
549dd5746a8STakashi Iwai 					  NULL, slave_sws);
550dd5746a8STakashi Iwai 		if (err < 0)
551dd5746a8STakashi Iwai 			return err;
552dd5746a8STakashi Iwai 	}
553dd5746a8STakashi Iwai 
554b880c74aSTakashi Iwai 	if (spec->input_mux) {
555b880c74aSTakashi Iwai 		err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
556b880c74aSTakashi Iwai 		if (err < 0)
557b880c74aSTakashi Iwai 			return err;
558b880c74aSTakashi Iwai 	}
559b880c74aSTakashi Iwai 
560c9b443d4STobin Davis 	return 0;
561c9b443d4STobin Davis }
562c9b443d4STobin Davis 
563c9b443d4STobin Davis static struct hda_codec_ops conexant_patch_ops = {
564c9b443d4STobin Davis 	.build_controls = conexant_build_controls,
565c9b443d4STobin Davis 	.build_pcms = conexant_build_pcms,
566c9b443d4STobin Davis 	.init = conexant_init,
567c9b443d4STobin Davis 	.free = conexant_free,
568c9b443d4STobin Davis };
569c9b443d4STobin Davis 
570c9b443d4STobin Davis /*
571c9b443d4STobin Davis  * EAPD control
572c9b443d4STobin Davis  * the private value = nid | (invert << 8)
573c9b443d4STobin Davis  */
574c9b443d4STobin Davis 
575a5ce8890STakashi Iwai #define cxt_eapd_info		snd_ctl_boolean_mono_info
576c9b443d4STobin Davis 
57782f30040STobin Davis static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
578c9b443d4STobin Davis 			     struct snd_ctl_elem_value *ucontrol)
579c9b443d4STobin Davis {
580c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
581c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
582c9b443d4STobin Davis 	int invert = (kcontrol->private_value >> 8) & 1;
583c9b443d4STobin Davis 	if (invert)
584c9b443d4STobin Davis 		ucontrol->value.integer.value[0] = !spec->cur_eapd;
585c9b443d4STobin Davis 	else
586c9b443d4STobin Davis 		ucontrol->value.integer.value[0] = spec->cur_eapd;
587c9b443d4STobin Davis 	return 0;
58882f30040STobin Davis 
589c9b443d4STobin Davis }
590c9b443d4STobin Davis 
59182f30040STobin Davis static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
592c9b443d4STobin Davis 			     struct snd_ctl_elem_value *ucontrol)
593c9b443d4STobin Davis {
594c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
595c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
596c9b443d4STobin Davis 	int invert = (kcontrol->private_value >> 8) & 1;
597c9b443d4STobin Davis 	hda_nid_t nid = kcontrol->private_value & 0xff;
598c9b443d4STobin Davis 	unsigned int eapd;
59982f30040STobin Davis 
60068ea7b2fSTakashi Iwai 	eapd = !!ucontrol->value.integer.value[0];
601c9b443d4STobin Davis 	if (invert)
602c9b443d4STobin Davis 		eapd = !eapd;
60382beb8fdSTakashi Iwai 	if (eapd == spec->cur_eapd)
604c9b443d4STobin Davis 		return 0;
60582f30040STobin Davis 
606c9b443d4STobin Davis 	spec->cur_eapd = eapd;
60782beb8fdSTakashi Iwai 	snd_hda_codec_write_cache(codec, nid,
608c9b443d4STobin Davis 				  0, AC_VERB_SET_EAPD_BTLENABLE,
609c9b443d4STobin Davis 				  eapd ? 0x02 : 0x00);
610c9b443d4STobin Davis 	return 1;
611c9b443d4STobin Davis }
612c9b443d4STobin Davis 
61386d72bdfSTakashi Iwai /* controls for test mode */
61486d72bdfSTakashi Iwai #ifdef CONFIG_SND_DEBUG
61586d72bdfSTakashi Iwai 
61682f30040STobin Davis #define CXT_EAPD_SWITCH(xname, nid, mask) \
61782f30040STobin Davis 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
61882f30040STobin Davis 	  .info = cxt_eapd_info, \
61982f30040STobin Davis 	  .get = cxt_eapd_get, \
62082f30040STobin Davis 	  .put = cxt_eapd_put, \
62182f30040STobin Davis 	  .private_value = nid | (mask<<16) }
62282f30040STobin Davis 
62382f30040STobin Davis 
62482f30040STobin Davis 
625c9b443d4STobin Davis static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
626c9b443d4STobin Davis 				 struct snd_ctl_elem_info *uinfo)
627c9b443d4STobin Davis {
628c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
629c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
630c9b443d4STobin Davis 	return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
631c9b443d4STobin Davis 				    spec->num_channel_mode);
632c9b443d4STobin Davis }
633c9b443d4STobin Davis 
634c9b443d4STobin Davis static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
635c9b443d4STobin Davis 				struct snd_ctl_elem_value *ucontrol)
636c9b443d4STobin Davis {
637c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
638c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
639c9b443d4STobin Davis 	return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
640c9b443d4STobin Davis 				   spec->num_channel_mode,
641c9b443d4STobin Davis 				   spec->multiout.max_channels);
642c9b443d4STobin Davis }
643c9b443d4STobin Davis 
644c9b443d4STobin Davis static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
645c9b443d4STobin Davis 				struct snd_ctl_elem_value *ucontrol)
646c9b443d4STobin Davis {
647c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
648c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
649c9b443d4STobin Davis 	int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
650c9b443d4STobin Davis 				      spec->num_channel_mode,
651c9b443d4STobin Davis 				      &spec->multiout.max_channels);
652c9b443d4STobin Davis 	if (err >= 0 && spec->need_dac_fix)
653c9b443d4STobin Davis 		spec->multiout.num_dacs = spec->multiout.max_channels / 2;
654c9b443d4STobin Davis 	return err;
655c9b443d4STobin Davis }
656c9b443d4STobin Davis 
657c9b443d4STobin Davis #define CXT_PIN_MODE(xname, nid, dir) \
658c9b443d4STobin Davis 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
659c9b443d4STobin Davis 	  .info = conexant_ch_mode_info, \
660c9b443d4STobin Davis 	  .get = conexant_ch_mode_get, \
661c9b443d4STobin Davis 	  .put = conexant_ch_mode_put, \
662c9b443d4STobin Davis 	  .private_value = nid | (dir<<16) }
663c9b443d4STobin Davis 
66486d72bdfSTakashi Iwai #endif /* CONFIG_SND_DEBUG */
66586d72bdfSTakashi Iwai 
666c9b443d4STobin Davis /* Conexant 5045 specific */
667c9b443d4STobin Davis 
668c9b443d4STobin Davis static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
669c9b443d4STobin Davis static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
670c9b443d4STobin Davis static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
671cbef9789STakashi Iwai #define CXT5045_SPDIF_OUT	0x18
672c9b443d4STobin Davis 
6735cd57529STobin Davis static struct hda_channel_mode cxt5045_modes[1] = {
6745cd57529STobin Davis 	{ 2, NULL },
6755cd57529STobin Davis };
676c9b443d4STobin Davis 
677c9b443d4STobin Davis static struct hda_input_mux cxt5045_capture_source = {
678c9b443d4STobin Davis 	.num_items = 2,
679c9b443d4STobin Davis 	.items = {
68082f30040STobin Davis 		{ "IntMic", 0x1 },
681f4beee94SJiang zhe 		{ "ExtMic", 0x2 },
682c9b443d4STobin Davis 	}
683c9b443d4STobin Davis };
684c9b443d4STobin Davis 
6855218c892SJiang Zhe static struct hda_input_mux cxt5045_capture_source_benq = {
68622e14130SLukasz Marcinowski 	.num_items = 5,
6875218c892SJiang Zhe 	.items = {
6885218c892SJiang Zhe 		{ "IntMic", 0x1 },
6895218c892SJiang Zhe 		{ "ExtMic", 0x2 },
6905218c892SJiang Zhe 		{ "LineIn", 0x3 },
69122e14130SLukasz Marcinowski 		{ "CD",     0x4 },
69222e14130SLukasz Marcinowski 		{ "Mixer",  0x0 },
6935218c892SJiang Zhe 	}
6945218c892SJiang Zhe };
6955218c892SJiang Zhe 
6962de3c232SJiang zhe static struct hda_input_mux cxt5045_capture_source_hp530 = {
6972de3c232SJiang zhe 	.num_items = 2,
6982de3c232SJiang zhe 	.items = {
6992de3c232SJiang zhe 		{ "ExtMic", 0x1 },
7002de3c232SJiang zhe 		{ "IntMic", 0x2 },
7012de3c232SJiang zhe 	}
7022de3c232SJiang zhe };
7032de3c232SJiang zhe 
704c9b443d4STobin Davis /* turn on/off EAPD (+ mute HP) as a master switch */
705c9b443d4STobin Davis static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
706c9b443d4STobin Davis 				    struct snd_ctl_elem_value *ucontrol)
707c9b443d4STobin Davis {
708c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
709c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
71082f30040STobin Davis 	unsigned int bits;
711c9b443d4STobin Davis 
71282f30040STobin Davis 	if (!cxt_eapd_put(kcontrol, ucontrol))
713c9b443d4STobin Davis 		return 0;
714c9b443d4STobin Davis 
71582f30040STobin Davis 	/* toggle internal speakers mute depending of presence of
71682f30040STobin Davis 	 * the headphone jack
71782f30040STobin Davis 	 */
71847fd830aSTakashi Iwai 	bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
71947fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
72047fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
7217f29673bSTobin Davis 
72247fd830aSTakashi Iwai 	bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
72347fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
72447fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
725c9b443d4STobin Davis 	return 1;
726c9b443d4STobin Davis }
727c9b443d4STobin Davis 
728c9b443d4STobin Davis /* bind volumes of both NID 0x10 and 0x11 */
729cca3b371STakashi Iwai static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
730cca3b371STakashi Iwai 	.ops = &snd_hda_bind_vol,
731cca3b371STakashi Iwai 	.values = {
732cca3b371STakashi Iwai 		HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
733cca3b371STakashi Iwai 		HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
734cca3b371STakashi Iwai 		0
735cca3b371STakashi Iwai 	},
736cca3b371STakashi Iwai };
737c9b443d4STobin Davis 
7387f29673bSTobin Davis /* toggle input of built-in and mic jack appropriately */
7397f29673bSTobin Davis static void cxt5045_hp_automic(struct hda_codec *codec)
7407f29673bSTobin Davis {
7417f29673bSTobin Davis 	static struct hda_verb mic_jack_on[] = {
7427f29673bSTobin Davis 		{0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
7437f29673bSTobin Davis 		{0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
7447f29673bSTobin Davis 		{}
7457f29673bSTobin Davis 	};
7467f29673bSTobin Davis 	static struct hda_verb mic_jack_off[] = {
7477f29673bSTobin Davis 		{0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
7487f29673bSTobin Davis 		{0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
7497f29673bSTobin Davis 		{}
7507f29673bSTobin Davis 	};
7517f29673bSTobin Davis 	unsigned int present;
7527f29673bSTobin Davis 
7537f29673bSTobin Davis 	present = snd_hda_codec_read(codec, 0x12, 0,
7547f29673bSTobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7557f29673bSTobin Davis 	if (present)
7567f29673bSTobin Davis 		snd_hda_sequence_write(codec, mic_jack_on);
7577f29673bSTobin Davis 	else
7587f29673bSTobin Davis 		snd_hda_sequence_write(codec, mic_jack_off);
7597f29673bSTobin Davis }
7607f29673bSTobin Davis 
761c9b443d4STobin Davis 
762c9b443d4STobin Davis /* mute internal speaker if HP is plugged */
763c9b443d4STobin Davis static void cxt5045_hp_automute(struct hda_codec *codec)
764c9b443d4STobin Davis {
76582f30040STobin Davis 	struct conexant_spec *spec = codec->spec;
766dd87da1cSTobin Davis 	unsigned int bits;
767c9b443d4STobin Davis 
76882f30040STobin Davis 	spec->hp_present = snd_hda_codec_read(codec, 0x11, 0,
769c9b443d4STobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
770dd87da1cSTobin Davis 
77147fd830aSTakashi Iwai 	bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
77247fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
77347fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
774c9b443d4STobin Davis }
775c9b443d4STobin Davis 
776c9b443d4STobin Davis /* unsolicited event for HP jack sensing */
777c9b443d4STobin Davis static void cxt5045_hp_unsol_event(struct hda_codec *codec,
778c9b443d4STobin Davis 				   unsigned int res)
779c9b443d4STobin Davis {
780c9b443d4STobin Davis 	res >>= 26;
781c9b443d4STobin Davis 	switch (res) {
782c9b443d4STobin Davis 	case CONEXANT_HP_EVENT:
783c9b443d4STobin Davis 		cxt5045_hp_automute(codec);
784c9b443d4STobin Davis 		break;
7857f29673bSTobin Davis 	case CONEXANT_MIC_EVENT:
7867f29673bSTobin Davis 		cxt5045_hp_automic(codec);
7877f29673bSTobin Davis 		break;
7887f29673bSTobin Davis 
789c9b443d4STobin Davis 	}
790c9b443d4STobin Davis }
791c9b443d4STobin Davis 
792c9b443d4STobin Davis static struct snd_kcontrol_new cxt5045_mixers[] = {
793c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
794c8229c38STakashi Iwai 	HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
795c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
796c8229c38STakashi Iwai 	HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
797c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
798c8229c38STakashi Iwai 	HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
799c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
800c8229c38STakashi Iwai 	HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
801c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
802c8229c38STakashi Iwai 	HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
803cca3b371STakashi Iwai 	HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
804c9b443d4STobin Davis 	{
805c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
806c9b443d4STobin Davis 		.name = "Master Playback Switch",
80782f30040STobin Davis 		.info = cxt_eapd_info,
80882f30040STobin Davis 		.get = cxt_eapd_get,
809c9b443d4STobin Davis 		.put = cxt5045_hp_master_sw_put,
81082f30040STobin Davis 		.private_value = 0x10,
811c9b443d4STobin Davis 	},
812c9b443d4STobin Davis 
813c9b443d4STobin Davis 	{}
814c9b443d4STobin Davis };
815c9b443d4STobin Davis 
8165218c892SJiang Zhe static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
81722e14130SLukasz Marcinowski 	HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT),
81822e14130SLukasz Marcinowski 	HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT),
81922e14130SLukasz Marcinowski 	HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT),
82022e14130SLukasz Marcinowski 	HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT),
82122e14130SLukasz Marcinowski 
8225218c892SJiang Zhe 	HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
8235218c892SJiang Zhe 	HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
8245218c892SJiang Zhe 	HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
8255218c892SJiang Zhe 	HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
8265218c892SJiang Zhe 
82722e14130SLukasz Marcinowski 	HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT),
82822e14130SLukasz Marcinowski 	HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT),
82922e14130SLukasz Marcinowski 
8305218c892SJiang Zhe 	{}
8315218c892SJiang Zhe };
8325218c892SJiang Zhe 
8332de3c232SJiang zhe static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
8342de3c232SJiang zhe 	HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
8352de3c232SJiang zhe 	HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
8362de3c232SJiang zhe 	HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
8372de3c232SJiang zhe 	HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
8382de3c232SJiang zhe 	HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
8392de3c232SJiang zhe 	HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
8402de3c232SJiang zhe 	HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
8412de3c232SJiang zhe 	HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
8422de3c232SJiang zhe 	HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
8432de3c232SJiang zhe 	HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
8442de3c232SJiang zhe 	HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
8452de3c232SJiang zhe 	{
8462de3c232SJiang zhe 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8472de3c232SJiang zhe 		.name = "Master Playback Switch",
8482de3c232SJiang zhe 		.info = cxt_eapd_info,
8492de3c232SJiang zhe 		.get = cxt_eapd_get,
8502de3c232SJiang zhe 		.put = cxt5045_hp_master_sw_put,
8512de3c232SJiang zhe 		.private_value = 0x10,
8522de3c232SJiang zhe 	},
8532de3c232SJiang zhe 
8542de3c232SJiang zhe 	{}
8552de3c232SJiang zhe };
8562de3c232SJiang zhe 
857c9b443d4STobin Davis static struct hda_verb cxt5045_init_verbs[] = {
858c9b443d4STobin Davis 	/* Line in, Mic */
8594090dffbSTakashi Iwai 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
8607f29673bSTobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
861c9b443d4STobin Davis 	/* HP, Amp  */
862c8229c38STakashi Iwai 	{0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
863c8229c38STakashi Iwai 	{0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
86482f30040STobin Davis 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
865c8229c38STakashi Iwai 	{0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
866c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
867c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
868c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
869c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
870c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
87182f30040STobin Davis 	/* Record selector: Int mic */
8727f29673bSTobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
87382f30040STobin Davis 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
874c9b443d4STobin Davis 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
875c9b443d4STobin Davis 	/* SPDIF route: PCM */
876cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
877c9b443d4STobin Davis 	{ 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
878c9b443d4STobin Davis 	/* EAPD */
87982f30040STobin Davis 	{0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
880c9b443d4STobin Davis 	{ } /* end */
881c9b443d4STobin Davis };
882c9b443d4STobin Davis 
8835218c892SJiang Zhe static struct hda_verb cxt5045_benq_init_verbs[] = {
8845218c892SJiang Zhe 	/* Int Mic, Mic */
8855218c892SJiang Zhe 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
8865218c892SJiang Zhe 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
8875218c892SJiang Zhe 	/* Line In,HP, Amp  */
8885218c892SJiang Zhe 	{0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8895218c892SJiang Zhe 	{0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
8905218c892SJiang Zhe 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8915218c892SJiang Zhe 	{0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
8925218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8935218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8945218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
8955218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
8965218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
8975218c892SJiang Zhe 	/* Record selector: Int mic */
8985218c892SJiang Zhe 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
8995218c892SJiang Zhe 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
9005218c892SJiang Zhe 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
9015218c892SJiang Zhe 	/* SPDIF route: PCM */
902cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9035218c892SJiang Zhe 	{0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
9045218c892SJiang Zhe 	/* EAPD */
9055218c892SJiang Zhe 	{0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
9065218c892SJiang Zhe 	{ } /* end */
9075218c892SJiang Zhe };
9087f29673bSTobin Davis 
9097f29673bSTobin Davis static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
9107f29673bSTobin Davis 	/* pin sensing on HP jack */
9117f29673bSTobin Davis 	{0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
912d3091fadSTakashi Iwai 	{ } /* end */
9137f29673bSTobin Davis };
9147f29673bSTobin Davis 
9157f29673bSTobin Davis static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
9167f29673bSTobin Davis 	/* pin sensing on HP jack */
9177f29673bSTobin Davis 	{0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
918d3091fadSTakashi Iwai 	{ } /* end */
9197f29673bSTobin Davis };
9207f29673bSTobin Davis 
921c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
922c9b443d4STobin Davis /* Test configuration for debugging, modelled after the ALC260 test
923c9b443d4STobin Davis  * configuration.
924c9b443d4STobin Davis  */
925c9b443d4STobin Davis static struct hda_input_mux cxt5045_test_capture_source = {
926c9b443d4STobin Davis 	.num_items = 5,
927c9b443d4STobin Davis 	.items = {
928c9b443d4STobin Davis 		{ "MIXER", 0x0 },
929c9b443d4STobin Davis 		{ "MIC1 pin", 0x1 },
930c9b443d4STobin Davis 		{ "LINE1 pin", 0x2 },
931c9b443d4STobin Davis 		{ "HP-OUT pin", 0x3 },
932c9b443d4STobin Davis 		{ "CD pin", 0x4 },
933c9b443d4STobin Davis         },
934c9b443d4STobin Davis };
935c9b443d4STobin Davis 
936c9b443d4STobin Davis static struct snd_kcontrol_new cxt5045_test_mixer[] = {
937c9b443d4STobin Davis 
938c9b443d4STobin Davis 	/* Output controls */
939c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
940c9b443d4STobin Davis 	HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
9417f29673bSTobin Davis 	HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
9427f29673bSTobin Davis 	HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
9437f29673bSTobin Davis 	HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
9447f29673bSTobin Davis 	HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
945c9b443d4STobin Davis 
946c9b443d4STobin Davis 	/* Modes for retasking pin widgets */
947c9b443d4STobin Davis 	CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
948c9b443d4STobin Davis 	CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
949c9b443d4STobin Davis 
95082f30040STobin Davis 	/* EAPD Switch Control */
95182f30040STobin Davis 	CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
95282f30040STobin Davis 
953c9b443d4STobin Davis 	/* Loopback mixer controls */
954c9b443d4STobin Davis 
9557f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
9567f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
9577f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
9587f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
9597f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
9607f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
9617f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
9627f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
9637f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
9647f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
965c9b443d4STobin Davis 	{
966c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
967c9b443d4STobin Davis 		.name = "Input Source",
968c9b443d4STobin Davis 		.info = conexant_mux_enum_info,
969c9b443d4STobin Davis 		.get = conexant_mux_enum_get,
970c9b443d4STobin Davis 		.put = conexant_mux_enum_put,
971c9b443d4STobin Davis 	},
972fb3409e7STobin Davis 	/* Audio input controls */
973fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
974fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
975fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
976fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
977fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
978fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
979fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
980fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
981fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
982fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
983c9b443d4STobin Davis 	{ } /* end */
984c9b443d4STobin Davis };
985c9b443d4STobin Davis 
986c9b443d4STobin Davis static struct hda_verb cxt5045_test_init_verbs[] = {
9877f29673bSTobin Davis 	/* Set connections */
9887f29673bSTobin Davis 	{ 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
9897f29673bSTobin Davis 	{ 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
9907f29673bSTobin Davis 	{ 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
991c9b443d4STobin Davis 	/* Enable retasking pins as output, initially without power amp */
992c9b443d4STobin Davis 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9937f29673bSTobin Davis 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
994c9b443d4STobin Davis 
995c9b443d4STobin Davis 	/* Disable digital (SPDIF) pins initially, but users can enable
996c9b443d4STobin Davis 	 * them via a mixer switch.  In the case of SPDIF-out, this initverb
997c9b443d4STobin Davis 	 * payload also sets the generation to 0, output to be in "consumer"
998c9b443d4STobin Davis 	 * PCM format, copyright asserted, no pre-emphasis and no validity
999c9b443d4STobin Davis 	 * control.
1000c9b443d4STobin Davis 	 */
1001cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1002cbef9789STakashi Iwai 	{0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1003c9b443d4STobin Davis 
1004c9b443d4STobin Davis 	/* Start with output sum widgets muted and their output gains at min */
1005c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1006c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1007c9b443d4STobin Davis 
1008c9b443d4STobin Davis 	/* Unmute retasking pin widget output buffers since the default
1009c9b443d4STobin Davis 	 * state appears to be output.  As the pin mode is changed by the
1010c9b443d4STobin Davis 	 * user the pin mode control will take care of enabling the pin's
1011c9b443d4STobin Davis 	 * input/output buffers as needed.
1012c9b443d4STobin Davis 	 */
1013c9b443d4STobin Davis 	{0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1014c9b443d4STobin Davis 	{0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1015c9b443d4STobin Davis 
1016c9b443d4STobin Davis 	/* Mute capture amp left and right */
1017c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1018c9b443d4STobin Davis 
1019c9b443d4STobin Davis 	/* Set ADC connection select to match default mixer setting (mic1
1020c9b443d4STobin Davis 	 * pin)
1021c9b443d4STobin Davis 	 */
1022c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
10237f29673bSTobin Davis 	{0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
1024c9b443d4STobin Davis 
1025c9b443d4STobin Davis 	/* Mute all inputs to mixer widget (even unconnected ones) */
1026c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
1027c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1028c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1029c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1030c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1031c9b443d4STobin Davis 
1032c9b443d4STobin Davis 	{ }
1033c9b443d4STobin Davis };
1034c9b443d4STobin Davis #endif
1035c9b443d4STobin Davis 
1036c9b443d4STobin Davis 
1037c9b443d4STobin Davis /* initialize jack-sensing, too */
1038c9b443d4STobin Davis static int cxt5045_init(struct hda_codec *codec)
1039c9b443d4STobin Davis {
1040c9b443d4STobin Davis 	conexant_init(codec);
1041c9b443d4STobin Davis 	cxt5045_hp_automute(codec);
1042c9b443d4STobin Davis 	return 0;
1043c9b443d4STobin Davis }
1044c9b443d4STobin Davis 
1045c9b443d4STobin Davis 
1046c9b443d4STobin Davis enum {
104715908c36SMarc Boucher 	CXT5045_LAPTOP_HPSENSE,
104815908c36SMarc Boucher 	CXT5045_LAPTOP_MICSENSE,
104915908c36SMarc Boucher 	CXT5045_LAPTOP_HPMICSENSE,
10505218c892SJiang Zhe 	CXT5045_BENQ,
10512de3c232SJiang zhe 	CXT5045_LAPTOP_HP530,
1052c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1053c9b443d4STobin Davis 	CXT5045_TEST,
1054c9b443d4STobin Davis #endif
1055f5fcc13cSTakashi Iwai 	CXT5045_MODELS
1056c9b443d4STobin Davis };
1057c9b443d4STobin Davis 
1058f5fcc13cSTakashi Iwai static const char *cxt5045_models[CXT5045_MODELS] = {
105915908c36SMarc Boucher 	[CXT5045_LAPTOP_HPSENSE]	= "laptop-hpsense",
106015908c36SMarc Boucher 	[CXT5045_LAPTOP_MICSENSE]	= "laptop-micsense",
106115908c36SMarc Boucher 	[CXT5045_LAPTOP_HPMICSENSE]	= "laptop-hpmicsense",
10625218c892SJiang Zhe 	[CXT5045_BENQ]			= "benq",
10632de3c232SJiang zhe 	[CXT5045_LAPTOP_HP530]		= "laptop-hp530",
1064c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1065f5fcc13cSTakashi Iwai 	[CXT5045_TEST]		= "test",
1066c9b443d4STobin Davis #endif
1067f5fcc13cSTakashi Iwai };
1068c9b443d4STobin Davis 
1069f5fcc13cSTakashi Iwai static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
10702de3c232SJiang zhe 	SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
1071dea0a509STakashi Iwai 	SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1072dea0a509STakashi Iwai 			   CXT5045_LAPTOP_HPSENSE),
10736a9dccd6STakashi Iwai 	SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
10745218c892SJiang Zhe 	SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
107515908c36SMarc Boucher 	SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
107615908c36SMarc Boucher 	SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
10779e464154STakashi Iwai 	SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
10789e464154STakashi Iwai 		      CXT5045_LAPTOP_HPMICSENSE),
107915908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
108015908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
108115908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1082dea0a509STakashi Iwai 	SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1083dea0a509STakashi Iwai 			   CXT5045_LAPTOP_HPMICSENSE),
108415908c36SMarc Boucher 	SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
1085c9b443d4STobin Davis 	{}
1086c9b443d4STobin Davis };
1087c9b443d4STobin Davis 
1088c9b443d4STobin Davis static int patch_cxt5045(struct hda_codec *codec)
1089c9b443d4STobin Davis {
1090c9b443d4STobin Davis 	struct conexant_spec *spec;
1091c9b443d4STobin Davis 	int board_config;
1092c9b443d4STobin Davis 
1093c9b443d4STobin Davis 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1094c9b443d4STobin Davis 	if (!spec)
1095c9b443d4STobin Davis 		return -ENOMEM;
1096c9b443d4STobin Davis 	codec->spec = spec;
10979421f954STakashi Iwai 	codec->pin_amp_workaround = 1;
1098c9b443d4STobin Davis 
1099c9b443d4STobin Davis 	spec->multiout.max_channels = 2;
1100c9b443d4STobin Davis 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1101c9b443d4STobin Davis 	spec->multiout.dac_nids = cxt5045_dac_nids;
1102c9b443d4STobin Davis 	spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1103c9b443d4STobin Davis 	spec->num_adc_nids = 1;
1104c9b443d4STobin Davis 	spec->adc_nids = cxt5045_adc_nids;
1105c9b443d4STobin Davis 	spec->capsrc_nids = cxt5045_capsrc_nids;
1106c9b443d4STobin Davis 	spec->input_mux = &cxt5045_capture_source;
1107c9b443d4STobin Davis 	spec->num_mixers = 1;
1108c9b443d4STobin Davis 	spec->mixers[0] = cxt5045_mixers;
1109c9b443d4STobin Davis 	spec->num_init_verbs = 1;
1110c9b443d4STobin Davis 	spec->init_verbs[0] = cxt5045_init_verbs;
1111c9b443d4STobin Davis 	spec->spdif_route = 0;
11125cd57529STobin Davis 	spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes),
11135cd57529STobin Davis 	spec->channel_mode = cxt5045_modes,
11145cd57529STobin Davis 
1115c9b443d4STobin Davis 
1116c9b443d4STobin Davis 	codec->patch_ops = conexant_patch_ops;
1117c9b443d4STobin Davis 
1118f5fcc13cSTakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1119f5fcc13cSTakashi Iwai 						  cxt5045_models,
1120f5fcc13cSTakashi Iwai 						  cxt5045_cfg_tbl);
1121c9b443d4STobin Davis 	switch (board_config) {
112215908c36SMarc Boucher 	case CXT5045_LAPTOP_HPSENSE:
11237f29673bSTobin Davis 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1124c9b443d4STobin Davis 		spec->input_mux = &cxt5045_capture_source;
1125c9b443d4STobin Davis 		spec->num_init_verbs = 2;
11267f29673bSTobin Davis 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
11277f29673bSTobin Davis 		spec->mixers[0] = cxt5045_mixers;
11287f29673bSTobin Davis 		codec->patch_ops.init = cxt5045_init;
11297f29673bSTobin Davis 		break;
113015908c36SMarc Boucher 	case CXT5045_LAPTOP_MICSENSE:
113186376df6STakashi Iwai 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
11327f29673bSTobin Davis 		spec->input_mux = &cxt5045_capture_source;
11337f29673bSTobin Davis 		spec->num_init_verbs = 2;
11347f29673bSTobin Davis 		spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
1135c9b443d4STobin Davis 		spec->mixers[0] = cxt5045_mixers;
1136c9b443d4STobin Davis 		codec->patch_ops.init = cxt5045_init;
1137c9b443d4STobin Davis 		break;
113815908c36SMarc Boucher 	default:
113915908c36SMarc Boucher 	case CXT5045_LAPTOP_HPMICSENSE:
114015908c36SMarc Boucher 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
114115908c36SMarc Boucher 		spec->input_mux = &cxt5045_capture_source;
114215908c36SMarc Boucher 		spec->num_init_verbs = 3;
114315908c36SMarc Boucher 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
114415908c36SMarc Boucher 		spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
114515908c36SMarc Boucher 		spec->mixers[0] = cxt5045_mixers;
114615908c36SMarc Boucher 		codec->patch_ops.init = cxt5045_init;
114715908c36SMarc Boucher 		break;
11485218c892SJiang Zhe 	case CXT5045_BENQ:
11495218c892SJiang Zhe 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
11505218c892SJiang Zhe 		spec->input_mux = &cxt5045_capture_source_benq;
11515218c892SJiang Zhe 		spec->num_init_verbs = 1;
11525218c892SJiang Zhe 		spec->init_verbs[0] = cxt5045_benq_init_verbs;
11535218c892SJiang Zhe 		spec->mixers[0] = cxt5045_mixers;
11545218c892SJiang Zhe 		spec->mixers[1] = cxt5045_benq_mixers;
11555218c892SJiang Zhe 		spec->num_mixers = 2;
11565218c892SJiang Zhe 		codec->patch_ops.init = cxt5045_init;
11575218c892SJiang Zhe 		break;
11582de3c232SJiang zhe 	case CXT5045_LAPTOP_HP530:
11592de3c232SJiang zhe 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
11602de3c232SJiang zhe 		spec->input_mux = &cxt5045_capture_source_hp530;
11612de3c232SJiang zhe 		spec->num_init_verbs = 2;
11622de3c232SJiang zhe 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
11632de3c232SJiang zhe 		spec->mixers[0] = cxt5045_mixers_hp530;
11642de3c232SJiang zhe 		codec->patch_ops.init = cxt5045_init;
11652de3c232SJiang zhe 		break;
1166c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1167c9b443d4STobin Davis 	case CXT5045_TEST:
1168c9b443d4STobin Davis 		spec->input_mux = &cxt5045_test_capture_source;
1169c9b443d4STobin Davis 		spec->mixers[0] = cxt5045_test_mixer;
1170c9b443d4STobin Davis 		spec->init_verbs[0] = cxt5045_test_init_verbs;
117115908c36SMarc Boucher 		break;
117215908c36SMarc Boucher 
1173c9b443d4STobin Davis #endif
1174c9b443d4STobin Davis 	}
117548ecb7e8STakashi Iwai 
1176031005f7STakashi Iwai 	switch (codec->subsystem_id >> 16) {
1177031005f7STakashi Iwai 	case 0x103c:
1178031005f7STakashi Iwai 		/* HP laptop has a really bad sound over 0dB on NID 0x17.
117948ecb7e8STakashi Iwai 		 * Fix max PCM level to 0 dB
118048ecb7e8STakashi Iwai 		 * (originall it has 0x2b steps with 0dB offset 0x14)
118148ecb7e8STakashi Iwai 		 */
118248ecb7e8STakashi Iwai 		snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
118348ecb7e8STakashi Iwai 					  (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
118448ecb7e8STakashi Iwai 					  (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
118548ecb7e8STakashi Iwai 					  (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
118648ecb7e8STakashi Iwai 					  (1 << AC_AMPCAP_MUTE_SHIFT));
1187031005f7STakashi Iwai 		break;
1188031005f7STakashi Iwai 	}
118948ecb7e8STakashi Iwai 
1190c9b443d4STobin Davis 	return 0;
1191c9b443d4STobin Davis }
1192c9b443d4STobin Davis 
1193c9b443d4STobin Davis 
1194c9b443d4STobin Davis /* Conexant 5047 specific */
119582f30040STobin Davis #define CXT5047_SPDIF_OUT	0x11
1196c9b443d4STobin Davis 
11975b3a7440STakashi Iwai static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
1198c9b443d4STobin Davis static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1199c9b443d4STobin Davis static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
1200c9b443d4STobin Davis 
12015cd57529STobin Davis static struct hda_channel_mode cxt5047_modes[1] = {
12025cd57529STobin Davis 	{ 2, NULL },
12035cd57529STobin Davis };
1204c9b443d4STobin Davis 
120582f30040STobin Davis static struct hda_input_mux cxt5047_toshiba_capture_source = {
120682f30040STobin Davis 	.num_items = 2,
120782f30040STobin Davis 	.items = {
120882f30040STobin Davis 		{ "ExtMic", 0x2 },
120982f30040STobin Davis 		{ "Line-In", 0x1 },
1210c9b443d4STobin Davis 	}
1211c9b443d4STobin Davis };
1212c9b443d4STobin Davis 
1213c9b443d4STobin Davis /* turn on/off EAPD (+ mute HP) as a master switch */
1214c9b443d4STobin Davis static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1215c9b443d4STobin Davis 				    struct snd_ctl_elem_value *ucontrol)
1216c9b443d4STobin Davis {
1217c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1218c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
121982f30040STobin Davis 	unsigned int bits;
1220c9b443d4STobin Davis 
122182f30040STobin Davis 	if (!cxt_eapd_put(kcontrol, ucontrol))
1222c9b443d4STobin Davis 		return 0;
1223c9b443d4STobin Davis 
122482f30040STobin Davis 	/* toggle internal speakers mute depending of presence of
122582f30040STobin Davis 	 * the headphone jack
122682f30040STobin Davis 	 */
122747fd830aSTakashi Iwai 	bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
12283b7523fcSTakashi Iwai 	/* NOTE: Conexat codec needs the index for *OUTPUT* amp of
12293b7523fcSTakashi Iwai 	 * pin widgets unlike other codecs.  In this case, we need to
12303b7523fcSTakashi Iwai 	 * set index 0x01 for the volume from the mixer amp 0x19.
12313b7523fcSTakashi Iwai 	 */
12325d75bc55SGregorio Guidi 	snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
123347fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
123447fd830aSTakashi Iwai 	bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
123547fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
123647fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
1237c9b443d4STobin Davis 	return 1;
1238c9b443d4STobin Davis }
1239c9b443d4STobin Davis 
1240c9b443d4STobin Davis /* mute internal speaker if HP is plugged */
1241c9b443d4STobin Davis static void cxt5047_hp_automute(struct hda_codec *codec)
1242c9b443d4STobin Davis {
124382f30040STobin Davis 	struct conexant_spec *spec = codec->spec;
1244dd87da1cSTobin Davis 	unsigned int bits;
1245c9b443d4STobin Davis 
124682f30040STobin Davis 	spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
1247c9b443d4STobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1248dd87da1cSTobin Davis 
124947fd830aSTakashi Iwai 	bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
12503b7523fcSTakashi Iwai 	/* See the note in cxt5047_hp_master_sw_put */
12515d75bc55SGregorio Guidi 	snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
125247fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
1253c9b443d4STobin Davis }
1254c9b443d4STobin Davis 
1255c9b443d4STobin Davis /* toggle input of built-in and mic jack appropriately */
1256c9b443d4STobin Davis static void cxt5047_hp_automic(struct hda_codec *codec)
1257c9b443d4STobin Davis {
1258c9b443d4STobin Davis 	static struct hda_verb mic_jack_on[] = {
12599f113e0eSMarc Boucher 		{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12609f113e0eSMarc Boucher 		{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1261c9b443d4STobin Davis 		{}
1262c9b443d4STobin Davis 	};
1263c9b443d4STobin Davis 	static struct hda_verb mic_jack_off[] = {
12649f113e0eSMarc Boucher 		{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12659f113e0eSMarc Boucher 		{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1266c9b443d4STobin Davis 		{}
1267c9b443d4STobin Davis 	};
1268c9b443d4STobin Davis 	unsigned int present;
1269c9b443d4STobin Davis 
12707f29673bSTobin Davis 	present = snd_hda_codec_read(codec, 0x15, 0,
1271c9b443d4STobin Davis 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1272c9b443d4STobin Davis 	if (present)
1273c9b443d4STobin Davis 		snd_hda_sequence_write(codec, mic_jack_on);
1274c9b443d4STobin Davis 	else
1275c9b443d4STobin Davis 		snd_hda_sequence_write(codec, mic_jack_off);
1276c9b443d4STobin Davis }
1277c9b443d4STobin Davis 
1278c9b443d4STobin Davis /* unsolicited event for HP jack sensing */
1279c9b443d4STobin Davis static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1280c9b443d4STobin Davis 				  unsigned int res)
1281c9b443d4STobin Davis {
12829f113e0eSMarc Boucher 	switch (res >> 26) {
1283c9b443d4STobin Davis 	case CONEXANT_HP_EVENT:
1284c9b443d4STobin Davis 		cxt5047_hp_automute(codec);
1285c9b443d4STobin Davis 		break;
1286c9b443d4STobin Davis 	case CONEXANT_MIC_EVENT:
1287c9b443d4STobin Davis 		cxt5047_hp_automic(codec);
1288c9b443d4STobin Davis 		break;
1289c9b443d4STobin Davis 	}
1290c9b443d4STobin Davis }
1291c9b443d4STobin Davis 
1292df481e41STakashi Iwai static struct snd_kcontrol_new cxt5047_base_mixers[] = {
1293df481e41STakashi Iwai 	HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1294df481e41STakashi Iwai 	HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
1295df481e41STakashi Iwai 	HDA_CODEC_VOLUME("Mic Boost", 0x1a, 0x0, HDA_OUTPUT),
1296c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1297c9b443d4STobin Davis 	HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1298c9b443d4STobin Davis 	HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1299c9b443d4STobin Davis 	HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
130082f30040STobin Davis 	{
130182f30040STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
130282f30040STobin Davis 		.name = "Master Playback Switch",
130382f30040STobin Davis 		.info = cxt_eapd_info,
130482f30040STobin Davis 		.get = cxt_eapd_get,
1305c9b443d4STobin Davis 		.put = cxt5047_hp_master_sw_put,
1306c9b443d4STobin Davis 		.private_value = 0x13,
1307c9b443d4STobin Davis 	},
1308c9b443d4STobin Davis 
1309c9b443d4STobin Davis 	{}
1310c9b443d4STobin Davis };
1311c9b443d4STobin Davis 
1312df481e41STakashi Iwai static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
13133b7523fcSTakashi Iwai 	/* See the note in cxt5047_hp_master_sw_put */
13145d75bc55SGregorio Guidi 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
1315df481e41STakashi Iwai 	HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1316df481e41STakashi Iwai 	{}
1317df481e41STakashi Iwai };
1318df481e41STakashi Iwai 
1319df481e41STakashi Iwai static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
1320c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1321c9b443d4STobin Davis 	{ } /* end */
1322c9b443d4STobin Davis };
1323c9b443d4STobin Davis 
1324c9b443d4STobin Davis static struct hda_verb cxt5047_init_verbs[] = {
1325c9b443d4STobin Davis 	/* Line in, Mic, Built-in Mic */
1326c9b443d4STobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1327c9b443d4STobin Davis 	{0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1328c9b443d4STobin Davis 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
13297f29673bSTobin Davis 	/* HP, Speaker  */
1330b7589cebSTobin Davis 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
13315b3a7440STakashi Iwai 	{0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
13325b3a7440STakashi Iwai 	{0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
13337f29673bSTobin Davis 	/* Record selector: Mic */
13347f29673bSTobin Davis 	{0x12, AC_VERB_SET_CONNECT_SEL,0x03},
13357f29673bSTobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE,
13367f29673bSTobin Davis 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
13377f29673bSTobin Davis 	{0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
1338c9b443d4STobin Davis 	{0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1339c9b443d4STobin Davis 	 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1340c9b443d4STobin Davis 	{0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1341c9b443d4STobin Davis 	 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
1342c9b443d4STobin Davis 	/* SPDIF route: PCM */
1343c9b443d4STobin Davis 	{ 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
134482f30040STobin Davis 	/* Enable unsolicited events */
134582f30040STobin Davis 	{0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
134682f30040STobin Davis 	{0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
1347c9b443d4STobin Davis 	{ } /* end */
1348c9b443d4STobin Davis };
1349c9b443d4STobin Davis 
1350c9b443d4STobin Davis /* configuration for Toshiba Laptops */
1351c9b443d4STobin Davis static struct hda_verb cxt5047_toshiba_init_verbs[] = {
13523b628867STakashi Iwai 	{0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
1353c9b443d4STobin Davis 	{}
1354c9b443d4STobin Davis };
1355c9b443d4STobin Davis 
1356c9b443d4STobin Davis /* Test configuration for debugging, modelled after the ALC260 test
1357c9b443d4STobin Davis  * configuration.
1358c9b443d4STobin Davis  */
1359c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1360c9b443d4STobin Davis static struct hda_input_mux cxt5047_test_capture_source = {
136182f30040STobin Davis 	.num_items = 4,
1362c9b443d4STobin Davis 	.items = {
136382f30040STobin Davis 		{ "LINE1 pin", 0x0 },
136482f30040STobin Davis 		{ "MIC1 pin", 0x1 },
136582f30040STobin Davis 		{ "MIC2 pin", 0x2 },
136682f30040STobin Davis 		{ "CD pin", 0x3 },
1367c9b443d4STobin Davis         },
1368c9b443d4STobin Davis };
1369c9b443d4STobin Davis 
1370c9b443d4STobin Davis static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1371c9b443d4STobin Davis 
1372c9b443d4STobin Davis 	/* Output only controls */
137382f30040STobin Davis 	HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
137482f30040STobin Davis 	HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
137582f30040STobin Davis 	HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
137682f30040STobin Davis 	HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
1377c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1378c9b443d4STobin Davis 	HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1379c9b443d4STobin Davis 	HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1380c9b443d4STobin Davis 	HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
138182f30040STobin Davis 	HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
138282f30040STobin Davis 	HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
138382f30040STobin Davis 	HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
138482f30040STobin Davis 	HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
1385c9b443d4STobin Davis 
1386c9b443d4STobin Davis 	/* Modes for retasking pin widgets */
1387c9b443d4STobin Davis 	CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1388c9b443d4STobin Davis 	CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1389c9b443d4STobin Davis 
139082f30040STobin Davis 	/* EAPD Switch Control */
139182f30040STobin Davis 	CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
139282f30040STobin Davis 
1393c9b443d4STobin Davis 	/* Loopback mixer controls */
139482f30040STobin Davis 	HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
139582f30040STobin Davis 	HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
139682f30040STobin Davis 	HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
139782f30040STobin Davis 	HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
139882f30040STobin Davis 	HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
139982f30040STobin Davis 	HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
140082f30040STobin Davis 	HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
140182f30040STobin Davis 	HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
1402c9b443d4STobin Davis 
140382f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
140482f30040STobin Davis 	HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
140582f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
140682f30040STobin Davis 	HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
140782f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
140882f30040STobin Davis 	HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
140982f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
141082f30040STobin Davis 	HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
1411c9b443d4STobin Davis 	{
1412c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1413c9b443d4STobin Davis 		.name = "Input Source",
1414c9b443d4STobin Davis 		.info = conexant_mux_enum_info,
1415c9b443d4STobin Davis 		.get = conexant_mux_enum_get,
1416c9b443d4STobin Davis 		.put = conexant_mux_enum_put,
1417c9b443d4STobin Davis 	},
14189f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
14199f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
14209f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
14219f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
14229f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
14239f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
14249f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
14259f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
14269f113e0eSMarc Boucher 	HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
14279f113e0eSMarc Boucher 	HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
14289f113e0eSMarc Boucher 
1429c9b443d4STobin Davis 	{ } /* end */
1430c9b443d4STobin Davis };
1431c9b443d4STobin Davis 
1432c9b443d4STobin Davis static struct hda_verb cxt5047_test_init_verbs[] = {
1433c9b443d4STobin Davis 	/* Enable retasking pins as output, initially without power amp */
1434c9b443d4STobin Davis 	{0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1435c9b443d4STobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1436c9b443d4STobin Davis 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1437c9b443d4STobin Davis 
1438c9b443d4STobin Davis 	/* Disable digital (SPDIF) pins initially, but users can enable
1439c9b443d4STobin Davis 	 * them via a mixer switch.  In the case of SPDIF-out, this initverb
1440c9b443d4STobin Davis 	 * payload also sets the generation to 0, output to be in "consumer"
1441c9b443d4STobin Davis 	 * PCM format, copyright asserted, no pre-emphasis and no validity
1442c9b443d4STobin Davis 	 * control.
1443c9b443d4STobin Davis 	 */
1444c9b443d4STobin Davis 	{0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1445c9b443d4STobin Davis 
1446c9b443d4STobin Davis 	/* Ensure mic1, mic2, line1 pin widgets take input from the
1447c9b443d4STobin Davis 	 * OUT1 sum bus when acting as an output.
1448c9b443d4STobin Davis 	 */
1449c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1450c9b443d4STobin Davis 	{0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1451c9b443d4STobin Davis 
1452c9b443d4STobin Davis 	/* Start with output sum widgets muted and their output gains at min */
1453c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1454c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1455c9b443d4STobin Davis 
1456c9b443d4STobin Davis 	/* Unmute retasking pin widget output buffers since the default
1457c9b443d4STobin Davis 	 * state appears to be output.  As the pin mode is changed by the
1458c9b443d4STobin Davis 	 * user the pin mode control will take care of enabling the pin's
1459c9b443d4STobin Davis 	 * input/output buffers as needed.
1460c9b443d4STobin Davis 	 */
1461c9b443d4STobin Davis 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1462c9b443d4STobin Davis 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1463c9b443d4STobin Davis 	{0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1464c9b443d4STobin Davis 
1465c9b443d4STobin Davis 	/* Mute capture amp left and right */
1466c9b443d4STobin Davis 	{0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1467c9b443d4STobin Davis 
1468c9b443d4STobin Davis 	/* Set ADC connection select to match default mixer setting (mic1
1469c9b443d4STobin Davis 	 * pin)
1470c9b443d4STobin Davis 	 */
1471c9b443d4STobin Davis 	{0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1472c9b443d4STobin Davis 
1473c9b443d4STobin Davis 	/* Mute all inputs to mixer widget (even unconnected ones) */
1474c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1475c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1476c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1477c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1478c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1479c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1480c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1481c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1482c9b443d4STobin Davis 
1483c9b443d4STobin Davis 	{ }
1484c9b443d4STobin Davis };
1485c9b443d4STobin Davis #endif
1486c9b443d4STobin Davis 
1487c9b443d4STobin Davis 
1488c9b443d4STobin Davis /* initialize jack-sensing, too */
1489c9b443d4STobin Davis static int cxt5047_hp_init(struct hda_codec *codec)
1490c9b443d4STobin Davis {
1491c9b443d4STobin Davis 	conexant_init(codec);
1492c9b443d4STobin Davis 	cxt5047_hp_automute(codec);
1493c9b443d4STobin Davis 	return 0;
1494c9b443d4STobin Davis }
1495c9b443d4STobin Davis 
1496c9b443d4STobin Davis 
1497c9b443d4STobin Davis enum {
1498f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP,		/* Laptops w/o EAPD support */
1499f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP_HP,	/* Some HP laptops */
1500f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP_EAPD,	/* Laptops with EAPD support */
1501c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1502c9b443d4STobin Davis 	CXT5047_TEST,
1503c9b443d4STobin Davis #endif
1504f5fcc13cSTakashi Iwai 	CXT5047_MODELS
1505c9b443d4STobin Davis };
1506c9b443d4STobin Davis 
1507f5fcc13cSTakashi Iwai static const char *cxt5047_models[CXT5047_MODELS] = {
1508f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP]	= "laptop",
1509f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP_HP]	= "laptop-hp",
1510f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP_EAPD]	= "laptop-eapd",
1511c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1512f5fcc13cSTakashi Iwai 	[CXT5047_TEST]		= "test",
1513c9b443d4STobin Davis #endif
1514f5fcc13cSTakashi Iwai };
1515c9b443d4STobin Davis 
1516f5fcc13cSTakashi Iwai static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
1517ac3e3741STakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
1518dea0a509STakashi Iwai 	SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1519dea0a509STakashi Iwai 			   CXT5047_LAPTOP),
1520f5fcc13cSTakashi Iwai 	SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
1521c9b443d4STobin Davis 	{}
1522c9b443d4STobin Davis };
1523c9b443d4STobin Davis 
1524c9b443d4STobin Davis static int patch_cxt5047(struct hda_codec *codec)
1525c9b443d4STobin Davis {
1526c9b443d4STobin Davis 	struct conexant_spec *spec;
1527c9b443d4STobin Davis 	int board_config;
1528c9b443d4STobin Davis 
1529c9b443d4STobin Davis 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1530c9b443d4STobin Davis 	if (!spec)
1531c9b443d4STobin Davis 		return -ENOMEM;
1532c9b443d4STobin Davis 	codec->spec = spec;
15339421f954STakashi Iwai 	codec->pin_amp_workaround = 1;
1534c9b443d4STobin Davis 
1535c9b443d4STobin Davis 	spec->multiout.max_channels = 2;
1536c9b443d4STobin Davis 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1537c9b443d4STobin Davis 	spec->multiout.dac_nids = cxt5047_dac_nids;
1538c9b443d4STobin Davis 	spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1539c9b443d4STobin Davis 	spec->num_adc_nids = 1;
1540c9b443d4STobin Davis 	spec->adc_nids = cxt5047_adc_nids;
1541c9b443d4STobin Davis 	spec->capsrc_nids = cxt5047_capsrc_nids;
1542c9b443d4STobin Davis 	spec->num_mixers = 1;
1543df481e41STakashi Iwai 	spec->mixers[0] = cxt5047_base_mixers;
1544c9b443d4STobin Davis 	spec->num_init_verbs = 1;
1545c9b443d4STobin Davis 	spec->init_verbs[0] = cxt5047_init_verbs;
1546c9b443d4STobin Davis 	spec->spdif_route = 0;
15475cd57529STobin Davis 	spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
15485cd57529STobin Davis 	spec->channel_mode = cxt5047_modes,
1549c9b443d4STobin Davis 
1550c9b443d4STobin Davis 	codec->patch_ops = conexant_patch_ops;
1551c9b443d4STobin Davis 
1552f5fcc13cSTakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1553f5fcc13cSTakashi Iwai 						  cxt5047_models,
1554f5fcc13cSTakashi Iwai 						  cxt5047_cfg_tbl);
1555c9b443d4STobin Davis 	switch (board_config) {
1556c9b443d4STobin Davis 	case CXT5047_LAPTOP:
1557df481e41STakashi Iwai 		spec->num_mixers = 2;
1558df481e41STakashi Iwai 		spec->mixers[1] = cxt5047_hp_spk_mixers;
1559df481e41STakashi Iwai 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1560c9b443d4STobin Davis 		break;
1561c9b443d4STobin Davis 	case CXT5047_LAPTOP_HP:
1562df481e41STakashi Iwai 		spec->num_mixers = 2;
1563df481e41STakashi Iwai 		spec->mixers[1] = cxt5047_hp_only_mixers;
1564fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1565c9b443d4STobin Davis 		codec->patch_ops.init = cxt5047_hp_init;
1566c9b443d4STobin Davis 		break;
1567c9b443d4STobin Davis 	case CXT5047_LAPTOP_EAPD:
156882f30040STobin Davis 		spec->input_mux = &cxt5047_toshiba_capture_source;
1569df481e41STakashi Iwai 		spec->num_mixers = 2;
1570df481e41STakashi Iwai 		spec->mixers[1] = cxt5047_hp_spk_mixers;
1571c9b443d4STobin Davis 		spec->num_init_verbs = 2;
1572c9b443d4STobin Davis 		spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
1573fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1574c9b443d4STobin Davis 		break;
1575c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1576c9b443d4STobin Davis 	case CXT5047_TEST:
1577c9b443d4STobin Davis 		spec->input_mux = &cxt5047_test_capture_source;
1578c9b443d4STobin Davis 		spec->mixers[0] = cxt5047_test_mixer;
1579c9b443d4STobin Davis 		spec->init_verbs[0] = cxt5047_test_init_verbs;
1580fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1581c9b443d4STobin Davis #endif
1582c9b443d4STobin Davis 	}
1583dd5746a8STakashi Iwai 	spec->vmaster_nid = 0x13;
1584c9b443d4STobin Davis 	return 0;
1585c9b443d4STobin Davis }
1586c9b443d4STobin Davis 
1587461e2c78STakashi Iwai /* Conexant 5051 specific */
1588461e2c78STakashi Iwai static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1589461e2c78STakashi Iwai static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
1590461e2c78STakashi Iwai 
1591461e2c78STakashi Iwai static struct hda_channel_mode cxt5051_modes[1] = {
1592461e2c78STakashi Iwai 	{ 2, NULL },
1593461e2c78STakashi Iwai };
1594461e2c78STakashi Iwai 
1595461e2c78STakashi Iwai static void cxt5051_update_speaker(struct hda_codec *codec)
1596461e2c78STakashi Iwai {
1597461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1598461e2c78STakashi Iwai 	unsigned int pinctl;
1599461e2c78STakashi Iwai 	pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1600461e2c78STakashi Iwai 	snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1601461e2c78STakashi Iwai 			    pinctl);
1602461e2c78STakashi Iwai }
1603461e2c78STakashi Iwai 
1604461e2c78STakashi Iwai /* turn on/off EAPD (+ mute HP) as a master switch */
1605461e2c78STakashi Iwai static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1606461e2c78STakashi Iwai 				    struct snd_ctl_elem_value *ucontrol)
1607461e2c78STakashi Iwai {
1608461e2c78STakashi Iwai 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1609461e2c78STakashi Iwai 
1610461e2c78STakashi Iwai 	if (!cxt_eapd_put(kcontrol, ucontrol))
1611461e2c78STakashi Iwai 		return 0;
1612461e2c78STakashi Iwai 	cxt5051_update_speaker(codec);
1613461e2c78STakashi Iwai 	return 1;
1614461e2c78STakashi Iwai }
1615461e2c78STakashi Iwai 
1616461e2c78STakashi Iwai /* toggle input of built-in and mic jack appropriately */
1617461e2c78STakashi Iwai static void cxt5051_portb_automic(struct hda_codec *codec)
1618461e2c78STakashi Iwai {
161979d7d533STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1620461e2c78STakashi Iwai 	unsigned int present;
1621461e2c78STakashi Iwai 
162279d7d533STakashi Iwai 	if (spec->no_auto_mic)
162379d7d533STakashi Iwai 		return;
1624461e2c78STakashi Iwai 	present = snd_hda_codec_read(codec, 0x17, 0,
1625461e2c78STakashi Iwai 				     AC_VERB_GET_PIN_SENSE, 0) &
1626461e2c78STakashi Iwai 		AC_PINSENSE_PRESENCE;
1627461e2c78STakashi Iwai 	snd_hda_codec_write(codec, 0x14, 0,
1628461e2c78STakashi Iwai 			    AC_VERB_SET_CONNECT_SEL,
1629461e2c78STakashi Iwai 			    present ? 0x01 : 0x00);
1630461e2c78STakashi Iwai }
1631461e2c78STakashi Iwai 
1632461e2c78STakashi Iwai /* switch the current ADC according to the jack state */
1633461e2c78STakashi Iwai static void cxt5051_portc_automic(struct hda_codec *codec)
1634461e2c78STakashi Iwai {
1635461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1636461e2c78STakashi Iwai 	unsigned int present;
1637461e2c78STakashi Iwai 	hda_nid_t new_adc;
1638461e2c78STakashi Iwai 
163979d7d533STakashi Iwai 	if (spec->no_auto_mic)
164079d7d533STakashi Iwai 		return;
1641461e2c78STakashi Iwai 	present = snd_hda_codec_read(codec, 0x18, 0,
1642461e2c78STakashi Iwai 				     AC_VERB_GET_PIN_SENSE, 0) &
1643461e2c78STakashi Iwai 		AC_PINSENSE_PRESENCE;
1644461e2c78STakashi Iwai 	if (present)
1645461e2c78STakashi Iwai 		spec->cur_adc_idx = 1;
1646461e2c78STakashi Iwai 	else
1647461e2c78STakashi Iwai 		spec->cur_adc_idx = 0;
1648461e2c78STakashi Iwai 	new_adc = spec->adc_nids[spec->cur_adc_idx];
1649461e2c78STakashi Iwai 	if (spec->cur_adc && spec->cur_adc != new_adc) {
1650461e2c78STakashi Iwai 		/* stream is running, let's swap the current ADC */
1651888afa15STakashi Iwai 		snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
1652461e2c78STakashi Iwai 		spec->cur_adc = new_adc;
1653461e2c78STakashi Iwai 		snd_hda_codec_setup_stream(codec, new_adc,
1654461e2c78STakashi Iwai 					   spec->cur_adc_stream_tag, 0,
1655461e2c78STakashi Iwai 					   spec->cur_adc_format);
1656461e2c78STakashi Iwai 	}
1657461e2c78STakashi Iwai }
1658461e2c78STakashi Iwai 
1659461e2c78STakashi Iwai /* mute internal speaker if HP is plugged */
1660461e2c78STakashi Iwai static void cxt5051_hp_automute(struct hda_codec *codec)
1661461e2c78STakashi Iwai {
1662461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1663461e2c78STakashi Iwai 
1664461e2c78STakashi Iwai 	spec->hp_present = snd_hda_codec_read(codec, 0x16, 0,
1665461e2c78STakashi Iwai 				     AC_VERB_GET_PIN_SENSE, 0) &
1666461e2c78STakashi Iwai 		AC_PINSENSE_PRESENCE;
1667461e2c78STakashi Iwai 	cxt5051_update_speaker(codec);
1668461e2c78STakashi Iwai }
1669461e2c78STakashi Iwai 
1670461e2c78STakashi Iwai /* unsolicited event for HP jack sensing */
1671461e2c78STakashi Iwai static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1672461e2c78STakashi Iwai 				   unsigned int res)
1673461e2c78STakashi Iwai {
1674acf26c0cSUlrich Dangel 	int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
1675461e2c78STakashi Iwai 	switch (res >> 26) {
1676461e2c78STakashi Iwai 	case CONEXANT_HP_EVENT:
1677461e2c78STakashi Iwai 		cxt5051_hp_automute(codec);
1678461e2c78STakashi Iwai 		break;
1679461e2c78STakashi Iwai 	case CXT5051_PORTB_EVENT:
1680461e2c78STakashi Iwai 		cxt5051_portb_automic(codec);
1681461e2c78STakashi Iwai 		break;
1682461e2c78STakashi Iwai 	case CXT5051_PORTC_EVENT:
1683461e2c78STakashi Iwai 		cxt5051_portc_automic(codec);
1684461e2c78STakashi Iwai 		break;
1685461e2c78STakashi Iwai 	}
1686acf26c0cSUlrich Dangel 	conexant_report_jack(codec, nid);
1687461e2c78STakashi Iwai }
1688461e2c78STakashi Iwai 
1689461e2c78STakashi Iwai static struct snd_kcontrol_new cxt5051_mixers[] = {
1690461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1691461e2c78STakashi Iwai 	HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1692461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1693461e2c78STakashi Iwai 	HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1694461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1695461e2c78STakashi Iwai 	HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1696461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1697461e2c78STakashi Iwai 	{
1698461e2c78STakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1699461e2c78STakashi Iwai 		.name = "Master Playback Switch",
1700461e2c78STakashi Iwai 		.info = cxt_eapd_info,
1701461e2c78STakashi Iwai 		.get = cxt_eapd_get,
1702461e2c78STakashi Iwai 		.put = cxt5051_hp_master_sw_put,
1703461e2c78STakashi Iwai 		.private_value = 0x1a,
1704461e2c78STakashi Iwai 	},
1705461e2c78STakashi Iwai 
1706461e2c78STakashi Iwai 	{}
1707461e2c78STakashi Iwai };
1708461e2c78STakashi Iwai 
1709461e2c78STakashi Iwai static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1710461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1711461e2c78STakashi Iwai 	HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1712461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1713461e2c78STakashi Iwai 	HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1714461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1715461e2c78STakashi Iwai 	{
1716461e2c78STakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1717461e2c78STakashi Iwai 		.name = "Master Playback Switch",
1718461e2c78STakashi Iwai 		.info = cxt_eapd_info,
1719461e2c78STakashi Iwai 		.get = cxt_eapd_get,
1720461e2c78STakashi Iwai 		.put = cxt5051_hp_master_sw_put,
1721461e2c78STakashi Iwai 		.private_value = 0x1a,
1722461e2c78STakashi Iwai 	},
1723461e2c78STakashi Iwai 
1724461e2c78STakashi Iwai 	{}
1725461e2c78STakashi Iwai };
1726461e2c78STakashi Iwai 
172779d7d533STakashi Iwai static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
172879d7d533STakashi Iwai 	HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x00, HDA_INPUT),
172979d7d533STakashi Iwai 	HDA_CODEC_MUTE("Mic Switch", 0x14, 0x00, HDA_INPUT),
173079d7d533STakashi Iwai 	HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
173179d7d533STakashi Iwai 	{
173279d7d533STakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
173379d7d533STakashi Iwai 		.name = "Master Playback Switch",
173479d7d533STakashi Iwai 		.info = cxt_eapd_info,
173579d7d533STakashi Iwai 		.get = cxt_eapd_get,
173679d7d533STakashi Iwai 		.put = cxt5051_hp_master_sw_put,
173779d7d533STakashi Iwai 		.private_value = 0x1a,
173879d7d533STakashi Iwai 	},
173979d7d533STakashi Iwai 
174079d7d533STakashi Iwai 	{}
174179d7d533STakashi Iwai };
174279d7d533STakashi Iwai 
1743461e2c78STakashi Iwai static struct hda_verb cxt5051_init_verbs[] = {
1744461e2c78STakashi Iwai 	/* Line in, Mic */
1745461e2c78STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1746461e2c78STakashi Iwai 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1747461e2c78STakashi Iwai 	{0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1748461e2c78STakashi Iwai 	{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1749461e2c78STakashi Iwai 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1750461e2c78STakashi Iwai 	{0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1751461e2c78STakashi Iwai 	/* SPK  */
1752461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1753461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1754461e2c78STakashi Iwai 	/* HP, Amp  */
1755461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1756461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1757461e2c78STakashi Iwai 	/* DAC1 */
1758461e2c78STakashi Iwai 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1759461e2c78STakashi Iwai 	/* Record selector: Int mic */
1760461e2c78STakashi Iwai 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1761461e2c78STakashi Iwai 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1762461e2c78STakashi Iwai 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1763461e2c78STakashi Iwai 	/* SPDIF route: PCM */
1764461e2c78STakashi Iwai 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1765461e2c78STakashi Iwai 	/* EAPD */
1766461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1767461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1768461e2c78STakashi Iwai 	{0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1769461e2c78STakashi Iwai 	{0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1770461e2c78STakashi Iwai 	{ } /* end */
1771461e2c78STakashi Iwai };
1772461e2c78STakashi Iwai 
177379d7d533STakashi Iwai static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
177479d7d533STakashi Iwai 	/* Line in, Mic */
177579d7d533STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
177679d7d533STakashi Iwai 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
177779d7d533STakashi Iwai 	{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
177879d7d533STakashi Iwai 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
177979d7d533STakashi Iwai 	/* SPK  */
178079d7d533STakashi Iwai 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
178179d7d533STakashi Iwai 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
178279d7d533STakashi Iwai 	/* HP, Amp  */
178379d7d533STakashi Iwai 	{0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
178479d7d533STakashi Iwai 	{0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
178579d7d533STakashi Iwai 	/* DAC1 */
178679d7d533STakashi Iwai 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
178779d7d533STakashi Iwai 	/* Record selector: Int mic */
178879d7d533STakashi Iwai 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
178979d7d533STakashi Iwai 	{0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
179079d7d533STakashi Iwai 	/* SPDIF route: PCM */
179179d7d533STakashi Iwai 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
179279d7d533STakashi Iwai 	/* EAPD */
179379d7d533STakashi Iwai 	{0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
179479d7d533STakashi Iwai 	{0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
179579d7d533STakashi Iwai 	{0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
179679d7d533STakashi Iwai 	{ } /* end */
179779d7d533STakashi Iwai };
179879d7d533STakashi Iwai 
179927e08988SAristeu Sergio Rozanski Filho static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
180027e08988SAristeu Sergio Rozanski Filho 	/* Line in, Mic */
180127e08988SAristeu Sergio Rozanski Filho 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
180227e08988SAristeu Sergio Rozanski Filho 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
180327e08988SAristeu Sergio Rozanski Filho 	{0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
180427e08988SAristeu Sergio Rozanski Filho 	{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
180527e08988SAristeu Sergio Rozanski Filho 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
180627e08988SAristeu Sergio Rozanski Filho 	{0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
180727e08988SAristeu Sergio Rozanski Filho 	/* SPK  */
180827e08988SAristeu Sergio Rozanski Filho 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
180927e08988SAristeu Sergio Rozanski Filho 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
181027e08988SAristeu Sergio Rozanski Filho 	/* HP, Amp  */
181127e08988SAristeu Sergio Rozanski Filho 	{0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
181227e08988SAristeu Sergio Rozanski Filho 	{0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
181327e08988SAristeu Sergio Rozanski Filho 	/* Docking HP */
181427e08988SAristeu Sergio Rozanski Filho 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
181527e08988SAristeu Sergio Rozanski Filho 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00},
181627e08988SAristeu Sergio Rozanski Filho 	/* DAC1 */
181727e08988SAristeu Sergio Rozanski Filho 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
181827e08988SAristeu Sergio Rozanski Filho 	/* Record selector: Int mic */
181927e08988SAristeu Sergio Rozanski Filho 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
182027e08988SAristeu Sergio Rozanski Filho 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
182127e08988SAristeu Sergio Rozanski Filho 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
182227e08988SAristeu Sergio Rozanski Filho 	/* SPDIF route: PCM */
182327e08988SAristeu Sergio Rozanski Filho 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
182427e08988SAristeu Sergio Rozanski Filho 	/* EAPD */
182527e08988SAristeu Sergio Rozanski Filho 	{0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
182627e08988SAristeu Sergio Rozanski Filho 	{0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
182727e08988SAristeu Sergio Rozanski Filho 	{0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
182827e08988SAristeu Sergio Rozanski Filho 	{0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
182927e08988SAristeu Sergio Rozanski Filho 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
183027e08988SAristeu Sergio Rozanski Filho 	{ } /* end */
183127e08988SAristeu Sergio Rozanski Filho };
183227e08988SAristeu Sergio Rozanski Filho 
1833461e2c78STakashi Iwai /* initialize jack-sensing, too */
1834461e2c78STakashi Iwai static int cxt5051_init(struct hda_codec *codec)
1835461e2c78STakashi Iwai {
1836461e2c78STakashi Iwai 	conexant_init(codec);
1837acf26c0cSUlrich Dangel 	conexant_init_jacks(codec);
1838461e2c78STakashi Iwai 	if (codec->patch_ops.unsol_event) {
1839461e2c78STakashi Iwai 		cxt5051_hp_automute(codec);
1840461e2c78STakashi Iwai 		cxt5051_portb_automic(codec);
1841461e2c78STakashi Iwai 		cxt5051_portc_automic(codec);
1842461e2c78STakashi Iwai 	}
1843461e2c78STakashi Iwai 	return 0;
1844461e2c78STakashi Iwai }
1845461e2c78STakashi Iwai 
1846461e2c78STakashi Iwai 
1847461e2c78STakashi Iwai enum {
1848461e2c78STakashi Iwai 	CXT5051_LAPTOP,	 /* Laptops w/ EAPD support */
1849461e2c78STakashi Iwai 	CXT5051_HP,	/* no docking */
185079d7d533STakashi Iwai 	CXT5051_HP_DV6736,	/* HP without mic switch */
185127e08988SAristeu Sergio Rozanski Filho 	CXT5051_LENOVO_X200,	/* Lenovo X200 laptop */
1852461e2c78STakashi Iwai 	CXT5051_MODELS
1853461e2c78STakashi Iwai };
1854461e2c78STakashi Iwai 
1855461e2c78STakashi Iwai static const char *cxt5051_models[CXT5051_MODELS] = {
1856461e2c78STakashi Iwai 	[CXT5051_LAPTOP]	= "laptop",
1857461e2c78STakashi Iwai 	[CXT5051_HP]		= "hp",
185879d7d533STakashi Iwai 	[CXT5051_HP_DV6736]	= "hp-dv6736",
185927e08988SAristeu Sergio Rozanski Filho 	[CXT5051_LENOVO_X200]	= "lenovo-x200",
1860461e2c78STakashi Iwai };
1861461e2c78STakashi Iwai 
1862461e2c78STakashi Iwai static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
186379d7d533STakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
18641812e67cSTony Vroon 	SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
1865461e2c78STakashi Iwai 	SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1866461e2c78STakashi Iwai 		      CXT5051_LAPTOP),
1867461e2c78STakashi Iwai 	SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
186827e08988SAristeu Sergio Rozanski Filho 	SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200),
1869461e2c78STakashi Iwai 	{}
1870461e2c78STakashi Iwai };
1871461e2c78STakashi Iwai 
1872461e2c78STakashi Iwai static int patch_cxt5051(struct hda_codec *codec)
1873461e2c78STakashi Iwai {
1874461e2c78STakashi Iwai 	struct conexant_spec *spec;
1875461e2c78STakashi Iwai 	int board_config;
1876461e2c78STakashi Iwai 
1877461e2c78STakashi Iwai 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1878461e2c78STakashi Iwai 	if (!spec)
1879461e2c78STakashi Iwai 		return -ENOMEM;
1880461e2c78STakashi Iwai 	codec->spec = spec;
18819421f954STakashi Iwai 	codec->pin_amp_workaround = 1;
1882461e2c78STakashi Iwai 
1883461e2c78STakashi Iwai 	codec->patch_ops = conexant_patch_ops;
1884461e2c78STakashi Iwai 	codec->patch_ops.init = cxt5051_init;
1885461e2c78STakashi Iwai 
1886461e2c78STakashi Iwai 	spec->multiout.max_channels = 2;
1887461e2c78STakashi Iwai 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1888461e2c78STakashi Iwai 	spec->multiout.dac_nids = cxt5051_dac_nids;
1889461e2c78STakashi Iwai 	spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1890461e2c78STakashi Iwai 	spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1891461e2c78STakashi Iwai 	spec->adc_nids = cxt5051_adc_nids;
1892461e2c78STakashi Iwai 	spec->num_mixers = 1;
1893461e2c78STakashi Iwai 	spec->mixers[0] = cxt5051_mixers;
1894461e2c78STakashi Iwai 	spec->num_init_verbs = 1;
1895461e2c78STakashi Iwai 	spec->init_verbs[0] = cxt5051_init_verbs;
1896461e2c78STakashi Iwai 	spec->spdif_route = 0;
1897461e2c78STakashi Iwai 	spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1898461e2c78STakashi Iwai 	spec->channel_mode = cxt5051_modes;
1899461e2c78STakashi Iwai 	spec->cur_adc = 0;
1900461e2c78STakashi Iwai 	spec->cur_adc_idx = 0;
1901461e2c78STakashi Iwai 
190279d7d533STakashi Iwai 	codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
190379d7d533STakashi Iwai 
1904461e2c78STakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1905461e2c78STakashi Iwai 						  cxt5051_models,
1906461e2c78STakashi Iwai 						  cxt5051_cfg_tbl);
1907461e2c78STakashi Iwai 	switch (board_config) {
1908461e2c78STakashi Iwai 	case CXT5051_HP:
1909461e2c78STakashi Iwai 		spec->mixers[0] = cxt5051_hp_mixers;
1910461e2c78STakashi Iwai 		break;
191179d7d533STakashi Iwai 	case CXT5051_HP_DV6736:
191279d7d533STakashi Iwai 		spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
191379d7d533STakashi Iwai 		spec->mixers[0] = cxt5051_hp_dv6736_mixers;
191479d7d533STakashi Iwai 		spec->no_auto_mic = 1;
191579d7d533STakashi Iwai 		break;
191627e08988SAristeu Sergio Rozanski Filho 	case CXT5051_LENOVO_X200:
191727e08988SAristeu Sergio Rozanski Filho 		spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs;
1918461e2c78STakashi Iwai 		break;
1919461e2c78STakashi Iwai 	}
1920461e2c78STakashi Iwai 
1921461e2c78STakashi Iwai 	return 0;
1922461e2c78STakashi Iwai }
1923461e2c78STakashi Iwai 
19240fb67e98SDaniel Drake /* Conexant 5066 specific */
19250fb67e98SDaniel Drake 
19260fb67e98SDaniel Drake static hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
19270fb67e98SDaniel Drake static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
19280fb67e98SDaniel Drake static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
19290fb67e98SDaniel Drake #define CXT5066_SPDIF_OUT	0x21
19300fb67e98SDaniel Drake 
1931*dbaccc0cSDaniel Drake /* OLPC's microphone port is DC coupled for use with external sensors,
1932*dbaccc0cSDaniel Drake  * therefore we use a 50% mic bias in order to center the input signal with
1933*dbaccc0cSDaniel Drake  * the DC input range of the codec. */
1934*dbaccc0cSDaniel Drake #define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
1935*dbaccc0cSDaniel Drake 
19360fb67e98SDaniel Drake static struct hda_channel_mode cxt5066_modes[1] = {
19370fb67e98SDaniel Drake 	{ 2, NULL },
19380fb67e98SDaniel Drake };
19390fb67e98SDaniel Drake 
19400fb67e98SDaniel Drake static void cxt5066_update_speaker(struct hda_codec *codec)
19410fb67e98SDaniel Drake {
19420fb67e98SDaniel Drake 	struct conexant_spec *spec = codec->spec;
19430fb67e98SDaniel Drake 	unsigned int pinctl;
19440fb67e98SDaniel Drake 
19450fb67e98SDaniel Drake 	snd_printdd("CXT5066: update speaker, hp_present=%d\n",
19460fb67e98SDaniel Drake 		spec->hp_present);
19470fb67e98SDaniel Drake 
19480fb67e98SDaniel Drake 	/* Port A (HP) */
19490fb67e98SDaniel Drake 	pinctl = ((spec->hp_present & 1) && spec->cur_eapd) ? PIN_HP : 0;
19500fb67e98SDaniel Drake 	snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
19510fb67e98SDaniel Drake 			pinctl);
19520fb67e98SDaniel Drake 
19530fb67e98SDaniel Drake 	/* Port D (HP/LO) */
19540fb67e98SDaniel Drake 	pinctl = ((spec->hp_present & 2) && spec->cur_eapd)
19550fb67e98SDaniel Drake 		? spec->port_d_mode : 0;
19560fb67e98SDaniel Drake 	snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
19570fb67e98SDaniel Drake 			pinctl);
19580fb67e98SDaniel Drake 
19590fb67e98SDaniel Drake 	/* CLASS_D AMP */
19600fb67e98SDaniel Drake 	pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
19610fb67e98SDaniel Drake 	snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
19620fb67e98SDaniel Drake 			pinctl);
19630fb67e98SDaniel Drake 
19640fb67e98SDaniel Drake 	if (spec->dell_automute) {
19650fb67e98SDaniel Drake 		/* DELL AIO Port Rule: PortA > PortD > IntSpk */
19660fb67e98SDaniel Drake 		pinctl = (!(spec->hp_present & 1) && spec->cur_eapd)
19670fb67e98SDaniel Drake 			? PIN_OUT : 0;
19680fb67e98SDaniel Drake 		snd_hda_codec_write(codec, 0x1c, 0,
19690fb67e98SDaniel Drake 			AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl);
19700fb67e98SDaniel Drake 	}
19710fb67e98SDaniel Drake }
19720fb67e98SDaniel Drake 
19730fb67e98SDaniel Drake /* turn on/off EAPD (+ mute HP) as a master switch */
19740fb67e98SDaniel Drake static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
19750fb67e98SDaniel Drake 				    struct snd_ctl_elem_value *ucontrol)
19760fb67e98SDaniel Drake {
19770fb67e98SDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
19780fb67e98SDaniel Drake 
19790fb67e98SDaniel Drake 	if (!cxt_eapd_put(kcontrol, ucontrol))
19800fb67e98SDaniel Drake 		return 0;
19810fb67e98SDaniel Drake 
19820fb67e98SDaniel Drake 	cxt5066_update_speaker(codec);
19830fb67e98SDaniel Drake 	return 1;
19840fb67e98SDaniel Drake }
19850fb67e98SDaniel Drake 
19860fb67e98SDaniel Drake /* toggle input of built-in and mic jack appropriately */
19870fb67e98SDaniel Drake static void cxt5066_automic(struct hda_codec *codec)
19880fb67e98SDaniel Drake {
1989*dbaccc0cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
1990*dbaccc0cSDaniel Drake 	struct hda_verb ext_mic_present[] = {
19910fb67e98SDaniel Drake 		/* enable external mic, port B */
1992*dbaccc0cSDaniel Drake 		{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, spec->ext_mic_bias},
19930fb67e98SDaniel Drake 
19940fb67e98SDaniel Drake 		/* switch to external mic input */
19950fb67e98SDaniel Drake 		{0x17, AC_VERB_SET_CONNECT_SEL, 0},
19960fb67e98SDaniel Drake 
19970fb67e98SDaniel Drake 		/* disable internal mic, port C */
19980fb67e98SDaniel Drake 		{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
19990fb67e98SDaniel Drake 		{}
20000fb67e98SDaniel Drake 	};
20010fb67e98SDaniel Drake 	static struct hda_verb ext_mic_absent[] = {
20020fb67e98SDaniel Drake 		/* enable internal mic, port C */
20030fb67e98SDaniel Drake 		{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
20040fb67e98SDaniel Drake 
20050fb67e98SDaniel Drake 		/* switch to internal mic input */
20060fb67e98SDaniel Drake 		{0x17, AC_VERB_SET_CONNECT_SEL, 1},
20070fb67e98SDaniel Drake 
20080fb67e98SDaniel Drake 		/* disable external mic, port B */
20090fb67e98SDaniel Drake 		{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
20100fb67e98SDaniel Drake 		{}
20110fb67e98SDaniel Drake 	};
20120fb67e98SDaniel Drake 	unsigned int present;
20130fb67e98SDaniel Drake 
20140fb67e98SDaniel Drake 	present = snd_hda_codec_read(codec, 0x1a, 0,
20150fb67e98SDaniel Drake 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
20160fb67e98SDaniel Drake 	if (present) {
20170fb67e98SDaniel Drake 		snd_printdd("CXT5066: external microphone detected\n");
20180fb67e98SDaniel Drake 		snd_hda_sequence_write(codec, ext_mic_present);
20190fb67e98SDaniel Drake 	} else {
20200fb67e98SDaniel Drake 		snd_printdd("CXT5066: external microphone absent\n");
20210fb67e98SDaniel Drake 		snd_hda_sequence_write(codec, ext_mic_absent);
20220fb67e98SDaniel Drake 	}
20230fb67e98SDaniel Drake }
20240fb67e98SDaniel Drake 
20250fb67e98SDaniel Drake /* mute internal speaker if HP is plugged */
20260fb67e98SDaniel Drake static void cxt5066_hp_automute(struct hda_codec *codec)
20270fb67e98SDaniel Drake {
20280fb67e98SDaniel Drake 	struct conexant_spec *spec = codec->spec;
20290fb67e98SDaniel Drake 	unsigned int portA, portD;
20300fb67e98SDaniel Drake 
20310fb67e98SDaniel Drake 	/* Port A */
20320fb67e98SDaniel Drake 	portA = snd_hda_codec_read(codec, 0x19, 0, AC_VERB_GET_PIN_SENSE, 0)
20330fb67e98SDaniel Drake 		& AC_PINSENSE_PRESENCE;
20340fb67e98SDaniel Drake 
20350fb67e98SDaniel Drake 	/* Port D */
20360fb67e98SDaniel Drake 	portD = (snd_hda_codec_read(codec, 0x1c, 0, AC_VERB_GET_PIN_SENSE, 0)
20370fb67e98SDaniel Drake 		& AC_PINSENSE_PRESENCE) << 1;
20380fb67e98SDaniel Drake 
20390fb67e98SDaniel Drake 	spec->hp_present = !!(portA | portD);
20400fb67e98SDaniel Drake 	snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
20410fb67e98SDaniel Drake 		portA, portD, spec->hp_present);
20420fb67e98SDaniel Drake 	cxt5066_update_speaker(codec);
20430fb67e98SDaniel Drake }
20440fb67e98SDaniel Drake 
20450fb67e98SDaniel Drake /* unsolicited event for jack sensing */
20460fb67e98SDaniel Drake static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res)
20470fb67e98SDaniel Drake {
20480fb67e98SDaniel Drake 	snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
20490fb67e98SDaniel Drake 	switch (res >> 26) {
20500fb67e98SDaniel Drake 	case CONEXANT_HP_EVENT:
20510fb67e98SDaniel Drake 		cxt5066_hp_automute(codec);
20520fb67e98SDaniel Drake 		break;
20530fb67e98SDaniel Drake 	case CONEXANT_MIC_EVENT:
20540fb67e98SDaniel Drake 		cxt5066_automic(codec);
20550fb67e98SDaniel Drake 		break;
20560fb67e98SDaniel Drake 	}
20570fb67e98SDaniel Drake }
20580fb67e98SDaniel Drake 
20590fb67e98SDaniel Drake static const struct hda_input_mux cxt5066_analog_mic_boost = {
20600fb67e98SDaniel Drake 	.num_items = 5,
20610fb67e98SDaniel Drake 	.items = {
20620fb67e98SDaniel Drake 		{ "0dB",  0 },
20630fb67e98SDaniel Drake 		{ "10dB", 1 },
20640fb67e98SDaniel Drake 		{ "20dB", 2 },
20650fb67e98SDaniel Drake 		{ "30dB", 3 },
20660fb67e98SDaniel Drake 		{ "40dB", 4 },
20670fb67e98SDaniel Drake 	},
20680fb67e98SDaniel Drake };
20690fb67e98SDaniel Drake 
20700fb67e98SDaniel Drake static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
20710fb67e98SDaniel Drake 					   struct snd_ctl_elem_info *uinfo)
20720fb67e98SDaniel Drake {
20730fb67e98SDaniel Drake 	return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
20740fb67e98SDaniel Drake }
20750fb67e98SDaniel Drake 
20760fb67e98SDaniel Drake static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
20770fb67e98SDaniel Drake 					  struct snd_ctl_elem_value *ucontrol)
20780fb67e98SDaniel Drake {
20790fb67e98SDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
20800fb67e98SDaniel Drake 	int val;
20810fb67e98SDaniel Drake 
20820fb67e98SDaniel Drake 	val = snd_hda_codec_read(codec, 0x17, 0,
20830fb67e98SDaniel Drake 		AC_VERB_GET_AMP_GAIN_MUTE, AC_AMP_GET_OUTPUT);
20840fb67e98SDaniel Drake 
20850fb67e98SDaniel Drake 	ucontrol->value.enumerated.item[0] = val & AC_AMP_GAIN;
20860fb67e98SDaniel Drake 	return 0;
20870fb67e98SDaniel Drake }
20880fb67e98SDaniel Drake 
20890fb67e98SDaniel Drake static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
20900fb67e98SDaniel Drake 					  struct snd_ctl_elem_value *ucontrol)
20910fb67e98SDaniel Drake {
20920fb67e98SDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
20930fb67e98SDaniel Drake 	const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
20940fb67e98SDaniel Drake 	unsigned int idx;
20950fb67e98SDaniel Drake 
20960fb67e98SDaniel Drake 	if (!imux->num_items)
20970fb67e98SDaniel Drake 		return 0;
20980fb67e98SDaniel Drake 	idx = ucontrol->value.enumerated.item[0];
20990fb67e98SDaniel Drake 	if (idx >= imux->num_items)
21000fb67e98SDaniel Drake 		idx = imux->num_items - 1;
21010fb67e98SDaniel Drake 
21020fb67e98SDaniel Drake 	snd_hda_codec_write_cache(codec, 0x17, 0,
21030fb67e98SDaniel Drake 		AC_VERB_SET_AMP_GAIN_MUTE,
21040fb67e98SDaniel Drake 		AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
21050fb67e98SDaniel Drake 			imux->items[idx].index);
21060fb67e98SDaniel Drake 
21070fb67e98SDaniel Drake 	return 1;
21080fb67e98SDaniel Drake }
21090fb67e98SDaniel Drake 
21100fb67e98SDaniel Drake static struct hda_input_mux cxt5066_capture_source = {
21110fb67e98SDaniel Drake 	.num_items = 4,
21120fb67e98SDaniel Drake 	.items = {
21130fb67e98SDaniel Drake 		{ "Mic B", 0 },
21140fb67e98SDaniel Drake 		{ "Mic C", 1 },
21150fb67e98SDaniel Drake 		{ "Mic E", 2 },
21160fb67e98SDaniel Drake 		{ "Mic F", 3 },
21170fb67e98SDaniel Drake 	},
21180fb67e98SDaniel Drake };
21190fb67e98SDaniel Drake 
21200fb67e98SDaniel Drake static struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
21210fb67e98SDaniel Drake 	.ops = &snd_hda_bind_vol,
21220fb67e98SDaniel Drake 	.values = {
21230fb67e98SDaniel Drake 		HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
21240fb67e98SDaniel Drake 		HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
21250fb67e98SDaniel Drake 		0
21260fb67e98SDaniel Drake 	},
21270fb67e98SDaniel Drake };
21280fb67e98SDaniel Drake 
21290fb67e98SDaniel Drake static struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
21300fb67e98SDaniel Drake 	.ops = &snd_hda_bind_sw,
21310fb67e98SDaniel Drake 	.values = {
21320fb67e98SDaniel Drake 		HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
21330fb67e98SDaniel Drake 		HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
21340fb67e98SDaniel Drake 		0
21350fb67e98SDaniel Drake 	},
21360fb67e98SDaniel Drake };
21370fb67e98SDaniel Drake 
21380fb67e98SDaniel Drake static struct snd_kcontrol_new cxt5066_mixer_master[] = {
21390fb67e98SDaniel Drake 	HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
21400fb67e98SDaniel Drake 	{}
21410fb67e98SDaniel Drake };
21420fb67e98SDaniel Drake 
21430fb67e98SDaniel Drake static struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
21440fb67e98SDaniel Drake 	{
21450fb67e98SDaniel Drake 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
21460fb67e98SDaniel Drake 		.name = "Master Playback Volume",
21470fb67e98SDaniel Drake 		.access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
21480fb67e98SDaniel Drake 				  SNDRV_CTL_ELEM_ACCESS_TLV_READ |
21490fb67e98SDaniel Drake 				  SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
21500fb67e98SDaniel Drake 		.info = snd_hda_mixer_amp_volume_info,
21510fb67e98SDaniel Drake 		.get = snd_hda_mixer_amp_volume_get,
21520fb67e98SDaniel Drake 		.put = snd_hda_mixer_amp_volume_put,
21530fb67e98SDaniel Drake 		.tlv = { .c = snd_hda_mixer_amp_tlv },
21540fb67e98SDaniel Drake 		/* offset by 28 volume steps to limit minimum gain to -46dB */
21550fb67e98SDaniel Drake 		.private_value =
21560fb67e98SDaniel Drake 			HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
21570fb67e98SDaniel Drake 	},
21580fb67e98SDaniel Drake 	{}
21590fb67e98SDaniel Drake };
21600fb67e98SDaniel Drake 
21610fb67e98SDaniel Drake static struct snd_kcontrol_new cxt5066_mixers[] = {
21620fb67e98SDaniel Drake 	{
21630fb67e98SDaniel Drake 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
21640fb67e98SDaniel Drake 		.name = "Master Playback Switch",
21650fb67e98SDaniel Drake 		.info = cxt_eapd_info,
21660fb67e98SDaniel Drake 		.get = cxt_eapd_get,
21670fb67e98SDaniel Drake 		.put = cxt5066_hp_master_sw_put,
21680fb67e98SDaniel Drake 		.private_value = 0x1d,
21690fb67e98SDaniel Drake 	},
21700fb67e98SDaniel Drake 
21710fb67e98SDaniel Drake 	{
21720fb67e98SDaniel Drake 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
21730fb67e98SDaniel Drake 		.name = "Analog Mic Boost Capture Enum",
21740fb67e98SDaniel Drake 		.info = cxt5066_mic_boost_mux_enum_info,
21750fb67e98SDaniel Drake 		.get = cxt5066_mic_boost_mux_enum_get,
21760fb67e98SDaniel Drake 		.put = cxt5066_mic_boost_mux_enum_put,
21770fb67e98SDaniel Drake 	},
21780fb67e98SDaniel Drake 
21790fb67e98SDaniel Drake 	HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
21800fb67e98SDaniel Drake 	HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
21810fb67e98SDaniel Drake 	{}
21820fb67e98SDaniel Drake };
21830fb67e98SDaniel Drake 
21840fb67e98SDaniel Drake static struct hda_verb cxt5066_init_verbs[] = {
21850fb67e98SDaniel Drake 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
21860fb67e98SDaniel Drake 	{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
21870fb67e98SDaniel Drake 	{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
21880fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
21890fb67e98SDaniel Drake 
21900fb67e98SDaniel Drake 	/* Speakers  */
21910fb67e98SDaniel Drake 	{0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
21920fb67e98SDaniel Drake 	{0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
21930fb67e98SDaniel Drake 
21940fb67e98SDaniel Drake 	/* HP, Amp  */
21950fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
21960fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
21970fb67e98SDaniel Drake 
21980fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
21990fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
22000fb67e98SDaniel Drake 
22010fb67e98SDaniel Drake 	/* DAC1 */
22020fb67e98SDaniel Drake 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
22030fb67e98SDaniel Drake 
22040fb67e98SDaniel Drake 	/* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
22050fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
22060fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
22070fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
22080fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
22090fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
22100fb67e98SDaniel Drake 
22110fb67e98SDaniel Drake 	/* no digital microphone support yet */
22120fb67e98SDaniel Drake 	{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22130fb67e98SDaniel Drake 
22140fb67e98SDaniel Drake 	/* Audio input selector */
22150fb67e98SDaniel Drake 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
22160fb67e98SDaniel Drake 
22170fb67e98SDaniel Drake 	/* SPDIF route: PCM */
22180fb67e98SDaniel Drake 	{0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
22190fb67e98SDaniel Drake 	{0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
22200fb67e98SDaniel Drake 
22210fb67e98SDaniel Drake 	{0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
22220fb67e98SDaniel Drake 	{0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
22230fb67e98SDaniel Drake 
22240fb67e98SDaniel Drake 	/* EAPD */
22250fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
22260fb67e98SDaniel Drake 
22270fb67e98SDaniel Drake 	/* not handling these yet */
22280fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
22290fb67e98SDaniel Drake 	{0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
22300fb67e98SDaniel Drake 	{0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
22310fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
22320fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
22330fb67e98SDaniel Drake 	{0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
22340fb67e98SDaniel Drake 	{0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
22350fb67e98SDaniel Drake 	{0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
22360fb67e98SDaniel Drake 	{ } /* end */
22370fb67e98SDaniel Drake };
22380fb67e98SDaniel Drake 
22390fb67e98SDaniel Drake static struct hda_verb cxt5066_init_verbs_olpc[] = {
22400fb67e98SDaniel Drake 	/* Port A: headphones */
22410fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
22420fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
22430fb67e98SDaniel Drake 
22440fb67e98SDaniel Drake 	/* Port B: external microphone */
2245*dbaccc0cSDaniel Drake 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, CXT5066_OLPC_EXT_MIC_BIAS},
22460fb67e98SDaniel Drake 
22470fb67e98SDaniel Drake 	/* Port C: internal microphone */
22480fb67e98SDaniel Drake 	{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
22490fb67e98SDaniel Drake 
22500fb67e98SDaniel Drake 	/* Port D: unused */
22510fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22520fb67e98SDaniel Drake 
22530fb67e98SDaniel Drake 	/* Port E: unused, but has primary EAPD */
22540fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22550fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
22560fb67e98SDaniel Drake 
22570fb67e98SDaniel Drake 	/* Port F: unused */
22580fb67e98SDaniel Drake 	{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22590fb67e98SDaniel Drake 
22600fb67e98SDaniel Drake 	/* Port G: internal speakers */
22610fb67e98SDaniel Drake 	{0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
22620fb67e98SDaniel Drake 	{0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
22630fb67e98SDaniel Drake 
22640fb67e98SDaniel Drake 	/* DAC1 */
22650fb67e98SDaniel Drake 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
22660fb67e98SDaniel Drake 
22670fb67e98SDaniel Drake 	/* DAC2: unused */
22680fb67e98SDaniel Drake 	{0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
22690fb67e98SDaniel Drake 
22700fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
22710fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
22720fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
22730fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
22740fb67e98SDaniel Drake 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
22750fb67e98SDaniel Drake 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
22760fb67e98SDaniel Drake 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
22770fb67e98SDaniel Drake 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
22780fb67e98SDaniel Drake 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
22790fb67e98SDaniel Drake 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
22800fb67e98SDaniel Drake 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
22810fb67e98SDaniel Drake 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
22820fb67e98SDaniel Drake 
22830fb67e98SDaniel Drake 	/* Disable digital microphone port */
22840fb67e98SDaniel Drake 	{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22850fb67e98SDaniel Drake 
22860fb67e98SDaniel Drake 	/* Audio input selectors */
22870fb67e98SDaniel Drake 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
22880fb67e98SDaniel Drake 	{0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
22890fb67e98SDaniel Drake 
22900fb67e98SDaniel Drake 	/* Disable SPDIF */
22910fb67e98SDaniel Drake 	{0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22920fb67e98SDaniel Drake 	{0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22930fb67e98SDaniel Drake 
22940fb67e98SDaniel Drake 	/* enable unsolicited events for Port A and B */
22950fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
22960fb67e98SDaniel Drake 	{0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
22970fb67e98SDaniel Drake 	{ } /* end */
22980fb67e98SDaniel Drake };
22990fb67e98SDaniel Drake 
23000fb67e98SDaniel Drake static struct hda_verb cxt5066_init_verbs_portd_lo[] = {
23010fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
23020fb67e98SDaniel Drake 	{ } /* end */
23030fb67e98SDaniel Drake };
23040fb67e98SDaniel Drake 
23050fb67e98SDaniel Drake /* initialize jack-sensing, too */
23060fb67e98SDaniel Drake static int cxt5066_init(struct hda_codec *codec)
23070fb67e98SDaniel Drake {
23080fb67e98SDaniel Drake 	snd_printdd("CXT5066: init\n");
23090fb67e98SDaniel Drake 	conexant_init(codec);
23100fb67e98SDaniel Drake 	if (codec->patch_ops.unsol_event) {
23110fb67e98SDaniel Drake 		cxt5066_hp_automute(codec);
23120fb67e98SDaniel Drake 		cxt5066_automic(codec);
23130fb67e98SDaniel Drake 	}
23140fb67e98SDaniel Drake 	return 0;
23150fb67e98SDaniel Drake }
23160fb67e98SDaniel Drake 
23170fb67e98SDaniel Drake enum {
23180fb67e98SDaniel Drake 	CXT5066_LAPTOP,			/* Laptops w/ EAPD support */
23190fb67e98SDaniel Drake 	CXT5066_DELL_LAPTOP,	/* Dell Laptop */
23200fb67e98SDaniel Drake 	CXT5066_OLPC_XO_1_5,	/* OLPC XO 1.5 */
23210fb67e98SDaniel Drake 	CXT5066_MODELS
23220fb67e98SDaniel Drake };
23230fb67e98SDaniel Drake 
23240fb67e98SDaniel Drake static const char *cxt5066_models[CXT5066_MODELS] = {
23250fb67e98SDaniel Drake 	[CXT5066_LAPTOP]		= "laptop",
23260fb67e98SDaniel Drake 	[CXT5066_DELL_LAPTOP]	= "dell-laptop",
23270fb67e98SDaniel Drake 	[CXT5066_OLPC_XO_1_5]	= "olpc-xo-1_5",
23280fb67e98SDaniel Drake };
23290fb67e98SDaniel Drake 
23300fb67e98SDaniel Drake static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
23310fb67e98SDaniel Drake 	SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
23320fb67e98SDaniel Drake 		      CXT5066_LAPTOP),
23330fb67e98SDaniel Drake 	SND_PCI_QUIRK(0x1028, 0x02f5, "Dell",
23340fb67e98SDaniel Drake 		      CXT5066_DELL_LAPTOP),
2335798a8a15SDaniel Drake 	SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
23360fb67e98SDaniel Drake 	{}
23370fb67e98SDaniel Drake };
23380fb67e98SDaniel Drake 
23390fb67e98SDaniel Drake static int patch_cxt5066(struct hda_codec *codec)
23400fb67e98SDaniel Drake {
23410fb67e98SDaniel Drake 	struct conexant_spec *spec;
23420fb67e98SDaniel Drake 	int board_config;
23430fb67e98SDaniel Drake 
23440fb67e98SDaniel Drake 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
23450fb67e98SDaniel Drake 	if (!spec)
23460fb67e98SDaniel Drake 		return -ENOMEM;
23470fb67e98SDaniel Drake 	codec->spec = spec;
23480fb67e98SDaniel Drake 
23490fb67e98SDaniel Drake 	codec->patch_ops = conexant_patch_ops;
23500fb67e98SDaniel Drake 	codec->patch_ops.init = cxt5066_init;
23510fb67e98SDaniel Drake 
23520fb67e98SDaniel Drake 	spec->dell_automute = 0;
23530fb67e98SDaniel Drake 	spec->multiout.max_channels = 2;
23540fb67e98SDaniel Drake 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
23550fb67e98SDaniel Drake 	spec->multiout.dac_nids = cxt5066_dac_nids;
23560fb67e98SDaniel Drake 	spec->multiout.dig_out_nid = CXT5066_SPDIF_OUT;
23570fb67e98SDaniel Drake 	spec->num_adc_nids = 1;
23580fb67e98SDaniel Drake 	spec->adc_nids = cxt5066_adc_nids;
23590fb67e98SDaniel Drake 	spec->capsrc_nids = cxt5066_capsrc_nids;
23600fb67e98SDaniel Drake 	spec->input_mux = &cxt5066_capture_source;
23610fb67e98SDaniel Drake 
23620fb67e98SDaniel Drake 	spec->port_d_mode = PIN_HP;
2363*dbaccc0cSDaniel Drake 	spec->ext_mic_bias = PIN_VREF80;
23640fb67e98SDaniel Drake 
23650fb67e98SDaniel Drake 	spec->num_init_verbs = 1;
23660fb67e98SDaniel Drake 	spec->init_verbs[0] = cxt5066_init_verbs;
23670fb67e98SDaniel Drake 	spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
23680fb67e98SDaniel Drake 	spec->channel_mode = cxt5066_modes;
23690fb67e98SDaniel Drake 	spec->cur_adc = 0;
23700fb67e98SDaniel Drake 	spec->cur_adc_idx = 0;
23710fb67e98SDaniel Drake 
23720fb67e98SDaniel Drake 	board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
23730fb67e98SDaniel Drake 						  cxt5066_models, cxt5066_cfg_tbl);
23740fb67e98SDaniel Drake 	switch (board_config) {
23750fb67e98SDaniel Drake 	default:
23760fb67e98SDaniel Drake 	case CXT5066_LAPTOP:
23770fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
23780fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
23790fb67e98SDaniel Drake 		break;
23800fb67e98SDaniel Drake 	case CXT5066_DELL_LAPTOP:
23810fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
23820fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
23830fb67e98SDaniel Drake 
23840fb67e98SDaniel Drake 		spec->port_d_mode = PIN_OUT;
23850fb67e98SDaniel Drake 		spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
23860fb67e98SDaniel Drake 		spec->num_init_verbs++;
23870fb67e98SDaniel Drake 		spec->dell_automute = 1;
23880fb67e98SDaniel Drake 		break;
23890fb67e98SDaniel Drake 	case CXT5066_OLPC_XO_1_5:
23900fb67e98SDaniel Drake 		codec->patch_ops.unsol_event = cxt5066_unsol_event;
23910fb67e98SDaniel Drake 		spec->init_verbs[0] = cxt5066_init_verbs_olpc;
23920fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
23930fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
23940fb67e98SDaniel Drake 		spec->port_d_mode = 0;
2395*dbaccc0cSDaniel Drake 		spec->ext_mic_bias = CXT5066_OLPC_EXT_MIC_BIAS;
23960fb67e98SDaniel Drake 
23970fb67e98SDaniel Drake 		/* no S/PDIF out */
23980fb67e98SDaniel Drake 		spec->multiout.dig_out_nid = 0;
23990fb67e98SDaniel Drake 
24000fb67e98SDaniel Drake 		/* input source automatically selected */
24010fb67e98SDaniel Drake 		spec->input_mux = NULL;
24020fb67e98SDaniel Drake 		break;
24030fb67e98SDaniel Drake 	}
24040fb67e98SDaniel Drake 
24050fb67e98SDaniel Drake 	return 0;
24060fb67e98SDaniel Drake }
2407461e2c78STakashi Iwai 
2408461e2c78STakashi Iwai /*
2409461e2c78STakashi Iwai  */
2410461e2c78STakashi Iwai 
24111289e9e8STakashi Iwai static struct hda_codec_preset snd_hda_preset_conexant[] = {
241282f30040STobin Davis 	{ .id = 0x14f15045, .name = "CX20549 (Venice)",
241382f30040STobin Davis 	  .patch = patch_cxt5045 },
241482f30040STobin Davis 	{ .id = 0x14f15047, .name = "CX20551 (Waikiki)",
241582f30040STobin Davis 	  .patch = patch_cxt5047 },
2416461e2c78STakashi Iwai 	{ .id = 0x14f15051, .name = "CX20561 (Hermosa)",
2417461e2c78STakashi Iwai 	  .patch = patch_cxt5051 },
24180fb67e98SDaniel Drake 	{ .id = 0x14f15066, .name = "CX20582 (Pebble)",
24190fb67e98SDaniel Drake 	  .patch = patch_cxt5066 },
2420c9b443d4STobin Davis 	{} /* terminator */
2421c9b443d4STobin Davis };
24221289e9e8STakashi Iwai 
24231289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15045");
24241289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15047");
24251289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15051");
24260fb67e98SDaniel Drake MODULE_ALIAS("snd-hda-codec-id:14f15066");
24271289e9e8STakashi Iwai 
24281289e9e8STakashi Iwai MODULE_LICENSE("GPL");
24291289e9e8STakashi Iwai MODULE_DESCRIPTION("Conexant HD-audio codec");
24301289e9e8STakashi Iwai 
24311289e9e8STakashi Iwai static struct hda_codec_preset_list conexant_list = {
24321289e9e8STakashi Iwai 	.preset = snd_hda_preset_conexant,
24331289e9e8STakashi Iwai 	.owner = THIS_MODULE,
24341289e9e8STakashi Iwai };
24351289e9e8STakashi Iwai 
24361289e9e8STakashi Iwai static int __init patch_conexant_init(void)
24371289e9e8STakashi Iwai {
24381289e9e8STakashi Iwai 	return snd_hda_add_codec_preset(&conexant_list);
24391289e9e8STakashi Iwai }
24401289e9e8STakashi Iwai 
24411289e9e8STakashi Iwai static void __exit patch_conexant_exit(void)
24421289e9e8STakashi Iwai {
24431289e9e8STakashi Iwai 	snd_hda_delete_codec_preset(&conexant_list);
24441289e9e8STakashi Iwai }
24451289e9e8STakashi Iwai 
24461289e9e8STakashi Iwai module_init(patch_conexant_init)
24471289e9e8STakashi Iwai module_exit(patch_conexant_exit)
2448