xref: /openbmc/linux/sound/pci/hda/patch_conexant.c (revision 1f8458a26293b692955f8dff671a3ed50dd9c603)
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"
32c0f8faf0SEinar Rünkaru #include "hda_beep.h"
33c9b443d4STobin Davis 
34c9b443d4STobin Davis #define CXT_PIN_DIR_IN              0x00
35c9b443d4STobin Davis #define CXT_PIN_DIR_OUT             0x01
36c9b443d4STobin Davis #define CXT_PIN_DIR_INOUT           0x02
37c9b443d4STobin Davis #define CXT_PIN_DIR_IN_NOMICBIAS    0x03
38c9b443d4STobin Davis #define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
39c9b443d4STobin Davis 
40c9b443d4STobin Davis #define CONEXANT_HP_EVENT	0x37
41c9b443d4STobin Davis #define CONEXANT_MIC_EVENT	0x38
42c9b443d4STobin Davis 
43bc7a166dSUlrich Dangel /* Conexant 5051 specific */
44c9b443d4STobin Davis 
45ecda0cffSTakashi Iwai #define CXT5051_SPDIF_OUT	0x12
46bc7a166dSUlrich Dangel #define CXT5051_PORTB_EVENT	0x38
47bc7a166dSUlrich Dangel #define CXT5051_PORTC_EVENT	0x39
48bc7a166dSUlrich Dangel 
49faddaa5dSTakashi Iwai #define AUTO_MIC_PORTB		(1 << 1)
50faddaa5dSTakashi Iwai #define AUTO_MIC_PORTC		(1 << 2)
51bc7a166dSUlrich Dangel 
52f2e5731dSTakashi Iwai struct pin_dac_pair {
53f2e5731dSTakashi Iwai 	hda_nid_t pin;
54f2e5731dSTakashi Iwai 	hda_nid_t dac;
55f2e5731dSTakashi Iwai 	int type;
56f2e5731dSTakashi Iwai };
57f2e5731dSTakashi Iwai 
58c9b443d4STobin Davis struct conexant_spec {
59c9b443d4STobin Davis 
6034cbe3a6STakashi Iwai 	const struct snd_kcontrol_new *mixers[5];
61c9b443d4STobin Davis 	int num_mixers;
62dd5746a8STakashi Iwai 	hda_nid_t vmaster_nid;
63c9b443d4STobin Davis 
64c9b443d4STobin Davis 	const struct hda_verb *init_verbs[5];	/* initialization verbs
65c9b443d4STobin Davis 						 * don't forget NULL
66c9b443d4STobin Davis 						 * termination!
67c9b443d4STobin Davis 						 */
68c9b443d4STobin Davis 	unsigned int num_init_verbs;
69c9b443d4STobin Davis 
70c9b443d4STobin Davis 	/* playback */
71c9b443d4STobin Davis 	struct hda_multi_out multiout;	/* playback set-up
72c9b443d4STobin Davis 					 * max_channels, dacs must be set
73c9b443d4STobin Davis 					 * dig_out_nid and hp_nid are optional
74c9b443d4STobin Davis 					 */
75c9b443d4STobin Davis 	unsigned int cur_eapd;
7682f30040STobin Davis 	unsigned int hp_present;
77faddaa5dSTakashi Iwai 	unsigned int auto_mic;
78f2e5731dSTakashi Iwai 	int auto_mic_ext;		/* autocfg.inputs[] index for ext mic */
79c9b443d4STobin Davis 	unsigned int need_dac_fix;
80f6a2491cSAndy Robinson 	hda_nid_t slave_dig_outs[2];
81c9b443d4STobin Davis 
82c9b443d4STobin Davis 	/* capture */
83c9b443d4STobin Davis 	unsigned int num_adc_nids;
8434cbe3a6STakashi Iwai 	const hda_nid_t *adc_nids;
85c9b443d4STobin Davis 	hda_nid_t dig_in_nid;		/* digital-in NID; optional */
86c9b443d4STobin Davis 
87461e2c78STakashi Iwai 	unsigned int cur_adc_idx;
88461e2c78STakashi Iwai 	hda_nid_t cur_adc;
89461e2c78STakashi Iwai 	unsigned int cur_adc_stream_tag;
90461e2c78STakashi Iwai 	unsigned int cur_adc_format;
91461e2c78STakashi Iwai 
926764bcefSTakashi Iwai 	const struct hda_pcm_stream *capture_stream;
936764bcefSTakashi Iwai 
94c9b443d4STobin Davis 	/* capture source */
95c9b443d4STobin Davis 	const struct hda_input_mux *input_mux;
9634cbe3a6STakashi Iwai 	const hda_nid_t *capsrc_nids;
97c9b443d4STobin Davis 	unsigned int cur_mux[3];
98c9b443d4STobin Davis 
99c9b443d4STobin Davis 	/* channel model */
100c9b443d4STobin Davis 	const struct hda_channel_mode *channel_mode;
101c9b443d4STobin Davis 	int num_channel_mode;
102c9b443d4STobin Davis 
103c9b443d4STobin Davis 	/* PCM information */
104c9b443d4STobin Davis 	struct hda_pcm pcm_rec[2];	/* used in build_pcms() */
105c9b443d4STobin Davis 
106c9b443d4STobin Davis 	unsigned int spdif_route;
107c9b443d4STobin Davis 
108c9b443d4STobin Davis 	/* dynamic controls, init_verbs and input_mux */
109c9b443d4STobin Davis 	struct auto_pin_cfg autocfg;
110c9b443d4STobin Davis 	struct hda_input_mux private_imux;
1116764bcefSTakashi Iwai 	hda_nid_t imux_adcs[HDA_MAX_NUM_INPUTS];
11241923e44STakashi Iwai 	hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
113f2e5731dSTakashi Iwai 	struct pin_dac_pair dac_info[8];
114f2e5731dSTakashi Iwai 	int dac_info_filled;
115c9b443d4STobin Davis 
1160fb67e98SDaniel Drake 	unsigned int port_d_mode;
117f2e5731dSTakashi Iwai 	unsigned int auto_mute:1;	/* used in auto-parser */
118f2e5731dSTakashi Iwai 	unsigned int dell_automute:1;
119cfd3d8dcSGreg Alexander 	unsigned int dell_vostro:1;
120cfd3d8dcSGreg Alexander 	unsigned int ideapad:1;
1217b2bfdbcSJens Taprogge 	unsigned int thinkpad:1;
122048e78a5SDavid Henningsson 	unsigned int hp_laptop:1;
123a1d6906eSDavid Henningsson 	unsigned int asus:1;
12475f8991dSDaniel Drake 
1256764bcefSTakashi Iwai 	unsigned int adc_switching:1;
1266764bcefSTakashi Iwai 
12775f8991dSDaniel Drake 	unsigned int ext_mic_present;
12875f8991dSDaniel Drake 	unsigned int recording;
12975f8991dSDaniel Drake 	void (*capture_prepare)(struct hda_codec *codec);
13075f8991dSDaniel Drake 	void (*capture_cleanup)(struct hda_codec *codec);
131c4cfe66cSDaniel Drake 
132c4cfe66cSDaniel Drake 	/* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors)
133c4cfe66cSDaniel Drake 	 * through the microphone jack.
134c4cfe66cSDaniel Drake 	 * When the user enables this through a mixer switch, both internal and
135c4cfe66cSDaniel Drake 	 * external microphones are disabled. Gain is fixed at 0dB. In this mode,
136c4cfe66cSDaniel Drake 	 * we also allow the bias to be configured through a separate mixer
137c4cfe66cSDaniel Drake 	 * control. */
138c4cfe66cSDaniel Drake 	unsigned int dc_enable;
139c4cfe66cSDaniel Drake 	unsigned int dc_input_bias; /* offset into cxt5066_olpc_dc_bias */
140c4cfe66cSDaniel Drake 	unsigned int mic_boost; /* offset into cxt5066_analog_mic_boost */
1413507e2a8STakashi Iwai 
1423507e2a8STakashi Iwai 	unsigned int beep_amp;
143c9b443d4STobin Davis };
144c9b443d4STobin Davis 
145c9b443d4STobin Davis static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
146c9b443d4STobin Davis 				      struct hda_codec *codec,
147c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
148c9b443d4STobin Davis {
149c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
1509a08160bSTakashi Iwai 	return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
1519a08160bSTakashi Iwai 					     hinfo);
152c9b443d4STobin Davis }
153c9b443d4STobin Davis 
154c9b443d4STobin Davis static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
155c9b443d4STobin Davis 					 struct hda_codec *codec,
156c9b443d4STobin Davis 					 unsigned int stream_tag,
157c9b443d4STobin Davis 					 unsigned int format,
158c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
159c9b443d4STobin Davis {
160c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
161c9b443d4STobin Davis 	return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
162c9b443d4STobin Davis 						stream_tag,
163c9b443d4STobin Davis 						format, substream);
164c9b443d4STobin Davis }
165c9b443d4STobin Davis 
166c9b443d4STobin Davis static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
167c9b443d4STobin Davis 					 struct hda_codec *codec,
168c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
169c9b443d4STobin Davis {
170c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
171c9b443d4STobin Davis 	return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
172c9b443d4STobin Davis }
173c9b443d4STobin Davis 
174c9b443d4STobin Davis /*
175c9b443d4STobin Davis  * Digital out
176c9b443d4STobin Davis  */
177c9b443d4STobin Davis static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
178c9b443d4STobin Davis 					  struct hda_codec *codec,
179c9b443d4STobin Davis 					  struct snd_pcm_substream *substream)
180c9b443d4STobin Davis {
181c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
182c9b443d4STobin Davis 	return snd_hda_multi_out_dig_open(codec, &spec->multiout);
183c9b443d4STobin Davis }
184c9b443d4STobin Davis 
185c9b443d4STobin Davis static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
186c9b443d4STobin Davis 					 struct hda_codec *codec,
187c9b443d4STobin Davis 					 struct snd_pcm_substream *substream)
188c9b443d4STobin Davis {
189c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
190c9b443d4STobin Davis 	return snd_hda_multi_out_dig_close(codec, &spec->multiout);
191c9b443d4STobin Davis }
192c9b443d4STobin Davis 
1936b97eb45STakashi Iwai static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
1946b97eb45STakashi Iwai 					 struct hda_codec *codec,
1956b97eb45STakashi Iwai 					 unsigned int stream_tag,
1966b97eb45STakashi Iwai 					 unsigned int format,
1976b97eb45STakashi Iwai 					 struct snd_pcm_substream *substream)
1986b97eb45STakashi Iwai {
1996b97eb45STakashi Iwai 	struct conexant_spec *spec = codec->spec;
2006b97eb45STakashi Iwai 	return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2016b97eb45STakashi Iwai 					     stream_tag,
2026b97eb45STakashi Iwai 					     format, substream);
2036b97eb45STakashi Iwai }
2046b97eb45STakashi Iwai 
205c9b443d4STobin Davis /*
206c9b443d4STobin Davis  * Analog capture
207c9b443d4STobin Davis  */
208c9b443d4STobin Davis static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
209c9b443d4STobin Davis 				      struct hda_codec *codec,
210c9b443d4STobin Davis 				      unsigned int stream_tag,
211c9b443d4STobin Davis 				      unsigned int format,
212c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
213c9b443d4STobin Davis {
214c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
21575f8991dSDaniel Drake 	if (spec->capture_prepare)
21675f8991dSDaniel Drake 		spec->capture_prepare(codec);
217c9b443d4STobin Davis 	snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
218c9b443d4STobin Davis 				   stream_tag, 0, format);
219c9b443d4STobin Davis 	return 0;
220c9b443d4STobin Davis }
221c9b443d4STobin Davis 
222c9b443d4STobin Davis static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
223c9b443d4STobin Davis 				      struct hda_codec *codec,
224c9b443d4STobin Davis 				      struct snd_pcm_substream *substream)
225c9b443d4STobin Davis {
226c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
227888afa15STakashi Iwai 	snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
22875f8991dSDaniel Drake 	if (spec->capture_cleanup)
22975f8991dSDaniel Drake 		spec->capture_cleanup(codec);
230c9b443d4STobin Davis 	return 0;
231c9b443d4STobin Davis }
232c9b443d4STobin Davis 
233c9b443d4STobin Davis 
234c9b443d4STobin Davis 
23534cbe3a6STakashi Iwai static const struct hda_pcm_stream conexant_pcm_analog_playback = {
236c9b443d4STobin Davis 	.substreams = 1,
237c9b443d4STobin Davis 	.channels_min = 2,
238c9b443d4STobin Davis 	.channels_max = 2,
239c9b443d4STobin Davis 	.nid = 0, /* fill later */
240c9b443d4STobin Davis 	.ops = {
241c9b443d4STobin Davis 		.open = conexant_playback_pcm_open,
242c9b443d4STobin Davis 		.prepare = conexant_playback_pcm_prepare,
243c9b443d4STobin Davis 		.cleanup = conexant_playback_pcm_cleanup
244c9b443d4STobin Davis 	},
245c9b443d4STobin Davis };
246c9b443d4STobin Davis 
24734cbe3a6STakashi Iwai static const struct hda_pcm_stream conexant_pcm_analog_capture = {
248c9b443d4STobin Davis 	.substreams = 1,
249c9b443d4STobin Davis 	.channels_min = 2,
250c9b443d4STobin Davis 	.channels_max = 2,
251c9b443d4STobin Davis 	.nid = 0, /* fill later */
252c9b443d4STobin Davis 	.ops = {
253c9b443d4STobin Davis 		.prepare = conexant_capture_pcm_prepare,
254c9b443d4STobin Davis 		.cleanup = conexant_capture_pcm_cleanup
255c9b443d4STobin Davis 	},
256c9b443d4STobin Davis };
257c9b443d4STobin Davis 
258c9b443d4STobin Davis 
25934cbe3a6STakashi Iwai static const struct hda_pcm_stream conexant_pcm_digital_playback = {
260c9b443d4STobin Davis 	.substreams = 1,
261c9b443d4STobin Davis 	.channels_min = 2,
262c9b443d4STobin Davis 	.channels_max = 2,
263c9b443d4STobin Davis 	.nid = 0, /* fill later */
264c9b443d4STobin Davis 	.ops = {
265c9b443d4STobin Davis 		.open = conexant_dig_playback_pcm_open,
2666b97eb45STakashi Iwai 		.close = conexant_dig_playback_pcm_close,
2676b97eb45STakashi Iwai 		.prepare = conexant_dig_playback_pcm_prepare
268c9b443d4STobin Davis 	},
269c9b443d4STobin Davis };
270c9b443d4STobin Davis 
27134cbe3a6STakashi Iwai static const struct hda_pcm_stream conexant_pcm_digital_capture = {
272c9b443d4STobin Davis 	.substreams = 1,
273c9b443d4STobin Davis 	.channels_min = 2,
274c9b443d4STobin Davis 	.channels_max = 2,
275c9b443d4STobin Davis 	/* NID is set in alc_build_pcms */
276c9b443d4STobin Davis };
277c9b443d4STobin Davis 
278461e2c78STakashi Iwai static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
279461e2c78STakashi Iwai 				      struct hda_codec *codec,
280461e2c78STakashi Iwai 				      unsigned int stream_tag,
281461e2c78STakashi Iwai 				      unsigned int format,
282461e2c78STakashi Iwai 				      struct snd_pcm_substream *substream)
283461e2c78STakashi Iwai {
284461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
285461e2c78STakashi Iwai 	spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
286461e2c78STakashi Iwai 	spec->cur_adc_stream_tag = stream_tag;
287461e2c78STakashi Iwai 	spec->cur_adc_format = format;
288461e2c78STakashi Iwai 	snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
289461e2c78STakashi Iwai 	return 0;
290461e2c78STakashi Iwai }
291461e2c78STakashi Iwai 
292461e2c78STakashi Iwai static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
293461e2c78STakashi Iwai 				      struct hda_codec *codec,
294461e2c78STakashi Iwai 				      struct snd_pcm_substream *substream)
295461e2c78STakashi Iwai {
296461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
297888afa15STakashi Iwai 	snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
298461e2c78STakashi Iwai 	spec->cur_adc = 0;
299461e2c78STakashi Iwai 	return 0;
300461e2c78STakashi Iwai }
301461e2c78STakashi Iwai 
30234cbe3a6STakashi Iwai static const struct hda_pcm_stream cx5051_pcm_analog_capture = {
303461e2c78STakashi Iwai 	.substreams = 1,
304461e2c78STakashi Iwai 	.channels_min = 2,
305461e2c78STakashi Iwai 	.channels_max = 2,
306461e2c78STakashi Iwai 	.nid = 0, /* fill later */
307461e2c78STakashi Iwai 	.ops = {
308461e2c78STakashi Iwai 		.prepare = cx5051_capture_pcm_prepare,
309461e2c78STakashi Iwai 		.cleanup = cx5051_capture_pcm_cleanup
310461e2c78STakashi Iwai 	},
311461e2c78STakashi Iwai };
312461e2c78STakashi Iwai 
313c9b443d4STobin Davis static int conexant_build_pcms(struct hda_codec *codec)
314c9b443d4STobin Davis {
315c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
316c9b443d4STobin Davis 	struct hda_pcm *info = spec->pcm_rec;
317c9b443d4STobin Davis 
318c9b443d4STobin Davis 	codec->num_pcms = 1;
319c9b443d4STobin Davis 	codec->pcm_info = info;
320c9b443d4STobin Davis 
321c9b443d4STobin Davis 	info->name = "CONEXANT Analog";
322c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
323c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
324c9b443d4STobin Davis 		spec->multiout.max_channels;
325c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
326c9b443d4STobin Davis 		spec->multiout.dac_nids[0];
3276764bcefSTakashi Iwai 	if (spec->capture_stream)
3286764bcefSTakashi Iwai 		info->stream[SNDRV_PCM_STREAM_CAPTURE] = *spec->capture_stream;
3296764bcefSTakashi Iwai 	else {
330461e2c78STakashi Iwai 		if (codec->vendor_id == 0x14f15051)
331461e2c78STakashi Iwai 			info->stream[SNDRV_PCM_STREAM_CAPTURE] =
332461e2c78STakashi Iwai 				cx5051_pcm_analog_capture;
3336764bcefSTakashi Iwai 		else {
334461e2c78STakashi Iwai 			info->stream[SNDRV_PCM_STREAM_CAPTURE] =
335461e2c78STakashi Iwai 				conexant_pcm_analog_capture;
3366764bcefSTakashi Iwai 			info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
3376764bcefSTakashi Iwai 				spec->num_adc_nids;
3386764bcefSTakashi Iwai 		}
3396764bcefSTakashi Iwai 	}
340c9b443d4STobin Davis 	info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
341c9b443d4STobin Davis 
342c9b443d4STobin Davis 	if (spec->multiout.dig_out_nid) {
343c9b443d4STobin Davis 		info++;
344c9b443d4STobin Davis 		codec->num_pcms++;
345c9b443d4STobin Davis 		info->name = "Conexant Digital";
3467ba72ba1STakashi Iwai 		info->pcm_type = HDA_PCM_TYPE_SPDIF;
347c9b443d4STobin Davis 		info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
348c9b443d4STobin Davis 			conexant_pcm_digital_playback;
349c9b443d4STobin Davis 		info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
350c9b443d4STobin Davis 			spec->multiout.dig_out_nid;
351c9b443d4STobin Davis 		if (spec->dig_in_nid) {
352c9b443d4STobin Davis 			info->stream[SNDRV_PCM_STREAM_CAPTURE] =
353c9b443d4STobin Davis 				conexant_pcm_digital_capture;
354c9b443d4STobin Davis 			info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
355c9b443d4STobin Davis 				spec->dig_in_nid;
356c9b443d4STobin Davis 		}
357f6a2491cSAndy Robinson 		if (spec->slave_dig_outs[0])
358f6a2491cSAndy Robinson 			codec->slave_dig_outs = spec->slave_dig_outs;
359c9b443d4STobin Davis 	}
360c9b443d4STobin Davis 
361c9b443d4STobin Davis 	return 0;
362c9b443d4STobin Davis }
363c9b443d4STobin Davis 
364c9b443d4STobin Davis static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
365c9b443d4STobin Davis 	       			  struct snd_ctl_elem_info *uinfo)
366c9b443d4STobin Davis {
367c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
368c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
369c9b443d4STobin Davis 
370c9b443d4STobin Davis 	return snd_hda_input_mux_info(spec->input_mux, uinfo);
371c9b443d4STobin Davis }
372c9b443d4STobin Davis 
373c9b443d4STobin Davis static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
374c9b443d4STobin Davis 				 struct snd_ctl_elem_value *ucontrol)
375c9b443d4STobin Davis {
376c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
377c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
378c9b443d4STobin Davis 	unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
379c9b443d4STobin Davis 
380c9b443d4STobin Davis 	ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
381c9b443d4STobin Davis 	return 0;
382c9b443d4STobin Davis }
383c9b443d4STobin Davis 
384c9b443d4STobin Davis static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
385c9b443d4STobin Davis 				 struct snd_ctl_elem_value *ucontrol)
386c9b443d4STobin Davis {
387c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
388c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
389c9b443d4STobin Davis 	unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
390c9b443d4STobin Davis 
391c9b443d4STobin Davis 	return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
392c9b443d4STobin Davis 				     spec->capsrc_nids[adc_idx],
393c9b443d4STobin Davis 				     &spec->cur_mux[adc_idx]);
394c9b443d4STobin Davis }
395c9b443d4STobin Davis 
396bc7a166dSUlrich Dangel static int conexant_init_jacks(struct hda_codec *codec)
397bc7a166dSUlrich Dangel {
398cd372fb3STakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_JACK
399bc7a166dSUlrich Dangel 	struct conexant_spec *spec = codec->spec;
400bc7a166dSUlrich Dangel 	int i;
401bc7a166dSUlrich Dangel 
402bc7a166dSUlrich Dangel 	for (i = 0; i < spec->num_init_verbs; i++) {
403bc7a166dSUlrich Dangel 		const struct hda_verb *hv;
404bc7a166dSUlrich Dangel 
405bc7a166dSUlrich Dangel 		hv = spec->init_verbs[i];
406bc7a166dSUlrich Dangel 		while (hv->nid) {
407bc7a166dSUlrich Dangel 			int err = 0;
408bc7a166dSUlrich Dangel 			switch (hv->param ^ AC_USRSP_EN) {
409bc7a166dSUlrich Dangel 			case CONEXANT_HP_EVENT:
410cd372fb3STakashi Iwai 				err = snd_hda_input_jack_add(codec, hv->nid,
411cd372fb3STakashi Iwai 						SND_JACK_HEADPHONE, NULL);
412cd372fb3STakashi Iwai 				snd_hda_input_jack_report(codec, hv->nid);
413bc7a166dSUlrich Dangel 				break;
414bc7a166dSUlrich Dangel 			case CXT5051_PORTC_EVENT:
415bc7a166dSUlrich Dangel 			case CONEXANT_MIC_EVENT:
416cd372fb3STakashi Iwai 				err = snd_hda_input_jack_add(codec, hv->nid,
417cd372fb3STakashi Iwai 						SND_JACK_MICROPHONE, NULL);
418cd372fb3STakashi Iwai 				snd_hda_input_jack_report(codec, hv->nid);
419bc7a166dSUlrich Dangel 				break;
420bc7a166dSUlrich Dangel 			}
421bc7a166dSUlrich Dangel 			if (err < 0)
422bc7a166dSUlrich Dangel 				return err;
423bc7a166dSUlrich Dangel 			++hv;
424bc7a166dSUlrich Dangel 		}
425bc7a166dSUlrich Dangel 	}
426cd372fb3STakashi Iwai #endif /* CONFIG_SND_HDA_INPUT_JACK */
4275801f992STakashi Iwai 	return 0;
4285801f992STakashi Iwai }
429bc7a166dSUlrich Dangel 
430c9b443d4STobin Davis static int conexant_init(struct hda_codec *codec)
431c9b443d4STobin Davis {
432c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
433c9b443d4STobin Davis 	int i;
434c9b443d4STobin Davis 
435c9b443d4STobin Davis 	for (i = 0; i < spec->num_init_verbs; i++)
436c9b443d4STobin Davis 		snd_hda_sequence_write(codec, spec->init_verbs[i]);
437c9b443d4STobin Davis 	return 0;
438c9b443d4STobin Davis }
439c9b443d4STobin Davis 
440c9b443d4STobin Davis static void conexant_free(struct hda_codec *codec)
441c9b443d4STobin Davis {
442cd372fb3STakashi Iwai 	snd_hda_input_jack_free(codec);
443c0f8faf0SEinar Rünkaru 	snd_hda_detach_beep_device(codec);
444c9b443d4STobin Davis 	kfree(codec->spec);
445c9b443d4STobin Davis }
446c9b443d4STobin Davis 
44734cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt_capture_mixers[] = {
448b880c74aSTakashi Iwai 	{
449b880c74aSTakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
450b880c74aSTakashi Iwai 		.name = "Capture Source",
451b880c74aSTakashi Iwai 		.info = conexant_mux_enum_info,
452b880c74aSTakashi Iwai 		.get = conexant_mux_enum_get,
453b880c74aSTakashi Iwai 		.put = conexant_mux_enum_put
454b880c74aSTakashi Iwai 	},
455b880c74aSTakashi Iwai 	{}
456b880c74aSTakashi Iwai };
457b880c74aSTakashi Iwai 
4583507e2a8STakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_BEEP
4593507e2a8STakashi Iwai /* additional beep mixers; the actual parameters are overwritten at build */
46034cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt_beep_mixer[] = {
4613507e2a8STakashi Iwai 	HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0, 1, 0, HDA_OUTPUT),
4623507e2a8STakashi Iwai 	HDA_CODEC_MUTE_BEEP_MONO("Beep Playback Switch", 0, 1, 0, HDA_OUTPUT),
4633507e2a8STakashi Iwai 	{ } /* end */
4643507e2a8STakashi Iwai };
4653507e2a8STakashi Iwai #endif
4663507e2a8STakashi Iwai 
467ea734963STakashi Iwai static const char * const slave_vols[] = {
468dd5746a8STakashi Iwai 	"Headphone Playback Volume",
469dd5746a8STakashi Iwai 	"Speaker Playback Volume",
470dd5746a8STakashi Iwai 	NULL
471dd5746a8STakashi Iwai };
472dd5746a8STakashi Iwai 
473ea734963STakashi Iwai static const char * const slave_sws[] = {
474dd5746a8STakashi Iwai 	"Headphone Playback Switch",
475dd5746a8STakashi Iwai 	"Speaker Playback Switch",
476dd5746a8STakashi Iwai 	NULL
477dd5746a8STakashi Iwai };
478dd5746a8STakashi Iwai 
479c9b443d4STobin Davis static int conexant_build_controls(struct hda_codec *codec)
480c9b443d4STobin Davis {
481c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
482c9b443d4STobin Davis 	unsigned int i;
483c9b443d4STobin Davis 	int err;
484c9b443d4STobin Davis 
485c9b443d4STobin Davis 	for (i = 0; i < spec->num_mixers; i++) {
486c9b443d4STobin Davis 		err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
487c9b443d4STobin Davis 		if (err < 0)
488c9b443d4STobin Davis 			return err;
489c9b443d4STobin Davis 	}
490c9b443d4STobin Davis 	if (spec->multiout.dig_out_nid) {
491c9b443d4STobin Davis 		err = snd_hda_create_spdif_out_ctls(codec,
492c9b443d4STobin Davis 						    spec->multiout.dig_out_nid);
493c9b443d4STobin Davis 		if (err < 0)
494c9b443d4STobin Davis 			return err;
4959a08160bSTakashi Iwai 		err = snd_hda_create_spdif_share_sw(codec,
4969a08160bSTakashi Iwai 						    &spec->multiout);
4979a08160bSTakashi Iwai 		if (err < 0)
4989a08160bSTakashi Iwai 			return err;
4999a08160bSTakashi Iwai 		spec->multiout.share_spdif = 1;
500c9b443d4STobin Davis 	}
501c9b443d4STobin Davis 	if (spec->dig_in_nid) {
502c9b443d4STobin Davis 		err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
503c9b443d4STobin Davis 		if (err < 0)
504c9b443d4STobin Davis 			return err;
505c9b443d4STobin Davis 	}
506dd5746a8STakashi Iwai 
507dd5746a8STakashi Iwai 	/* if we have no master control, let's create it */
508dd5746a8STakashi Iwai 	if (spec->vmaster_nid &&
509dd5746a8STakashi Iwai 	    !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
510dd5746a8STakashi Iwai 		unsigned int vmaster_tlv[4];
511dd5746a8STakashi Iwai 		snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
512dd5746a8STakashi Iwai 					HDA_OUTPUT, vmaster_tlv);
513dd5746a8STakashi Iwai 		err = snd_hda_add_vmaster(codec, "Master Playback Volume",
514dd5746a8STakashi Iwai 					  vmaster_tlv, slave_vols);
515dd5746a8STakashi Iwai 		if (err < 0)
516dd5746a8STakashi Iwai 			return err;
517dd5746a8STakashi Iwai 	}
518dd5746a8STakashi Iwai 	if (spec->vmaster_nid &&
519dd5746a8STakashi Iwai 	    !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
520dd5746a8STakashi Iwai 		err = snd_hda_add_vmaster(codec, "Master Playback Switch",
521dd5746a8STakashi Iwai 					  NULL, slave_sws);
522dd5746a8STakashi Iwai 		if (err < 0)
523dd5746a8STakashi Iwai 			return err;
524dd5746a8STakashi Iwai 	}
525dd5746a8STakashi Iwai 
526b880c74aSTakashi Iwai 	if (spec->input_mux) {
527b880c74aSTakashi Iwai 		err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
528b880c74aSTakashi Iwai 		if (err < 0)
529b880c74aSTakashi Iwai 			return err;
530b880c74aSTakashi Iwai 	}
531b880c74aSTakashi Iwai 
5323507e2a8STakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_BEEP
5333507e2a8STakashi Iwai 	/* create beep controls if needed */
5343507e2a8STakashi Iwai 	if (spec->beep_amp) {
53534cbe3a6STakashi Iwai 		const struct snd_kcontrol_new *knew;
5363507e2a8STakashi Iwai 		for (knew = cxt_beep_mixer; knew->name; knew++) {
5373507e2a8STakashi Iwai 			struct snd_kcontrol *kctl;
5383507e2a8STakashi Iwai 			kctl = snd_ctl_new1(knew, codec);
5393507e2a8STakashi Iwai 			if (!kctl)
5403507e2a8STakashi Iwai 				return -ENOMEM;
5413507e2a8STakashi Iwai 			kctl->private_value = spec->beep_amp;
5423507e2a8STakashi Iwai 			err = snd_hda_ctl_add(codec, 0, kctl);
5433507e2a8STakashi Iwai 			if (err < 0)
5443507e2a8STakashi Iwai 				return err;
5453507e2a8STakashi Iwai 		}
5463507e2a8STakashi Iwai 	}
5473507e2a8STakashi Iwai #endif
5483507e2a8STakashi Iwai 
549c9b443d4STobin Davis 	return 0;
550c9b443d4STobin Davis }
551c9b443d4STobin Davis 
552697c373eSTakashi Iwai #ifdef CONFIG_SND_HDA_POWER_SAVE
553697c373eSTakashi Iwai static int conexant_suspend(struct hda_codec *codec, pm_message_t state)
554697c373eSTakashi Iwai {
555697c373eSTakashi Iwai 	snd_hda_shutup_pins(codec);
556697c373eSTakashi Iwai 	return 0;
557697c373eSTakashi Iwai }
558697c373eSTakashi Iwai #endif
559697c373eSTakashi Iwai 
56034cbe3a6STakashi Iwai static const struct hda_codec_ops conexant_patch_ops = {
561c9b443d4STobin Davis 	.build_controls = conexant_build_controls,
562c9b443d4STobin Davis 	.build_pcms = conexant_build_pcms,
563c9b443d4STobin Davis 	.init = conexant_init,
564c9b443d4STobin Davis 	.free = conexant_free,
565697c373eSTakashi Iwai #ifdef CONFIG_SND_HDA_POWER_SAVE
566697c373eSTakashi Iwai 	.suspend = conexant_suspend,
567697c373eSTakashi Iwai #endif
568697c373eSTakashi Iwai 	.reboot_notify = snd_hda_shutup_pins,
569c9b443d4STobin Davis };
570c9b443d4STobin Davis 
5713507e2a8STakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_BEEP
5723507e2a8STakashi Iwai #define set_beep_amp(spec, nid, idx, dir) \
5733507e2a8STakashi Iwai 	((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir))
5743507e2a8STakashi Iwai #else
5753507e2a8STakashi Iwai #define set_beep_amp(spec, nid, idx, dir) /* NOP */
5763507e2a8STakashi Iwai #endif
5773507e2a8STakashi Iwai 
5786764bcefSTakashi Iwai static int patch_conexant_auto(struct hda_codec *codec);
579c9b443d4STobin Davis /*
580c9b443d4STobin Davis  * EAPD control
581c9b443d4STobin Davis  * the private value = nid | (invert << 8)
582c9b443d4STobin Davis  */
583c9b443d4STobin Davis 
584a5ce8890STakashi Iwai #define cxt_eapd_info		snd_ctl_boolean_mono_info
585c9b443d4STobin Davis 
58682f30040STobin Davis static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
587c9b443d4STobin Davis 			     struct snd_ctl_elem_value *ucontrol)
588c9b443d4STobin Davis {
589c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
590c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
591c9b443d4STobin Davis 	int invert = (kcontrol->private_value >> 8) & 1;
592c9b443d4STobin Davis 	if (invert)
593c9b443d4STobin Davis 		ucontrol->value.integer.value[0] = !spec->cur_eapd;
594c9b443d4STobin Davis 	else
595c9b443d4STobin Davis 		ucontrol->value.integer.value[0] = spec->cur_eapd;
596c9b443d4STobin Davis 	return 0;
59782f30040STobin Davis 
598c9b443d4STobin Davis }
599c9b443d4STobin Davis 
60082f30040STobin Davis static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
601c9b443d4STobin Davis 			     struct snd_ctl_elem_value *ucontrol)
602c9b443d4STobin Davis {
603c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
604c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
605c9b443d4STobin Davis 	int invert = (kcontrol->private_value >> 8) & 1;
606c9b443d4STobin Davis 	hda_nid_t nid = kcontrol->private_value & 0xff;
607c9b443d4STobin Davis 	unsigned int eapd;
60882f30040STobin Davis 
60968ea7b2fSTakashi Iwai 	eapd = !!ucontrol->value.integer.value[0];
610c9b443d4STobin Davis 	if (invert)
611c9b443d4STobin Davis 		eapd = !eapd;
61282beb8fdSTakashi Iwai 	if (eapd == spec->cur_eapd)
613c9b443d4STobin Davis 		return 0;
61482f30040STobin Davis 
615c9b443d4STobin Davis 	spec->cur_eapd = eapd;
61682beb8fdSTakashi Iwai 	snd_hda_codec_write_cache(codec, nid,
617c9b443d4STobin Davis 				  0, AC_VERB_SET_EAPD_BTLENABLE,
618c9b443d4STobin Davis 				  eapd ? 0x02 : 0x00);
619c9b443d4STobin Davis 	return 1;
620c9b443d4STobin Davis }
621c9b443d4STobin Davis 
62286d72bdfSTakashi Iwai /* controls for test mode */
62386d72bdfSTakashi Iwai #ifdef CONFIG_SND_DEBUG
62486d72bdfSTakashi Iwai 
62582f30040STobin Davis #define CXT_EAPD_SWITCH(xname, nid, mask) \
62682f30040STobin Davis 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
62782f30040STobin Davis 	  .info = cxt_eapd_info, \
62882f30040STobin Davis 	  .get = cxt_eapd_get, \
62982f30040STobin Davis 	  .put = cxt_eapd_put, \
63082f30040STobin Davis 	  .private_value = nid | (mask<<16) }
63182f30040STobin Davis 
63282f30040STobin Davis 
63382f30040STobin Davis 
634c9b443d4STobin Davis static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
635c9b443d4STobin Davis 				 struct snd_ctl_elem_info *uinfo)
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_info(codec, uinfo, spec->channel_mode,
640c9b443d4STobin Davis 				    spec->num_channel_mode);
641c9b443d4STobin Davis }
642c9b443d4STobin Davis 
643c9b443d4STobin Davis static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
644c9b443d4STobin Davis 				struct snd_ctl_elem_value *ucontrol)
645c9b443d4STobin Davis {
646c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
647c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
648c9b443d4STobin Davis 	return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
649c9b443d4STobin Davis 				   spec->num_channel_mode,
650c9b443d4STobin Davis 				   spec->multiout.max_channels);
651c9b443d4STobin Davis }
652c9b443d4STobin Davis 
653c9b443d4STobin Davis static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
654c9b443d4STobin Davis 				struct snd_ctl_elem_value *ucontrol)
655c9b443d4STobin Davis {
656c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
657c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
658c9b443d4STobin Davis 	int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
659c9b443d4STobin Davis 				      spec->num_channel_mode,
660c9b443d4STobin Davis 				      &spec->multiout.max_channels);
661c9b443d4STobin Davis 	if (err >= 0 && spec->need_dac_fix)
662c9b443d4STobin Davis 		spec->multiout.num_dacs = spec->multiout.max_channels / 2;
663c9b443d4STobin Davis 	return err;
664c9b443d4STobin Davis }
665c9b443d4STobin Davis 
666c9b443d4STobin Davis #define CXT_PIN_MODE(xname, nid, dir) \
667c9b443d4STobin Davis 	{ .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
668c9b443d4STobin Davis 	  .info = conexant_ch_mode_info, \
669c9b443d4STobin Davis 	  .get = conexant_ch_mode_get, \
670c9b443d4STobin Davis 	  .put = conexant_ch_mode_put, \
671c9b443d4STobin Davis 	  .private_value = nid | (dir<<16) }
672c9b443d4STobin Davis 
67386d72bdfSTakashi Iwai #endif /* CONFIG_SND_DEBUG */
67486d72bdfSTakashi Iwai 
675c9b443d4STobin Davis /* Conexant 5045 specific */
676c9b443d4STobin Davis 
67734cbe3a6STakashi Iwai static const hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
67834cbe3a6STakashi Iwai static const hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
67934cbe3a6STakashi Iwai static const hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
680cbef9789STakashi Iwai #define CXT5045_SPDIF_OUT	0x18
681c9b443d4STobin Davis 
68234cbe3a6STakashi Iwai static const struct hda_channel_mode cxt5045_modes[1] = {
6835cd57529STobin Davis 	{ 2, NULL },
6845cd57529STobin Davis };
685c9b443d4STobin Davis 
68634cbe3a6STakashi Iwai static const struct hda_input_mux cxt5045_capture_source = {
687c9b443d4STobin Davis 	.num_items = 2,
688c9b443d4STobin Davis 	.items = {
68982f30040STobin Davis 		{ "IntMic", 0x1 },
690f4beee94SJiang zhe 		{ "ExtMic", 0x2 },
691c9b443d4STobin Davis 	}
692c9b443d4STobin Davis };
693c9b443d4STobin Davis 
69434cbe3a6STakashi Iwai static const struct hda_input_mux cxt5045_capture_source_benq = {
69522e14130SLukasz Marcinowski 	.num_items = 5,
6965218c892SJiang Zhe 	.items = {
6975218c892SJiang Zhe 		{ "IntMic", 0x1 },
6985218c892SJiang Zhe 		{ "ExtMic", 0x2 },
6995218c892SJiang Zhe 		{ "LineIn", 0x3 },
70022e14130SLukasz Marcinowski 		{ "CD",     0x4 },
70122e14130SLukasz Marcinowski 		{ "Mixer",  0x0 },
7025218c892SJiang Zhe 	}
7035218c892SJiang Zhe };
7045218c892SJiang Zhe 
70534cbe3a6STakashi Iwai static const struct hda_input_mux cxt5045_capture_source_hp530 = {
7062de3c232SJiang zhe 	.num_items = 2,
7072de3c232SJiang zhe 	.items = {
7082de3c232SJiang zhe 		{ "ExtMic", 0x1 },
7092de3c232SJiang zhe 		{ "IntMic", 0x2 },
7102de3c232SJiang zhe 	}
7112de3c232SJiang zhe };
7122de3c232SJiang zhe 
713c9b443d4STobin Davis /* turn on/off EAPD (+ mute HP) as a master switch */
714c9b443d4STobin Davis static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
715c9b443d4STobin Davis 				    struct snd_ctl_elem_value *ucontrol)
716c9b443d4STobin Davis {
717c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
718c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
71982f30040STobin Davis 	unsigned int bits;
720c9b443d4STobin Davis 
72182f30040STobin Davis 	if (!cxt_eapd_put(kcontrol, ucontrol))
722c9b443d4STobin Davis 		return 0;
723c9b443d4STobin Davis 
72482f30040STobin Davis 	/* toggle internal speakers mute depending of presence of
72582f30040STobin Davis 	 * the headphone jack
72682f30040STobin Davis 	 */
72747fd830aSTakashi Iwai 	bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
72847fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
72947fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
7307f29673bSTobin Davis 
73147fd830aSTakashi Iwai 	bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
73247fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
73347fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
734c9b443d4STobin Davis 	return 1;
735c9b443d4STobin Davis }
736c9b443d4STobin Davis 
737c9b443d4STobin Davis /* bind volumes of both NID 0x10 and 0x11 */
73834cbe3a6STakashi Iwai static const struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
739cca3b371STakashi Iwai 	.ops = &snd_hda_bind_vol,
740cca3b371STakashi Iwai 	.values = {
741cca3b371STakashi Iwai 		HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
742cca3b371STakashi Iwai 		HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
743cca3b371STakashi Iwai 		0
744cca3b371STakashi Iwai 	},
745cca3b371STakashi Iwai };
746c9b443d4STobin Davis 
7477f29673bSTobin Davis /* toggle input of built-in and mic jack appropriately */
7487f29673bSTobin Davis static void cxt5045_hp_automic(struct hda_codec *codec)
7497f29673bSTobin Davis {
75034cbe3a6STakashi Iwai 	static const struct hda_verb mic_jack_on[] = {
7517f29673bSTobin Davis 		{0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
7527f29673bSTobin Davis 		{0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
7537f29673bSTobin Davis 		{}
7547f29673bSTobin Davis 	};
75534cbe3a6STakashi Iwai 	static const struct hda_verb mic_jack_off[] = {
7567f29673bSTobin Davis 		{0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
7577f29673bSTobin Davis 		{0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
7587f29673bSTobin Davis 		{}
7597f29673bSTobin Davis 	};
7607f29673bSTobin Davis 	unsigned int present;
7617f29673bSTobin Davis 
762d56757abSTakashi Iwai 	present = snd_hda_jack_detect(codec, 0x12);
7637f29673bSTobin Davis 	if (present)
7647f29673bSTobin Davis 		snd_hda_sequence_write(codec, mic_jack_on);
7657f29673bSTobin Davis 	else
7667f29673bSTobin Davis 		snd_hda_sequence_write(codec, mic_jack_off);
7677f29673bSTobin Davis }
7687f29673bSTobin Davis 
769c9b443d4STobin Davis 
770c9b443d4STobin Davis /* mute internal speaker if HP is plugged */
771c9b443d4STobin Davis static void cxt5045_hp_automute(struct hda_codec *codec)
772c9b443d4STobin Davis {
77382f30040STobin Davis 	struct conexant_spec *spec = codec->spec;
774dd87da1cSTobin Davis 	unsigned int bits;
775c9b443d4STobin Davis 
776d56757abSTakashi Iwai 	spec->hp_present = snd_hda_jack_detect(codec, 0x11);
777dd87da1cSTobin Davis 
77847fd830aSTakashi Iwai 	bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
77947fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
78047fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
781c9b443d4STobin Davis }
782c9b443d4STobin Davis 
783c9b443d4STobin Davis /* unsolicited event for HP jack sensing */
784c9b443d4STobin Davis static void cxt5045_hp_unsol_event(struct hda_codec *codec,
785c9b443d4STobin Davis 				   unsigned int res)
786c9b443d4STobin Davis {
787c9b443d4STobin Davis 	res >>= 26;
788c9b443d4STobin Davis 	switch (res) {
789c9b443d4STobin Davis 	case CONEXANT_HP_EVENT:
790c9b443d4STobin Davis 		cxt5045_hp_automute(codec);
791c9b443d4STobin Davis 		break;
7927f29673bSTobin Davis 	case CONEXANT_MIC_EVENT:
7937f29673bSTobin Davis 		cxt5045_hp_automic(codec);
7947f29673bSTobin Davis 		break;
7957f29673bSTobin Davis 
796c9b443d4STobin Davis 	}
797c9b443d4STobin Davis }
798c9b443d4STobin Davis 
79934cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5045_mixers[] = {
80028c4edb7SDavid Henningsson 	HDA_CODEC_VOLUME("Internal Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
80128c4edb7SDavid Henningsson 	HDA_CODEC_MUTE("Internal Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
8028607f7c4SDavid Henningsson 	HDA_CODEC_VOLUME("Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
8038607f7c4SDavid Henningsson 	HDA_CODEC_MUTE("Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
804c8229c38STakashi Iwai 	HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
805c8229c38STakashi Iwai 	HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
80628c4edb7SDavid Henningsson 	HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
80728c4edb7SDavid Henningsson 	HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
8088607f7c4SDavid Henningsson 	HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
8098607f7c4SDavid Henningsson 	HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
810cca3b371STakashi Iwai 	HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
811c9b443d4STobin Davis 	{
812c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
813c9b443d4STobin Davis 		.name = "Master Playback Switch",
81482f30040STobin Davis 		.info = cxt_eapd_info,
81582f30040STobin Davis 		.get = cxt_eapd_get,
816c9b443d4STobin Davis 		.put = cxt5045_hp_master_sw_put,
81782f30040STobin Davis 		.private_value = 0x10,
818c9b443d4STobin Davis 	},
819c9b443d4STobin Davis 
820c9b443d4STobin Davis 	{}
821c9b443d4STobin Davis };
822c9b443d4STobin Davis 
82334cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5045_benq_mixers[] = {
82422e14130SLukasz Marcinowski 	HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT),
82522e14130SLukasz Marcinowski 	HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT),
82622e14130SLukasz Marcinowski 	HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT),
82722e14130SLukasz Marcinowski 	HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT),
82822e14130SLukasz Marcinowski 
8295218c892SJiang Zhe 	HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
8305218c892SJiang Zhe 	HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
8315218c892SJiang Zhe 	HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
8325218c892SJiang Zhe 	HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
8335218c892SJiang Zhe 
83422e14130SLukasz Marcinowski 	HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT),
83522e14130SLukasz Marcinowski 	HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT),
83622e14130SLukasz Marcinowski 
8375218c892SJiang Zhe 	{}
8385218c892SJiang Zhe };
8395218c892SJiang Zhe 
84034cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
84128c4edb7SDavid Henningsson 	HDA_CODEC_VOLUME("Internal Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
84228c4edb7SDavid Henningsson 	HDA_CODEC_MUTE("Internal Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
8438607f7c4SDavid Henningsson 	HDA_CODEC_VOLUME("Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
8448607f7c4SDavid Henningsson 	HDA_CODEC_MUTE("Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
8452de3c232SJiang zhe 	HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
8462de3c232SJiang zhe 	HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
84728c4edb7SDavid Henningsson 	HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
84828c4edb7SDavid Henningsson 	HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
8498607f7c4SDavid Henningsson 	HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
8508607f7c4SDavid Henningsson 	HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
8512de3c232SJiang zhe 	HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
8522de3c232SJiang zhe 	{
8532de3c232SJiang zhe 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8542de3c232SJiang zhe 		.name = "Master Playback Switch",
8552de3c232SJiang zhe 		.info = cxt_eapd_info,
8562de3c232SJiang zhe 		.get = cxt_eapd_get,
8572de3c232SJiang zhe 		.put = cxt5045_hp_master_sw_put,
8582de3c232SJiang zhe 		.private_value = 0x10,
8592de3c232SJiang zhe 	},
8602de3c232SJiang zhe 
8612de3c232SJiang zhe 	{}
8622de3c232SJiang zhe };
8632de3c232SJiang zhe 
86434cbe3a6STakashi Iwai static const struct hda_verb cxt5045_init_verbs[] = {
865c9b443d4STobin Davis 	/* Line in, Mic */
8664090dffbSTakashi Iwai 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
8677f29673bSTobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
868c9b443d4STobin Davis 	/* HP, Amp  */
869c8229c38STakashi Iwai 	{0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
870c8229c38STakashi Iwai 	{0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
87182f30040STobin Davis 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
872c8229c38STakashi Iwai 	{0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
873c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
874c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
875c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
876c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
877c8229c38STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
87828c4edb7SDavid Henningsson 	/* Record selector: Internal mic */
8797f29673bSTobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
88082f30040STobin Davis 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
881c9b443d4STobin Davis 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
882c9b443d4STobin Davis 	/* SPDIF route: PCM */
883cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
884c9b443d4STobin Davis 	{ 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
885c9b443d4STobin Davis 	/* EAPD */
88682f30040STobin Davis 	{0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
887c9b443d4STobin Davis 	{ } /* end */
888c9b443d4STobin Davis };
889c9b443d4STobin Davis 
89034cbe3a6STakashi Iwai static const struct hda_verb cxt5045_benq_init_verbs[] = {
89128c4edb7SDavid Henningsson 	/* Internal Mic, Mic */
8925218c892SJiang Zhe 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
8935218c892SJiang Zhe 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
8945218c892SJiang Zhe 	/* Line In,HP, Amp  */
8955218c892SJiang Zhe 	{0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8965218c892SJiang Zhe 	{0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
8975218c892SJiang Zhe 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
8985218c892SJiang Zhe 	{0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
8995218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9005218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9015218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
9025218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
9035218c892SJiang Zhe 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
90428c4edb7SDavid Henningsson 	/* Record selector: Internal mic */
9055218c892SJiang Zhe 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
9065218c892SJiang Zhe 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
9075218c892SJiang Zhe 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
9085218c892SJiang Zhe 	/* SPDIF route: PCM */
909cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9105218c892SJiang Zhe 	{0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
9115218c892SJiang Zhe 	/* EAPD */
9125218c892SJiang Zhe 	{0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
9135218c892SJiang Zhe 	{ } /* end */
9145218c892SJiang Zhe };
9157f29673bSTobin Davis 
91634cbe3a6STakashi Iwai static const struct hda_verb cxt5045_hp_sense_init_verbs[] = {
9177f29673bSTobin Davis 	/* pin sensing on HP jack */
9187f29673bSTobin Davis 	{0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
919d3091fadSTakashi Iwai 	{ } /* end */
9207f29673bSTobin Davis };
9217f29673bSTobin Davis 
92234cbe3a6STakashi Iwai static const struct hda_verb cxt5045_mic_sense_init_verbs[] = {
9237f29673bSTobin Davis 	/* pin sensing on HP jack */
9247f29673bSTobin Davis 	{0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
925d3091fadSTakashi Iwai 	{ } /* end */
9267f29673bSTobin Davis };
9277f29673bSTobin Davis 
928c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
929c9b443d4STobin Davis /* Test configuration for debugging, modelled after the ALC260 test
930c9b443d4STobin Davis  * configuration.
931c9b443d4STobin Davis  */
93234cbe3a6STakashi Iwai static const struct hda_input_mux cxt5045_test_capture_source = {
933c9b443d4STobin Davis 	.num_items = 5,
934c9b443d4STobin Davis 	.items = {
935c9b443d4STobin Davis 		{ "MIXER", 0x0 },
936c9b443d4STobin Davis 		{ "MIC1 pin", 0x1 },
937c9b443d4STobin Davis 		{ "LINE1 pin", 0x2 },
938c9b443d4STobin Davis 		{ "HP-OUT pin", 0x3 },
939c9b443d4STobin Davis 		{ "CD pin", 0x4 },
940c9b443d4STobin Davis         },
941c9b443d4STobin Davis };
942c9b443d4STobin Davis 
94334cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5045_test_mixer[] = {
944c9b443d4STobin Davis 
945c9b443d4STobin Davis 	/* Output controls */
946c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
947c9b443d4STobin Davis 	HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
9487f29673bSTobin Davis 	HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
9497f29673bSTobin Davis 	HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
9507f29673bSTobin Davis 	HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
9517f29673bSTobin Davis 	HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
952c9b443d4STobin Davis 
953c9b443d4STobin Davis 	/* Modes for retasking pin widgets */
954c9b443d4STobin Davis 	CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
955c9b443d4STobin Davis 	CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
956c9b443d4STobin Davis 
95782f30040STobin Davis 	/* EAPD Switch Control */
95882f30040STobin Davis 	CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
95982f30040STobin Davis 
960c9b443d4STobin Davis 	/* Loopback mixer controls */
961c9b443d4STobin Davis 
9627f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
9637f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
9647f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
9657f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
9667f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
9677f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
9687f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
9697f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
9707f29673bSTobin Davis 	HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
9717f29673bSTobin Davis 	HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
972c9b443d4STobin Davis 	{
973c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
974c9b443d4STobin Davis 		.name = "Input Source",
975c9b443d4STobin Davis 		.info = conexant_mux_enum_info,
976c9b443d4STobin Davis 		.get = conexant_mux_enum_get,
977c9b443d4STobin Davis 		.put = conexant_mux_enum_put,
978c9b443d4STobin Davis 	},
979fb3409e7STobin Davis 	/* Audio input controls */
980fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
981fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
982fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
983fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
984fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
985fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
986fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
987fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
988fb3409e7STobin Davis 	HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
989fb3409e7STobin Davis 	HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
990c9b443d4STobin Davis 	{ } /* end */
991c9b443d4STobin Davis };
992c9b443d4STobin Davis 
99334cbe3a6STakashi Iwai static const struct hda_verb cxt5045_test_init_verbs[] = {
9947f29673bSTobin Davis 	/* Set connections */
9957f29673bSTobin Davis 	{ 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
9967f29673bSTobin Davis 	{ 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
9977f29673bSTobin Davis 	{ 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
998c9b443d4STobin Davis 	/* Enable retasking pins as output, initially without power amp */
999c9b443d4STobin Davis 	{0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10007f29673bSTobin Davis 	{0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1001c9b443d4STobin Davis 
1002c9b443d4STobin Davis 	/* Disable digital (SPDIF) pins initially, but users can enable
1003c9b443d4STobin Davis 	 * them via a mixer switch.  In the case of SPDIF-out, this initverb
1004c9b443d4STobin Davis 	 * payload also sets the generation to 0, output to be in "consumer"
1005c9b443d4STobin Davis 	 * PCM format, copyright asserted, no pre-emphasis and no validity
1006c9b443d4STobin Davis 	 * control.
1007c9b443d4STobin Davis 	 */
1008cbef9789STakashi Iwai 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1009cbef9789STakashi Iwai 	{0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1010c9b443d4STobin Davis 
1011c9b443d4STobin Davis 	/* Start with output sum widgets muted and their output gains at min */
1012c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1013c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1014c9b443d4STobin Davis 
1015c9b443d4STobin Davis 	/* Unmute retasking pin widget output buffers since the default
1016c9b443d4STobin Davis 	 * state appears to be output.  As the pin mode is changed by the
1017c9b443d4STobin Davis 	 * user the pin mode control will take care of enabling the pin's
1018c9b443d4STobin Davis 	 * input/output buffers as needed.
1019c9b443d4STobin Davis 	 */
1020c9b443d4STobin Davis 	{0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1021c9b443d4STobin Davis 	{0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1022c9b443d4STobin Davis 
1023c9b443d4STobin Davis 	/* Mute capture amp left and right */
1024c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1025c9b443d4STobin Davis 
1026c9b443d4STobin Davis 	/* Set ADC connection select to match default mixer setting (mic1
1027c9b443d4STobin Davis 	 * pin)
1028c9b443d4STobin Davis 	 */
1029c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
10307f29673bSTobin Davis 	{0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
1031c9b443d4STobin Davis 
1032c9b443d4STobin Davis 	/* Mute all inputs to mixer widget (even unconnected ones) */
1033c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
1034c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1035c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1036c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1037c9b443d4STobin Davis 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1038c9b443d4STobin Davis 
1039c9b443d4STobin Davis 	{ }
1040c9b443d4STobin Davis };
1041c9b443d4STobin Davis #endif
1042c9b443d4STobin Davis 
1043c9b443d4STobin Davis 
1044c9b443d4STobin Davis /* initialize jack-sensing, too */
1045c9b443d4STobin Davis static int cxt5045_init(struct hda_codec *codec)
1046c9b443d4STobin Davis {
1047c9b443d4STobin Davis 	conexant_init(codec);
1048c9b443d4STobin Davis 	cxt5045_hp_automute(codec);
1049c9b443d4STobin Davis 	return 0;
1050c9b443d4STobin Davis }
1051c9b443d4STobin Davis 
1052c9b443d4STobin Davis 
1053c9b443d4STobin Davis enum {
105415908c36SMarc Boucher 	CXT5045_LAPTOP_HPSENSE,
105515908c36SMarc Boucher 	CXT5045_LAPTOP_MICSENSE,
105615908c36SMarc Boucher 	CXT5045_LAPTOP_HPMICSENSE,
10575218c892SJiang Zhe 	CXT5045_BENQ,
10582de3c232SJiang zhe 	CXT5045_LAPTOP_HP530,
1059c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1060c9b443d4STobin Davis 	CXT5045_TEST,
1061c9b443d4STobin Davis #endif
1062*1f8458a2STakashi Iwai 	CXT5045_AUTO,
1063f5fcc13cSTakashi Iwai 	CXT5045_MODELS
1064c9b443d4STobin Davis };
1065c9b443d4STobin Davis 
1066ea734963STakashi Iwai static const char * const cxt5045_models[CXT5045_MODELS] = {
106715908c36SMarc Boucher 	[CXT5045_LAPTOP_HPSENSE]	= "laptop-hpsense",
106815908c36SMarc Boucher 	[CXT5045_LAPTOP_MICSENSE]	= "laptop-micsense",
106915908c36SMarc Boucher 	[CXT5045_LAPTOP_HPMICSENSE]	= "laptop-hpmicsense",
10705218c892SJiang Zhe 	[CXT5045_BENQ]			= "benq",
10712de3c232SJiang zhe 	[CXT5045_LAPTOP_HP530]		= "laptop-hp530",
1072c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1073f5fcc13cSTakashi Iwai 	[CXT5045_TEST]		= "test",
1074c9b443d4STobin Davis #endif
1075*1f8458a2STakashi Iwai 	[CXT5045_AUTO]			= "auto",
1076f5fcc13cSTakashi Iwai };
1077c9b443d4STobin Davis 
107834cbe3a6STakashi Iwai static const struct snd_pci_quirk cxt5045_cfg_tbl[] = {
10792de3c232SJiang zhe 	SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
1080dea0a509STakashi Iwai 	SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1081dea0a509STakashi Iwai 			   CXT5045_LAPTOP_HPSENSE),
10826a9dccd6STakashi Iwai 	SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
10835218c892SJiang Zhe 	SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
108415908c36SMarc Boucher 	SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
108515908c36SMarc Boucher 	SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
10869e464154STakashi Iwai 	SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
10879e464154STakashi Iwai 		      CXT5045_LAPTOP_HPMICSENSE),
108815908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
108915908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
109015908c36SMarc Boucher 	SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1091dea0a509STakashi Iwai 	SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1092dea0a509STakashi Iwai 			   CXT5045_LAPTOP_HPMICSENSE),
109315908c36SMarc Boucher 	SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
1094c9b443d4STobin Davis 	{}
1095c9b443d4STobin Davis };
1096c9b443d4STobin Davis 
1097c9b443d4STobin Davis static int patch_cxt5045(struct hda_codec *codec)
1098c9b443d4STobin Davis {
1099c9b443d4STobin Davis 	struct conexant_spec *spec;
1100c9b443d4STobin Davis 	int board_config;
1101c9b443d4STobin Davis 
1102*1f8458a2STakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1103*1f8458a2STakashi Iwai 						  cxt5045_models,
1104*1f8458a2STakashi Iwai 						  cxt5045_cfg_tbl);
1105*1f8458a2STakashi Iwai 	if (board_config < 0)
1106*1f8458a2STakashi Iwai 		board_config = CXT5045_AUTO;
1107*1f8458a2STakashi Iwai 	if (board_config == CXT5045_AUTO)
1108*1f8458a2STakashi Iwai 		return patch_conexant_auto(codec);
1109*1f8458a2STakashi Iwai 
1110c9b443d4STobin Davis 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1111c9b443d4STobin Davis 	if (!spec)
1112c9b443d4STobin Davis 		return -ENOMEM;
1113c9b443d4STobin Davis 	codec->spec = spec;
11149421f954STakashi Iwai 	codec->pin_amp_workaround = 1;
1115c9b443d4STobin Davis 
1116c9b443d4STobin Davis 	spec->multiout.max_channels = 2;
1117c9b443d4STobin Davis 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1118c9b443d4STobin Davis 	spec->multiout.dac_nids = cxt5045_dac_nids;
1119c9b443d4STobin Davis 	spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1120c9b443d4STobin Davis 	spec->num_adc_nids = 1;
1121c9b443d4STobin Davis 	spec->adc_nids = cxt5045_adc_nids;
1122c9b443d4STobin Davis 	spec->capsrc_nids = cxt5045_capsrc_nids;
1123c9b443d4STobin Davis 	spec->input_mux = &cxt5045_capture_source;
1124c9b443d4STobin Davis 	spec->num_mixers = 1;
1125c9b443d4STobin Davis 	spec->mixers[0] = cxt5045_mixers;
1126c9b443d4STobin Davis 	spec->num_init_verbs = 1;
1127c9b443d4STobin Davis 	spec->init_verbs[0] = cxt5045_init_verbs;
1128c9b443d4STobin Davis 	spec->spdif_route = 0;
11293507e2a8STakashi Iwai 	spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes);
11303507e2a8STakashi Iwai 	spec->channel_mode = cxt5045_modes;
11315cd57529STobin Davis 
11323507e2a8STakashi Iwai 	set_beep_amp(spec, 0x16, 0, 1);
1133c9b443d4STobin Davis 
1134c9b443d4STobin Davis 	codec->patch_ops = conexant_patch_ops;
1135c9b443d4STobin Davis 
1136c9b443d4STobin Davis 	switch (board_config) {
113715908c36SMarc Boucher 	case CXT5045_LAPTOP_HPSENSE:
11387f29673bSTobin Davis 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1139c9b443d4STobin Davis 		spec->input_mux = &cxt5045_capture_source;
1140c9b443d4STobin Davis 		spec->num_init_verbs = 2;
11417f29673bSTobin Davis 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
11427f29673bSTobin Davis 		spec->mixers[0] = cxt5045_mixers;
11437f29673bSTobin Davis 		codec->patch_ops.init = cxt5045_init;
11447f29673bSTobin Davis 		break;
114515908c36SMarc Boucher 	case CXT5045_LAPTOP_MICSENSE:
114686376df6STakashi Iwai 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
11477f29673bSTobin Davis 		spec->input_mux = &cxt5045_capture_source;
11487f29673bSTobin Davis 		spec->num_init_verbs = 2;
11497f29673bSTobin Davis 		spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
1150c9b443d4STobin Davis 		spec->mixers[0] = cxt5045_mixers;
1151c9b443d4STobin Davis 		codec->patch_ops.init = cxt5045_init;
1152c9b443d4STobin Davis 		break;
115315908c36SMarc Boucher 	default:
115415908c36SMarc Boucher 	case CXT5045_LAPTOP_HPMICSENSE:
115515908c36SMarc Boucher 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
115615908c36SMarc Boucher 		spec->input_mux = &cxt5045_capture_source;
115715908c36SMarc Boucher 		spec->num_init_verbs = 3;
115815908c36SMarc Boucher 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
115915908c36SMarc Boucher 		spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
116015908c36SMarc Boucher 		spec->mixers[0] = cxt5045_mixers;
116115908c36SMarc Boucher 		codec->patch_ops.init = cxt5045_init;
116215908c36SMarc Boucher 		break;
11635218c892SJiang Zhe 	case CXT5045_BENQ:
11645218c892SJiang Zhe 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
11655218c892SJiang Zhe 		spec->input_mux = &cxt5045_capture_source_benq;
11665218c892SJiang Zhe 		spec->num_init_verbs = 1;
11675218c892SJiang Zhe 		spec->init_verbs[0] = cxt5045_benq_init_verbs;
11685218c892SJiang Zhe 		spec->mixers[0] = cxt5045_mixers;
11695218c892SJiang Zhe 		spec->mixers[1] = cxt5045_benq_mixers;
11705218c892SJiang Zhe 		spec->num_mixers = 2;
11715218c892SJiang Zhe 		codec->patch_ops.init = cxt5045_init;
11725218c892SJiang Zhe 		break;
11732de3c232SJiang zhe 	case CXT5045_LAPTOP_HP530:
11742de3c232SJiang zhe 		codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
11752de3c232SJiang zhe 		spec->input_mux = &cxt5045_capture_source_hp530;
11762de3c232SJiang zhe 		spec->num_init_verbs = 2;
11772de3c232SJiang zhe 		spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
11782de3c232SJiang zhe 		spec->mixers[0] = cxt5045_mixers_hp530;
11792de3c232SJiang zhe 		codec->patch_ops.init = cxt5045_init;
11802de3c232SJiang zhe 		break;
1181c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1182c9b443d4STobin Davis 	case CXT5045_TEST:
1183c9b443d4STobin Davis 		spec->input_mux = &cxt5045_test_capture_source;
1184c9b443d4STobin Davis 		spec->mixers[0] = cxt5045_test_mixer;
1185c9b443d4STobin Davis 		spec->init_verbs[0] = cxt5045_test_init_verbs;
118615908c36SMarc Boucher 		break;
118715908c36SMarc Boucher 
1188c9b443d4STobin Davis #endif
1189c9b443d4STobin Davis 	}
119048ecb7e8STakashi Iwai 
1191031005f7STakashi Iwai 	switch (codec->subsystem_id >> 16) {
1192031005f7STakashi Iwai 	case 0x103c:
11938f0f5ff6SDaniel T Chen 	case 0x1631:
11940b587fc4SDaniel T Chen 	case 0x1734:
11950ebf9e36SDaniel T Chen 	case 0x17aa:
11960ebf9e36SDaniel T Chen 		/* HP, Packard Bell, Fujitsu-Siemens & Lenovo laptops have
11970ebf9e36SDaniel T Chen 		 * really bad sound over 0dB on NID 0x17. Fix max PCM level to
11980ebf9e36SDaniel T Chen 		 * 0 dB (originally it has 0x2b steps with 0dB offset 0x14)
119948ecb7e8STakashi Iwai 		 */
120048ecb7e8STakashi Iwai 		snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
120148ecb7e8STakashi Iwai 					  (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
120248ecb7e8STakashi Iwai 					  (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
120348ecb7e8STakashi Iwai 					  (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
120448ecb7e8STakashi Iwai 					  (1 << AC_AMPCAP_MUTE_SHIFT));
1205031005f7STakashi Iwai 		break;
1206031005f7STakashi Iwai 	}
120748ecb7e8STakashi Iwai 
12083507e2a8STakashi Iwai 	if (spec->beep_amp)
12093507e2a8STakashi Iwai 		snd_hda_attach_beep_device(codec, spec->beep_amp);
12103507e2a8STakashi Iwai 
1211c9b443d4STobin Davis 	return 0;
1212c9b443d4STobin Davis }
1213c9b443d4STobin Davis 
1214c9b443d4STobin Davis 
1215c9b443d4STobin Davis /* Conexant 5047 specific */
121682f30040STobin Davis #define CXT5047_SPDIF_OUT	0x11
1217c9b443d4STobin Davis 
121834cbe3a6STakashi Iwai static const hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
121934cbe3a6STakashi Iwai static const hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
122034cbe3a6STakashi Iwai static const hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
1221c9b443d4STobin Davis 
122234cbe3a6STakashi Iwai static const struct hda_channel_mode cxt5047_modes[1] = {
12235cd57529STobin Davis 	{ 2, NULL },
12245cd57529STobin Davis };
1225c9b443d4STobin Davis 
122634cbe3a6STakashi Iwai static const struct hda_input_mux cxt5047_toshiba_capture_source = {
122782f30040STobin Davis 	.num_items = 2,
122882f30040STobin Davis 	.items = {
122982f30040STobin Davis 		{ "ExtMic", 0x2 },
123082f30040STobin Davis 		{ "Line-In", 0x1 },
1231c9b443d4STobin Davis 	}
1232c9b443d4STobin Davis };
1233c9b443d4STobin Davis 
1234c9b443d4STobin Davis /* turn on/off EAPD (+ mute HP) as a master switch */
1235c9b443d4STobin Davis static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1236c9b443d4STobin Davis 				    struct snd_ctl_elem_value *ucontrol)
1237c9b443d4STobin Davis {
1238c9b443d4STobin Davis 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1239c9b443d4STobin Davis 	struct conexant_spec *spec = codec->spec;
124082f30040STobin Davis 	unsigned int bits;
1241c9b443d4STobin Davis 
124282f30040STobin Davis 	if (!cxt_eapd_put(kcontrol, ucontrol))
1243c9b443d4STobin Davis 		return 0;
1244c9b443d4STobin Davis 
124582f30040STobin Davis 	/* toggle internal speakers mute depending of presence of
124682f30040STobin Davis 	 * the headphone jack
124782f30040STobin Davis 	 */
124847fd830aSTakashi Iwai 	bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
12493b7523fcSTakashi Iwai 	/* NOTE: Conexat codec needs the index for *OUTPUT* amp of
12503b7523fcSTakashi Iwai 	 * pin widgets unlike other codecs.  In this case, we need to
12513b7523fcSTakashi Iwai 	 * set index 0x01 for the volume from the mixer amp 0x19.
12523b7523fcSTakashi Iwai 	 */
12535d75bc55SGregorio Guidi 	snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
125447fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
125547fd830aSTakashi Iwai 	bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
125647fd830aSTakashi Iwai 	snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
125747fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
1258c9b443d4STobin Davis 	return 1;
1259c9b443d4STobin Davis }
1260c9b443d4STobin Davis 
1261c9b443d4STobin Davis /* mute internal speaker if HP is plugged */
1262c9b443d4STobin Davis static void cxt5047_hp_automute(struct hda_codec *codec)
1263c9b443d4STobin Davis {
126482f30040STobin Davis 	struct conexant_spec *spec = codec->spec;
1265dd87da1cSTobin Davis 	unsigned int bits;
1266c9b443d4STobin Davis 
1267d56757abSTakashi Iwai 	spec->hp_present = snd_hda_jack_detect(codec, 0x13);
1268dd87da1cSTobin Davis 
126947fd830aSTakashi Iwai 	bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
12703b7523fcSTakashi Iwai 	/* See the note in cxt5047_hp_master_sw_put */
12715d75bc55SGregorio Guidi 	snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
127247fd830aSTakashi Iwai 				 HDA_AMP_MUTE, bits);
1273c9b443d4STobin Davis }
1274c9b443d4STobin Davis 
1275c9b443d4STobin Davis /* toggle input of built-in and mic jack appropriately */
1276c9b443d4STobin Davis static void cxt5047_hp_automic(struct hda_codec *codec)
1277c9b443d4STobin Davis {
127834cbe3a6STakashi Iwai 	static const struct hda_verb mic_jack_on[] = {
12799f113e0eSMarc Boucher 		{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12809f113e0eSMarc Boucher 		{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1281c9b443d4STobin Davis 		{}
1282c9b443d4STobin Davis 	};
128334cbe3a6STakashi Iwai 	static const struct hda_verb mic_jack_off[] = {
12849f113e0eSMarc Boucher 		{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12859f113e0eSMarc Boucher 		{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1286c9b443d4STobin Davis 		{}
1287c9b443d4STobin Davis 	};
1288c9b443d4STobin Davis 	unsigned int present;
1289c9b443d4STobin Davis 
1290d56757abSTakashi Iwai 	present = snd_hda_jack_detect(codec, 0x15);
1291c9b443d4STobin Davis 	if (present)
1292c9b443d4STobin Davis 		snd_hda_sequence_write(codec, mic_jack_on);
1293c9b443d4STobin Davis 	else
1294c9b443d4STobin Davis 		snd_hda_sequence_write(codec, mic_jack_off);
1295c9b443d4STobin Davis }
1296c9b443d4STobin Davis 
1297c9b443d4STobin Davis /* unsolicited event for HP jack sensing */
1298c9b443d4STobin Davis static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1299c9b443d4STobin Davis 				  unsigned int res)
1300c9b443d4STobin Davis {
13019f113e0eSMarc Boucher 	switch (res >> 26) {
1302c9b443d4STobin Davis 	case CONEXANT_HP_EVENT:
1303c9b443d4STobin Davis 		cxt5047_hp_automute(codec);
1304c9b443d4STobin Davis 		break;
1305c9b443d4STobin Davis 	case CONEXANT_MIC_EVENT:
1306c9b443d4STobin Davis 		cxt5047_hp_automic(codec);
1307c9b443d4STobin Davis 		break;
1308c9b443d4STobin Davis 	}
1309c9b443d4STobin Davis }
1310c9b443d4STobin Davis 
131134cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5047_base_mixers[] = {
1312df481e41STakashi Iwai 	HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1313df481e41STakashi Iwai 	HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
13145f99f86aSDavid Henningsson 	HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
1315c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1316c9b443d4STobin Davis 	HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1317c9b443d4STobin Davis 	HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1318c9b443d4STobin Davis 	HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
131982f30040STobin Davis 	{
132082f30040STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
132182f30040STobin Davis 		.name = "Master Playback Switch",
132282f30040STobin Davis 		.info = cxt_eapd_info,
132382f30040STobin Davis 		.get = cxt_eapd_get,
1324c9b443d4STobin Davis 		.put = cxt5047_hp_master_sw_put,
1325c9b443d4STobin Davis 		.private_value = 0x13,
1326c9b443d4STobin Davis 	},
1327c9b443d4STobin Davis 
1328c9b443d4STobin Davis 	{}
1329c9b443d4STobin Davis };
1330c9b443d4STobin Davis 
133134cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
13323b7523fcSTakashi Iwai 	/* See the note in cxt5047_hp_master_sw_put */
13335d75bc55SGregorio Guidi 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
1334df481e41STakashi Iwai 	HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1335df481e41STakashi Iwai 	{}
1336df481e41STakashi Iwai };
1337df481e41STakashi Iwai 
133834cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
1339c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1340c9b443d4STobin Davis 	{ } /* end */
1341c9b443d4STobin Davis };
1342c9b443d4STobin Davis 
134334cbe3a6STakashi Iwai static const struct hda_verb cxt5047_init_verbs[] = {
1344c9b443d4STobin Davis 	/* Line in, Mic, Built-in Mic */
1345c9b443d4STobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1346c9b443d4STobin Davis 	{0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1347c9b443d4STobin Davis 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
13487f29673bSTobin Davis 	/* HP, Speaker  */
1349b7589cebSTobin Davis 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
13505b3a7440STakashi Iwai 	{0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
13515b3a7440STakashi Iwai 	{0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
13527f29673bSTobin Davis 	/* Record selector: Mic */
13537f29673bSTobin Davis 	{0x12, AC_VERB_SET_CONNECT_SEL,0x03},
13547f29673bSTobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE,
13557f29673bSTobin Davis 	 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
13567f29673bSTobin Davis 	{0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
1357c9b443d4STobin Davis 	{0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1358c9b443d4STobin Davis 	 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1359c9b443d4STobin Davis 	{0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1360c9b443d4STobin Davis 	 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
1361c9b443d4STobin Davis 	/* SPDIF route: PCM */
1362c9b443d4STobin Davis 	{ 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
136382f30040STobin Davis 	/* Enable unsolicited events */
136482f30040STobin Davis 	{0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
136582f30040STobin Davis 	{0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
1366c9b443d4STobin Davis 	{ } /* end */
1367c9b443d4STobin Davis };
1368c9b443d4STobin Davis 
1369c9b443d4STobin Davis /* configuration for Toshiba Laptops */
137034cbe3a6STakashi Iwai static const struct hda_verb cxt5047_toshiba_init_verbs[] = {
13713b628867STakashi Iwai 	{0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
1372c9b443d4STobin Davis 	{}
1373c9b443d4STobin Davis };
1374c9b443d4STobin Davis 
1375c9b443d4STobin Davis /* Test configuration for debugging, modelled after the ALC260 test
1376c9b443d4STobin Davis  * configuration.
1377c9b443d4STobin Davis  */
1378c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
137934cbe3a6STakashi Iwai static const struct hda_input_mux cxt5047_test_capture_source = {
138082f30040STobin Davis 	.num_items = 4,
1381c9b443d4STobin Davis 	.items = {
138282f30040STobin Davis 		{ "LINE1 pin", 0x0 },
138382f30040STobin Davis 		{ "MIC1 pin", 0x1 },
138482f30040STobin Davis 		{ "MIC2 pin", 0x2 },
138582f30040STobin Davis 		{ "CD pin", 0x3 },
1386c9b443d4STobin Davis         },
1387c9b443d4STobin Davis };
1388c9b443d4STobin Davis 
138934cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5047_test_mixer[] = {
1390c9b443d4STobin Davis 
1391c9b443d4STobin Davis 	/* Output only controls */
139282f30040STobin Davis 	HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
139382f30040STobin Davis 	HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
139482f30040STobin Davis 	HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
139582f30040STobin Davis 	HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
1396c9b443d4STobin Davis 	HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1397c9b443d4STobin Davis 	HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1398c9b443d4STobin Davis 	HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1399c9b443d4STobin Davis 	HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
140082f30040STobin Davis 	HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
140182f30040STobin Davis 	HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
140282f30040STobin Davis 	HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
140382f30040STobin Davis 	HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
1404c9b443d4STobin Davis 
1405c9b443d4STobin Davis 	/* Modes for retasking pin widgets */
1406c9b443d4STobin Davis 	CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1407c9b443d4STobin Davis 	CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1408c9b443d4STobin Davis 
140982f30040STobin Davis 	/* EAPD Switch Control */
141082f30040STobin Davis 	CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
141182f30040STobin Davis 
1412c9b443d4STobin Davis 	/* Loopback mixer controls */
141382f30040STobin Davis 	HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
141482f30040STobin Davis 	HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
141582f30040STobin Davis 	HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
141682f30040STobin Davis 	HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
141782f30040STobin Davis 	HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
141882f30040STobin Davis 	HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
141982f30040STobin Davis 	HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
142082f30040STobin Davis 	HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
1421c9b443d4STobin Davis 
142282f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
142382f30040STobin Davis 	HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
142482f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
142582f30040STobin Davis 	HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
142682f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
142782f30040STobin Davis 	HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
142882f30040STobin Davis 	HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
142982f30040STobin Davis 	HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
1430c9b443d4STobin Davis 	{
1431c9b443d4STobin Davis 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1432c9b443d4STobin Davis 		.name = "Input Source",
1433c9b443d4STobin Davis 		.info = conexant_mux_enum_info,
1434c9b443d4STobin Davis 		.get = conexant_mux_enum_get,
1435c9b443d4STobin Davis 		.put = conexant_mux_enum_put,
1436c9b443d4STobin Davis 	},
1437854206b0STakashi Iwai 	HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
14389f113e0eSMarc Boucher 
1439c9b443d4STobin Davis 	{ } /* end */
1440c9b443d4STobin Davis };
1441c9b443d4STobin Davis 
144234cbe3a6STakashi Iwai static const struct hda_verb cxt5047_test_init_verbs[] = {
1443c9b443d4STobin Davis 	/* Enable retasking pins as output, initially without power amp */
1444c9b443d4STobin Davis 	{0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1445c9b443d4STobin Davis 	{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1446c9b443d4STobin Davis 	{0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1447c9b443d4STobin Davis 
1448c9b443d4STobin Davis 	/* Disable digital (SPDIF) pins initially, but users can enable
1449c9b443d4STobin Davis 	 * them via a mixer switch.  In the case of SPDIF-out, this initverb
1450c9b443d4STobin Davis 	 * payload also sets the generation to 0, output to be in "consumer"
1451c9b443d4STobin Davis 	 * PCM format, copyright asserted, no pre-emphasis and no validity
1452c9b443d4STobin Davis 	 * control.
1453c9b443d4STobin Davis 	 */
1454c9b443d4STobin Davis 	{0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1455c9b443d4STobin Davis 
1456c9b443d4STobin Davis 	/* Ensure mic1, mic2, line1 pin widgets take input from the
1457c9b443d4STobin Davis 	 * OUT1 sum bus when acting as an output.
1458c9b443d4STobin Davis 	 */
1459c9b443d4STobin Davis 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1460c9b443d4STobin Davis 	{0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1461c9b443d4STobin Davis 
1462c9b443d4STobin Davis 	/* Start with output sum widgets muted and their output gains at min */
1463c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1464c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1465c9b443d4STobin Davis 
1466c9b443d4STobin Davis 	/* Unmute retasking pin widget output buffers since the default
1467c9b443d4STobin Davis 	 * state appears to be output.  As the pin mode is changed by the
1468c9b443d4STobin Davis 	 * user the pin mode control will take care of enabling the pin's
1469c9b443d4STobin Davis 	 * input/output buffers as needed.
1470c9b443d4STobin Davis 	 */
1471c9b443d4STobin Davis 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1472c9b443d4STobin Davis 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1473c9b443d4STobin Davis 	{0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1474c9b443d4STobin Davis 
1475c9b443d4STobin Davis 	/* Mute capture amp left and right */
1476c9b443d4STobin Davis 	{0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1477c9b443d4STobin Davis 
1478c9b443d4STobin Davis 	/* Set ADC connection select to match default mixer setting (mic1
1479c9b443d4STobin Davis 	 * pin)
1480c9b443d4STobin Davis 	 */
1481c9b443d4STobin Davis 	{0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1482c9b443d4STobin Davis 
1483c9b443d4STobin Davis 	/* Mute all inputs to mixer widget (even unconnected ones) */
1484c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1485c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1486c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1487c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1488c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1489c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1490c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1491c9b443d4STobin Davis 	{0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1492c9b443d4STobin Davis 
1493c9b443d4STobin Davis 	{ }
1494c9b443d4STobin Davis };
1495c9b443d4STobin Davis #endif
1496c9b443d4STobin Davis 
1497c9b443d4STobin Davis 
1498c9b443d4STobin Davis /* initialize jack-sensing, too */
1499c9b443d4STobin Davis static int cxt5047_hp_init(struct hda_codec *codec)
1500c9b443d4STobin Davis {
1501c9b443d4STobin Davis 	conexant_init(codec);
1502c9b443d4STobin Davis 	cxt5047_hp_automute(codec);
1503c9b443d4STobin Davis 	return 0;
1504c9b443d4STobin Davis }
1505c9b443d4STobin Davis 
1506c9b443d4STobin Davis 
1507c9b443d4STobin Davis enum {
1508f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP,		/* Laptops w/o EAPD support */
1509f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP_HP,	/* Some HP laptops */
1510f5fcc13cSTakashi Iwai 	CXT5047_LAPTOP_EAPD,	/* Laptops with EAPD support */
1511c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1512c9b443d4STobin Davis 	CXT5047_TEST,
1513c9b443d4STobin Davis #endif
1514f5fcc13cSTakashi Iwai 	CXT5047_MODELS
1515c9b443d4STobin Davis };
1516c9b443d4STobin Davis 
1517ea734963STakashi Iwai static const char * const cxt5047_models[CXT5047_MODELS] = {
1518f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP]	= "laptop",
1519f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP_HP]	= "laptop-hp",
1520f5fcc13cSTakashi Iwai 	[CXT5047_LAPTOP_EAPD]	= "laptop-eapd",
1521c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1522f5fcc13cSTakashi Iwai 	[CXT5047_TEST]		= "test",
1523c9b443d4STobin Davis #endif
1524f5fcc13cSTakashi Iwai };
1525c9b443d4STobin Davis 
152634cbe3a6STakashi Iwai static const struct snd_pci_quirk cxt5047_cfg_tbl[] = {
1527ac3e3741STakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
1528dea0a509STakashi Iwai 	SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1529dea0a509STakashi Iwai 			   CXT5047_LAPTOP),
1530f5fcc13cSTakashi Iwai 	SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
1531c9b443d4STobin Davis 	{}
1532c9b443d4STobin Davis };
1533c9b443d4STobin Davis 
1534c9b443d4STobin Davis static int patch_cxt5047(struct hda_codec *codec)
1535c9b443d4STobin Davis {
1536c9b443d4STobin Davis 	struct conexant_spec *spec;
1537c9b443d4STobin Davis 	int board_config;
1538c9b443d4STobin Davis 
1539c9b443d4STobin Davis 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1540c9b443d4STobin Davis 	if (!spec)
1541c9b443d4STobin Davis 		return -ENOMEM;
1542c9b443d4STobin Davis 	codec->spec = spec;
15439421f954STakashi Iwai 	codec->pin_amp_workaround = 1;
1544c9b443d4STobin Davis 
1545c9b443d4STobin Davis 	spec->multiout.max_channels = 2;
1546c9b443d4STobin Davis 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1547c9b443d4STobin Davis 	spec->multiout.dac_nids = cxt5047_dac_nids;
1548c9b443d4STobin Davis 	spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1549c9b443d4STobin Davis 	spec->num_adc_nids = 1;
1550c9b443d4STobin Davis 	spec->adc_nids = cxt5047_adc_nids;
1551c9b443d4STobin Davis 	spec->capsrc_nids = cxt5047_capsrc_nids;
1552c9b443d4STobin Davis 	spec->num_mixers = 1;
1553df481e41STakashi Iwai 	spec->mixers[0] = cxt5047_base_mixers;
1554c9b443d4STobin Davis 	spec->num_init_verbs = 1;
1555c9b443d4STobin Davis 	spec->init_verbs[0] = cxt5047_init_verbs;
1556c9b443d4STobin Davis 	spec->spdif_route = 0;
15575cd57529STobin Davis 	spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
15585cd57529STobin Davis 	spec->channel_mode = cxt5047_modes,
1559c9b443d4STobin Davis 
1560c9b443d4STobin Davis 	codec->patch_ops = conexant_patch_ops;
1561c9b443d4STobin Davis 
1562f5fcc13cSTakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1563f5fcc13cSTakashi Iwai 						  cxt5047_models,
1564f5fcc13cSTakashi Iwai 						  cxt5047_cfg_tbl);
1565c9b443d4STobin Davis 	switch (board_config) {
1566c9b443d4STobin Davis 	case CXT5047_LAPTOP:
1567df481e41STakashi Iwai 		spec->num_mixers = 2;
1568df481e41STakashi Iwai 		spec->mixers[1] = cxt5047_hp_spk_mixers;
1569df481e41STakashi Iwai 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1570c9b443d4STobin Davis 		break;
1571c9b443d4STobin Davis 	case CXT5047_LAPTOP_HP:
1572df481e41STakashi Iwai 		spec->num_mixers = 2;
1573df481e41STakashi Iwai 		spec->mixers[1] = cxt5047_hp_only_mixers;
1574fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1575c9b443d4STobin Davis 		codec->patch_ops.init = cxt5047_hp_init;
1576c9b443d4STobin Davis 		break;
1577c9b443d4STobin Davis 	case CXT5047_LAPTOP_EAPD:
157882f30040STobin Davis 		spec->input_mux = &cxt5047_toshiba_capture_source;
1579df481e41STakashi Iwai 		spec->num_mixers = 2;
1580df481e41STakashi Iwai 		spec->mixers[1] = cxt5047_hp_spk_mixers;
1581c9b443d4STobin Davis 		spec->num_init_verbs = 2;
1582c9b443d4STobin Davis 		spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
1583fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1584c9b443d4STobin Davis 		break;
1585c9b443d4STobin Davis #ifdef CONFIG_SND_DEBUG
1586c9b443d4STobin Davis 	case CXT5047_TEST:
1587c9b443d4STobin Davis 		spec->input_mux = &cxt5047_test_capture_source;
1588c9b443d4STobin Davis 		spec->mixers[0] = cxt5047_test_mixer;
1589c9b443d4STobin Davis 		spec->init_verbs[0] = cxt5047_test_init_verbs;
1590fb3409e7STobin Davis 		codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1591c9b443d4STobin Davis #endif
1592c9b443d4STobin Davis 	}
1593dd5746a8STakashi Iwai 	spec->vmaster_nid = 0x13;
1594025f206cSDaniel T Chen 
1595025f206cSDaniel T Chen 	switch (codec->subsystem_id >> 16) {
1596025f206cSDaniel T Chen 	case 0x103c:
1597025f206cSDaniel T Chen 		/* HP laptops have really bad sound over 0 dB on NID 0x10.
1598025f206cSDaniel T Chen 		 * Fix max PCM level to 0 dB (originally it has 0x1e steps
1599025f206cSDaniel T Chen 		 * with 0 dB offset 0x17)
1600025f206cSDaniel T Chen 		 */
1601025f206cSDaniel T Chen 		snd_hda_override_amp_caps(codec, 0x10, HDA_INPUT,
1602025f206cSDaniel T Chen 					  (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
1603025f206cSDaniel T Chen 					  (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1604025f206cSDaniel T Chen 					  (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1605025f206cSDaniel T Chen 					  (1 << AC_AMPCAP_MUTE_SHIFT));
1606025f206cSDaniel T Chen 		break;
1607025f206cSDaniel T Chen 	}
1608025f206cSDaniel T Chen 
1609c9b443d4STobin Davis 	return 0;
1610c9b443d4STobin Davis }
1611c9b443d4STobin Davis 
1612461e2c78STakashi Iwai /* Conexant 5051 specific */
161334cbe3a6STakashi Iwai static const hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
161434cbe3a6STakashi Iwai static const hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
1615461e2c78STakashi Iwai 
161634cbe3a6STakashi Iwai static const struct hda_channel_mode cxt5051_modes[1] = {
1617461e2c78STakashi Iwai 	{ 2, NULL },
1618461e2c78STakashi Iwai };
1619461e2c78STakashi Iwai 
1620461e2c78STakashi Iwai static void cxt5051_update_speaker(struct hda_codec *codec)
1621461e2c78STakashi Iwai {
1622461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1623461e2c78STakashi Iwai 	unsigned int pinctl;
162423d2df5bSTakashi Iwai 	/* headphone pin */
162523d2df5bSTakashi Iwai 	pinctl = (spec->hp_present && spec->cur_eapd) ? PIN_HP : 0;
162623d2df5bSTakashi Iwai 	snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
162723d2df5bSTakashi Iwai 			    pinctl);
162823d2df5bSTakashi Iwai 	/* speaker pin */
1629461e2c78STakashi Iwai 	pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1630461e2c78STakashi Iwai 	snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1631461e2c78STakashi Iwai 			    pinctl);
1632f7154de2SHerton Ronaldo Krzesinski 	/* on ideapad there is an aditional speaker (subwoofer) to mute */
1633f7154de2SHerton Ronaldo Krzesinski 	if (spec->ideapad)
1634f7154de2SHerton Ronaldo Krzesinski 		snd_hda_codec_write(codec, 0x1b, 0,
1635f7154de2SHerton Ronaldo Krzesinski 				    AC_VERB_SET_PIN_WIDGET_CONTROL,
1636f7154de2SHerton Ronaldo Krzesinski 				    pinctl);
1637461e2c78STakashi Iwai }
1638461e2c78STakashi Iwai 
1639461e2c78STakashi Iwai /* turn on/off EAPD (+ mute HP) as a master switch */
1640461e2c78STakashi Iwai static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1641461e2c78STakashi Iwai 				    struct snd_ctl_elem_value *ucontrol)
1642461e2c78STakashi Iwai {
1643461e2c78STakashi Iwai 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1644461e2c78STakashi Iwai 
1645461e2c78STakashi Iwai 	if (!cxt_eapd_put(kcontrol, ucontrol))
1646461e2c78STakashi Iwai 		return 0;
1647461e2c78STakashi Iwai 	cxt5051_update_speaker(codec);
1648461e2c78STakashi Iwai 	return 1;
1649461e2c78STakashi Iwai }
1650461e2c78STakashi Iwai 
1651461e2c78STakashi Iwai /* toggle input of built-in and mic jack appropriately */
1652461e2c78STakashi Iwai static void cxt5051_portb_automic(struct hda_codec *codec)
1653461e2c78STakashi Iwai {
165479d7d533STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1655461e2c78STakashi Iwai 	unsigned int present;
1656461e2c78STakashi Iwai 
1657faddaa5dSTakashi Iwai 	if (!(spec->auto_mic & AUTO_MIC_PORTB))
165879d7d533STakashi Iwai 		return;
1659d56757abSTakashi Iwai 	present = snd_hda_jack_detect(codec, 0x17);
1660461e2c78STakashi Iwai 	snd_hda_codec_write(codec, 0x14, 0,
1661461e2c78STakashi Iwai 			    AC_VERB_SET_CONNECT_SEL,
1662461e2c78STakashi Iwai 			    present ? 0x01 : 0x00);
1663461e2c78STakashi Iwai }
1664461e2c78STakashi Iwai 
1665461e2c78STakashi Iwai /* switch the current ADC according to the jack state */
1666461e2c78STakashi Iwai static void cxt5051_portc_automic(struct hda_codec *codec)
1667461e2c78STakashi Iwai {
1668461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1669461e2c78STakashi Iwai 	unsigned int present;
1670461e2c78STakashi Iwai 	hda_nid_t new_adc;
1671461e2c78STakashi Iwai 
1672faddaa5dSTakashi Iwai 	if (!(spec->auto_mic & AUTO_MIC_PORTC))
167379d7d533STakashi Iwai 		return;
1674d56757abSTakashi Iwai 	present = snd_hda_jack_detect(codec, 0x18);
1675461e2c78STakashi Iwai 	if (present)
1676461e2c78STakashi Iwai 		spec->cur_adc_idx = 1;
1677461e2c78STakashi Iwai 	else
1678461e2c78STakashi Iwai 		spec->cur_adc_idx = 0;
1679461e2c78STakashi Iwai 	new_adc = spec->adc_nids[spec->cur_adc_idx];
1680461e2c78STakashi Iwai 	if (spec->cur_adc && spec->cur_adc != new_adc) {
1681461e2c78STakashi Iwai 		/* stream is running, let's swap the current ADC */
1682f0cea797STakashi Iwai 		__snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
1683461e2c78STakashi Iwai 		spec->cur_adc = new_adc;
1684461e2c78STakashi Iwai 		snd_hda_codec_setup_stream(codec, new_adc,
1685461e2c78STakashi Iwai 					   spec->cur_adc_stream_tag, 0,
1686461e2c78STakashi Iwai 					   spec->cur_adc_format);
1687461e2c78STakashi Iwai 	}
1688461e2c78STakashi Iwai }
1689461e2c78STakashi Iwai 
1690461e2c78STakashi Iwai /* mute internal speaker if HP is plugged */
1691461e2c78STakashi Iwai static void cxt5051_hp_automute(struct hda_codec *codec)
1692461e2c78STakashi Iwai {
1693461e2c78STakashi Iwai 	struct conexant_spec *spec = codec->spec;
1694461e2c78STakashi Iwai 
1695d56757abSTakashi Iwai 	spec->hp_present = snd_hda_jack_detect(codec, 0x16);
1696461e2c78STakashi Iwai 	cxt5051_update_speaker(codec);
1697461e2c78STakashi Iwai }
1698461e2c78STakashi Iwai 
1699461e2c78STakashi Iwai /* unsolicited event for HP jack sensing */
1700461e2c78STakashi Iwai static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1701461e2c78STakashi Iwai 				   unsigned int res)
1702461e2c78STakashi Iwai {
1703acf26c0cSUlrich Dangel 	int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
1704461e2c78STakashi Iwai 	switch (res >> 26) {
1705461e2c78STakashi Iwai 	case CONEXANT_HP_EVENT:
1706461e2c78STakashi Iwai 		cxt5051_hp_automute(codec);
1707461e2c78STakashi Iwai 		break;
1708461e2c78STakashi Iwai 	case CXT5051_PORTB_EVENT:
1709461e2c78STakashi Iwai 		cxt5051_portb_automic(codec);
1710461e2c78STakashi Iwai 		break;
1711461e2c78STakashi Iwai 	case CXT5051_PORTC_EVENT:
1712461e2c78STakashi Iwai 		cxt5051_portc_automic(codec);
1713461e2c78STakashi Iwai 		break;
1714461e2c78STakashi Iwai 	}
1715cd372fb3STakashi Iwai 	snd_hda_input_jack_report(codec, nid);
1716461e2c78STakashi Iwai }
1717461e2c78STakashi Iwai 
171834cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5051_playback_mixers[] = {
1719461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1720461e2c78STakashi Iwai 	{
1721461e2c78STakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1722461e2c78STakashi Iwai 		.name = "Master Playback Switch",
1723461e2c78STakashi Iwai 		.info = cxt_eapd_info,
1724461e2c78STakashi Iwai 		.get = cxt_eapd_get,
1725461e2c78STakashi Iwai 		.put = cxt5051_hp_master_sw_put,
1726461e2c78STakashi Iwai 		.private_value = 0x1a,
1727461e2c78STakashi Iwai 	},
17282c7a3fb3STakashi Iwai 	{}
17292c7a3fb3STakashi Iwai };
1730461e2c78STakashi Iwai 
173134cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5051_capture_mixers[] = {
17322c7a3fb3STakashi Iwai 	HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
17332c7a3fb3STakashi Iwai 	HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
17348607f7c4SDavid Henningsson 	HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT),
17358607f7c4SDavid Henningsson 	HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT),
17362c7a3fb3STakashi Iwai 	HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
17372c7a3fb3STakashi Iwai 	HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1738461e2c78STakashi Iwai 	{}
1739461e2c78STakashi Iwai };
1740461e2c78STakashi Iwai 
174134cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1742461e2c78STakashi Iwai 	HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1743461e2c78STakashi Iwai 	HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
17448607f7c4SDavid Henningsson 	HDA_CODEC_VOLUME("Mic Volume", 0x15, 0x00, HDA_INPUT),
17458607f7c4SDavid Henningsson 	HDA_CODEC_MUTE("Mic Switch", 0x15, 0x00, HDA_INPUT),
1746461e2c78STakashi Iwai 	{}
1747461e2c78STakashi Iwai };
1748461e2c78STakashi Iwai 
174934cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
17504e4ac600STakashi Iwai 	HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x00, HDA_INPUT),
17514e4ac600STakashi Iwai 	HDA_CODEC_MUTE("Capture Switch", 0x14, 0x00, HDA_INPUT),
175279d7d533STakashi Iwai 	{}
175379d7d533STakashi Iwai };
175479d7d533STakashi Iwai 
175534cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5051_f700_mixers[] = {
17565f6c3de6STakashi Iwai 	HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x01, HDA_INPUT),
17575f6c3de6STakashi Iwai 	HDA_CODEC_MUTE("Capture Switch", 0x14, 0x01, HDA_INPUT),
1758cd9d95a5SKen Prox 	{}
1759cd9d95a5SKen Prox };
1760cd9d95a5SKen Prox 
176134cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5051_toshiba_mixers[] = {
1762faddaa5dSTakashi Iwai 	HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1763faddaa5dSTakashi Iwai 	HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
17648607f7c4SDavid Henningsson 	HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT),
17658607f7c4SDavid Henningsson 	HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT),
1766faddaa5dSTakashi Iwai 	{}
1767faddaa5dSTakashi Iwai };
1768faddaa5dSTakashi Iwai 
176934cbe3a6STakashi Iwai static const struct hda_verb cxt5051_init_verbs[] = {
1770461e2c78STakashi Iwai 	/* Line in, Mic */
1771461e2c78STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1772461e2c78STakashi Iwai 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1773461e2c78STakashi Iwai 	{0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1774461e2c78STakashi Iwai 	{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1775461e2c78STakashi Iwai 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1776461e2c78STakashi Iwai 	{0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1777461e2c78STakashi Iwai 	/* SPK  */
1778461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1779461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1780461e2c78STakashi Iwai 	/* HP, Amp  */
1781461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1782461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1783461e2c78STakashi Iwai 	/* DAC1 */
1784461e2c78STakashi Iwai 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
178528c4edb7SDavid Henningsson 	/* Record selector: Internal mic */
1786461e2c78STakashi Iwai 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1787461e2c78STakashi Iwai 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1788461e2c78STakashi Iwai 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1789461e2c78STakashi Iwai 	/* SPDIF route: PCM */
17901965c441SPierre-Louis Bossart 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1791461e2c78STakashi Iwai 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1792461e2c78STakashi Iwai 	/* EAPD */
1793461e2c78STakashi Iwai 	{0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1794461e2c78STakashi Iwai 	{0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1795461e2c78STakashi Iwai 	{ } /* end */
1796461e2c78STakashi Iwai };
1797461e2c78STakashi Iwai 
179834cbe3a6STakashi Iwai static const struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
179979d7d533STakashi Iwai 	/* Line in, Mic */
180079d7d533STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
180179d7d533STakashi Iwai 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
180279d7d533STakashi Iwai 	{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
180379d7d533STakashi Iwai 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
180479d7d533STakashi Iwai 	/* SPK  */
180579d7d533STakashi Iwai 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
180679d7d533STakashi Iwai 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
180779d7d533STakashi Iwai 	/* HP, Amp  */
180879d7d533STakashi Iwai 	{0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
180979d7d533STakashi Iwai 	{0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
181079d7d533STakashi Iwai 	/* DAC1 */
181179d7d533STakashi Iwai 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
181228c4edb7SDavid Henningsson 	/* Record selector: Internal mic */
181379d7d533STakashi Iwai 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
181479d7d533STakashi Iwai 	{0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
181579d7d533STakashi Iwai 	/* SPDIF route: PCM */
181679d7d533STakashi Iwai 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
181779d7d533STakashi Iwai 	/* EAPD */
181879d7d533STakashi Iwai 	{0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
181979d7d533STakashi Iwai 	{0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
182079d7d533STakashi Iwai 	{ } /* end */
182179d7d533STakashi Iwai };
182279d7d533STakashi Iwai 
182334cbe3a6STakashi Iwai static const struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
182427e08988SAristeu Sergio Rozanski Filho 	/* Line in, Mic */
182527e08988SAristeu Sergio Rozanski Filho 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
182627e08988SAristeu Sergio Rozanski Filho 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
182727e08988SAristeu Sergio Rozanski Filho 	{0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
182827e08988SAristeu Sergio Rozanski Filho 	{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
182927e08988SAristeu Sergio Rozanski Filho 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
183027e08988SAristeu Sergio Rozanski Filho 	{0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
183127e08988SAristeu Sergio Rozanski Filho 	/* SPK  */
183227e08988SAristeu Sergio Rozanski Filho 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
183327e08988SAristeu Sergio Rozanski Filho 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
183427e08988SAristeu Sergio Rozanski Filho 	/* HP, Amp  */
183527e08988SAristeu Sergio Rozanski Filho 	{0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
183627e08988SAristeu Sergio Rozanski Filho 	{0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
183727e08988SAristeu Sergio Rozanski Filho 	/* Docking HP */
183827e08988SAristeu Sergio Rozanski Filho 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
183927e08988SAristeu Sergio Rozanski Filho 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00},
184027e08988SAristeu Sergio Rozanski Filho 	/* DAC1 */
184127e08988SAristeu Sergio Rozanski Filho 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
184228c4edb7SDavid Henningsson 	/* Record selector: Internal mic */
184327e08988SAristeu Sergio Rozanski Filho 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
184427e08988SAristeu Sergio Rozanski Filho 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
184527e08988SAristeu Sergio Rozanski Filho 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
184627e08988SAristeu Sergio Rozanski Filho 	/* SPDIF route: PCM */
18471965c441SPierre-Louis Bossart 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, /* needed for W500 Advanced Mini Dock 250410 */
184827e08988SAristeu Sergio Rozanski Filho 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
184927e08988SAristeu Sergio Rozanski Filho 	/* EAPD */
185027e08988SAristeu Sergio Rozanski Filho 	{0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
185127e08988SAristeu Sergio Rozanski Filho 	{0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
185227e08988SAristeu Sergio Rozanski Filho 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
185327e08988SAristeu Sergio Rozanski Filho 	{ } /* end */
185427e08988SAristeu Sergio Rozanski Filho };
185527e08988SAristeu Sergio Rozanski Filho 
185634cbe3a6STakashi Iwai static const struct hda_verb cxt5051_f700_init_verbs[] = {
1857cd9d95a5SKen Prox 	/* Line in, Mic */
185830ed7ed1STakashi Iwai 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1859cd9d95a5SKen Prox 	{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1860cd9d95a5SKen Prox 	{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1861cd9d95a5SKen Prox 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1862cd9d95a5SKen Prox 	/* SPK  */
1863cd9d95a5SKen Prox 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1864cd9d95a5SKen Prox 	{0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1865cd9d95a5SKen Prox 	/* HP, Amp  */
1866cd9d95a5SKen Prox 	{0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1867cd9d95a5SKen Prox 	{0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1868cd9d95a5SKen Prox 	/* DAC1 */
1869cd9d95a5SKen Prox 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
187028c4edb7SDavid Henningsson 	/* Record selector: Internal mic */
1871cd9d95a5SKen Prox 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1872cd9d95a5SKen Prox 	{0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1873cd9d95a5SKen Prox 	/* SPDIF route: PCM */
1874cd9d95a5SKen Prox 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1875cd9d95a5SKen Prox 	/* EAPD */
1876cd9d95a5SKen Prox 	{0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1877cd9d95a5SKen Prox 	{0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1878cd9d95a5SKen Prox 	{ } /* end */
1879cd9d95a5SKen Prox };
1880cd9d95a5SKen Prox 
18816953e552STakashi Iwai static void cxt5051_init_mic_port(struct hda_codec *codec, hda_nid_t nid,
18826953e552STakashi Iwai 				 unsigned int event)
18836953e552STakashi Iwai {
18846953e552STakashi Iwai 	snd_hda_codec_write(codec, nid, 0,
18856953e552STakashi Iwai 			    AC_VERB_SET_UNSOLICITED_ENABLE,
18866953e552STakashi Iwai 			    AC_USRSP_EN | event);
1887cd372fb3STakashi Iwai 	snd_hda_input_jack_add(codec, nid, SND_JACK_MICROPHONE, NULL);
1888cd372fb3STakashi Iwai 	snd_hda_input_jack_report(codec, nid);
18896953e552STakashi Iwai }
18906953e552STakashi Iwai 
189134cbe3a6STakashi Iwai static const struct hda_verb cxt5051_ideapad_init_verbs[] = {
1892f7154de2SHerton Ronaldo Krzesinski 	/* Subwoofer */
1893f7154de2SHerton Ronaldo Krzesinski 	{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1894f7154de2SHerton Ronaldo Krzesinski 	{0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1895f7154de2SHerton Ronaldo Krzesinski 	{ } /* end */
1896f7154de2SHerton Ronaldo Krzesinski };
1897f7154de2SHerton Ronaldo Krzesinski 
1898461e2c78STakashi Iwai /* initialize jack-sensing, too */
1899461e2c78STakashi Iwai static int cxt5051_init(struct hda_codec *codec)
1900461e2c78STakashi Iwai {
19016953e552STakashi Iwai 	struct conexant_spec *spec = codec->spec;
19026953e552STakashi Iwai 
1903461e2c78STakashi Iwai 	conexant_init(codec);
1904acf26c0cSUlrich Dangel 	conexant_init_jacks(codec);
19056953e552STakashi Iwai 
19066953e552STakashi Iwai 	if (spec->auto_mic & AUTO_MIC_PORTB)
19076953e552STakashi Iwai 		cxt5051_init_mic_port(codec, 0x17, CXT5051_PORTB_EVENT);
19086953e552STakashi Iwai 	if (spec->auto_mic & AUTO_MIC_PORTC)
19096953e552STakashi Iwai 		cxt5051_init_mic_port(codec, 0x18, CXT5051_PORTC_EVENT);
19106953e552STakashi Iwai 
1911461e2c78STakashi Iwai 	if (codec->patch_ops.unsol_event) {
1912461e2c78STakashi Iwai 		cxt5051_hp_automute(codec);
1913461e2c78STakashi Iwai 		cxt5051_portb_automic(codec);
1914461e2c78STakashi Iwai 		cxt5051_portc_automic(codec);
1915461e2c78STakashi Iwai 	}
1916461e2c78STakashi Iwai 	return 0;
1917461e2c78STakashi Iwai }
1918461e2c78STakashi Iwai 
1919461e2c78STakashi Iwai 
1920461e2c78STakashi Iwai enum {
1921461e2c78STakashi Iwai 	CXT5051_LAPTOP,	 /* Laptops w/ EAPD support */
1922461e2c78STakashi Iwai 	CXT5051_HP,	/* no docking */
192379d7d533STakashi Iwai 	CXT5051_HP_DV6736,	/* HP without mic switch */
19241965c441SPierre-Louis Bossart 	CXT5051_LENOVO_X200,	/* Lenovo X200 laptop, also used for Advanced Mini Dock 250410 */
1925cd9d95a5SKen Prox 	CXT5051_F700,       /* HP Compaq Presario F700 */
1926faddaa5dSTakashi Iwai 	CXT5051_TOSHIBA,	/* Toshiba M300 & co */
1927f7154de2SHerton Ronaldo Krzesinski 	CXT5051_IDEAPAD,	/* Lenovo IdeaPad Y430 */
19286764bcefSTakashi Iwai 	CXT5051_AUTO,		/* auto-parser */
1929461e2c78STakashi Iwai 	CXT5051_MODELS
1930461e2c78STakashi Iwai };
1931461e2c78STakashi Iwai 
1932ea734963STakashi Iwai static const char *const cxt5051_models[CXT5051_MODELS] = {
1933461e2c78STakashi Iwai 	[CXT5051_LAPTOP]	= "laptop",
1934461e2c78STakashi Iwai 	[CXT5051_HP]		= "hp",
193579d7d533STakashi Iwai 	[CXT5051_HP_DV6736]	= "hp-dv6736",
193627e08988SAristeu Sergio Rozanski Filho 	[CXT5051_LENOVO_X200]	= "lenovo-x200",
19375f6c3de6STakashi Iwai 	[CXT5051_F700]          = "hp-700",
1938faddaa5dSTakashi Iwai 	[CXT5051_TOSHIBA]	= "toshiba",
1939f7154de2SHerton Ronaldo Krzesinski 	[CXT5051_IDEAPAD]	= "ideapad",
19406764bcefSTakashi Iwai 	[CXT5051_AUTO]		= "auto",
1941461e2c78STakashi Iwai };
1942461e2c78STakashi Iwai 
194334cbe3a6STakashi Iwai static const struct snd_pci_quirk cxt5051_cfg_tbl[] = {
194479d7d533STakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
19451812e67cSTony Vroon 	SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
19465f6c3de6STakashi Iwai 	SND_PCI_QUIRK(0x103c, 0x30ea, "Compaq Presario F700", CXT5051_F700),
1947faddaa5dSTakashi Iwai 	SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba M30x", CXT5051_TOSHIBA),
1948461e2c78STakashi Iwai 	SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1949461e2c78STakashi Iwai 		      CXT5051_LAPTOP),
1950461e2c78STakashi Iwai 	SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
195127e08988SAristeu Sergio Rozanski Filho 	SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200),
1952f7154de2SHerton Ronaldo Krzesinski 	SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo IdeaPad", CXT5051_IDEAPAD),
1953461e2c78STakashi Iwai 	{}
1954461e2c78STakashi Iwai };
1955461e2c78STakashi Iwai 
1956461e2c78STakashi Iwai static int patch_cxt5051(struct hda_codec *codec)
1957461e2c78STakashi Iwai {
1958461e2c78STakashi Iwai 	struct conexant_spec *spec;
1959461e2c78STakashi Iwai 	int board_config;
1960461e2c78STakashi Iwai 
19616764bcefSTakashi Iwai 	board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
19626764bcefSTakashi Iwai 						  cxt5051_models,
19636764bcefSTakashi Iwai 						  cxt5051_cfg_tbl);
19646764bcefSTakashi Iwai 	if (board_config < 0)
19656764bcefSTakashi Iwai 		board_config = CXT5051_AUTO;
1966*1f8458a2STakashi Iwai 	if (board_config == CXT5051_AUTO)
19676764bcefSTakashi Iwai 		return patch_conexant_auto(codec);
19686764bcefSTakashi Iwai 
1969461e2c78STakashi Iwai 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1970461e2c78STakashi Iwai 	if (!spec)
1971461e2c78STakashi Iwai 		return -ENOMEM;
1972461e2c78STakashi Iwai 	codec->spec = spec;
19739421f954STakashi Iwai 	codec->pin_amp_workaround = 1;
1974461e2c78STakashi Iwai 
1975461e2c78STakashi Iwai 	codec->patch_ops = conexant_patch_ops;
1976461e2c78STakashi Iwai 	codec->patch_ops.init = cxt5051_init;
1977461e2c78STakashi Iwai 
1978461e2c78STakashi Iwai 	spec->multiout.max_channels = 2;
1979461e2c78STakashi Iwai 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1980461e2c78STakashi Iwai 	spec->multiout.dac_nids = cxt5051_dac_nids;
1981461e2c78STakashi Iwai 	spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1982461e2c78STakashi Iwai 	spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1983461e2c78STakashi Iwai 	spec->adc_nids = cxt5051_adc_nids;
19842c7a3fb3STakashi Iwai 	spec->num_mixers = 2;
19852c7a3fb3STakashi Iwai 	spec->mixers[0] = cxt5051_capture_mixers;
19862c7a3fb3STakashi Iwai 	spec->mixers[1] = cxt5051_playback_mixers;
1987461e2c78STakashi Iwai 	spec->num_init_verbs = 1;
1988461e2c78STakashi Iwai 	spec->init_verbs[0] = cxt5051_init_verbs;
1989461e2c78STakashi Iwai 	spec->spdif_route = 0;
1990461e2c78STakashi Iwai 	spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1991461e2c78STakashi Iwai 	spec->channel_mode = cxt5051_modes;
1992461e2c78STakashi Iwai 	spec->cur_adc = 0;
1993461e2c78STakashi Iwai 	spec->cur_adc_idx = 0;
1994461e2c78STakashi Iwai 
19953507e2a8STakashi Iwai 	set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
19963507e2a8STakashi Iwai 
199779d7d533STakashi Iwai 	codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
199879d7d533STakashi Iwai 
1999faddaa5dSTakashi Iwai 	spec->auto_mic = AUTO_MIC_PORTB | AUTO_MIC_PORTC;
2000461e2c78STakashi Iwai 	switch (board_config) {
2001461e2c78STakashi Iwai 	case CXT5051_HP:
2002461e2c78STakashi Iwai 		spec->mixers[0] = cxt5051_hp_mixers;
2003461e2c78STakashi Iwai 		break;
200479d7d533STakashi Iwai 	case CXT5051_HP_DV6736:
200579d7d533STakashi Iwai 		spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
200679d7d533STakashi Iwai 		spec->mixers[0] = cxt5051_hp_dv6736_mixers;
2007faddaa5dSTakashi Iwai 		spec->auto_mic = 0;
200879d7d533STakashi Iwai 		break;
200927e08988SAristeu Sergio Rozanski Filho 	case CXT5051_LENOVO_X200:
201027e08988SAristeu Sergio Rozanski Filho 		spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs;
2011607bc3e4SJerone Young 		/* Thinkpad X301 does not have S/PDIF wired and no ability
2012607bc3e4SJerone Young 		   to use a docking station. */
2013607bc3e4SJerone Young 		if (codec->subsystem_id == 0x17aa211f)
2014607bc3e4SJerone Young 			spec->multiout.dig_out_nid = 0;
2015461e2c78STakashi Iwai 		break;
2016cd9d95a5SKen Prox 	case CXT5051_F700:
2017cd9d95a5SKen Prox 		spec->init_verbs[0] = cxt5051_f700_init_verbs;
2018cd9d95a5SKen Prox 		spec->mixers[0] = cxt5051_f700_mixers;
2019faddaa5dSTakashi Iwai 		spec->auto_mic = 0;
2020faddaa5dSTakashi Iwai 		break;
2021faddaa5dSTakashi Iwai 	case CXT5051_TOSHIBA:
2022faddaa5dSTakashi Iwai 		spec->mixers[0] = cxt5051_toshiba_mixers;
2023faddaa5dSTakashi Iwai 		spec->auto_mic = AUTO_MIC_PORTB;
2024cd9d95a5SKen Prox 		break;
2025f7154de2SHerton Ronaldo Krzesinski 	case CXT5051_IDEAPAD:
2026f7154de2SHerton Ronaldo Krzesinski 		spec->init_verbs[spec->num_init_verbs++] =
2027f7154de2SHerton Ronaldo Krzesinski 			cxt5051_ideapad_init_verbs;
2028f7154de2SHerton Ronaldo Krzesinski 		spec->ideapad = 1;
2029f7154de2SHerton Ronaldo Krzesinski 		break;
2030461e2c78STakashi Iwai 	}
2031461e2c78STakashi Iwai 
20323507e2a8STakashi Iwai 	if (spec->beep_amp)
20333507e2a8STakashi Iwai 		snd_hda_attach_beep_device(codec, spec->beep_amp);
20343507e2a8STakashi Iwai 
2035461e2c78STakashi Iwai 	return 0;
2036461e2c78STakashi Iwai }
2037461e2c78STakashi Iwai 
20380fb67e98SDaniel Drake /* Conexant 5066 specific */
20390fb67e98SDaniel Drake 
204034cbe3a6STakashi Iwai static const hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
204134cbe3a6STakashi Iwai static const hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
204234cbe3a6STakashi Iwai static const hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
204334cbe3a6STakashi Iwai static const hda_nid_t cxt5066_digout_pin_nids[2] = { 0x20, 0x22 };
20440fb67e98SDaniel Drake 
2045dbaccc0cSDaniel Drake /* OLPC's microphone port is DC coupled for use with external sensors,
2046dbaccc0cSDaniel Drake  * therefore we use a 50% mic bias in order to center the input signal with
2047dbaccc0cSDaniel Drake  * the DC input range of the codec. */
2048dbaccc0cSDaniel Drake #define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
2049dbaccc0cSDaniel Drake 
205034cbe3a6STakashi Iwai static const struct hda_channel_mode cxt5066_modes[1] = {
20510fb67e98SDaniel Drake 	{ 2, NULL },
20520fb67e98SDaniel Drake };
20530fb67e98SDaniel Drake 
2054a3de8ab8STakashi Iwai #define HP_PRESENT_PORT_A	(1 << 0)
2055a3de8ab8STakashi Iwai #define HP_PRESENT_PORT_D	(1 << 1)
2056a3de8ab8STakashi Iwai #define hp_port_a_present(spec)	((spec)->hp_present & HP_PRESENT_PORT_A)
2057a3de8ab8STakashi Iwai #define hp_port_d_present(spec)	((spec)->hp_present & HP_PRESENT_PORT_D)
2058a3de8ab8STakashi Iwai 
20590fb67e98SDaniel Drake static void cxt5066_update_speaker(struct hda_codec *codec)
20600fb67e98SDaniel Drake {
20610fb67e98SDaniel Drake 	struct conexant_spec *spec = codec->spec;
20620fb67e98SDaniel Drake 	unsigned int pinctl;
20630fb67e98SDaniel Drake 
20643a253445SJohn Baboval 	snd_printdd("CXT5066: update speaker, hp_present=%d, cur_eapd=%d\n",
20653a253445SJohn Baboval 		    spec->hp_present, spec->cur_eapd);
20660fb67e98SDaniel Drake 
20670fb67e98SDaniel Drake 	/* Port A (HP) */
2068a3de8ab8STakashi Iwai 	pinctl = (hp_port_a_present(spec) && spec->cur_eapd) ? PIN_HP : 0;
20690fb67e98SDaniel Drake 	snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
20700fb67e98SDaniel Drake 			pinctl);
20710fb67e98SDaniel Drake 
20720fb67e98SDaniel Drake 	/* Port D (HP/LO) */
2073a3de8ab8STakashi Iwai 	pinctl = spec->cur_eapd ? spec->port_d_mode : 0;
2074a3de8ab8STakashi Iwai 	if (spec->dell_automute || spec->thinkpad) {
2075a3de8ab8STakashi Iwai 		/* Mute if Port A is connected */
2076a3de8ab8STakashi Iwai 		if (hp_port_a_present(spec))
20773a253445SJohn Baboval 			pinctl = 0;
20783a253445SJohn Baboval 	} else {
2079a3de8ab8STakashi Iwai 		/* Thinkpad/Dell doesn't give pin-D status */
2080a3de8ab8STakashi Iwai 		if (!hp_port_d_present(spec))
2081a3de8ab8STakashi Iwai 			pinctl = 0;
20823a253445SJohn Baboval 	}
20830fb67e98SDaniel Drake 	snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
20840fb67e98SDaniel Drake 			pinctl);
20850fb67e98SDaniel Drake 
20860fb67e98SDaniel Drake 	/* CLASS_D AMP */
20870fb67e98SDaniel Drake 	pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
20880fb67e98SDaniel Drake 	snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
20890fb67e98SDaniel Drake 			pinctl);
20900fb67e98SDaniel Drake }
20910fb67e98SDaniel Drake 
20920fb67e98SDaniel Drake /* turn on/off EAPD (+ mute HP) as a master switch */
20930fb67e98SDaniel Drake static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
20940fb67e98SDaniel Drake 				    struct snd_ctl_elem_value *ucontrol)
20950fb67e98SDaniel Drake {
20960fb67e98SDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
20970fb67e98SDaniel Drake 
20980fb67e98SDaniel Drake 	if (!cxt_eapd_put(kcontrol, ucontrol))
20990fb67e98SDaniel Drake 		return 0;
21000fb67e98SDaniel Drake 
21010fb67e98SDaniel Drake 	cxt5066_update_speaker(codec);
21020fb67e98SDaniel Drake 	return 1;
21030fb67e98SDaniel Drake }
21040fb67e98SDaniel Drake 
2105c4cfe66cSDaniel Drake static const struct hda_input_mux cxt5066_olpc_dc_bias = {
2106c4cfe66cSDaniel Drake 	.num_items = 3,
2107c4cfe66cSDaniel Drake 	.items = {
2108c4cfe66cSDaniel Drake 		{ "Off", PIN_IN },
2109c4cfe66cSDaniel Drake 		{ "50%", PIN_VREF50 },
2110c4cfe66cSDaniel Drake 		{ "80%", PIN_VREF80 },
2111c4cfe66cSDaniel Drake 	},
2112c4cfe66cSDaniel Drake };
2113c4cfe66cSDaniel Drake 
2114c4cfe66cSDaniel Drake static int cxt5066_set_olpc_dc_bias(struct hda_codec *codec)
2115c4cfe66cSDaniel Drake {
2116c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
2117c4cfe66cSDaniel Drake 	/* Even though port F is the DC input, the bias is controlled on port B.
2118c4cfe66cSDaniel Drake 	 * we also leave that port as an active input (but unselected) in DC mode
2119c4cfe66cSDaniel Drake 	 * just in case that is necessary to make the bias setting take effect. */
2120c4cfe66cSDaniel Drake 	return snd_hda_codec_write_cache(codec, 0x1a, 0,
2121c4cfe66cSDaniel Drake 		AC_VERB_SET_PIN_WIDGET_CONTROL,
2122c4cfe66cSDaniel Drake 		cxt5066_olpc_dc_bias.items[spec->dc_input_bias].index);
2123c4cfe66cSDaniel Drake }
2124c4cfe66cSDaniel Drake 
212575f8991dSDaniel Drake /* OLPC defers mic widget control until when capture is started because the
212675f8991dSDaniel Drake  * microphone LED comes on as soon as these settings are put in place. if we
212775f8991dSDaniel Drake  * did this before recording, it would give the false indication that recording
212875f8991dSDaniel Drake  * is happening when it is not. */
212975f8991dSDaniel Drake static void cxt5066_olpc_select_mic(struct hda_codec *codec)
21300fb67e98SDaniel Drake {
2131dbaccc0cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
213275f8991dSDaniel Drake 	if (!spec->recording)
213375f8991dSDaniel Drake 		return;
21340fb67e98SDaniel Drake 
2135c4cfe66cSDaniel Drake 	if (spec->dc_enable) {
2136c4cfe66cSDaniel Drake 		/* in DC mode we ignore presence detection and just use the jack
2137c4cfe66cSDaniel Drake 		 * through our special DC port */
2138c4cfe66cSDaniel Drake 		const struct hda_verb enable_dc_mode[] = {
2139c4cfe66cSDaniel Drake 			/* disble internal mic, port C */
2140c4cfe66cSDaniel Drake 			{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2141c4cfe66cSDaniel Drake 
2142c4cfe66cSDaniel Drake 			/* enable DC capture, port F */
2143c4cfe66cSDaniel Drake 			{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2144c4cfe66cSDaniel Drake 			{},
2145c4cfe66cSDaniel Drake 		};
2146c4cfe66cSDaniel Drake 
2147c4cfe66cSDaniel Drake 		snd_hda_sequence_write(codec, enable_dc_mode);
2148c4cfe66cSDaniel Drake 		/* port B input disabled (and bias set) through the following call */
2149c4cfe66cSDaniel Drake 		cxt5066_set_olpc_dc_bias(codec);
2150c4cfe66cSDaniel Drake 		return;
2151c4cfe66cSDaniel Drake 	}
2152c4cfe66cSDaniel Drake 
2153c4cfe66cSDaniel Drake 	/* disable DC (port F) */
2154c4cfe66cSDaniel Drake 	snd_hda_codec_write(codec, 0x1e, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
2155c4cfe66cSDaniel Drake 
215675f8991dSDaniel Drake 	/* external mic, port B */
215775f8991dSDaniel Drake 	snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
215875f8991dSDaniel Drake 		spec->ext_mic_present ? CXT5066_OLPC_EXT_MIC_BIAS : 0);
21590fb67e98SDaniel Drake 
216075f8991dSDaniel Drake 	/* internal mic, port C */
216175f8991dSDaniel Drake 	snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
216275f8991dSDaniel Drake 		spec->ext_mic_present ? 0 : PIN_VREF80);
216375f8991dSDaniel Drake }
21640fb67e98SDaniel Drake 
216575f8991dSDaniel Drake /* toggle input of built-in and mic jack appropriately */
216675f8991dSDaniel Drake static void cxt5066_olpc_automic(struct hda_codec *codec)
216775f8991dSDaniel Drake {
216875f8991dSDaniel Drake 	struct conexant_spec *spec = codec->spec;
21690fb67e98SDaniel Drake 	unsigned int present;
21700fb67e98SDaniel Drake 
2171c4cfe66cSDaniel Drake 	if (spec->dc_enable) /* don't do presence detection in DC mode */
2172c4cfe66cSDaniel Drake 		return;
2173c4cfe66cSDaniel Drake 
217475f8991dSDaniel Drake 	present = snd_hda_codec_read(codec, 0x1a, 0,
217575f8991dSDaniel Drake 				     AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
217675f8991dSDaniel Drake 	if (present)
21770fb67e98SDaniel Drake 		snd_printdd("CXT5066: external microphone detected\n");
217875f8991dSDaniel Drake 	else
21790fb67e98SDaniel Drake 		snd_printdd("CXT5066: external microphone absent\n");
218075f8991dSDaniel Drake 
218175f8991dSDaniel Drake 	snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
218275f8991dSDaniel Drake 		present ? 0 : 1);
218375f8991dSDaniel Drake 	spec->ext_mic_present = !!present;
218475f8991dSDaniel Drake 
218575f8991dSDaniel Drake 	cxt5066_olpc_select_mic(codec);
21860fb67e98SDaniel Drake }
21870fb67e98SDaniel Drake 
218895a618bdSEinar Rünkaru /* toggle input of built-in digital mic and mic jack appropriately */
218995a618bdSEinar Rünkaru static void cxt5066_vostro_automic(struct hda_codec *codec)
219095a618bdSEinar Rünkaru {
219195a618bdSEinar Rünkaru 	unsigned int present;
219295a618bdSEinar Rünkaru 
219395a618bdSEinar Rünkaru 	struct hda_verb ext_mic_present[] = {
219495a618bdSEinar Rünkaru 		/* enable external mic, port B */
219575f8991dSDaniel Drake 		{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
219695a618bdSEinar Rünkaru 
219795a618bdSEinar Rünkaru 		/* switch to external mic input */
219895a618bdSEinar Rünkaru 		{0x17, AC_VERB_SET_CONNECT_SEL, 0},
219995a618bdSEinar Rünkaru 		{0x14, AC_VERB_SET_CONNECT_SEL, 0},
220095a618bdSEinar Rünkaru 
220195a618bdSEinar Rünkaru 		/* disable internal digital mic */
220295a618bdSEinar Rünkaru 		{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
220395a618bdSEinar Rünkaru 		{}
220495a618bdSEinar Rünkaru 	};
220534cbe3a6STakashi Iwai 	static const struct hda_verb ext_mic_absent[] = {
220695a618bdSEinar Rünkaru 		/* enable internal mic, port C */
220795a618bdSEinar Rünkaru 		{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
220895a618bdSEinar Rünkaru 
220995a618bdSEinar Rünkaru 		/* switch to internal mic input */
221095a618bdSEinar Rünkaru 		{0x14, AC_VERB_SET_CONNECT_SEL, 2},
221195a618bdSEinar Rünkaru 
221295a618bdSEinar Rünkaru 		/* disable external mic, port B */
221395a618bdSEinar Rünkaru 		{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
221495a618bdSEinar Rünkaru 		{}
221595a618bdSEinar Rünkaru 	};
221695a618bdSEinar Rünkaru 
221795a618bdSEinar Rünkaru 	present = snd_hda_jack_detect(codec, 0x1a);
221895a618bdSEinar Rünkaru 	if (present) {
221995a618bdSEinar Rünkaru 		snd_printdd("CXT5066: external microphone detected\n");
222095a618bdSEinar Rünkaru 		snd_hda_sequence_write(codec, ext_mic_present);
222195a618bdSEinar Rünkaru 	} else {
222295a618bdSEinar Rünkaru 		snd_printdd("CXT5066: external microphone absent\n");
222395a618bdSEinar Rünkaru 		snd_hda_sequence_write(codec, ext_mic_absent);
222495a618bdSEinar Rünkaru 	}
222595a618bdSEinar Rünkaru }
222695a618bdSEinar Rünkaru 
2227cfd3d8dcSGreg Alexander /* toggle input of built-in digital mic and mic jack appropriately */
2228cfd3d8dcSGreg Alexander static void cxt5066_ideapad_automic(struct hda_codec *codec)
2229cfd3d8dcSGreg Alexander {
2230cfd3d8dcSGreg Alexander 	unsigned int present;
2231cfd3d8dcSGreg Alexander 
2232cfd3d8dcSGreg Alexander 	struct hda_verb ext_mic_present[] = {
2233cfd3d8dcSGreg Alexander 		{0x14, AC_VERB_SET_CONNECT_SEL, 0},
2234cfd3d8dcSGreg Alexander 		{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2235cfd3d8dcSGreg Alexander 		{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2236cfd3d8dcSGreg Alexander 		{}
2237cfd3d8dcSGreg Alexander 	};
223834cbe3a6STakashi Iwai 	static const struct hda_verb ext_mic_absent[] = {
2239cfd3d8dcSGreg Alexander 		{0x14, AC_VERB_SET_CONNECT_SEL, 2},
2240cfd3d8dcSGreg Alexander 		{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2241cfd3d8dcSGreg Alexander 		{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2242cfd3d8dcSGreg Alexander 		{}
2243cfd3d8dcSGreg Alexander 	};
2244cfd3d8dcSGreg Alexander 
2245cfd3d8dcSGreg Alexander 	present = snd_hda_jack_detect(codec, 0x1b);
2246cfd3d8dcSGreg Alexander 	if (present) {
2247cfd3d8dcSGreg Alexander 		snd_printdd("CXT5066: external microphone detected\n");
2248cfd3d8dcSGreg Alexander 		snd_hda_sequence_write(codec, ext_mic_present);
2249cfd3d8dcSGreg Alexander 	} else {
2250cfd3d8dcSGreg Alexander 		snd_printdd("CXT5066: external microphone absent\n");
2251cfd3d8dcSGreg Alexander 		snd_hda_sequence_write(codec, ext_mic_absent);
2252cfd3d8dcSGreg Alexander 	}
2253cfd3d8dcSGreg Alexander }
2254cfd3d8dcSGreg Alexander 
2255a1d6906eSDavid Henningsson 
2256a1d6906eSDavid Henningsson /* toggle input of built-in digital mic and mic jack appropriately */
2257a1d6906eSDavid Henningsson static void cxt5066_asus_automic(struct hda_codec *codec)
2258a1d6906eSDavid Henningsson {
2259a1d6906eSDavid Henningsson 	unsigned int present;
2260a1d6906eSDavid Henningsson 
2261a1d6906eSDavid Henningsson 	present = snd_hda_jack_detect(codec, 0x1b);
2262a1d6906eSDavid Henningsson 	snd_printdd("CXT5066: external microphone present=%d\n", present);
2263a1d6906eSDavid Henningsson 	snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2264a1d6906eSDavid Henningsson 			    present ? 1 : 0);
2265a1d6906eSDavid Henningsson }
2266a1d6906eSDavid Henningsson 
2267a1d6906eSDavid Henningsson 
2268048e78a5SDavid Henningsson /* toggle input of built-in digital mic and mic jack appropriately */
2269048e78a5SDavid Henningsson static void cxt5066_hp_laptop_automic(struct hda_codec *codec)
2270048e78a5SDavid Henningsson {
2271048e78a5SDavid Henningsson 	unsigned int present;
2272048e78a5SDavid Henningsson 
2273048e78a5SDavid Henningsson 	present = snd_hda_jack_detect(codec, 0x1b);
2274048e78a5SDavid Henningsson 	snd_printdd("CXT5066: external microphone present=%d\n", present);
2275048e78a5SDavid Henningsson 	snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2276048e78a5SDavid Henningsson 			    present ? 1 : 3);
2277048e78a5SDavid Henningsson }
2278048e78a5SDavid Henningsson 
2279048e78a5SDavid Henningsson 
22807b2bfdbcSJens Taprogge /* toggle input of built-in digital mic and mic jack appropriately
22817b2bfdbcSJens Taprogge    order is: external mic -> dock mic -> interal mic */
22827b2bfdbcSJens Taprogge static void cxt5066_thinkpad_automic(struct hda_codec *codec)
22837b2bfdbcSJens Taprogge {
22847b2bfdbcSJens Taprogge 	unsigned int ext_present, dock_present;
22857b2bfdbcSJens Taprogge 
228634cbe3a6STakashi Iwai 	static const struct hda_verb ext_mic_present[] = {
22877b2bfdbcSJens Taprogge 		{0x14, AC_VERB_SET_CONNECT_SEL, 0},
22887b2bfdbcSJens Taprogge 		{0x17, AC_VERB_SET_CONNECT_SEL, 1},
22897b2bfdbcSJens Taprogge 		{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
22907b2bfdbcSJens Taprogge 		{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22917b2bfdbcSJens Taprogge 		{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22927b2bfdbcSJens Taprogge 		{}
22937b2bfdbcSJens Taprogge 	};
229434cbe3a6STakashi Iwai 	static const struct hda_verb dock_mic_present[] = {
22957b2bfdbcSJens Taprogge 		{0x14, AC_VERB_SET_CONNECT_SEL, 0},
22967b2bfdbcSJens Taprogge 		{0x17, AC_VERB_SET_CONNECT_SEL, 0},
22977b2bfdbcSJens Taprogge 		{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
22987b2bfdbcSJens Taprogge 		{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
22997b2bfdbcSJens Taprogge 		{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
23007b2bfdbcSJens Taprogge 		{}
23017b2bfdbcSJens Taprogge 	};
230234cbe3a6STakashi Iwai 	static const struct hda_verb ext_mic_absent[] = {
23037b2bfdbcSJens Taprogge 		{0x14, AC_VERB_SET_CONNECT_SEL, 2},
23047b2bfdbcSJens Taprogge 		{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
23057b2bfdbcSJens Taprogge 		{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
23067b2bfdbcSJens Taprogge 		{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
23077b2bfdbcSJens Taprogge 		{}
23087b2bfdbcSJens Taprogge 	};
23097b2bfdbcSJens Taprogge 
23107b2bfdbcSJens Taprogge 	ext_present = snd_hda_jack_detect(codec, 0x1b);
23117b2bfdbcSJens Taprogge 	dock_present = snd_hda_jack_detect(codec, 0x1a);
23127b2bfdbcSJens Taprogge 	if (ext_present) {
23137b2bfdbcSJens Taprogge 		snd_printdd("CXT5066: external microphone detected\n");
23147b2bfdbcSJens Taprogge 		snd_hda_sequence_write(codec, ext_mic_present);
23157b2bfdbcSJens Taprogge 	} else if (dock_present) {
23167b2bfdbcSJens Taprogge 		snd_printdd("CXT5066: dock microphone detected\n");
23177b2bfdbcSJens Taprogge 		snd_hda_sequence_write(codec, dock_mic_present);
23187b2bfdbcSJens Taprogge 	} else {
23197b2bfdbcSJens Taprogge 		snd_printdd("CXT5066: external microphone absent\n");
23207b2bfdbcSJens Taprogge 		snd_hda_sequence_write(codec, ext_mic_absent);
23217b2bfdbcSJens Taprogge 	}
23227b2bfdbcSJens Taprogge }
23237b2bfdbcSJens Taprogge 
23240fb67e98SDaniel Drake /* mute internal speaker if HP is plugged */
23250fb67e98SDaniel Drake static void cxt5066_hp_automute(struct hda_codec *codec)
23260fb67e98SDaniel Drake {
23270fb67e98SDaniel Drake 	struct conexant_spec *spec = codec->spec;
23280fb67e98SDaniel Drake 	unsigned int portA, portD;
23290fb67e98SDaniel Drake 
23300fb67e98SDaniel Drake 	/* Port A */
2331d56757abSTakashi Iwai 	portA = snd_hda_jack_detect(codec, 0x19);
23320fb67e98SDaniel Drake 
23330fb67e98SDaniel Drake 	/* Port D */
2334d56757abSTakashi Iwai 	portD = snd_hda_jack_detect(codec, 0x1c);
23350fb67e98SDaniel Drake 
2336a3de8ab8STakashi Iwai 	spec->hp_present = portA ? HP_PRESENT_PORT_A : 0;
2337a3de8ab8STakashi Iwai 	spec->hp_present |= portD ? HP_PRESENT_PORT_D : 0;
23380fb67e98SDaniel Drake 	snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
23390fb67e98SDaniel Drake 		portA, portD, spec->hp_present);
23400fb67e98SDaniel Drake 	cxt5066_update_speaker(codec);
23410fb67e98SDaniel Drake }
23420fb67e98SDaniel Drake 
234302b6b5b6SDavid Henningsson /* Dispatch the right mic autoswitch function */
234402b6b5b6SDavid Henningsson static void cxt5066_automic(struct hda_codec *codec)
234502b6b5b6SDavid Henningsson {
234602b6b5b6SDavid Henningsson 	struct conexant_spec *spec = codec->spec;
234702b6b5b6SDavid Henningsson 
234802b6b5b6SDavid Henningsson 	if (spec->dell_vostro)
234902b6b5b6SDavid Henningsson 		cxt5066_vostro_automic(codec);
235002b6b5b6SDavid Henningsson 	else if (spec->ideapad)
235102b6b5b6SDavid Henningsson 		cxt5066_ideapad_automic(codec);
235202b6b5b6SDavid Henningsson 	else if (spec->thinkpad)
235302b6b5b6SDavid Henningsson 		cxt5066_thinkpad_automic(codec);
235402b6b5b6SDavid Henningsson 	else if (spec->hp_laptop)
235502b6b5b6SDavid Henningsson 		cxt5066_hp_laptop_automic(codec);
2356a1d6906eSDavid Henningsson 	else if (spec->asus)
2357a1d6906eSDavid Henningsson 		cxt5066_asus_automic(codec);
235802b6b5b6SDavid Henningsson }
235902b6b5b6SDavid Henningsson 
23600fb67e98SDaniel Drake /* unsolicited event for jack sensing */
236175f8991dSDaniel Drake static void cxt5066_olpc_unsol_event(struct hda_codec *codec, unsigned int res)
23620fb67e98SDaniel Drake {
2363c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
23640fb67e98SDaniel Drake 	snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
23650fb67e98SDaniel Drake 	switch (res >> 26) {
23660fb67e98SDaniel Drake 	case CONEXANT_HP_EVENT:
23670fb67e98SDaniel Drake 		cxt5066_hp_automute(codec);
23680fb67e98SDaniel Drake 		break;
23690fb67e98SDaniel Drake 	case CONEXANT_MIC_EVENT:
2370c4cfe66cSDaniel Drake 		/* ignore mic events in DC mode; we're always using the jack */
2371c4cfe66cSDaniel Drake 		if (!spec->dc_enable)
237275f8991dSDaniel Drake 			cxt5066_olpc_automic(codec);
23730fb67e98SDaniel Drake 		break;
23740fb67e98SDaniel Drake 	}
23750fb67e98SDaniel Drake }
23760fb67e98SDaniel Drake 
237795a618bdSEinar Rünkaru /* unsolicited event for jack sensing */
237802b6b5b6SDavid Henningsson static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res)
237995a618bdSEinar Rünkaru {
238002b6b5b6SDavid Henningsson 	snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
238195a618bdSEinar Rünkaru 	switch (res >> 26) {
238295a618bdSEinar Rünkaru 	case CONEXANT_HP_EVENT:
238395a618bdSEinar Rünkaru 		cxt5066_hp_automute(codec);
238495a618bdSEinar Rünkaru 		break;
238595a618bdSEinar Rünkaru 	case CONEXANT_MIC_EVENT:
238602b6b5b6SDavid Henningsson 		cxt5066_automic(codec);
238795a618bdSEinar Rünkaru 		break;
238895a618bdSEinar Rünkaru 	}
238995a618bdSEinar Rünkaru }
239095a618bdSEinar Rünkaru 
23917b2bfdbcSJens Taprogge 
23920fb67e98SDaniel Drake static const struct hda_input_mux cxt5066_analog_mic_boost = {
23930fb67e98SDaniel Drake 	.num_items = 5,
23940fb67e98SDaniel Drake 	.items = {
23950fb67e98SDaniel Drake 		{ "0dB",  0 },
23960fb67e98SDaniel Drake 		{ "10dB", 1 },
23970fb67e98SDaniel Drake 		{ "20dB", 2 },
23980fb67e98SDaniel Drake 		{ "30dB", 3 },
23990fb67e98SDaniel Drake 		{ "40dB", 4 },
24000fb67e98SDaniel Drake 	},
24010fb67e98SDaniel Drake };
24020fb67e98SDaniel Drake 
2403cfd3d8dcSGreg Alexander static void cxt5066_set_mic_boost(struct hda_codec *codec)
2404c4cfe66cSDaniel Drake {
2405c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
2406cfd3d8dcSGreg Alexander 	snd_hda_codec_write_cache(codec, 0x17, 0,
2407c4cfe66cSDaniel Drake 		AC_VERB_SET_AMP_GAIN_MUTE,
2408c4cfe66cSDaniel Drake 		AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2409c4cfe66cSDaniel Drake 			cxt5066_analog_mic_boost.items[spec->mic_boost].index);
24107b2bfdbcSJens Taprogge 	if (spec->ideapad || spec->thinkpad) {
2411cfd3d8dcSGreg Alexander 		/* adjust the internal mic as well...it is not through 0x17 */
2412cfd3d8dcSGreg Alexander 		snd_hda_codec_write_cache(codec, 0x23, 0,
2413cfd3d8dcSGreg Alexander 			AC_VERB_SET_AMP_GAIN_MUTE,
2414cfd3d8dcSGreg Alexander 			AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_INPUT |
2415cfd3d8dcSGreg Alexander 				cxt5066_analog_mic_boost.
2416cfd3d8dcSGreg Alexander 					items[spec->mic_boost].index);
2417cfd3d8dcSGreg Alexander 	}
2418c4cfe66cSDaniel Drake }
2419c4cfe66cSDaniel Drake 
24200fb67e98SDaniel Drake static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
24210fb67e98SDaniel Drake 					   struct snd_ctl_elem_info *uinfo)
24220fb67e98SDaniel Drake {
24230fb67e98SDaniel Drake 	return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
24240fb67e98SDaniel Drake }
24250fb67e98SDaniel Drake 
24260fb67e98SDaniel Drake static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
24270fb67e98SDaniel Drake 					  struct snd_ctl_elem_value *ucontrol)
24280fb67e98SDaniel Drake {
24290fb67e98SDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2430c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
2431c4cfe66cSDaniel Drake 	ucontrol->value.enumerated.item[0] = spec->mic_boost;
24320fb67e98SDaniel Drake 	return 0;
24330fb67e98SDaniel Drake }
24340fb67e98SDaniel Drake 
24350fb67e98SDaniel Drake static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
24360fb67e98SDaniel Drake 					  struct snd_ctl_elem_value *ucontrol)
24370fb67e98SDaniel Drake {
24380fb67e98SDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2439c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
24400fb67e98SDaniel Drake 	const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
24410fb67e98SDaniel Drake 	unsigned int idx;
24420fb67e98SDaniel Drake 	idx = ucontrol->value.enumerated.item[0];
24430fb67e98SDaniel Drake 	if (idx >= imux->num_items)
24440fb67e98SDaniel Drake 		idx = imux->num_items - 1;
24450fb67e98SDaniel Drake 
2446c4cfe66cSDaniel Drake 	spec->mic_boost = idx;
2447c4cfe66cSDaniel Drake 	if (!spec->dc_enable)
2448c4cfe66cSDaniel Drake 		cxt5066_set_mic_boost(codec);
2449c4cfe66cSDaniel Drake 	return 1;
2450c4cfe66cSDaniel Drake }
24510fb67e98SDaniel Drake 
2452c4cfe66cSDaniel Drake static void cxt5066_enable_dc(struct hda_codec *codec)
2453c4cfe66cSDaniel Drake {
2454c4cfe66cSDaniel Drake 	const struct hda_verb enable_dc_mode[] = {
2455c4cfe66cSDaniel Drake 		/* disable gain */
2456c4cfe66cSDaniel Drake 		{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2457c4cfe66cSDaniel Drake 
2458c4cfe66cSDaniel Drake 		/* switch to DC input */
2459c4cfe66cSDaniel Drake 		{0x17, AC_VERB_SET_CONNECT_SEL, 3},
2460c4cfe66cSDaniel Drake 		{}
2461c4cfe66cSDaniel Drake 	};
2462c4cfe66cSDaniel Drake 
2463c4cfe66cSDaniel Drake 	/* configure as input source */
2464c4cfe66cSDaniel Drake 	snd_hda_sequence_write(codec, enable_dc_mode);
2465c4cfe66cSDaniel Drake 	cxt5066_olpc_select_mic(codec); /* also sets configured bias */
2466c4cfe66cSDaniel Drake }
2467c4cfe66cSDaniel Drake 
2468c4cfe66cSDaniel Drake static void cxt5066_disable_dc(struct hda_codec *codec)
2469c4cfe66cSDaniel Drake {
2470c4cfe66cSDaniel Drake 	/* reconfigure input source */
2471c4cfe66cSDaniel Drake 	cxt5066_set_mic_boost(codec);
2472c4cfe66cSDaniel Drake 	/* automic also selects the right mic if we're recording */
2473c4cfe66cSDaniel Drake 	cxt5066_olpc_automic(codec);
2474c4cfe66cSDaniel Drake }
2475c4cfe66cSDaniel Drake 
2476c4cfe66cSDaniel Drake static int cxt5066_olpc_dc_get(struct snd_kcontrol *kcontrol,
2477c4cfe66cSDaniel Drake 			     struct snd_ctl_elem_value *ucontrol)
2478c4cfe66cSDaniel Drake {
2479c4cfe66cSDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2480c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
2481c4cfe66cSDaniel Drake 	ucontrol->value.integer.value[0] = spec->dc_enable;
2482c4cfe66cSDaniel Drake 	return 0;
2483c4cfe66cSDaniel Drake }
2484c4cfe66cSDaniel Drake 
2485c4cfe66cSDaniel Drake static int cxt5066_olpc_dc_put(struct snd_kcontrol *kcontrol,
2486c4cfe66cSDaniel Drake 			     struct snd_ctl_elem_value *ucontrol)
2487c4cfe66cSDaniel Drake {
2488c4cfe66cSDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2489c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
2490c4cfe66cSDaniel Drake 	int dc_enable = !!ucontrol->value.integer.value[0];
2491c4cfe66cSDaniel Drake 
2492c4cfe66cSDaniel Drake 	if (dc_enable == spec->dc_enable)
2493c4cfe66cSDaniel Drake 		return 0;
2494c4cfe66cSDaniel Drake 
2495c4cfe66cSDaniel Drake 	spec->dc_enable = dc_enable;
2496c4cfe66cSDaniel Drake 	if (dc_enable)
2497c4cfe66cSDaniel Drake 		cxt5066_enable_dc(codec);
2498c4cfe66cSDaniel Drake 	else
2499c4cfe66cSDaniel Drake 		cxt5066_disable_dc(codec);
2500c4cfe66cSDaniel Drake 
2501c4cfe66cSDaniel Drake 	return 1;
2502c4cfe66cSDaniel Drake }
2503c4cfe66cSDaniel Drake 
2504c4cfe66cSDaniel Drake static int cxt5066_olpc_dc_bias_enum_info(struct snd_kcontrol *kcontrol,
2505c4cfe66cSDaniel Drake 					   struct snd_ctl_elem_info *uinfo)
2506c4cfe66cSDaniel Drake {
2507c4cfe66cSDaniel Drake 	return snd_hda_input_mux_info(&cxt5066_olpc_dc_bias, uinfo);
2508c4cfe66cSDaniel Drake }
2509c4cfe66cSDaniel Drake 
2510c4cfe66cSDaniel Drake static int cxt5066_olpc_dc_bias_enum_get(struct snd_kcontrol *kcontrol,
2511c4cfe66cSDaniel Drake 					  struct snd_ctl_elem_value *ucontrol)
2512c4cfe66cSDaniel Drake {
2513c4cfe66cSDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2514c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
2515c4cfe66cSDaniel Drake 	ucontrol->value.enumerated.item[0] = spec->dc_input_bias;
2516c4cfe66cSDaniel Drake 	return 0;
2517c4cfe66cSDaniel Drake }
2518c4cfe66cSDaniel Drake 
2519c4cfe66cSDaniel Drake static int cxt5066_olpc_dc_bias_enum_put(struct snd_kcontrol *kcontrol,
2520c4cfe66cSDaniel Drake 					  struct snd_ctl_elem_value *ucontrol)
2521c4cfe66cSDaniel Drake {
2522c4cfe66cSDaniel Drake 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2523c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
2524c4cfe66cSDaniel Drake 	const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2525c4cfe66cSDaniel Drake 	unsigned int idx;
2526c4cfe66cSDaniel Drake 
2527c4cfe66cSDaniel Drake 	idx = ucontrol->value.enumerated.item[0];
2528c4cfe66cSDaniel Drake 	if (idx >= imux->num_items)
2529c4cfe66cSDaniel Drake 		idx = imux->num_items - 1;
2530c4cfe66cSDaniel Drake 
2531c4cfe66cSDaniel Drake 	spec->dc_input_bias = idx;
2532c4cfe66cSDaniel Drake 	if (spec->dc_enable)
2533c4cfe66cSDaniel Drake 		cxt5066_set_olpc_dc_bias(codec);
25340fb67e98SDaniel Drake 	return 1;
25350fb67e98SDaniel Drake }
25360fb67e98SDaniel Drake 
253775f8991dSDaniel Drake static void cxt5066_olpc_capture_prepare(struct hda_codec *codec)
253875f8991dSDaniel Drake {
253975f8991dSDaniel Drake 	struct conexant_spec *spec = codec->spec;
254075f8991dSDaniel Drake 	/* mark as recording and configure the microphone widget so that the
254175f8991dSDaniel Drake 	 * recording LED comes on. */
254275f8991dSDaniel Drake 	spec->recording = 1;
254375f8991dSDaniel Drake 	cxt5066_olpc_select_mic(codec);
254475f8991dSDaniel Drake }
254575f8991dSDaniel Drake 
254675f8991dSDaniel Drake static void cxt5066_olpc_capture_cleanup(struct hda_codec *codec)
254775f8991dSDaniel Drake {
254875f8991dSDaniel Drake 	struct conexant_spec *spec = codec->spec;
254975f8991dSDaniel Drake 	const struct hda_verb disable_mics[] = {
255075f8991dSDaniel Drake 		/* disable external mic, port B */
255175f8991dSDaniel Drake 		{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
255275f8991dSDaniel Drake 
255375f8991dSDaniel Drake 		/* disble internal mic, port C */
255475f8991dSDaniel Drake 		{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2555c4cfe66cSDaniel Drake 
2556c4cfe66cSDaniel Drake 		/* disable DC capture, port F */
2557c4cfe66cSDaniel Drake 		{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
255875f8991dSDaniel Drake 		{},
255975f8991dSDaniel Drake 	};
256075f8991dSDaniel Drake 
256175f8991dSDaniel Drake 	snd_hda_sequence_write(codec, disable_mics);
256275f8991dSDaniel Drake 	spec->recording = 0;
256375f8991dSDaniel Drake }
256475f8991dSDaniel Drake 
2565f6a2491cSAndy Robinson static void conexant_check_dig_outs(struct hda_codec *codec,
256634cbe3a6STakashi Iwai 				    const hda_nid_t *dig_pins,
2567f6a2491cSAndy Robinson 				    int num_pins)
2568f6a2491cSAndy Robinson {
2569f6a2491cSAndy Robinson 	struct conexant_spec *spec = codec->spec;
2570f6a2491cSAndy Robinson 	hda_nid_t *nid_loc = &spec->multiout.dig_out_nid;
2571f6a2491cSAndy Robinson 	int i;
2572f6a2491cSAndy Robinson 
2573f6a2491cSAndy Robinson 	for (i = 0; i < num_pins; i++, dig_pins++) {
2574f6a2491cSAndy Robinson 		unsigned int cfg = snd_hda_codec_get_pincfg(codec, *dig_pins);
2575f6a2491cSAndy Robinson 		if (get_defcfg_connect(cfg) == AC_JACK_PORT_NONE)
2576f6a2491cSAndy Robinson 			continue;
2577f6a2491cSAndy Robinson 		if (snd_hda_get_connections(codec, *dig_pins, nid_loc, 1) != 1)
2578f6a2491cSAndy Robinson 			continue;
2579f6a2491cSAndy Robinson 		if (spec->slave_dig_outs[0])
2580f6a2491cSAndy Robinson 			nid_loc++;
2581f6a2491cSAndy Robinson 		else
2582f6a2491cSAndy Robinson 			nid_loc = spec->slave_dig_outs;
2583f6a2491cSAndy Robinson 	}
2584f6a2491cSAndy Robinson }
2585f6a2491cSAndy Robinson 
258634cbe3a6STakashi Iwai static const struct hda_input_mux cxt5066_capture_source = {
25870fb67e98SDaniel Drake 	.num_items = 4,
25880fb67e98SDaniel Drake 	.items = {
25890fb67e98SDaniel Drake 		{ "Mic B", 0 },
25900fb67e98SDaniel Drake 		{ "Mic C", 1 },
25910fb67e98SDaniel Drake 		{ "Mic E", 2 },
25920fb67e98SDaniel Drake 		{ "Mic F", 3 },
25930fb67e98SDaniel Drake 	},
25940fb67e98SDaniel Drake };
25950fb67e98SDaniel Drake 
259634cbe3a6STakashi Iwai static const struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
25970fb67e98SDaniel Drake 	.ops = &snd_hda_bind_vol,
25980fb67e98SDaniel Drake 	.values = {
25990fb67e98SDaniel Drake 		HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
26000fb67e98SDaniel Drake 		HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
26010fb67e98SDaniel Drake 		0
26020fb67e98SDaniel Drake 	},
26030fb67e98SDaniel Drake };
26040fb67e98SDaniel Drake 
260534cbe3a6STakashi Iwai static const struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
26060fb67e98SDaniel Drake 	.ops = &snd_hda_bind_sw,
26070fb67e98SDaniel Drake 	.values = {
26080fb67e98SDaniel Drake 		HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
26090fb67e98SDaniel Drake 		HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
26100fb67e98SDaniel Drake 		0
26110fb67e98SDaniel Drake 	},
26120fb67e98SDaniel Drake };
26130fb67e98SDaniel Drake 
261434cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5066_mixer_master[] = {
26150fb67e98SDaniel Drake 	HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
26160fb67e98SDaniel Drake 	{}
26170fb67e98SDaniel Drake };
26180fb67e98SDaniel Drake 
261934cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
26200fb67e98SDaniel Drake 	{
26210fb67e98SDaniel Drake 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
26220fb67e98SDaniel Drake 		.name = "Master Playback Volume",
26230fb67e98SDaniel Drake 		.access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
26240fb67e98SDaniel Drake 				  SNDRV_CTL_ELEM_ACCESS_TLV_READ |
26250fb67e98SDaniel Drake 				  SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
26265e26dfd0SJaroslav Kysela 		.subdevice = HDA_SUBDEV_AMP_FLAG,
26270fb67e98SDaniel Drake 		.info = snd_hda_mixer_amp_volume_info,
26280fb67e98SDaniel Drake 		.get = snd_hda_mixer_amp_volume_get,
26290fb67e98SDaniel Drake 		.put = snd_hda_mixer_amp_volume_put,
26300fb67e98SDaniel Drake 		.tlv = { .c = snd_hda_mixer_amp_tlv },
26310fb67e98SDaniel Drake 		/* offset by 28 volume steps to limit minimum gain to -46dB */
26320fb67e98SDaniel Drake 		.private_value =
26330fb67e98SDaniel Drake 			HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
26340fb67e98SDaniel Drake 	},
26350fb67e98SDaniel Drake 	{}
26360fb67e98SDaniel Drake };
26370fb67e98SDaniel Drake 
263834cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5066_mixer_olpc_dc[] = {
2639c4cfe66cSDaniel Drake 	{
2640c4cfe66cSDaniel Drake 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2641c4cfe66cSDaniel Drake 		.name = "DC Mode Enable Switch",
2642c4cfe66cSDaniel Drake 		.info = snd_ctl_boolean_mono_info,
2643c4cfe66cSDaniel Drake 		.get = cxt5066_olpc_dc_get,
2644c4cfe66cSDaniel Drake 		.put = cxt5066_olpc_dc_put,
2645c4cfe66cSDaniel Drake 	},
2646c4cfe66cSDaniel Drake 	{
2647c4cfe66cSDaniel Drake 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2648c4cfe66cSDaniel Drake 		.name = "DC Input Bias Enum",
2649c4cfe66cSDaniel Drake 		.info = cxt5066_olpc_dc_bias_enum_info,
2650c4cfe66cSDaniel Drake 		.get = cxt5066_olpc_dc_bias_enum_get,
2651c4cfe66cSDaniel Drake 		.put = cxt5066_olpc_dc_bias_enum_put,
2652c4cfe66cSDaniel Drake 	},
2653c4cfe66cSDaniel Drake 	{}
2654c4cfe66cSDaniel Drake };
2655c4cfe66cSDaniel Drake 
265634cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5066_mixers[] = {
26570fb67e98SDaniel Drake 	{
26580fb67e98SDaniel Drake 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
26590fb67e98SDaniel Drake 		.name = "Master Playback Switch",
26600fb67e98SDaniel Drake 		.info = cxt_eapd_info,
26610fb67e98SDaniel Drake 		.get = cxt_eapd_get,
26620fb67e98SDaniel Drake 		.put = cxt5066_hp_master_sw_put,
26630fb67e98SDaniel Drake 		.private_value = 0x1d,
26640fb67e98SDaniel Drake 	},
26650fb67e98SDaniel Drake 
26660fb67e98SDaniel Drake 	{
26670fb67e98SDaniel Drake 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2668c4cfe66cSDaniel Drake 		.name = "Analog Mic Boost Capture Enum",
26690fb67e98SDaniel Drake 		.info = cxt5066_mic_boost_mux_enum_info,
26700fb67e98SDaniel Drake 		.get = cxt5066_mic_boost_mux_enum_get,
26710fb67e98SDaniel Drake 		.put = cxt5066_mic_boost_mux_enum_put,
26720fb67e98SDaniel Drake 	},
26730fb67e98SDaniel Drake 
26740fb67e98SDaniel Drake 	HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
26750fb67e98SDaniel Drake 	HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
26760fb67e98SDaniel Drake 	{}
26770fb67e98SDaniel Drake };
26780fb67e98SDaniel Drake 
267934cbe3a6STakashi Iwai static const struct snd_kcontrol_new cxt5066_vostro_mixers[] = {
2680254bba6aSEinar Rünkaru 	{
2681254bba6aSEinar Rünkaru 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
268228c4edb7SDavid Henningsson 		.name = "Internal Mic Boost Capture Enum",
2683254bba6aSEinar Rünkaru 		.info = cxt5066_mic_boost_mux_enum_info,
2684254bba6aSEinar Rünkaru 		.get = cxt5066_mic_boost_mux_enum_get,
2685254bba6aSEinar Rünkaru 		.put = cxt5066_mic_boost_mux_enum_put,
2686254bba6aSEinar Rünkaru 		.private_value = 0x23 | 0x100,
2687254bba6aSEinar Rünkaru 	},
2688254bba6aSEinar Rünkaru 	{}
2689254bba6aSEinar Rünkaru };
2690254bba6aSEinar Rünkaru 
269134cbe3a6STakashi Iwai static const struct hda_verb cxt5066_init_verbs[] = {
26920fb67e98SDaniel Drake 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
26930fb67e98SDaniel Drake 	{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
26940fb67e98SDaniel Drake 	{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
26950fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
26960fb67e98SDaniel Drake 
26970fb67e98SDaniel Drake 	/* Speakers  */
26980fb67e98SDaniel Drake 	{0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
26990fb67e98SDaniel Drake 	{0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
27000fb67e98SDaniel Drake 
27010fb67e98SDaniel Drake 	/* HP, Amp  */
27020fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
27030fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
27040fb67e98SDaniel Drake 
27050fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
27060fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
27070fb67e98SDaniel Drake 
27080fb67e98SDaniel Drake 	/* DAC1 */
27090fb67e98SDaniel Drake 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
27100fb67e98SDaniel Drake 
27110fb67e98SDaniel Drake 	/* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
27120fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
27130fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
27140fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
27150fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
27160fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
27170fb67e98SDaniel Drake 
27180fb67e98SDaniel Drake 	/* no digital microphone support yet */
27190fb67e98SDaniel Drake 	{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
27200fb67e98SDaniel Drake 
27210fb67e98SDaniel Drake 	/* Audio input selector */
27220fb67e98SDaniel Drake 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
27230fb67e98SDaniel Drake 
27240fb67e98SDaniel Drake 	/* SPDIF route: PCM */
27250fb67e98SDaniel Drake 	{0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
27260fb67e98SDaniel Drake 	{0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
27270fb67e98SDaniel Drake 
27280fb67e98SDaniel Drake 	{0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
27290fb67e98SDaniel Drake 	{0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
27300fb67e98SDaniel Drake 
27310fb67e98SDaniel Drake 	/* EAPD */
27320fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
27330fb67e98SDaniel Drake 
27340fb67e98SDaniel Drake 	/* not handling these yet */
27350fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
27360fb67e98SDaniel Drake 	{0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
27370fb67e98SDaniel Drake 	{0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
27380fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
27390fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
27400fb67e98SDaniel Drake 	{0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
27410fb67e98SDaniel Drake 	{0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
27420fb67e98SDaniel Drake 	{0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
27430fb67e98SDaniel Drake 	{ } /* end */
27440fb67e98SDaniel Drake };
27450fb67e98SDaniel Drake 
274634cbe3a6STakashi Iwai static const struct hda_verb cxt5066_init_verbs_olpc[] = {
27470fb67e98SDaniel Drake 	/* Port A: headphones */
27480fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
27490fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
27500fb67e98SDaniel Drake 
27510fb67e98SDaniel Drake 	/* Port B: external microphone */
275275f8991dSDaniel Drake 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
27530fb67e98SDaniel Drake 
27540fb67e98SDaniel Drake 	/* Port C: internal microphone */
275575f8991dSDaniel Drake 	{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
27560fb67e98SDaniel Drake 
27570fb67e98SDaniel Drake 	/* Port D: unused */
27580fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
27590fb67e98SDaniel Drake 
27600fb67e98SDaniel Drake 	/* Port E: unused, but has primary EAPD */
27610fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
27620fb67e98SDaniel Drake 	{0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
27630fb67e98SDaniel Drake 
2764c4cfe66cSDaniel Drake 	/* Port F: external DC input through microphone port */
27650fb67e98SDaniel Drake 	{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
27660fb67e98SDaniel Drake 
27670fb67e98SDaniel Drake 	/* Port G: internal speakers */
27680fb67e98SDaniel Drake 	{0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
27690fb67e98SDaniel Drake 	{0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
27700fb67e98SDaniel Drake 
27710fb67e98SDaniel Drake 	/* DAC1 */
27720fb67e98SDaniel Drake 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
27730fb67e98SDaniel Drake 
27740fb67e98SDaniel Drake 	/* DAC2: unused */
27750fb67e98SDaniel Drake 	{0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
27760fb67e98SDaniel Drake 
27770fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
27780fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
27790fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
27800fb67e98SDaniel Drake 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
27810fb67e98SDaniel Drake 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
27820fb67e98SDaniel Drake 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
27830fb67e98SDaniel Drake 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
27840fb67e98SDaniel Drake 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
27850fb67e98SDaniel Drake 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
27860fb67e98SDaniel Drake 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
27870fb67e98SDaniel Drake 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
27880fb67e98SDaniel Drake 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
27890fb67e98SDaniel Drake 
27900fb67e98SDaniel Drake 	/* Disable digital microphone port */
27910fb67e98SDaniel Drake 	{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
27920fb67e98SDaniel Drake 
27930fb67e98SDaniel Drake 	/* Audio input selectors */
27940fb67e98SDaniel Drake 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
27950fb67e98SDaniel Drake 	{0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
27960fb67e98SDaniel Drake 
27970fb67e98SDaniel Drake 	/* Disable SPDIF */
27980fb67e98SDaniel Drake 	{0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
27990fb67e98SDaniel Drake 	{0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
28000fb67e98SDaniel Drake 
28010fb67e98SDaniel Drake 	/* enable unsolicited events for Port A and B */
28020fb67e98SDaniel Drake 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
28030fb67e98SDaniel Drake 	{0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
28040fb67e98SDaniel Drake 	{ } /* end */
28050fb67e98SDaniel Drake };
28060fb67e98SDaniel Drake 
280734cbe3a6STakashi Iwai static const struct hda_verb cxt5066_init_verbs_vostro[] = {
280895a618bdSEinar Rünkaru 	/* Port A: headphones */
280995a618bdSEinar Rünkaru 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
281095a618bdSEinar Rünkaru 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
281195a618bdSEinar Rünkaru 
281295a618bdSEinar Rünkaru 	/* Port B: external microphone */
281395a618bdSEinar Rünkaru 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
281495a618bdSEinar Rünkaru 
281595a618bdSEinar Rünkaru 	/* Port C: unused */
281695a618bdSEinar Rünkaru 	{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
281795a618bdSEinar Rünkaru 
281895a618bdSEinar Rünkaru 	/* Port D: unused */
281995a618bdSEinar Rünkaru 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
282095a618bdSEinar Rünkaru 
282195a618bdSEinar Rünkaru 	/* Port E: unused, but has primary EAPD */
282295a618bdSEinar Rünkaru 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
282395a618bdSEinar Rünkaru 	{0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
282495a618bdSEinar Rünkaru 
282595a618bdSEinar Rünkaru 	/* Port F: unused */
282695a618bdSEinar Rünkaru 	{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
282795a618bdSEinar Rünkaru 
282895a618bdSEinar Rünkaru 	/* Port G: internal speakers */
282995a618bdSEinar Rünkaru 	{0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
283095a618bdSEinar Rünkaru 	{0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
283195a618bdSEinar Rünkaru 
283295a618bdSEinar Rünkaru 	/* DAC1 */
283395a618bdSEinar Rünkaru 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
283495a618bdSEinar Rünkaru 
283595a618bdSEinar Rünkaru 	/* DAC2: unused */
283695a618bdSEinar Rünkaru 	{0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
283795a618bdSEinar Rünkaru 
283895a618bdSEinar Rünkaru 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
283995a618bdSEinar Rünkaru 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
284095a618bdSEinar Rünkaru 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
284195a618bdSEinar Rünkaru 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
284295a618bdSEinar Rünkaru 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
284395a618bdSEinar Rünkaru 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
284495a618bdSEinar Rünkaru 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
284595a618bdSEinar Rünkaru 	{0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
284695a618bdSEinar Rünkaru 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
284795a618bdSEinar Rünkaru 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
284895a618bdSEinar Rünkaru 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
284995a618bdSEinar Rünkaru 	{0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
285095a618bdSEinar Rünkaru 
285195a618bdSEinar Rünkaru 	/* Digital microphone port */
285295a618bdSEinar Rünkaru 	{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
285395a618bdSEinar Rünkaru 
285495a618bdSEinar Rünkaru 	/* Audio input selectors */
285595a618bdSEinar Rünkaru 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
285695a618bdSEinar Rünkaru 	{0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
285795a618bdSEinar Rünkaru 
285895a618bdSEinar Rünkaru 	/* Disable SPDIF */
285995a618bdSEinar Rünkaru 	{0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
286095a618bdSEinar Rünkaru 	{0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
286195a618bdSEinar Rünkaru 
286295a618bdSEinar Rünkaru 	/* enable unsolicited events for Port A and B */
286395a618bdSEinar Rünkaru 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
286495a618bdSEinar Rünkaru 	{0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
286595a618bdSEinar Rünkaru 	{ } /* end */
286695a618bdSEinar Rünkaru };
286795a618bdSEinar Rünkaru 
286834cbe3a6STakashi Iwai static const struct hda_verb cxt5066_init_verbs_ideapad[] = {
2869cfd3d8dcSGreg Alexander 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2870cfd3d8dcSGreg Alexander 	{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2871cfd3d8dcSGreg Alexander 	{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2872cfd3d8dcSGreg Alexander 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2873cfd3d8dcSGreg Alexander 
2874cfd3d8dcSGreg Alexander 	/* Speakers  */
2875cfd3d8dcSGreg Alexander 	{0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2876cfd3d8dcSGreg Alexander 	{0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2877cfd3d8dcSGreg Alexander 
2878cfd3d8dcSGreg Alexander 	/* HP, Amp  */
2879cfd3d8dcSGreg Alexander 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2880cfd3d8dcSGreg Alexander 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2881cfd3d8dcSGreg Alexander 
2882cfd3d8dcSGreg Alexander 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2883cfd3d8dcSGreg Alexander 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2884cfd3d8dcSGreg Alexander 
2885cfd3d8dcSGreg Alexander 	/* DAC1 */
2886cfd3d8dcSGreg Alexander 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2887cfd3d8dcSGreg Alexander 
2888cfd3d8dcSGreg Alexander 	/* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2889cfd3d8dcSGreg Alexander 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2890cfd3d8dcSGreg Alexander 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2891cfd3d8dcSGreg Alexander 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2892cfd3d8dcSGreg Alexander 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2893cfd3d8dcSGreg Alexander 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2894cfd3d8dcSGreg Alexander 	{0x14, AC_VERB_SET_CONNECT_SEL, 2},	/* default to internal mic */
2895cfd3d8dcSGreg Alexander 
2896cfd3d8dcSGreg Alexander 	/* Audio input selector */
2897cfd3d8dcSGreg Alexander 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2898cfd3d8dcSGreg Alexander 	{0x17, AC_VERB_SET_CONNECT_SEL, 1},	/* route ext mic */
2899cfd3d8dcSGreg Alexander 
2900cfd3d8dcSGreg Alexander 	/* SPDIF route: PCM */
2901cfd3d8dcSGreg Alexander 	{0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2902cfd3d8dcSGreg Alexander 	{0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2903cfd3d8dcSGreg Alexander 
2904cfd3d8dcSGreg Alexander 	{0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2905cfd3d8dcSGreg Alexander 	{0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2906cfd3d8dcSGreg Alexander 
2907cfd3d8dcSGreg Alexander 	/* internal microphone */
290828c4edb7SDavid Henningsson 	{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable internal mic */
2909cfd3d8dcSGreg Alexander 
2910cfd3d8dcSGreg Alexander 	/* EAPD */
2911cfd3d8dcSGreg Alexander 	{0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2912cfd3d8dcSGreg Alexander 
2913cfd3d8dcSGreg Alexander 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2914cfd3d8dcSGreg Alexander 	{0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2915cfd3d8dcSGreg Alexander 	{ } /* end */
2916cfd3d8dcSGreg Alexander };
2917cfd3d8dcSGreg Alexander 
291834cbe3a6STakashi Iwai static const struct hda_verb cxt5066_init_verbs_thinkpad[] = {
29197b2bfdbcSJens Taprogge 	{0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
29207b2bfdbcSJens Taprogge 	{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
29217b2bfdbcSJens Taprogge 
29227b2bfdbcSJens Taprogge 	/* Port G: internal speakers  */
29237b2bfdbcSJens Taprogge 	{0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
29247b2bfdbcSJens Taprogge 	{0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
29257b2bfdbcSJens Taprogge 
29267b2bfdbcSJens Taprogge 	/* Port A: HP, Amp  */
29277b2bfdbcSJens Taprogge 	{0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
29287b2bfdbcSJens Taprogge 	{0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
29297b2bfdbcSJens Taprogge 
29307b2bfdbcSJens Taprogge 	/* Port B: Mic Dock */
29317b2bfdbcSJens Taprogge 	{0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
29327b2bfdbcSJens Taprogge 
29337b2bfdbcSJens Taprogge 	/* Port C: Mic */
29347b2bfdbcSJens Taprogge 	{0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
29357b2bfdbcSJens Taprogge 
29367b2bfdbcSJens Taprogge 	/* Port D: HP Dock, Amp */
29377b2bfdbcSJens Taprogge 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
29387b2bfdbcSJens Taprogge 	{0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
29397b2bfdbcSJens Taprogge 
29407b2bfdbcSJens Taprogge 	/* DAC1 */
29417b2bfdbcSJens Taprogge 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
29427b2bfdbcSJens Taprogge 
29437b2bfdbcSJens Taprogge 	/* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
29447b2bfdbcSJens Taprogge 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
29457b2bfdbcSJens Taprogge 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
29467b2bfdbcSJens Taprogge 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
29477b2bfdbcSJens Taprogge 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
29487b2bfdbcSJens Taprogge 	{0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
29497b2bfdbcSJens Taprogge 	{0x14, AC_VERB_SET_CONNECT_SEL, 2},	/* default to internal mic */
29507b2bfdbcSJens Taprogge 
29517b2bfdbcSJens Taprogge 	/* Audio input selector */
29527b2bfdbcSJens Taprogge 	{0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
29537b2bfdbcSJens Taprogge 	{0x17, AC_VERB_SET_CONNECT_SEL, 1},	/* route ext mic */
29547b2bfdbcSJens Taprogge 
29557b2bfdbcSJens Taprogge 	/* SPDIF route: PCM */
29567b2bfdbcSJens Taprogge 	{0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
29577b2bfdbcSJens Taprogge 	{0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
29587b2bfdbcSJens Taprogge 
29597b2bfdbcSJens Taprogge 	{0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
29607b2bfdbcSJens Taprogge 	{0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
29617b2bfdbcSJens Taprogge 
29627b2bfdbcSJens Taprogge 	/* internal microphone */
296328c4edb7SDavid Henningsson 	{0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable internal mic */
29647b2bfdbcSJens Taprogge 
29657b2bfdbcSJens Taprogge 	/* EAPD */
29667b2bfdbcSJens Taprogge 	{0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
29677b2bfdbcSJens Taprogge 
29687b2bfdbcSJens Taprogge 	/* enable unsolicited events for Port A, B, C and D */
29697b2bfdbcSJens Taprogge 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
29707b2bfdbcSJens Taprogge 	{0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
29717b2bfdbcSJens Taprogge 	{0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
29727b2bfdbcSJens Taprogge 	{0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
29737b2bfdbcSJens Taprogge 	{ } /* end */
29747b2bfdbcSJens Taprogge };
29757b2bfdbcSJens Taprogge 
297634cbe3a6STakashi Iwai static const struct hda_verb cxt5066_init_verbs_portd_lo[] = {
29770fb67e98SDaniel Drake 	{0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
29780fb67e98SDaniel Drake 	{ } /* end */
29790fb67e98SDaniel Drake };
29800fb67e98SDaniel Drake 
2981048e78a5SDavid Henningsson 
298234cbe3a6STakashi Iwai static const struct hda_verb cxt5066_init_verbs_hp_laptop[] = {
2983048e78a5SDavid Henningsson 	{0x14, AC_VERB_SET_CONNECT_SEL, 0x0},
2984048e78a5SDavid Henningsson 	{0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2985048e78a5SDavid Henningsson 	{0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2986048e78a5SDavid Henningsson 	{ } /* end */
2987048e78a5SDavid Henningsson };
2988048e78a5SDavid Henningsson 
29890fb67e98SDaniel Drake /* initialize jack-sensing, too */
29900fb67e98SDaniel Drake static int cxt5066_init(struct hda_codec *codec)
29910fb67e98SDaniel Drake {
29920fb67e98SDaniel Drake 	snd_printdd("CXT5066: init\n");
29930fb67e98SDaniel Drake 	conexant_init(codec);
29940fb67e98SDaniel Drake 	if (codec->patch_ops.unsol_event) {
29950fb67e98SDaniel Drake 		cxt5066_hp_automute(codec);
299602b6b5b6SDavid Henningsson 		cxt5066_automic(codec);
29970fb67e98SDaniel Drake 	}
2998c4cfe66cSDaniel Drake 	cxt5066_set_mic_boost(codec);
29990fb67e98SDaniel Drake 	return 0;
30000fb67e98SDaniel Drake }
30010fb67e98SDaniel Drake 
300275f8991dSDaniel Drake static int cxt5066_olpc_init(struct hda_codec *codec)
300375f8991dSDaniel Drake {
3004c4cfe66cSDaniel Drake 	struct conexant_spec *spec = codec->spec;
300575f8991dSDaniel Drake 	snd_printdd("CXT5066: init\n");
300675f8991dSDaniel Drake 	conexant_init(codec);
300775f8991dSDaniel Drake 	cxt5066_hp_automute(codec);
3008c4cfe66cSDaniel Drake 	if (!spec->dc_enable) {
3009c4cfe66cSDaniel Drake 		cxt5066_set_mic_boost(codec);
301075f8991dSDaniel Drake 		cxt5066_olpc_automic(codec);
3011c4cfe66cSDaniel Drake 	} else {
3012c4cfe66cSDaniel Drake 		cxt5066_enable_dc(codec);
3013c4cfe66cSDaniel Drake 	}
301475f8991dSDaniel Drake 	return 0;
301575f8991dSDaniel Drake }
301675f8991dSDaniel Drake 
30170fb67e98SDaniel Drake enum {
30180fb67e98SDaniel Drake 	CXT5066_LAPTOP,		/* Laptops w/ EAPD support */
30190fb67e98SDaniel Drake 	CXT5066_DELL_LAPTOP,	/* Dell Laptop */
30200fb67e98SDaniel Drake 	CXT5066_OLPC_XO_1_5,	/* OLPC XO 1.5 */
30211feba3b7SDavid Henningsson 	CXT5066_DELL_VOSTRO,	/* Dell Vostro 1015i */
3022cfd3d8dcSGreg Alexander 	CXT5066_IDEAPAD,	/* Lenovo IdeaPad U150 */
30237b2bfdbcSJens Taprogge 	CXT5066_THINKPAD,	/* Lenovo ThinkPad T410s, others? */
3024a1d6906eSDavid Henningsson 	CXT5066_ASUS,		/* Asus K52JU, Lenovo G560 - Int mic at 0x1a and Ext mic at 0x1b */
3025048e78a5SDavid Henningsson 	CXT5066_HP_LAPTOP,      /* HP Laptop */
30260fb67e98SDaniel Drake 	CXT5066_MODELS
30270fb67e98SDaniel Drake };
30280fb67e98SDaniel Drake 
3029ea734963STakashi Iwai static const char * const cxt5066_models[CXT5066_MODELS] = {
30300fb67e98SDaniel Drake 	[CXT5066_LAPTOP]	= "laptop",
30310fb67e98SDaniel Drake 	[CXT5066_DELL_LAPTOP]	= "dell-laptop",
30320fb67e98SDaniel Drake 	[CXT5066_OLPC_XO_1_5]	= "olpc-xo-1_5",
30331feba3b7SDavid Henningsson 	[CXT5066_DELL_VOSTRO]	= "dell-vostro",
3034cfd3d8dcSGreg Alexander 	[CXT5066_IDEAPAD]	= "ideapad",
30357b2bfdbcSJens Taprogge 	[CXT5066_THINKPAD]	= "thinkpad",
3036a1d6906eSDavid Henningsson 	[CXT5066_ASUS]		= "asus",
3037048e78a5SDavid Henningsson 	[CXT5066_HP_LAPTOP]	= "hp-laptop",
30380fb67e98SDaniel Drake };
30390fb67e98SDaniel Drake 
304034cbe3a6STakashi Iwai static const struct snd_pci_quirk cxt5066_cfg_tbl[] = {
304100cd0bb7STakashi Iwai 	SND_PCI_QUIRK_MASK(0x1025, 0xff00, 0x0400, "Acer", CXT5066_IDEAPAD),
30421feba3b7SDavid Henningsson 	SND_PCI_QUIRK(0x1028, 0x02d8, "Dell Vostro", CXT5066_DELL_VOSTRO),
30438a96b1e0SDavid Henningsson 	SND_PCI_QUIRK(0x1028, 0x02f5, "Dell Vostro 320", CXT5066_IDEAPAD),
3044ca6cd851SDaniel T Chen 	SND_PCI_QUIRK(0x1028, 0x0401, "Dell Vostro 1014", CXT5066_DELL_VOSTRO),
30451feba3b7SDavid Henningsson 	SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTRO),
3046231f50bcSAnisse Astier 	SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD),
3047ebbd224cSDavid Henningsson 	SND_PCI_QUIRK(0x1028, 0x050f, "Dell Inspiron", CXT5066_IDEAPAD),
3048ebbd224cSDavid Henningsson 	SND_PCI_QUIRK(0x1028, 0x0510, "Dell Vostro", CXT5066_IDEAPAD),
3049048e78a5SDavid Henningsson 	SND_PCI_QUIRK(0x103c, 0x360b, "HP G60", CXT5066_HP_LAPTOP),
3050f6a2491cSAndy Robinson 	SND_PCI_QUIRK(0x1043, 0x13f3, "Asus A52J", CXT5066_ASUS),
3051a1d6906eSDavid Henningsson 	SND_PCI_QUIRK(0x1043, 0x1643, "Asus K52JU", CXT5066_ASUS),
3052f6a2491cSAndy Robinson 	SND_PCI_QUIRK(0x1043, 0x1993, "Asus U50F", CXT5066_ASUS),
30532ca9cac9SAnisse Astier 	SND_PCI_QUIRK(0x1179, 0xff1e, "Toshiba Satellite C650D", CXT5066_IDEAPAD),
3054c5366681SDaniel T Chen 	SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba Satellite P500-PSPGSC-01800T", CXT5066_OLPC_XO_1_5),
30554442dd46SDaniel T Chen 	SND_PCI_QUIRK(0x1179, 0xffe0, "Toshiba Satellite Pro T130-15F", CXT5066_OLPC_XO_1_5),
30565637edb2SDavid Henningsson 	SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
30575637edb2SDavid Henningsson 		      CXT5066_LAPTOP),
30585637edb2SDavid Henningsson 	SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
30594d155641STakashi Iwai 	SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400s", CXT5066_THINKPAD),
3060ef61d4e6SManoj Iyer 	SND_PCI_QUIRK(0x17aa, 0x21c5, "Thinkpad Edge 13", CXT5066_THINKPAD),
306119593875SDavid Henningsson 	SND_PCI_QUIRK(0x17aa, 0x21c6, "Thinkpad Edge 13", CXT5066_ASUS),
30627b2bfdbcSJens Taprogge  	SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo Thinkpad", CXT5066_THINKPAD),
306384012657SDavid Henningsson 	SND_PCI_QUIRK(0x17aa, 0x21da, "Lenovo X220", CXT5066_THINKPAD),
3064b2cb1292SDavid Henningsson 	SND_PCI_QUIRK(0x17aa, 0x21db, "Lenovo X220-tablet", CXT5066_THINKPAD),
3065a1d6906eSDavid Henningsson 	SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G560", CXT5066_ASUS),
306622f21d51SDavid Henningsson 	SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", CXT5066_IDEAPAD), /* Fallback for Lenovos without dock mic */
30670fb67e98SDaniel Drake 	{}
30680fb67e98SDaniel Drake };
30690fb67e98SDaniel Drake 
30700fb67e98SDaniel Drake static int patch_cxt5066(struct hda_codec *codec)
30710fb67e98SDaniel Drake {
30720fb67e98SDaniel Drake 	struct conexant_spec *spec;
30730fb67e98SDaniel Drake 	int board_config;
30740fb67e98SDaniel Drake 
30750fb67e98SDaniel Drake 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
30760fb67e98SDaniel Drake 	if (!spec)
30770fb67e98SDaniel Drake 		return -ENOMEM;
30780fb67e98SDaniel Drake 	codec->spec = spec;
30790fb67e98SDaniel Drake 
30800fb67e98SDaniel Drake 	codec->patch_ops = conexant_patch_ops;
308175f8991dSDaniel Drake 	codec->patch_ops.init = conexant_init;
30820fb67e98SDaniel Drake 
30830fb67e98SDaniel Drake 	spec->dell_automute = 0;
30840fb67e98SDaniel Drake 	spec->multiout.max_channels = 2;
30850fb67e98SDaniel Drake 	spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
30860fb67e98SDaniel Drake 	spec->multiout.dac_nids = cxt5066_dac_nids;
3087f6a2491cSAndy Robinson 	conexant_check_dig_outs(codec, cxt5066_digout_pin_nids,
3088f6a2491cSAndy Robinson 	    ARRAY_SIZE(cxt5066_digout_pin_nids));
30890fb67e98SDaniel Drake 	spec->num_adc_nids = 1;
30900fb67e98SDaniel Drake 	spec->adc_nids = cxt5066_adc_nids;
30910fb67e98SDaniel Drake 	spec->capsrc_nids = cxt5066_capsrc_nids;
30920fb67e98SDaniel Drake 	spec->input_mux = &cxt5066_capture_source;
30930fb67e98SDaniel Drake 
30940fb67e98SDaniel Drake 	spec->port_d_mode = PIN_HP;
30950fb67e98SDaniel Drake 
30960fb67e98SDaniel Drake 	spec->num_init_verbs = 1;
30970fb67e98SDaniel Drake 	spec->init_verbs[0] = cxt5066_init_verbs;
30980fb67e98SDaniel Drake 	spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
30990fb67e98SDaniel Drake 	spec->channel_mode = cxt5066_modes;
31000fb67e98SDaniel Drake 	spec->cur_adc = 0;
31010fb67e98SDaniel Drake 	spec->cur_adc_idx = 0;
31020fb67e98SDaniel Drake 
31033507e2a8STakashi Iwai 	set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
31043507e2a8STakashi Iwai 
31050fb67e98SDaniel Drake 	board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
31060fb67e98SDaniel Drake 						  cxt5066_models, cxt5066_cfg_tbl);
31070fb67e98SDaniel Drake 	switch (board_config) {
31080fb67e98SDaniel Drake 	default:
31090fb67e98SDaniel Drake 	case CXT5066_LAPTOP:
31100fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
31110fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
31120fb67e98SDaniel Drake 		break;
31130fb67e98SDaniel Drake 	case CXT5066_DELL_LAPTOP:
31140fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
31150fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
31160fb67e98SDaniel Drake 
31170fb67e98SDaniel Drake 		spec->port_d_mode = PIN_OUT;
31180fb67e98SDaniel Drake 		spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
31190fb67e98SDaniel Drake 		spec->num_init_verbs++;
31200fb67e98SDaniel Drake 		spec->dell_automute = 1;
31210fb67e98SDaniel Drake 		break;
3122a1d6906eSDavid Henningsson 	case CXT5066_ASUS:
3123048e78a5SDavid Henningsson 	case CXT5066_HP_LAPTOP:
3124048e78a5SDavid Henningsson 		codec->patch_ops.init = cxt5066_init;
312502b6b5b6SDavid Henningsson 		codec->patch_ops.unsol_event = cxt5066_unsol_event;
3126048e78a5SDavid Henningsson 		spec->init_verbs[spec->num_init_verbs] =
3127048e78a5SDavid Henningsson 			cxt5066_init_verbs_hp_laptop;
3128048e78a5SDavid Henningsson 		spec->num_init_verbs++;
3129a1d6906eSDavid Henningsson 		spec->hp_laptop = board_config == CXT5066_HP_LAPTOP;
3130a1d6906eSDavid Henningsson 		spec->asus = board_config == CXT5066_ASUS;
3131048e78a5SDavid Henningsson 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3132048e78a5SDavid Henningsson 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3133048e78a5SDavid Henningsson 		/* no S/PDIF out */
3134f6a2491cSAndy Robinson 		if (board_config == CXT5066_HP_LAPTOP)
3135048e78a5SDavid Henningsson 			spec->multiout.dig_out_nid = 0;
3136048e78a5SDavid Henningsson 		/* input source automatically selected */
3137048e78a5SDavid Henningsson 		spec->input_mux = NULL;
3138048e78a5SDavid Henningsson 		spec->port_d_mode = 0;
3139048e78a5SDavid Henningsson 		spec->mic_boost = 3; /* default 30dB gain */
3140048e78a5SDavid Henningsson 		break;
3141048e78a5SDavid Henningsson 
31420fb67e98SDaniel Drake 	case CXT5066_OLPC_XO_1_5:
314375f8991dSDaniel Drake 		codec->patch_ops.init = cxt5066_olpc_init;
314475f8991dSDaniel Drake 		codec->patch_ops.unsol_event = cxt5066_olpc_unsol_event;
31450fb67e98SDaniel Drake 		spec->init_verbs[0] = cxt5066_init_verbs_olpc;
31460fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
3147c4cfe66cSDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_olpc_dc;
31480fb67e98SDaniel Drake 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
31490fb67e98SDaniel Drake 		spec->port_d_mode = 0;
3150c4cfe66cSDaniel Drake 		spec->mic_boost = 3; /* default 30dB gain */
31510fb67e98SDaniel Drake 
31520fb67e98SDaniel Drake 		/* no S/PDIF out */
31530fb67e98SDaniel Drake 		spec->multiout.dig_out_nid = 0;
31540fb67e98SDaniel Drake 
31550fb67e98SDaniel Drake 		/* input source automatically selected */
31560fb67e98SDaniel Drake 		spec->input_mux = NULL;
315775f8991dSDaniel Drake 
315875f8991dSDaniel Drake 		/* our capture hooks which allow us to turn on the microphone LED
315975f8991dSDaniel Drake 		 * at the right time */
316075f8991dSDaniel Drake 		spec->capture_prepare = cxt5066_olpc_capture_prepare;
316175f8991dSDaniel Drake 		spec->capture_cleanup = cxt5066_olpc_capture_cleanup;
31620fb67e98SDaniel Drake 		break;
31631feba3b7SDavid Henningsson 	case CXT5066_DELL_VOSTRO:
316475f8991dSDaniel Drake 		codec->patch_ops.init = cxt5066_init;
316502b6b5b6SDavid Henningsson 		codec->patch_ops.unsol_event = cxt5066_unsol_event;
316695a618bdSEinar Rünkaru 		spec->init_verbs[0] = cxt5066_init_verbs_vostro;
316795a618bdSEinar Rünkaru 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
316895a618bdSEinar Rünkaru 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3169254bba6aSEinar Rünkaru 		spec->mixers[spec->num_mixers++] = cxt5066_vostro_mixers;
317095a618bdSEinar Rünkaru 		spec->port_d_mode = 0;
3171254bba6aSEinar Rünkaru 		spec->dell_vostro = 1;
3172c4cfe66cSDaniel Drake 		spec->mic_boost = 3; /* default 30dB gain */
317395a618bdSEinar Rünkaru 
317495a618bdSEinar Rünkaru 		/* no S/PDIF out */
317595a618bdSEinar Rünkaru 		spec->multiout.dig_out_nid = 0;
317695a618bdSEinar Rünkaru 
317795a618bdSEinar Rünkaru 		/* input source automatically selected */
317895a618bdSEinar Rünkaru 		spec->input_mux = NULL;
317995a618bdSEinar Rünkaru 		break;
3180cfd3d8dcSGreg Alexander 	case CXT5066_IDEAPAD:
3181cfd3d8dcSGreg Alexander 		codec->patch_ops.init = cxt5066_init;
318202b6b5b6SDavid Henningsson 		codec->patch_ops.unsol_event = cxt5066_unsol_event;
3183cfd3d8dcSGreg Alexander 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3184cfd3d8dcSGreg Alexander 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3185cfd3d8dcSGreg Alexander 		spec->init_verbs[0] = cxt5066_init_verbs_ideapad;
3186cfd3d8dcSGreg Alexander 		spec->port_d_mode = 0;
3187cfd3d8dcSGreg Alexander 		spec->ideapad = 1;
3188cfd3d8dcSGreg Alexander 		spec->mic_boost = 2;	/* default 20dB gain */
3189cfd3d8dcSGreg Alexander 
3190cfd3d8dcSGreg Alexander 		/* no S/PDIF out */
3191cfd3d8dcSGreg Alexander 		spec->multiout.dig_out_nid = 0;
3192cfd3d8dcSGreg Alexander 
3193cfd3d8dcSGreg Alexander 		/* input source automatically selected */
3194cfd3d8dcSGreg Alexander 		spec->input_mux = NULL;
3195cfd3d8dcSGreg Alexander 		break;
31967b2bfdbcSJens Taprogge 	case CXT5066_THINKPAD:
31977b2bfdbcSJens Taprogge 		codec->patch_ops.init = cxt5066_init;
319802b6b5b6SDavid Henningsson 		codec->patch_ops.unsol_event = cxt5066_unsol_event;
31997b2bfdbcSJens Taprogge 		spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
32007b2bfdbcSJens Taprogge 		spec->mixers[spec->num_mixers++] = cxt5066_mixers;
32017b2bfdbcSJens Taprogge 		spec->init_verbs[0] = cxt5066_init_verbs_thinkpad;
32027b2bfdbcSJens Taprogge 		spec->thinkpad = 1;
32037b2bfdbcSJens Taprogge 		spec->port_d_mode = PIN_OUT;
32047b2bfdbcSJens Taprogge 		spec->mic_boost = 2;	/* default 20dB gain */
32057b2bfdbcSJens Taprogge 
32067b2bfdbcSJens Taprogge 		/* no S/PDIF out */
32077b2bfdbcSJens Taprogge 		spec->multiout.dig_out_nid = 0;
32087b2bfdbcSJens Taprogge 
32097b2bfdbcSJens Taprogge 		/* input source automatically selected */
32107b2bfdbcSJens Taprogge 		spec->input_mux = NULL;
32117b2bfdbcSJens Taprogge 		break;
32120fb67e98SDaniel Drake 	}
32130fb67e98SDaniel Drake 
32143507e2a8STakashi Iwai 	if (spec->beep_amp)
32153507e2a8STakashi Iwai 		snd_hda_attach_beep_device(codec, spec->beep_amp);
32163507e2a8STakashi Iwai 
32170fb67e98SDaniel Drake 	return 0;
32180fb67e98SDaniel Drake }
3219461e2c78STakashi Iwai 
3220461e2c78STakashi Iwai /*
3221f2e5731dSTakashi Iwai  * Automatic parser for CX20641 & co
3222f2e5731dSTakashi Iwai  */
3223f2e5731dSTakashi Iwai 
32246764bcefSTakashi Iwai static int cx_auto_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
32256764bcefSTakashi Iwai 				       struct hda_codec *codec,
32266764bcefSTakashi Iwai 				       unsigned int stream_tag,
32276764bcefSTakashi Iwai 				       unsigned int format,
32286764bcefSTakashi Iwai 				       struct snd_pcm_substream *substream)
32296764bcefSTakashi Iwai {
32306764bcefSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
32316764bcefSTakashi Iwai 	hda_nid_t adc = spec->imux_adcs[spec->cur_mux[0]];
32326764bcefSTakashi Iwai 	if (spec->adc_switching) {
32336764bcefSTakashi Iwai 		spec->cur_adc = adc;
32346764bcefSTakashi Iwai 		spec->cur_adc_stream_tag = stream_tag;
32356764bcefSTakashi Iwai 		spec->cur_adc_format = format;
32366764bcefSTakashi Iwai 	}
32376764bcefSTakashi Iwai 	snd_hda_codec_setup_stream(codec, adc, stream_tag, 0, format);
32386764bcefSTakashi Iwai 	return 0;
32396764bcefSTakashi Iwai }
32406764bcefSTakashi Iwai 
32416764bcefSTakashi Iwai static int cx_auto_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
32426764bcefSTakashi Iwai 				       struct hda_codec *codec,
32436764bcefSTakashi Iwai 				       struct snd_pcm_substream *substream)
32446764bcefSTakashi Iwai {
32456764bcefSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
32466764bcefSTakashi Iwai 	snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
32476764bcefSTakashi Iwai 	spec->cur_adc = 0;
32486764bcefSTakashi Iwai 	return 0;
32496764bcefSTakashi Iwai }
32506764bcefSTakashi Iwai 
32516764bcefSTakashi Iwai static const struct hda_pcm_stream cx_auto_pcm_analog_capture = {
32526764bcefSTakashi Iwai 	.substreams = 1,
32536764bcefSTakashi Iwai 	.channels_min = 2,
32546764bcefSTakashi Iwai 	.channels_max = 2,
32556764bcefSTakashi Iwai 	.nid = 0, /* fill later */
32566764bcefSTakashi Iwai 	.ops = {
32576764bcefSTakashi Iwai 		.prepare = cx_auto_capture_pcm_prepare,
32586764bcefSTakashi Iwai 		.cleanup = cx_auto_capture_pcm_cleanup
32596764bcefSTakashi Iwai 	},
32606764bcefSTakashi Iwai };
32616764bcefSTakashi Iwai 
326234cbe3a6STakashi Iwai static const hda_nid_t cx_auto_adc_nids[] = { 0x14 };
3263f2e5731dSTakashi Iwai 
3264f2e5731dSTakashi Iwai /* get the connection index of @nid in the widget @mux */
3265f2e5731dSTakashi Iwai static int get_connection_index(struct hda_codec *codec, hda_nid_t mux,
3266f2e5731dSTakashi Iwai 				hda_nid_t nid)
3267f2e5731dSTakashi Iwai {
3268f2e5731dSTakashi Iwai 	hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3269f2e5731dSTakashi Iwai 	int i, nums;
3270f2e5731dSTakashi Iwai 
3271f2e5731dSTakashi Iwai 	nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3272f2e5731dSTakashi Iwai 	for (i = 0; i < nums; i++)
3273f2e5731dSTakashi Iwai 		if (conn[i] == nid)
3274f2e5731dSTakashi Iwai 			return i;
3275f2e5731dSTakashi Iwai 	return -1;
3276f2e5731dSTakashi Iwai }
3277f2e5731dSTakashi Iwai 
32786764bcefSTakashi Iwai static int has_multi_connection(struct hda_codec *codec, hda_nid_t mux)
32796764bcefSTakashi Iwai {
32806764bcefSTakashi Iwai 	hda_nid_t conn[HDA_MAX_NUM_INPUTS];
32816764bcefSTakashi Iwai 	int nums;
32826764bcefSTakashi Iwai 
32836764bcefSTakashi Iwai 	nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
32846764bcefSTakashi Iwai 	return nums > 1;
32856764bcefSTakashi Iwai }
32866764bcefSTakashi Iwai 
3287f2e5731dSTakashi Iwai /* get an unassigned DAC from the given list.
3288f2e5731dSTakashi Iwai  * Return the nid if found and reduce the DAC list, or return zero if
3289f2e5731dSTakashi Iwai  * not found
3290f2e5731dSTakashi Iwai  */
3291f2e5731dSTakashi Iwai static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t pin,
3292f2e5731dSTakashi Iwai 				    hda_nid_t *dacs, int *num_dacs)
3293f2e5731dSTakashi Iwai {
3294f2e5731dSTakashi Iwai 	int i, nums = *num_dacs;
3295f2e5731dSTakashi Iwai 	hda_nid_t ret = 0;
3296f2e5731dSTakashi Iwai 
3297f2e5731dSTakashi Iwai 	for (i = 0; i < nums; i++) {
3298f2e5731dSTakashi Iwai 		if (get_connection_index(codec, pin, dacs[i]) >= 0) {
3299f2e5731dSTakashi Iwai 			ret = dacs[i];
3300f2e5731dSTakashi Iwai 			break;
3301f2e5731dSTakashi Iwai 		}
3302f2e5731dSTakashi Iwai 	}
3303f2e5731dSTakashi Iwai 	if (!ret)
3304f2e5731dSTakashi Iwai 		return 0;
3305f2e5731dSTakashi Iwai 	if (--nums > 0)
3306f2e5731dSTakashi Iwai 		memmove(dacs, dacs + 1, nums * sizeof(hda_nid_t));
3307f2e5731dSTakashi Iwai 	*num_dacs = nums;
3308f2e5731dSTakashi Iwai 	return ret;
3309f2e5731dSTakashi Iwai }
3310f2e5731dSTakashi Iwai 
3311f2e5731dSTakashi Iwai #define MAX_AUTO_DACS	5
3312f2e5731dSTakashi Iwai 
3313f2e5731dSTakashi Iwai /* fill analog DAC list from the widget tree */
3314f2e5731dSTakashi Iwai static int fill_cx_auto_dacs(struct hda_codec *codec, hda_nid_t *dacs)
3315f2e5731dSTakashi Iwai {
3316f2e5731dSTakashi Iwai 	hda_nid_t nid, end_nid;
3317f2e5731dSTakashi Iwai 	int nums = 0;
3318f2e5731dSTakashi Iwai 
3319f2e5731dSTakashi Iwai 	end_nid = codec->start_nid + codec->num_nodes;
3320f2e5731dSTakashi Iwai 	for (nid = codec->start_nid; nid < end_nid; nid++) {
3321f2e5731dSTakashi Iwai 		unsigned int wcaps = get_wcaps(codec, nid);
3322f2e5731dSTakashi Iwai 		unsigned int type = get_wcaps_type(wcaps);
3323f2e5731dSTakashi Iwai 		if (type == AC_WID_AUD_OUT && !(wcaps & AC_WCAP_DIGITAL)) {
3324f2e5731dSTakashi Iwai 			dacs[nums++] = nid;
3325f2e5731dSTakashi Iwai 			if (nums >= MAX_AUTO_DACS)
3326f2e5731dSTakashi Iwai 				break;
3327f2e5731dSTakashi Iwai 		}
3328f2e5731dSTakashi Iwai 	}
3329f2e5731dSTakashi Iwai 	return nums;
3330f2e5731dSTakashi Iwai }
3331f2e5731dSTakashi Iwai 
3332f2e5731dSTakashi Iwai /* fill pin_dac_pair list from the pin and dac list */
3333f2e5731dSTakashi Iwai static int fill_dacs_for_pins(struct hda_codec *codec, hda_nid_t *pins,
3334f2e5731dSTakashi Iwai 			      int num_pins, hda_nid_t *dacs, int *rest,
3335f2e5731dSTakashi Iwai 			      struct pin_dac_pair *filled, int type)
3336f2e5731dSTakashi Iwai {
3337f2e5731dSTakashi Iwai 	int i, nums;
3338f2e5731dSTakashi Iwai 
3339f2e5731dSTakashi Iwai 	nums = 0;
3340f2e5731dSTakashi Iwai 	for (i = 0; i < num_pins; i++) {
3341f2e5731dSTakashi Iwai 		filled[nums].pin = pins[i];
3342f2e5731dSTakashi Iwai 		filled[nums].type = type;
3343f2e5731dSTakashi Iwai 		filled[nums].dac = get_unassigned_dac(codec, pins[i], dacs, rest);
3344f2e5731dSTakashi Iwai 		nums++;
3345f2e5731dSTakashi Iwai 	}
3346f2e5731dSTakashi Iwai 	return nums;
3347f2e5731dSTakashi Iwai }
3348f2e5731dSTakashi Iwai 
3349f2e5731dSTakashi Iwai /* parse analog output paths */
3350f2e5731dSTakashi Iwai static void cx_auto_parse_output(struct hda_codec *codec)
3351f2e5731dSTakashi Iwai {
3352f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3353f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3354f2e5731dSTakashi Iwai 	hda_nid_t dacs[MAX_AUTO_DACS];
3355f2e5731dSTakashi Iwai 	int i, j, nums, rest;
3356f2e5731dSTakashi Iwai 
3357f2e5731dSTakashi Iwai 	rest = fill_cx_auto_dacs(codec, dacs);
3358f2e5731dSTakashi Iwai 	/* parse all analog output pins */
3359f2e5731dSTakashi Iwai 	nums = fill_dacs_for_pins(codec, cfg->line_out_pins, cfg->line_outs,
3360f2e5731dSTakashi Iwai 				  dacs, &rest, spec->dac_info,
3361f2e5731dSTakashi Iwai 				  AUTO_PIN_LINE_OUT);
3362f2e5731dSTakashi Iwai 	nums += fill_dacs_for_pins(codec, cfg->hp_pins, cfg->hp_outs,
3363f2e5731dSTakashi Iwai 				  dacs, &rest, spec->dac_info + nums,
3364f2e5731dSTakashi Iwai 				  AUTO_PIN_HP_OUT);
3365f2e5731dSTakashi Iwai 	nums += fill_dacs_for_pins(codec, cfg->speaker_pins, cfg->speaker_outs,
3366f2e5731dSTakashi Iwai 				  dacs, &rest, spec->dac_info + nums,
3367f2e5731dSTakashi Iwai 				  AUTO_PIN_SPEAKER_OUT);
3368f2e5731dSTakashi Iwai 	spec->dac_info_filled = nums;
3369f2e5731dSTakashi Iwai 	/* fill multiout struct */
3370f2e5731dSTakashi Iwai 	for (i = 0; i < nums; i++) {
3371f2e5731dSTakashi Iwai 		hda_nid_t dac = spec->dac_info[i].dac;
3372f2e5731dSTakashi Iwai 		if (!dac)
3373f2e5731dSTakashi Iwai 			continue;
3374f2e5731dSTakashi Iwai 		switch (spec->dac_info[i].type) {
3375f2e5731dSTakashi Iwai 		case AUTO_PIN_LINE_OUT:
3376f2e5731dSTakashi Iwai 			spec->private_dac_nids[spec->multiout.num_dacs] = dac;
3377f2e5731dSTakashi Iwai 			spec->multiout.num_dacs++;
3378f2e5731dSTakashi Iwai 			break;
3379f2e5731dSTakashi Iwai 		case AUTO_PIN_HP_OUT:
3380f2e5731dSTakashi Iwai 		case AUTO_PIN_SPEAKER_OUT:
3381f2e5731dSTakashi Iwai 			if (!spec->multiout.hp_nid) {
3382f2e5731dSTakashi Iwai 				spec->multiout.hp_nid = dac;
3383f2e5731dSTakashi Iwai 				break;
3384f2e5731dSTakashi Iwai 			}
3385f2e5731dSTakashi Iwai 			for (j = 0; j < ARRAY_SIZE(spec->multiout.extra_out_nid); j++)
3386f2e5731dSTakashi Iwai 				if (!spec->multiout.extra_out_nid[j]) {
3387f2e5731dSTakashi Iwai 					spec->multiout.extra_out_nid[j] = dac;
3388f2e5731dSTakashi Iwai 					break;
3389f2e5731dSTakashi Iwai 				}
3390f2e5731dSTakashi Iwai 			break;
3391f2e5731dSTakashi Iwai 		}
3392f2e5731dSTakashi Iwai 	}
3393f2e5731dSTakashi Iwai 	spec->multiout.dac_nids = spec->private_dac_nids;
339489724958SDavid Henningsson 	spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3395f2e5731dSTakashi Iwai 
3396f2e5731dSTakashi Iwai 	if (cfg->hp_outs > 0)
3397f2e5731dSTakashi Iwai 		spec->auto_mute = 1;
3398f2e5731dSTakashi Iwai 	spec->vmaster_nid = spec->private_dac_nids[0];
3399f2e5731dSTakashi Iwai }
3400f2e5731dSTakashi Iwai 
3401da339866STakashi Iwai static void cx_auto_turn_eapd(struct hda_codec *codec, int num_pins,
3402da339866STakashi Iwai 			      hda_nid_t *pins, bool on);
3403da339866STakashi Iwai 
3404f2e5731dSTakashi Iwai /* auto-mute/unmute speaker and line outs according to headphone jack */
3405f2e5731dSTakashi Iwai static void cx_auto_hp_automute(struct hda_codec *codec)
3406f2e5731dSTakashi Iwai {
3407f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3408f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3409f2e5731dSTakashi Iwai 	int i, present;
3410f2e5731dSTakashi Iwai 
3411f2e5731dSTakashi Iwai 	if (!spec->auto_mute)
3412f2e5731dSTakashi Iwai 		return;
3413f2e5731dSTakashi Iwai 	present = 0;
3414f2e5731dSTakashi Iwai 	for (i = 0; i < cfg->hp_outs; i++) {
3415f2e5731dSTakashi Iwai 		if (snd_hda_jack_detect(codec, cfg->hp_pins[i])) {
3416f2e5731dSTakashi Iwai 			present = 1;
3417f2e5731dSTakashi Iwai 			break;
3418f2e5731dSTakashi Iwai 		}
3419f2e5731dSTakashi Iwai 	}
3420da339866STakashi Iwai 	cx_auto_turn_eapd(codec, cfg->hp_outs, cfg->hp_pins, present);
3421f2e5731dSTakashi Iwai 	for (i = 0; i < cfg->line_outs; i++) {
3422f2e5731dSTakashi Iwai 		snd_hda_codec_write(codec, cfg->line_out_pins[i], 0,
3423f2e5731dSTakashi Iwai 				    AC_VERB_SET_PIN_WIDGET_CONTROL,
3424f2e5731dSTakashi Iwai 				    present ? 0 : PIN_OUT);
3425f2e5731dSTakashi Iwai 	}
3426da339866STakashi Iwai 	cx_auto_turn_eapd(codec, cfg->line_outs, cfg->line_out_pins, !present);
3427fbb5bb56STakashi Iwai 	for (i = 0; !present && i < cfg->line_outs; i++)
3428fbb5bb56STakashi Iwai 		if (snd_hda_jack_detect(codec, cfg->line_out_pins[i]))
3429fbb5bb56STakashi Iwai 			present = 1;
3430f2e5731dSTakashi Iwai 	for (i = 0; i < cfg->speaker_outs; i++) {
3431f2e5731dSTakashi Iwai 		snd_hda_codec_write(codec, cfg->speaker_pins[i], 0,
3432f2e5731dSTakashi Iwai 				    AC_VERB_SET_PIN_WIDGET_CONTROL,
3433f2e5731dSTakashi Iwai 				    present ? 0 : PIN_OUT);
3434f2e5731dSTakashi Iwai 	}
3435da339866STakashi Iwai 	cx_auto_turn_eapd(codec, cfg->speaker_outs, cfg->speaker_pins, !present);
3436f2e5731dSTakashi Iwai }
3437f2e5731dSTakashi Iwai 
34386764bcefSTakashi Iwai static int cx_auto_mux_enum_info(struct snd_kcontrol *kcontrol,
34396764bcefSTakashi Iwai 				 struct snd_ctl_elem_info *uinfo)
34406764bcefSTakashi Iwai {
34416764bcefSTakashi Iwai 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
34426764bcefSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
34436764bcefSTakashi Iwai 
34446764bcefSTakashi Iwai 	return snd_hda_input_mux_info(&spec->private_imux, uinfo);
34456764bcefSTakashi Iwai }
34466764bcefSTakashi Iwai 
34476764bcefSTakashi Iwai static int cx_auto_mux_enum_get(struct snd_kcontrol *kcontrol,
34486764bcefSTakashi Iwai 				struct snd_ctl_elem_value *ucontrol)
34496764bcefSTakashi Iwai {
34506764bcefSTakashi Iwai 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
34516764bcefSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
34526764bcefSTakashi Iwai 
34536764bcefSTakashi Iwai 	ucontrol->value.enumerated.item[0] = spec->cur_mux[0];
34546764bcefSTakashi Iwai 	return 0;
34556764bcefSTakashi Iwai }
34566764bcefSTakashi Iwai 
34576764bcefSTakashi Iwai static int cx_auto_mux_enum_update(struct hda_codec *codec,
34586764bcefSTakashi Iwai 				   const struct hda_input_mux *imux,
34596764bcefSTakashi Iwai 				   unsigned int idx)
34606764bcefSTakashi Iwai {
34616764bcefSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
34626764bcefSTakashi Iwai 	hda_nid_t adc;
34636764bcefSTakashi Iwai 
34646764bcefSTakashi Iwai 	if (!imux->num_items)
34656764bcefSTakashi Iwai 		return 0;
34666764bcefSTakashi Iwai 	if (idx >= imux->num_items)
34676764bcefSTakashi Iwai 		idx = imux->num_items - 1;
34686764bcefSTakashi Iwai 	if (spec->cur_mux[0] == idx)
34696764bcefSTakashi Iwai 		return 0;
34706764bcefSTakashi Iwai 	adc = spec->imux_adcs[idx];
34716764bcefSTakashi Iwai 	if (has_multi_connection(codec, adc))
34726764bcefSTakashi Iwai 		snd_hda_codec_write(codec, adc, 0,
34736764bcefSTakashi Iwai 				    AC_VERB_SET_CONNECT_SEL,
34746764bcefSTakashi Iwai 				    imux->items[idx].index);
34756764bcefSTakashi Iwai 	if (spec->cur_adc && spec->cur_adc != adc) {
34766764bcefSTakashi Iwai 		/* stream is running, let's swap the current ADC */
34776764bcefSTakashi Iwai 		__snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
34786764bcefSTakashi Iwai 		spec->cur_adc = adc;
34796764bcefSTakashi Iwai 		snd_hda_codec_setup_stream(codec, adc,
34806764bcefSTakashi Iwai 					   spec->cur_adc_stream_tag, 0,
34816764bcefSTakashi Iwai 					   spec->cur_adc_format);
34826764bcefSTakashi Iwai 	}
34836764bcefSTakashi Iwai 	spec->cur_mux[0] = idx;
34846764bcefSTakashi Iwai 	return 1;
34856764bcefSTakashi Iwai }
34866764bcefSTakashi Iwai 
34876764bcefSTakashi Iwai static int cx_auto_mux_enum_put(struct snd_kcontrol *kcontrol,
34886764bcefSTakashi Iwai 				struct snd_ctl_elem_value *ucontrol)
34896764bcefSTakashi Iwai {
34906764bcefSTakashi Iwai 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
34916764bcefSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
34926764bcefSTakashi Iwai 
34936764bcefSTakashi Iwai 	return cx_auto_mux_enum_update(codec, &spec->private_imux,
34946764bcefSTakashi Iwai 				       ucontrol->value.enumerated.item[0]);
34956764bcefSTakashi Iwai }
34966764bcefSTakashi Iwai 
34976764bcefSTakashi Iwai static const struct snd_kcontrol_new cx_auto_capture_mixers[] = {
34986764bcefSTakashi Iwai 	{
34996764bcefSTakashi Iwai 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
35006764bcefSTakashi Iwai 		.name = "Capture Source",
35016764bcefSTakashi Iwai 		.info = cx_auto_mux_enum_info,
35026764bcefSTakashi Iwai 		.get = cx_auto_mux_enum_get,
35036764bcefSTakashi Iwai 		.put = cx_auto_mux_enum_put
35046764bcefSTakashi Iwai 	},
35056764bcefSTakashi Iwai 	{}
35066764bcefSTakashi Iwai };
35076764bcefSTakashi Iwai 
3508f2e5731dSTakashi Iwai /* automatic switch internal and external mic */
3509f2e5731dSTakashi Iwai static void cx_auto_automic(struct hda_codec *codec)
3510f2e5731dSTakashi Iwai {
3511f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3512f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3513f2e5731dSTakashi Iwai 	int ext_idx = spec->auto_mic_ext;
3514f2e5731dSTakashi Iwai 
3515f2e5731dSTakashi Iwai 	if (!spec->auto_mic)
3516f2e5731dSTakashi Iwai 		return;
35176764bcefSTakashi Iwai 	if (snd_hda_jack_detect(codec, cfg->inputs[ext_idx].pin))
35186764bcefSTakashi Iwai 		cx_auto_mux_enum_update(codec, &spec->private_imux, ext_idx);
35196764bcefSTakashi Iwai 	else
35206764bcefSTakashi Iwai 		cx_auto_mux_enum_update(codec, &spec->private_imux, !ext_idx);
3521f2e5731dSTakashi Iwai }
3522f2e5731dSTakashi Iwai 
3523f2e5731dSTakashi Iwai static void cx_auto_unsol_event(struct hda_codec *codec, unsigned int res)
3524f2e5731dSTakashi Iwai {
3525f2e5731dSTakashi Iwai 	int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
3526f2e5731dSTakashi Iwai 	switch (res >> 26) {
3527f2e5731dSTakashi Iwai 	case CONEXANT_HP_EVENT:
3528f2e5731dSTakashi Iwai 		cx_auto_hp_automute(codec);
3529cd372fb3STakashi Iwai 		snd_hda_input_jack_report(codec, nid);
3530f2e5731dSTakashi Iwai 		break;
3531f2e5731dSTakashi Iwai 	case CONEXANT_MIC_EVENT:
3532f2e5731dSTakashi Iwai 		cx_auto_automic(codec);
3533cd372fb3STakashi Iwai 		snd_hda_input_jack_report(codec, nid);
3534f2e5731dSTakashi Iwai 		break;
3535f2e5731dSTakashi Iwai 	}
3536f2e5731dSTakashi Iwai }
3537f2e5731dSTakashi Iwai 
3538f2e5731dSTakashi Iwai /* return true if it's an internal-mic pin */
3539f2e5731dSTakashi Iwai static int is_int_mic(struct hda_codec *codec, hda_nid_t pin)
3540f2e5731dSTakashi Iwai {
3541f2e5731dSTakashi Iwai 	unsigned int def_conf = snd_hda_codec_get_pincfg(codec, pin);
3542f2e5731dSTakashi Iwai 	return get_defcfg_device(def_conf) == AC_JACK_MIC_IN &&
354399ae28beSTakashi Iwai 		snd_hda_get_input_pin_attr(def_conf) == INPUT_PIN_ATTR_INT;
3544f2e5731dSTakashi Iwai }
3545f2e5731dSTakashi Iwai 
3546f2e5731dSTakashi Iwai /* return true if it's an external-mic pin */
3547f2e5731dSTakashi Iwai static int is_ext_mic(struct hda_codec *codec, hda_nid_t pin)
3548f2e5731dSTakashi Iwai {
3549f2e5731dSTakashi Iwai 	unsigned int def_conf = snd_hda_codec_get_pincfg(codec, pin);
3550f2e5731dSTakashi Iwai 	return get_defcfg_device(def_conf) == AC_JACK_MIC_IN &&
3551f68b3b29STakashi Iwai 		snd_hda_get_input_pin_attr(def_conf) >= INPUT_PIN_ATTR_NORMAL &&
3552f68b3b29STakashi Iwai 		(snd_hda_query_pin_caps(codec, pin) & AC_PINCAP_PRES_DETECT);
3553f2e5731dSTakashi Iwai }
3554f2e5731dSTakashi Iwai 
3555f2e5731dSTakashi Iwai /* check whether the pin config is suitable for auto-mic switching;
3556f2e5731dSTakashi Iwai  * auto-mic is enabled only when one int-mic and one-ext mic exist
3557f2e5731dSTakashi Iwai  */
3558f2e5731dSTakashi Iwai static void cx_auto_check_auto_mic(struct hda_codec *codec)
3559f2e5731dSTakashi Iwai {
3560f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3561f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3562f2e5731dSTakashi Iwai 
3563f2e5731dSTakashi Iwai 	if (is_ext_mic(codec, cfg->inputs[0].pin) &&
3564f2e5731dSTakashi Iwai 	    is_int_mic(codec, cfg->inputs[1].pin)) {
3565f2e5731dSTakashi Iwai 		spec->auto_mic = 1;
35662557f742STakashi Iwai 		spec->auto_mic_ext = 0;
3567f2e5731dSTakashi Iwai 		return;
3568f2e5731dSTakashi Iwai 	}
35692557f742STakashi Iwai 	if (is_int_mic(codec, cfg->inputs[0].pin) &&
35702557f742STakashi Iwai 	    is_ext_mic(codec, cfg->inputs[1].pin)) {
3571f2e5731dSTakashi Iwai 		spec->auto_mic = 1;
35722557f742STakashi Iwai 		spec->auto_mic_ext = 1;
3573f2e5731dSTakashi Iwai 		return;
3574f2e5731dSTakashi Iwai 	}
3575f2e5731dSTakashi Iwai }
3576f2e5731dSTakashi Iwai 
3577f2e5731dSTakashi Iwai static void cx_auto_parse_input(struct hda_codec *codec)
3578f2e5731dSTakashi Iwai {
3579f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3580f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3581f2e5731dSTakashi Iwai 	struct hda_input_mux *imux;
35826764bcefSTakashi Iwai 	int i, j;
3583f2e5731dSTakashi Iwai 
3584f2e5731dSTakashi Iwai 	imux = &spec->private_imux;
3585f2e5731dSTakashi Iwai 	for (i = 0; i < cfg->num_inputs; i++) {
35866764bcefSTakashi Iwai 		for (j = 0; j < spec->num_adc_nids; j++) {
35876764bcefSTakashi Iwai 			hda_nid_t adc = spec->adc_nids[j];
35886764bcefSTakashi Iwai 			int idx = get_connection_index(codec, adc,
3589f2e5731dSTakashi Iwai 					       cfg->inputs[i].pin);
3590f2e5731dSTakashi Iwai 			if (idx >= 0) {
3591f2e5731dSTakashi Iwai 				const char *label;
3592f2e5731dSTakashi Iwai 				label = hda_get_autocfg_input_label(codec, cfg, i);
3593f2e5731dSTakashi Iwai 				snd_hda_add_imux_item(imux, label, idx, NULL);
35946764bcefSTakashi Iwai 				spec->imux_adcs[i] = adc;
35956764bcefSTakashi Iwai 				break;
35966764bcefSTakashi Iwai 			}
3597f2e5731dSTakashi Iwai 		}
3598f2e5731dSTakashi Iwai 	}
3599f2e5731dSTakashi Iwai 	if (imux->num_items == 2 && cfg->num_inputs == 2)
3600f2e5731dSTakashi Iwai 		cx_auto_check_auto_mic(codec);
36016764bcefSTakashi Iwai 	if (imux->num_items > 1 && !spec->auto_mic) {
36026764bcefSTakashi Iwai 		for (i = 1; i < imux->num_items; i++) {
36036764bcefSTakashi Iwai 			if (spec->imux_adcs[i] != spec->imux_adcs[0]) {
36046764bcefSTakashi Iwai 				spec->adc_switching = 1;
36056764bcefSTakashi Iwai 				break;
36066764bcefSTakashi Iwai 			}
36076764bcefSTakashi Iwai 		}
36086764bcefSTakashi Iwai 	}
3609f2e5731dSTakashi Iwai }
3610f2e5731dSTakashi Iwai 
3611f2e5731dSTakashi Iwai /* get digital-input audio widget corresponding to the given pin */
3612f2e5731dSTakashi Iwai static hda_nid_t cx_auto_get_dig_in(struct hda_codec *codec, hda_nid_t pin)
3613f2e5731dSTakashi Iwai {
3614f2e5731dSTakashi Iwai 	hda_nid_t nid, end_nid;
3615f2e5731dSTakashi Iwai 
3616f2e5731dSTakashi Iwai 	end_nid = codec->start_nid + codec->num_nodes;
3617f2e5731dSTakashi Iwai 	for (nid = codec->start_nid; nid < end_nid; nid++) {
3618f2e5731dSTakashi Iwai 		unsigned int wcaps = get_wcaps(codec, nid);
3619f2e5731dSTakashi Iwai 		unsigned int type = get_wcaps_type(wcaps);
3620f2e5731dSTakashi Iwai 		if (type == AC_WID_AUD_IN && (wcaps & AC_WCAP_DIGITAL)) {
3621f2e5731dSTakashi Iwai 			if (get_connection_index(codec, nid, pin) >= 0)
3622f2e5731dSTakashi Iwai 				return nid;
3623f2e5731dSTakashi Iwai 		}
3624f2e5731dSTakashi Iwai 	}
3625f2e5731dSTakashi Iwai 	return 0;
3626f2e5731dSTakashi Iwai }
3627f2e5731dSTakashi Iwai 
3628f2e5731dSTakashi Iwai static void cx_auto_parse_digital(struct hda_codec *codec)
3629f2e5731dSTakashi Iwai {
3630f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3631f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3632f2e5731dSTakashi Iwai 	hda_nid_t nid;
3633f2e5731dSTakashi Iwai 
3634f2e5731dSTakashi Iwai 	if (cfg->dig_outs &&
3635f2e5731dSTakashi Iwai 	    snd_hda_get_connections(codec, cfg->dig_out_pins[0], &nid, 1) == 1)
3636f2e5731dSTakashi Iwai 		spec->multiout.dig_out_nid = nid;
3637f2e5731dSTakashi Iwai 	if (cfg->dig_in_pin)
3638f2e5731dSTakashi Iwai 		spec->dig_in_nid = cx_auto_get_dig_in(codec, cfg->dig_in_pin);
3639f2e5731dSTakashi Iwai }
3640f2e5731dSTakashi Iwai 
3641f2e5731dSTakashi Iwai #ifdef CONFIG_SND_HDA_INPUT_BEEP
3642f2e5731dSTakashi Iwai static void cx_auto_parse_beep(struct hda_codec *codec)
3643f2e5731dSTakashi Iwai {
3644f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3645f2e5731dSTakashi Iwai 	hda_nid_t nid, end_nid;
3646f2e5731dSTakashi Iwai 
3647f2e5731dSTakashi Iwai 	end_nid = codec->start_nid + codec->num_nodes;
3648f2e5731dSTakashi Iwai 	for (nid = codec->start_nid; nid < end_nid; nid++)
3649f2e5731dSTakashi Iwai 		if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_BEEP) {
3650f2e5731dSTakashi Iwai 			set_beep_amp(spec, nid, 0, HDA_OUTPUT);
3651f2e5731dSTakashi Iwai 			break;
3652f2e5731dSTakashi Iwai 		}
3653f2e5731dSTakashi Iwai }
3654f2e5731dSTakashi Iwai #else
3655f2e5731dSTakashi Iwai #define cx_auto_parse_beep(codec)
3656f2e5731dSTakashi Iwai #endif
3657f2e5731dSTakashi Iwai 
3658f2e5731dSTakashi Iwai static int cx_auto_parse_auto_config(struct hda_codec *codec)
3659f2e5731dSTakashi Iwai {
3660f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3661f2e5731dSTakashi Iwai 	int err;
3662f2e5731dSTakashi Iwai 
3663f2e5731dSTakashi Iwai 	err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
3664f2e5731dSTakashi Iwai 	if (err < 0)
3665f2e5731dSTakashi Iwai 		return err;
3666f2e5731dSTakashi Iwai 
3667f2e5731dSTakashi Iwai 	cx_auto_parse_output(codec);
3668f2e5731dSTakashi Iwai 	cx_auto_parse_input(codec);
3669f2e5731dSTakashi Iwai 	cx_auto_parse_digital(codec);
3670f2e5731dSTakashi Iwai 	cx_auto_parse_beep(codec);
3671f2e5731dSTakashi Iwai 	return 0;
3672f2e5731dSTakashi Iwai }
3673f2e5731dSTakashi Iwai 
3674da339866STakashi Iwai static void cx_auto_turn_eapd(struct hda_codec *codec, int num_pins,
3675da339866STakashi Iwai 			      hda_nid_t *pins, bool on)
3676f2e5731dSTakashi Iwai {
3677f2e5731dSTakashi Iwai 	int i;
3678f2e5731dSTakashi Iwai 	for (i = 0; i < num_pins; i++) {
3679f2e5731dSTakashi Iwai 		if (snd_hda_query_pin_caps(codec, pins[i]) & AC_PINCAP_EAPD)
3680f2e5731dSTakashi Iwai 			snd_hda_codec_write(codec, pins[i], 0,
3681da339866STakashi Iwai 					    AC_VERB_SET_EAPD_BTLENABLE,
3682da339866STakashi Iwai 					    on ? 0x02 : 0);
3683f2e5731dSTakashi Iwai 	}
3684f2e5731dSTakashi Iwai }
3685f2e5731dSTakashi Iwai 
3686f2e5731dSTakashi Iwai static void select_connection(struct hda_codec *codec, hda_nid_t pin,
3687f2e5731dSTakashi Iwai 			      hda_nid_t src)
3688f2e5731dSTakashi Iwai {
3689f2e5731dSTakashi Iwai 	int idx = get_connection_index(codec, pin, src);
3690f2e5731dSTakashi Iwai 	if (idx >= 0)
3691f2e5731dSTakashi Iwai 		snd_hda_codec_write(codec, pin, 0,
3692f2e5731dSTakashi Iwai 				    AC_VERB_SET_CONNECT_SEL, idx);
3693f2e5731dSTakashi Iwai }
3694f2e5731dSTakashi Iwai 
3695*1f8458a2STakashi Iwai static void mute_outputs(struct hda_codec *codec, int num_nids,
3696*1f8458a2STakashi Iwai 			 const hda_nid_t *nids)
3697f2e5731dSTakashi Iwai {
36980ad1b5b6STakashi Iwai 	int i, val;
3699f2e5731dSTakashi Iwai 
3700*1f8458a2STakashi Iwai 	for (i = 0; i < num_nids; i++) {
3701*1f8458a2STakashi Iwai 		hda_nid_t nid = nids[i];
3702*1f8458a2STakashi Iwai 		if (!(get_wcaps(codec, nid) & AC_WCAP_OUT_AMP))
3703*1f8458a2STakashi Iwai 			continue;
37040ad1b5b6STakashi Iwai 		if (query_amp_caps(codec, nid, HDA_OUTPUT) & AC_AMPCAP_MUTE)
37050ad1b5b6STakashi Iwai 			val = AMP_OUT_MUTE;
37060ad1b5b6STakashi Iwai 		else
37070ad1b5b6STakashi Iwai 			val = AMP_OUT_ZERO;
37080ad1b5b6STakashi Iwai 		snd_hda_codec_write(codec, nid, 0,
37090ad1b5b6STakashi Iwai 				    AC_VERB_SET_AMP_GAIN_MUTE, val);
37100ad1b5b6STakashi Iwai 	}
3711*1f8458a2STakashi Iwai }
3712f2e5731dSTakashi Iwai 
3713*1f8458a2STakashi Iwai static void cx_auto_init_output(struct hda_codec *codec)
3714*1f8458a2STakashi Iwai {
3715*1f8458a2STakashi Iwai 	struct conexant_spec *spec = codec->spec;
3716*1f8458a2STakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3717*1f8458a2STakashi Iwai 	hda_nid_t nid;
3718*1f8458a2STakashi Iwai 	int i;
3719*1f8458a2STakashi Iwai 
3720*1f8458a2STakashi Iwai 	mute_outputs(codec, spec->multiout.num_dacs, spec->multiout.dac_nids);
3721f2e5731dSTakashi Iwai 	for (i = 0; i < cfg->hp_outs; i++)
3722f2e5731dSTakashi Iwai 		snd_hda_codec_write(codec, cfg->hp_pins[i], 0,
3723f2e5731dSTakashi Iwai 				    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
3724*1f8458a2STakashi Iwai 	mute_outputs(codec, cfg->hp_outs, cfg->hp_pins);
3725*1f8458a2STakashi Iwai 	mute_outputs(codec, cfg->line_outs, cfg->line_out_pins);
3726*1f8458a2STakashi Iwai 	mute_outputs(codec, cfg->speaker_outs, cfg->speaker_pins);
3727f2e5731dSTakashi Iwai 	if (spec->auto_mute) {
3728f2e5731dSTakashi Iwai 		for (i = 0; i < cfg->hp_outs; i++) {
3729f2e5731dSTakashi Iwai 			snd_hda_codec_write(codec, cfg->hp_pins[i], 0,
3730f2e5731dSTakashi Iwai 				    AC_VERB_SET_UNSOLICITED_ENABLE,
3731f2e5731dSTakashi Iwai 				    AC_USRSP_EN | CONEXANT_HP_EVENT);
3732f2e5731dSTakashi Iwai 		}
3733f2e5731dSTakashi Iwai 		cx_auto_hp_automute(codec);
3734f2e5731dSTakashi Iwai 	} else {
3735f2e5731dSTakashi Iwai 		for (i = 0; i < cfg->line_outs; i++)
3736f2e5731dSTakashi Iwai 			snd_hda_codec_write(codec, cfg->line_out_pins[i], 0,
3737f2e5731dSTakashi Iwai 				    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3738f2e5731dSTakashi Iwai 		for (i = 0; i < cfg->speaker_outs; i++)
3739f2e5731dSTakashi Iwai 			snd_hda_codec_write(codec, cfg->speaker_pins[i], 0,
3740f2e5731dSTakashi Iwai 				    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3741da339866STakashi Iwai 		/* turn on EAPD */
3742da339866STakashi Iwai 		cx_auto_turn_eapd(codec, cfg->line_outs, cfg->line_out_pins,
3743da339866STakashi Iwai 				  true);
3744da339866STakashi Iwai 		cx_auto_turn_eapd(codec, cfg->hp_outs, cfg->hp_pins,
3745da339866STakashi Iwai 				  true);
3746da339866STakashi Iwai 		cx_auto_turn_eapd(codec, cfg->speaker_outs, cfg->speaker_pins,
3747da339866STakashi Iwai 				  true);
3748f2e5731dSTakashi Iwai 	}
3749f2e5731dSTakashi Iwai 
3750f2e5731dSTakashi Iwai 	for (i = 0; i < spec->dac_info_filled; i++) {
3751f2e5731dSTakashi Iwai 		nid = spec->dac_info[i].dac;
3752f2e5731dSTakashi Iwai 		if (!nid)
3753f2e5731dSTakashi Iwai 			nid = spec->multiout.dac_nids[0];
3754f2e5731dSTakashi Iwai 		select_connection(codec, spec->dac_info[i].pin, nid);
3755f2e5731dSTakashi Iwai 	}
3756f2e5731dSTakashi Iwai }
3757f2e5731dSTakashi Iwai 
3758f2e5731dSTakashi Iwai static void cx_auto_init_input(struct hda_codec *codec)
3759f2e5731dSTakashi Iwai {
3760f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3761f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
37620ad1b5b6STakashi Iwai 	int i, val;
3763f2e5731dSTakashi Iwai 
37640ad1b5b6STakashi Iwai 	for (i = 0; i < spec->num_adc_nids; i++) {
37650ad1b5b6STakashi Iwai 		hda_nid_t nid = spec->adc_nids[i];
3766*1f8458a2STakashi Iwai 		if (!(get_wcaps(codec, nid) & AC_WCAP_IN_AMP))
3767*1f8458a2STakashi Iwai 			continue;
37680ad1b5b6STakashi Iwai 		if (query_amp_caps(codec, nid, HDA_INPUT) & AC_AMPCAP_MUTE)
37690ad1b5b6STakashi Iwai 			val = AMP_IN_MUTE(0);
37700ad1b5b6STakashi Iwai 		else
37710ad1b5b6STakashi Iwai 			val = AMP_IN_UNMUTE(0);
37720ad1b5b6STakashi Iwai 		snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
37730ad1b5b6STakashi Iwai 				    val);
37740ad1b5b6STakashi Iwai 	}
3775f2e5731dSTakashi Iwai 
3776f2e5731dSTakashi Iwai 	for (i = 0; i < cfg->num_inputs; i++) {
3777f2e5731dSTakashi Iwai 		unsigned int type;
3778f2e5731dSTakashi Iwai 		if (cfg->inputs[i].type == AUTO_PIN_MIC)
3779f2e5731dSTakashi Iwai 			type = PIN_VREF80;
3780f2e5731dSTakashi Iwai 		else
3781f2e5731dSTakashi Iwai 			type = PIN_IN;
3782f2e5731dSTakashi Iwai 		snd_hda_codec_write(codec, cfg->inputs[i].pin, 0,
3783f2e5731dSTakashi Iwai 				    AC_VERB_SET_PIN_WIDGET_CONTROL, type);
3784f2e5731dSTakashi Iwai 	}
3785f2e5731dSTakashi Iwai 
3786f2e5731dSTakashi Iwai 	if (spec->auto_mic) {
3787f2e5731dSTakashi Iwai 		int ext_idx = spec->auto_mic_ext;
3788f2e5731dSTakashi Iwai 		snd_hda_codec_write(codec, cfg->inputs[ext_idx].pin, 0,
3789f2e5731dSTakashi Iwai 				    AC_VERB_SET_UNSOLICITED_ENABLE,
3790f2e5731dSTakashi Iwai 				    AC_USRSP_EN | CONEXANT_MIC_EVENT);
3791f2e5731dSTakashi Iwai 		cx_auto_automic(codec);
3792f2e5731dSTakashi Iwai 	} else {
3793f2e5731dSTakashi Iwai 		for (i = 0; i < spec->num_adc_nids; i++) {
3794f2e5731dSTakashi Iwai 			snd_hda_codec_write(codec, spec->adc_nids[i], 0,
3795f2e5731dSTakashi Iwai 					    AC_VERB_SET_CONNECT_SEL,
3796f2e5731dSTakashi Iwai 					    spec->private_imux.items[0].index);
3797f2e5731dSTakashi Iwai 		}
3798f2e5731dSTakashi Iwai 	}
3799f2e5731dSTakashi Iwai }
3800f2e5731dSTakashi Iwai 
3801f2e5731dSTakashi Iwai static void cx_auto_init_digital(struct hda_codec *codec)
3802f2e5731dSTakashi Iwai {
3803f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3804f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3805f2e5731dSTakashi Iwai 
3806f2e5731dSTakashi Iwai 	if (spec->multiout.dig_out_nid)
3807f2e5731dSTakashi Iwai 		snd_hda_codec_write(codec, cfg->dig_out_pins[0], 0,
3808f2e5731dSTakashi Iwai 				    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3809f2e5731dSTakashi Iwai 	if (spec->dig_in_nid)
3810f2e5731dSTakashi Iwai 		snd_hda_codec_write(codec, cfg->dig_in_pin, 0,
3811f2e5731dSTakashi Iwai 				    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN);
3812f2e5731dSTakashi Iwai }
3813f2e5731dSTakashi Iwai 
3814f2e5731dSTakashi Iwai static int cx_auto_init(struct hda_codec *codec)
3815f2e5731dSTakashi Iwai {
3816f2e5731dSTakashi Iwai 	/*snd_hda_sequence_write(codec, cx_auto_init_verbs);*/
3817f2e5731dSTakashi Iwai 	cx_auto_init_output(codec);
3818f2e5731dSTakashi Iwai 	cx_auto_init_input(codec);
3819f2e5731dSTakashi Iwai 	cx_auto_init_digital(codec);
3820f2e5731dSTakashi Iwai 	return 0;
3821f2e5731dSTakashi Iwai }
3822f2e5731dSTakashi Iwai 
3823983345e5SDavid Henningsson static int cx_auto_add_volume_idx(struct hda_codec *codec, const char *basename,
3824f2e5731dSTakashi Iwai 			      const char *dir, int cidx,
3825983345e5SDavid Henningsson 			      hda_nid_t nid, int hda_dir, int amp_idx)
3826f2e5731dSTakashi Iwai {
3827f2e5731dSTakashi Iwai 	static char name[32];
3828f2e5731dSTakashi Iwai 	static struct snd_kcontrol_new knew[] = {
3829f2e5731dSTakashi Iwai 		HDA_CODEC_VOLUME(name, 0, 0, 0),
3830f2e5731dSTakashi Iwai 		HDA_CODEC_MUTE(name, 0, 0, 0),
3831f2e5731dSTakashi Iwai 	};
383234cbe3a6STakashi Iwai 	static const char * const sfx[2] = { "Volume", "Switch" };
3833f2e5731dSTakashi Iwai 	int i, err;
3834f2e5731dSTakashi Iwai 
3835f2e5731dSTakashi Iwai 	for (i = 0; i < 2; i++) {
3836f2e5731dSTakashi Iwai 		struct snd_kcontrol *kctl;
3837983345e5SDavid Henningsson 		knew[i].private_value = HDA_COMPOSE_AMP_VAL(nid, 3, amp_idx,
3838983345e5SDavid Henningsson 							    hda_dir);
3839f2e5731dSTakashi Iwai 		knew[i].subdevice = HDA_SUBDEV_AMP_FLAG;
3840f2e5731dSTakashi Iwai 		knew[i].index = cidx;
3841f2e5731dSTakashi Iwai 		snprintf(name, sizeof(name), "%s%s %s", basename, dir, sfx[i]);
3842f2e5731dSTakashi Iwai 		kctl = snd_ctl_new1(&knew[i], codec);
3843f2e5731dSTakashi Iwai 		if (!kctl)
3844f2e5731dSTakashi Iwai 			return -ENOMEM;
3845f2e5731dSTakashi Iwai 		err = snd_hda_ctl_add(codec, nid, kctl);
3846f2e5731dSTakashi Iwai 		if (err < 0)
3847f2e5731dSTakashi Iwai 			return err;
3848f2e5731dSTakashi Iwai 		if (!(query_amp_caps(codec, nid, hda_dir) & AC_AMPCAP_MUTE))
3849f2e5731dSTakashi Iwai 			break;
3850f2e5731dSTakashi Iwai 	}
3851f2e5731dSTakashi Iwai 	return 0;
3852f2e5731dSTakashi Iwai }
3853f2e5731dSTakashi Iwai 
3854983345e5SDavid Henningsson #define cx_auto_add_volume(codec, str, dir, cidx, nid, hda_dir)		\
3855983345e5SDavid Henningsson 	cx_auto_add_volume_idx(codec, str, dir, cidx, nid, hda_dir, 0)
3856983345e5SDavid Henningsson 
3857f2e5731dSTakashi Iwai #define cx_auto_add_pb_volume(codec, nid, str, idx)			\
3858f2e5731dSTakashi Iwai 	cx_auto_add_volume(codec, str, " Playback", idx, nid, HDA_OUTPUT)
3859f2e5731dSTakashi Iwai 
3860*1f8458a2STakashi Iwai static int try_add_pb_volume(struct hda_codec *codec, hda_nid_t dac,
3861*1f8458a2STakashi Iwai 			     hda_nid_t pin, const char *name, int idx)
3862*1f8458a2STakashi Iwai {
3863*1f8458a2STakashi Iwai 	unsigned int caps;
3864*1f8458a2STakashi Iwai 	caps = query_amp_caps(codec, dac, HDA_OUTPUT);
3865*1f8458a2STakashi Iwai 	if (caps & AC_AMPCAP_NUM_STEPS)
3866*1f8458a2STakashi Iwai 		return cx_auto_add_pb_volume(codec, dac, name, idx);
3867*1f8458a2STakashi Iwai 	caps = query_amp_caps(codec, pin, HDA_OUTPUT);
3868*1f8458a2STakashi Iwai 	if (caps & AC_AMPCAP_NUM_STEPS)
3869*1f8458a2STakashi Iwai 		return cx_auto_add_pb_volume(codec, pin, name, idx);
3870*1f8458a2STakashi Iwai 	return 0;
3871*1f8458a2STakashi Iwai }
3872*1f8458a2STakashi Iwai 
3873f2e5731dSTakashi Iwai static int cx_auto_build_output_controls(struct hda_codec *codec)
3874f2e5731dSTakashi Iwai {
3875f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3876f2e5731dSTakashi Iwai 	int i, err;
3877f2e5731dSTakashi Iwai 	int num_line = 0, num_hp = 0, num_spk = 0;
3878ea734963STakashi Iwai 	static const char * const texts[3] = { "Front", "Surround", "CLFE" };
3879f2e5731dSTakashi Iwai 
3880f2e5731dSTakashi Iwai 	if (spec->dac_info_filled == 1)
3881*1f8458a2STakashi Iwai 		return try_add_pb_volume(codec, spec->dac_info[0].dac,
3882*1f8458a2STakashi Iwai 					 spec->dac_info[0].pin,
3883f2e5731dSTakashi Iwai 					 "Master", 0);
3884*1f8458a2STakashi Iwai 
3885f2e5731dSTakashi Iwai 	for (i = 0; i < spec->dac_info_filled; i++) {
3886f2e5731dSTakashi Iwai 		const char *label;
3887f2e5731dSTakashi Iwai 		int idx, type;
3888f2e5731dSTakashi Iwai 		if (!spec->dac_info[i].dac)
3889f2e5731dSTakashi Iwai 			continue;
3890f2e5731dSTakashi Iwai 		type = spec->dac_info[i].type;
3891f2e5731dSTakashi Iwai 		if (type == AUTO_PIN_LINE_OUT)
3892f2e5731dSTakashi Iwai 			type = spec->autocfg.line_out_type;
3893f2e5731dSTakashi Iwai 		switch (type) {
3894f2e5731dSTakashi Iwai 		case AUTO_PIN_LINE_OUT:
3895f2e5731dSTakashi Iwai 		default:
3896f2e5731dSTakashi Iwai 			label = texts[num_line++];
3897f2e5731dSTakashi Iwai 			idx = 0;
3898f2e5731dSTakashi Iwai 			break;
3899f2e5731dSTakashi Iwai 		case AUTO_PIN_HP_OUT:
3900f2e5731dSTakashi Iwai 			label = "Headphone";
3901f2e5731dSTakashi Iwai 			idx = num_hp++;
3902f2e5731dSTakashi Iwai 			break;
3903f2e5731dSTakashi Iwai 		case AUTO_PIN_SPEAKER_OUT:
3904f2e5731dSTakashi Iwai 			label = "Speaker";
3905f2e5731dSTakashi Iwai 			idx = num_spk++;
3906f2e5731dSTakashi Iwai 			break;
3907f2e5731dSTakashi Iwai 		}
3908*1f8458a2STakashi Iwai 		err = try_add_pb_volume(codec, spec->dac_info[i].dac,
3909*1f8458a2STakashi Iwai 					spec->dac_info[i].pin,
3910f2e5731dSTakashi Iwai 					label, idx);
3911f2e5731dSTakashi Iwai 		if (err < 0)
3912f2e5731dSTakashi Iwai 			return err;
3913f2e5731dSTakashi Iwai 	}
3914f2e5731dSTakashi Iwai 	return 0;
3915f2e5731dSTakashi Iwai }
3916f2e5731dSTakashi Iwai 
39176764bcefSTakashi Iwai static int cx_auto_add_capture_volume(struct hda_codec *codec, hda_nid_t nid,
39186764bcefSTakashi Iwai 				      const char *label, const char *pfx,
39196764bcefSTakashi Iwai 				      int cidx)
39206764bcefSTakashi Iwai {
39216764bcefSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
39226764bcefSTakashi Iwai 	int i;
39236764bcefSTakashi Iwai 
39246764bcefSTakashi Iwai 	for (i = 0; i < spec->num_adc_nids; i++) {
39256764bcefSTakashi Iwai 		hda_nid_t adc_nid = spec->adc_nids[i];
39266764bcefSTakashi Iwai 		int idx = get_connection_index(codec, adc_nid, nid);
39276764bcefSTakashi Iwai 		if (idx < 0)
39286764bcefSTakashi Iwai 			continue;
39296764bcefSTakashi Iwai 		return cx_auto_add_volume_idx(codec, label, pfx,
39306764bcefSTakashi Iwai 					      cidx, adc_nid, HDA_INPUT, idx);
39316764bcefSTakashi Iwai 	}
39326764bcefSTakashi Iwai 	return 0;
39336764bcefSTakashi Iwai }
39346764bcefSTakashi Iwai 
3935f2e5731dSTakashi Iwai static int cx_auto_build_input_controls(struct hda_codec *codec)
3936f2e5731dSTakashi Iwai {
3937f2e5731dSTakashi Iwai 	struct conexant_spec *spec = codec->spec;
3938f2e5731dSTakashi Iwai 	struct auto_pin_cfg *cfg = &spec->autocfg;
3939f2e5731dSTakashi Iwai 	static const char *prev_label;
39406764bcefSTakashi Iwai 	int i, err, cidx;
3941983345e5SDavid Henningsson 
3942f2e5731dSTakashi Iwai 	prev_label = NULL;
3943f2e5731dSTakashi Iwai 	cidx = 0;
3944f2e5731dSTakashi Iwai 	for (i = 0; i < cfg->num_inputs; i++) {
3945f2e5731dSTakashi Iwai 		hda_nid_t nid = cfg->inputs[i].pin;
3946f2e5731dSTakashi Iwai 		const char *label;
3947983345e5SDavid Henningsson 		int pin_amp = get_wcaps(codec, nid) & AC_WCAP_IN_AMP;
3948983345e5SDavid Henningsson 
3949f2e5731dSTakashi Iwai 		label = hda_get_autocfg_input_label(codec, cfg, i);
3950f2e5731dSTakashi Iwai 		if (label == prev_label)
3951f2e5731dSTakashi Iwai 			cidx++;
3952f2e5731dSTakashi Iwai 		else
3953f2e5731dSTakashi Iwai 			cidx = 0;
3954f2e5731dSTakashi Iwai 		prev_label = label;
3955983345e5SDavid Henningsson 
3956983345e5SDavid Henningsson 		if (pin_amp) {
3957983345e5SDavid Henningsson 			err = cx_auto_add_volume(codec, label, " Boost", cidx,
3958f2e5731dSTakashi Iwai 						 nid, HDA_INPUT);
3959f2e5731dSTakashi Iwai 			if (err < 0)
3960f2e5731dSTakashi Iwai 				return err;
3961f2e5731dSTakashi Iwai 		}
3962983345e5SDavid Henningsson 
39636764bcefSTakashi Iwai 		if (cfg->num_inputs == 1) {
39646764bcefSTakashi Iwai 			err = cx_auto_add_capture_volume(codec, nid,
39656764bcefSTakashi Iwai 							 "Capture", "", cidx);
39666764bcefSTakashi Iwai 		} else {
39676764bcefSTakashi Iwai 			err = cx_auto_add_capture_volume(codec, nid,
39686764bcefSTakashi Iwai 							 label, " Capture", cidx);
39696764bcefSTakashi Iwai 		}
3970983345e5SDavid Henningsson 		if (err < 0)
3971983345e5SDavid Henningsson 			return err;
3972983345e5SDavid Henningsson 	}
39736764bcefSTakashi Iwai 
39746764bcefSTakashi Iwai 	if (spec->private_imux.num_items > 1 && !spec->auto_mic) {
39756764bcefSTakashi Iwai 		err = snd_hda_add_new_ctls(codec, cx_auto_capture_mixers);
39766764bcefSTakashi Iwai 		if (err < 0)
39776764bcefSTakashi Iwai 			return err;
3978983345e5SDavid Henningsson 	}
39796764bcefSTakashi Iwai 
3980f2e5731dSTakashi Iwai 	return 0;
3981f2e5731dSTakashi Iwai }
3982f2e5731dSTakashi Iwai 
3983f2e5731dSTakashi Iwai static int cx_auto_build_controls(struct hda_codec *codec)
3984f2e5731dSTakashi Iwai {
3985f2e5731dSTakashi Iwai 	int err;
3986f2e5731dSTakashi Iwai 
3987f2e5731dSTakashi Iwai 	err = cx_auto_build_output_controls(codec);
3988f2e5731dSTakashi Iwai 	if (err < 0)
3989f2e5731dSTakashi Iwai 		return err;
3990f2e5731dSTakashi Iwai 	err = cx_auto_build_input_controls(codec);
3991f2e5731dSTakashi Iwai 	if (err < 0)
3992f2e5731dSTakashi Iwai 		return err;
3993f2e5731dSTakashi Iwai 	return conexant_build_controls(codec);
3994f2e5731dSTakashi Iwai }
3995f2e5731dSTakashi Iwai 
399634cbe3a6STakashi Iwai static const struct hda_codec_ops cx_auto_patch_ops = {
3997f2e5731dSTakashi Iwai 	.build_controls = cx_auto_build_controls,
3998f2e5731dSTakashi Iwai 	.build_pcms = conexant_build_pcms,
3999f2e5731dSTakashi Iwai 	.init = cx_auto_init,
4000f2e5731dSTakashi Iwai 	.free = conexant_free,
4001f2e5731dSTakashi Iwai 	.unsol_event = cx_auto_unsol_event,
4002f2e5731dSTakashi Iwai #ifdef CONFIG_SND_HDA_POWER_SAVE
4003f2e5731dSTakashi Iwai 	.suspend = conexant_suspend,
4004f2e5731dSTakashi Iwai #endif
4005f2e5731dSTakashi Iwai 	.reboot_notify = snd_hda_shutup_pins,
4006f2e5731dSTakashi Iwai };
4007f2e5731dSTakashi Iwai 
4008f2e5731dSTakashi Iwai static int patch_conexant_auto(struct hda_codec *codec)
4009f2e5731dSTakashi Iwai {
4010f2e5731dSTakashi Iwai 	struct conexant_spec *spec;
4011f2e5731dSTakashi Iwai 	int err;
4012f2e5731dSTakashi Iwai 
4013*1f8458a2STakashi Iwai 	printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4014*1f8458a2STakashi Iwai 	       codec->chip_name);
4015*1f8458a2STakashi Iwai 
4016f2e5731dSTakashi Iwai 	spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4017f2e5731dSTakashi Iwai 	if (!spec)
4018f2e5731dSTakashi Iwai 		return -ENOMEM;
4019f2e5731dSTakashi Iwai 	codec->spec = spec;
4020*1f8458a2STakashi Iwai 	switch (codec->vendor_id) {
4021*1f8458a2STakashi Iwai 	case 0x14f15051:
40226764bcefSTakashi Iwai 		codec->pin_amp_workaround = 1;
40236764bcefSTakashi Iwai 		spec->adc_nids = cxt5051_adc_nids;
40246764bcefSTakashi Iwai 		spec->num_adc_nids = ARRAY_SIZE(cxt5051_adc_nids);
40256764bcefSTakashi Iwai 		spec->capsrc_nids = spec->adc_nids;
4026*1f8458a2STakashi Iwai 		break;
4027*1f8458a2STakashi Iwai 	case 0x14f15045:
4028*1f8458a2STakashi Iwai 		codec->pin_amp_workaround = 1;
4029*1f8458a2STakashi Iwai 		spec->adc_nids = cxt5045_adc_nids;
4030*1f8458a2STakashi Iwai 		spec->num_adc_nids = ARRAY_SIZE(cxt5045_adc_nids);
4031*1f8458a2STakashi Iwai 		spec->capsrc_nids = spec->adc_nids;
4032*1f8458a2STakashi Iwai 		break;
4033*1f8458a2STakashi Iwai 	default:
4034f2e5731dSTakashi Iwai 		spec->adc_nids = cx_auto_adc_nids;
4035f2e5731dSTakashi Iwai 		spec->num_adc_nids = ARRAY_SIZE(cx_auto_adc_nids);
4036f2e5731dSTakashi Iwai 		spec->capsrc_nids = spec->adc_nids;
4037*1f8458a2STakashi Iwai 		break;
40386764bcefSTakashi Iwai 	}
4039f2e5731dSTakashi Iwai 	err = cx_auto_parse_auto_config(codec);
4040f2e5731dSTakashi Iwai 	if (err < 0) {
4041f2e5731dSTakashi Iwai 		kfree(codec->spec);
4042f2e5731dSTakashi Iwai 		codec->spec = NULL;
4043f2e5731dSTakashi Iwai 		return err;
4044f2e5731dSTakashi Iwai 	}
40456764bcefSTakashi Iwai 	spec->capture_stream = &cx_auto_pcm_analog_capture;
4046f2e5731dSTakashi Iwai 	codec->patch_ops = cx_auto_patch_ops;
4047f2e5731dSTakashi Iwai 	if (spec->beep_amp)
4048f2e5731dSTakashi Iwai 		snd_hda_attach_beep_device(codec, spec->beep_amp);
4049f2e5731dSTakashi Iwai 	return 0;
4050f2e5731dSTakashi Iwai }
4051f2e5731dSTakashi Iwai 
4052f2e5731dSTakashi Iwai /*
4053461e2c78STakashi Iwai  */
4054461e2c78STakashi Iwai 
405534cbe3a6STakashi Iwai static const struct hda_codec_preset snd_hda_preset_conexant[] = {
405682f30040STobin Davis 	{ .id = 0x14f15045, .name = "CX20549 (Venice)",
405782f30040STobin Davis 	  .patch = patch_cxt5045 },
405882f30040STobin Davis 	{ .id = 0x14f15047, .name = "CX20551 (Waikiki)",
405982f30040STobin Davis 	  .patch = patch_cxt5047 },
4060461e2c78STakashi Iwai 	{ .id = 0x14f15051, .name = "CX20561 (Hermosa)",
4061461e2c78STakashi Iwai 	  .patch = patch_cxt5051 },
40620fb67e98SDaniel Drake 	{ .id = 0x14f15066, .name = "CX20582 (Pebble)",
40630fb67e98SDaniel Drake 	  .patch = patch_cxt5066 },
406495a618bdSEinar Rünkaru 	{ .id = 0x14f15067, .name = "CX20583 (Pebble HSF)",
406595a618bdSEinar Rünkaru 	  .patch = patch_cxt5066 },
4066850eab9dSTakashi Iwai 	{ .id = 0x14f15068, .name = "CX20584",
4067850eab9dSTakashi Iwai 	  .patch = patch_cxt5066 },
40687b2bfdbcSJens Taprogge 	{ .id = 0x14f15069, .name = "CX20585",
40697b2bfdbcSJens Taprogge 	  .patch = patch_cxt5066 },
40706da8b516SDavid Henningsson 	{ .id = 0x14f1506e, .name = "CX20590",
40716da8b516SDavid Henningsson 	  .patch = patch_cxt5066 },
4072f2e5731dSTakashi Iwai 	{ .id = 0x14f15097, .name = "CX20631",
4073f2e5731dSTakashi Iwai 	  .patch = patch_conexant_auto },
4074f2e5731dSTakashi Iwai 	{ .id = 0x14f15098, .name = "CX20632",
4075f2e5731dSTakashi Iwai 	  .patch = patch_conexant_auto },
4076f2e5731dSTakashi Iwai 	{ .id = 0x14f150a1, .name = "CX20641",
4077f2e5731dSTakashi Iwai 	  .patch = patch_conexant_auto },
4078f2e5731dSTakashi Iwai 	{ .id = 0x14f150a2, .name = "CX20642",
4079f2e5731dSTakashi Iwai 	  .patch = patch_conexant_auto },
4080f2e5731dSTakashi Iwai 	{ .id = 0x14f150ab, .name = "CX20651",
4081f2e5731dSTakashi Iwai 	  .patch = patch_conexant_auto },
4082f2e5731dSTakashi Iwai 	{ .id = 0x14f150ac, .name = "CX20652",
4083f2e5731dSTakashi Iwai 	  .patch = patch_conexant_auto },
4084f2e5731dSTakashi Iwai 	{ .id = 0x14f150b8, .name = "CX20664",
4085f2e5731dSTakashi Iwai 	  .patch = patch_conexant_auto },
4086f2e5731dSTakashi Iwai 	{ .id = 0x14f150b9, .name = "CX20665",
4087f2e5731dSTakashi Iwai 	  .patch = patch_conexant_auto },
4088c9b443d4STobin Davis 	{} /* terminator */
4089c9b443d4STobin Davis };
40901289e9e8STakashi Iwai 
40911289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15045");
40921289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15047");
40931289e9e8STakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15051");
40940fb67e98SDaniel Drake MODULE_ALIAS("snd-hda-codec-id:14f15066");
409595a618bdSEinar Rünkaru MODULE_ALIAS("snd-hda-codec-id:14f15067");
4096850eab9dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15068");
40977b2bfdbcSJens Taprogge MODULE_ALIAS("snd-hda-codec-id:14f15069");
40986da8b516SDavid Henningsson MODULE_ALIAS("snd-hda-codec-id:14f1506e");
4099f2e5731dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15097");
4100f2e5731dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f15098");
4101f2e5731dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f150a1");
4102f2e5731dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f150a2");
4103f2e5731dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f150ab");
4104f2e5731dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f150ac");
4105f2e5731dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f150b8");
4106f2e5731dSTakashi Iwai MODULE_ALIAS("snd-hda-codec-id:14f150b9");
41071289e9e8STakashi Iwai 
41081289e9e8STakashi Iwai MODULE_LICENSE("GPL");
41091289e9e8STakashi Iwai MODULE_DESCRIPTION("Conexant HD-audio codec");
41101289e9e8STakashi Iwai 
41111289e9e8STakashi Iwai static struct hda_codec_preset_list conexant_list = {
41121289e9e8STakashi Iwai 	.preset = snd_hda_preset_conexant,
41131289e9e8STakashi Iwai 	.owner = THIS_MODULE,
41141289e9e8STakashi Iwai };
41151289e9e8STakashi Iwai 
41161289e9e8STakashi Iwai static int __init patch_conexant_init(void)
41171289e9e8STakashi Iwai {
41181289e9e8STakashi Iwai 	return snd_hda_add_codec_preset(&conexant_list);
41191289e9e8STakashi Iwai }
41201289e9e8STakashi Iwai 
41211289e9e8STakashi Iwai static void __exit patch_conexant_exit(void)
41221289e9e8STakashi Iwai {
41231289e9e8STakashi Iwai 	snd_hda_delete_codec_preset(&conexant_list);
41241289e9e8STakashi Iwai }
41251289e9e8STakashi Iwai 
41261289e9e8STakashi Iwai module_init(patch_conexant_init)
41271289e9e8STakashi Iwai module_exit(patch_conexant_exit)
4128