blob: 2cfcec049ea928fe717d273ef9c16c6e4ccec9f1 [file] [log] [blame]
Tobin Davisc9b443d2006-11-14 12:13:39 +01001/*
2 * HD audio interface patch for Conexant HDA audio codec
3 *
4 * Copyright (c) 2006 Pototskiy Akex <alex.pototskiy@gmail.com>
5 * Takashi Iwai <tiwai@suse.de>
6 * Tobin Davis <tdavis@dsl-only.net>
7 *
8 * This driver is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This driver is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
Tobin Davisc9b443d2006-11-14 12:13:39 +010023#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/slab.h>
26#include <linux/pci.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040027#include <linux/module.h>
Tobin Davisc9b443d2006-11-14 12:13:39 +010028#include <sound/core.h>
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010029#include <sound/jack.h>
30
Tobin Davisc9b443d2006-11-14 12:13:39 +010031#include "hda_codec.h"
32#include "hda_local.h"
Takashi Iwai23d30f22012-05-07 17:17:32 +020033#include "hda_auto_parser.h"
Einar Rünkaruc0f8faf2009-12-16 22:41:36 +020034#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020035#include "hda_jack.h"
Tobin Davisc9b443d2006-11-14 12:13:39 +010036
37#define CXT_PIN_DIR_IN 0x00
38#define CXT_PIN_DIR_OUT 0x01
39#define CXT_PIN_DIR_INOUT 0x02
40#define CXT_PIN_DIR_IN_NOMICBIAS 0x03
41#define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
42
43#define CONEXANT_HP_EVENT 0x37
44#define CONEXANT_MIC_EVENT 0x38
Takashi Iwai03697e22011-05-17 09:53:31 +020045#define CONEXANT_LINE_EVENT 0x39
Tobin Davisc9b443d2006-11-14 12:13:39 +010046
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010047/* Conexant 5051 specific */
Tobin Davisc9b443d2006-11-14 12:13:39 +010048
Takashi Iwaiecda0cf2010-01-24 11:14:36 +010049#define CXT5051_SPDIF_OUT 0x12
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010050#define CXT5051_PORTB_EVENT 0x38
51#define CXT5051_PORTC_EVENT 0x39
52
Takashi Iwaifaddaa52010-01-23 22:31:36 +010053#define AUTO_MIC_PORTB (1 << 1)
54#define AUTO_MIC_PORTC (1 << 2)
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010055
Takashi Iwaif2e57312010-09-15 10:07:08 +020056struct pin_dac_pair {
57 hda_nid_t pin;
58 hda_nid_t dac;
59 int type;
60};
61
Takashi Iwai47ad1f42011-05-17 09:15:55 +020062struct imux_info {
63 hda_nid_t pin; /* input pin NID */
64 hda_nid_t adc; /* connected ADC NID */
65 hda_nid_t boost; /* optional boost volume NID */
66 int index; /* corresponding to autocfg.input */
67};
68
Tobin Davisc9b443d2006-11-14 12:13:39 +010069struct conexant_spec {
Takashi Iwai23d30f22012-05-07 17:17:32 +020070 struct hda_gen_spec gen;
Tobin Davisc9b443d2006-11-14 12:13:39 +010071
Takashi Iwai34cbe3a2011-05-02 11:38:21 +020072 const struct snd_kcontrol_new *mixers[5];
Tobin Davisc9b443d2006-11-14 12:13:39 +010073 int num_mixers;
Takashi Iwaidd5746a2009-03-10 14:30:40 +010074 hda_nid_t vmaster_nid;
Takashi Iwaid2f344b2012-03-12 16:59:58 +010075 struct hda_vmaster_mute_hook vmaster_mute;
Takashi Iwaif29735c2012-03-13 07:55:10 +010076 bool vmaster_mute_led;
Tobin Davisc9b443d2006-11-14 12:13:39 +010077
78 const struct hda_verb *init_verbs[5]; /* initialization verbs
79 * don't forget NULL
80 * termination!
81 */
82 unsigned int num_init_verbs;
83
84 /* playback */
85 struct hda_multi_out multiout; /* playback set-up
86 * max_channels, dacs must be set
87 * dig_out_nid and hp_nid are optional
88 */
89 unsigned int cur_eapd;
Tobin Davis82f30042007-02-13 12:45:44 +010090 unsigned int hp_present;
Takashi Iwai03697e22011-05-17 09:53:31 +020091 unsigned int line_present;
Takashi Iwaifaddaa52010-01-23 22:31:36 +010092 unsigned int auto_mic;
Takashi Iwaif6100bb2011-05-13 18:26:39 +020093 int auto_mic_ext; /* imux_pins[] index for ext mic */
Takashi Iwai43c1b2e2011-05-17 10:35:15 +020094 int auto_mic_dock; /* imux_pins[] index for dock mic */
95 int auto_mic_int; /* imux_pins[] index for int mic */
Tobin Davisc9b443d2006-11-14 12:13:39 +010096 unsigned int need_dac_fix;
Andy Robinsonf6a24912011-01-24 10:12:37 -050097 hda_nid_t slave_dig_outs[2];
Tobin Davisc9b443d2006-11-14 12:13:39 +010098
99 /* capture */
100 unsigned int num_adc_nids;
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200101 const hda_nid_t *adc_nids;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100102 hda_nid_t dig_in_nid; /* digital-in NID; optional */
103
Takashi Iwai461e2c72008-01-25 11:35:17 +0100104 unsigned int cur_adc_idx;
105 hda_nid_t cur_adc;
106 unsigned int cur_adc_stream_tag;
107 unsigned int cur_adc_format;
108
Takashi Iwai6764bce2011-05-13 16:52:25 +0200109 const struct hda_pcm_stream *capture_stream;
110
Tobin Davisc9b443d2006-11-14 12:13:39 +0100111 /* capture source */
112 const struct hda_input_mux *input_mux;
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200113 const hda_nid_t *capsrc_nids;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100114 unsigned int cur_mux[3];
115
116 /* channel model */
117 const struct hda_channel_mode *channel_mode;
118 int num_channel_mode;
119
120 /* PCM information */
121 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
122
Tobin Davisc9b443d2006-11-14 12:13:39 +0100123 unsigned int spdif_route;
124
125 /* dynamic controls, init_verbs and input_mux */
126 struct auto_pin_cfg autocfg;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100127 struct hda_input_mux private_imux;
Takashi Iwai47ad1f42011-05-17 09:15:55 +0200128 struct imux_info imux_info[HDA_MAX_NUM_INPUTS];
Takashi Iwai22ce5f72011-05-15 12:19:29 +0200129 hda_nid_t private_adc_nids[HDA_MAX_NUM_INPUTS];
Takashi Iwai41923e42007-10-22 17:20:10 +0200130 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwaif2e57312010-09-15 10:07:08 +0200131 struct pin_dac_pair dac_info[8];
132 int dac_info_filled;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100133
Daniel Drake0fb67e92009-07-16 14:46:57 +0100134 unsigned int port_d_mode;
Takashi Iwaif2e57312010-09-15 10:07:08 +0200135 unsigned int auto_mute:1; /* used in auto-parser */
Takashi Iwai03697e22011-05-17 09:53:31 +0200136 unsigned int detect_line:1; /* Line-out detection enabled */
137 unsigned int automute_lines:1; /* automute line-out as well */
138 unsigned int automute_hp_lo:1; /* both HP and LO available */
Takashi Iwaif2e57312010-09-15 10:07:08 +0200139 unsigned int dell_automute:1;
Greg Alexandercfd3d8d2010-02-13 02:02:25 -0500140 unsigned int dell_vostro:1;
141 unsigned int ideapad:1;
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +0200142 unsigned int thinkpad:1;
David Henningsson048e78a2010-09-02 08:35:47 +0200143 unsigned int hp_laptop:1;
David Henningssona1d69062011-01-21 13:33:28 +0100144 unsigned int asus:1;
Takashi Iwai254f2962011-10-14 15:22:34 +0200145 unsigned int pin_eapd_ctrls:1;
David Henningsson18dcd302012-04-02 15:40:27 +0200146 unsigned int fixup_stereo_dmic:1;
Daniel Drake75f89912010-01-07 13:46:25 +0100147
Takashi Iwai6764bce2011-05-13 16:52:25 +0200148 unsigned int adc_switching:1;
149
Daniel Drake75f89912010-01-07 13:46:25 +0100150 unsigned int ext_mic_present;
151 unsigned int recording;
152 void (*capture_prepare)(struct hda_codec *codec);
153 void (*capture_cleanup)(struct hda_codec *codec);
Daniel Drakec4cfe662010-01-07 13:47:04 +0100154
155 /* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors)
156 * through the microphone jack.
157 * When the user enables this through a mixer switch, both internal and
158 * external microphones are disabled. Gain is fixed at 0dB. In this mode,
159 * we also allow the bias to be configured through a separate mixer
160 * control. */
161 unsigned int dc_enable;
162 unsigned int dc_input_bias; /* offset into cxt5066_olpc_dc_bias */
163 unsigned int mic_boost; /* offset into cxt5066_analog_mic_boost */
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200164
165 unsigned int beep_amp;
Takashi Iwai19110592011-07-11 14:46:44 +0200166
167 /* extra EAPD pins */
168 unsigned int num_eapds;
169 hda_nid_t eapds[4];
Tobin Davisc9b443d2006-11-14 12:13:39 +0100170};
171
172static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
173 struct hda_codec *codec,
174 struct snd_pcm_substream *substream)
175{
176 struct conexant_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +0100177 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
178 hinfo);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100179}
180
181static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
182 struct hda_codec *codec,
183 unsigned int stream_tag,
184 unsigned int format,
185 struct snd_pcm_substream *substream)
186{
187 struct conexant_spec *spec = codec->spec;
188 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
189 stream_tag,
190 format, substream);
191}
192
193static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
194 struct hda_codec *codec,
195 struct snd_pcm_substream *substream)
196{
197 struct conexant_spec *spec = codec->spec;
198 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
199}
200
201/*
202 * Digital out
203 */
204static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
205 struct hda_codec *codec,
206 struct snd_pcm_substream *substream)
207{
208 struct conexant_spec *spec = codec->spec;
209 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
210}
211
212static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
213 struct hda_codec *codec,
214 struct snd_pcm_substream *substream)
215{
216 struct conexant_spec *spec = codec->spec;
217 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
218}
219
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200220static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
221 struct hda_codec *codec,
222 unsigned int stream_tag,
223 unsigned int format,
224 struct snd_pcm_substream *substream)
225{
226 struct conexant_spec *spec = codec->spec;
227 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
228 stream_tag,
229 format, substream);
230}
231
Tobin Davisc9b443d2006-11-14 12:13:39 +0100232/*
233 * Analog capture
234 */
235static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
236 struct hda_codec *codec,
237 unsigned int stream_tag,
238 unsigned int format,
239 struct snd_pcm_substream *substream)
240{
241 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +0100242 if (spec->capture_prepare)
243 spec->capture_prepare(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100244 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
245 stream_tag, 0, format);
246 return 0;
247}
248
249static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
250 struct hda_codec *codec,
251 struct snd_pcm_substream *substream)
252{
253 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100254 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
Daniel Drake75f89912010-01-07 13:46:25 +0100255 if (spec->capture_cleanup)
256 spec->capture_cleanup(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100257 return 0;
258}
259
260
261
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200262static const struct hda_pcm_stream conexant_pcm_analog_playback = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100263 .substreams = 1,
264 .channels_min = 2,
265 .channels_max = 2,
266 .nid = 0, /* fill later */
267 .ops = {
268 .open = conexant_playback_pcm_open,
269 .prepare = conexant_playback_pcm_prepare,
270 .cleanup = conexant_playback_pcm_cleanup
271 },
272};
273
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200274static const struct hda_pcm_stream conexant_pcm_analog_capture = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100275 .substreams = 1,
276 .channels_min = 2,
277 .channels_max = 2,
278 .nid = 0, /* fill later */
279 .ops = {
280 .prepare = conexant_capture_pcm_prepare,
281 .cleanup = conexant_capture_pcm_cleanup
282 },
283};
284
285
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200286static const struct hda_pcm_stream conexant_pcm_digital_playback = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100287 .substreams = 1,
288 .channels_min = 2,
289 .channels_max = 2,
290 .nid = 0, /* fill later */
291 .ops = {
292 .open = conexant_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200293 .close = conexant_dig_playback_pcm_close,
294 .prepare = conexant_dig_playback_pcm_prepare
Tobin Davisc9b443d2006-11-14 12:13:39 +0100295 },
296};
297
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200298static const struct hda_pcm_stream conexant_pcm_digital_capture = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100299 .substreams = 1,
300 .channels_min = 2,
301 .channels_max = 2,
302 /* NID is set in alc_build_pcms */
303};
304
Takashi Iwai461e2c72008-01-25 11:35:17 +0100305static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
306 struct hda_codec *codec,
307 unsigned int stream_tag,
308 unsigned int format,
309 struct snd_pcm_substream *substream)
310{
311 struct conexant_spec *spec = codec->spec;
312 spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
313 spec->cur_adc_stream_tag = stream_tag;
314 spec->cur_adc_format = format;
315 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
316 return 0;
317}
318
319static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
320 struct hda_codec *codec,
321 struct snd_pcm_substream *substream)
322{
323 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100324 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
Takashi Iwai461e2c72008-01-25 11:35:17 +0100325 spec->cur_adc = 0;
326 return 0;
327}
328
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200329static const struct hda_pcm_stream cx5051_pcm_analog_capture = {
Takashi Iwai461e2c72008-01-25 11:35:17 +0100330 .substreams = 1,
331 .channels_min = 2,
332 .channels_max = 2,
333 .nid = 0, /* fill later */
334 .ops = {
335 .prepare = cx5051_capture_pcm_prepare,
336 .cleanup = cx5051_capture_pcm_cleanup
337 },
338};
339
Tobin Davisc9b443d2006-11-14 12:13:39 +0100340static int conexant_build_pcms(struct hda_codec *codec)
341{
342 struct conexant_spec *spec = codec->spec;
343 struct hda_pcm *info = spec->pcm_rec;
344
345 codec->num_pcms = 1;
346 codec->pcm_info = info;
347
348 info->name = "CONEXANT Analog";
349 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
350 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
351 spec->multiout.max_channels;
352 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
353 spec->multiout.dac_nids[0];
Takashi Iwai6764bce2011-05-13 16:52:25 +0200354 if (spec->capture_stream)
355 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *spec->capture_stream;
356 else {
357 if (codec->vendor_id == 0x14f15051)
358 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
359 cx5051_pcm_analog_capture;
360 else {
361 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
362 conexant_pcm_analog_capture;
363 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
364 spec->num_adc_nids;
365 }
366 }
Tobin Davisc9b443d2006-11-14 12:13:39 +0100367 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
368
369 if (spec->multiout.dig_out_nid) {
370 info++;
371 codec->num_pcms++;
372 info->name = "Conexant Digital";
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100373 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100374 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
375 conexant_pcm_digital_playback;
376 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
377 spec->multiout.dig_out_nid;
378 if (spec->dig_in_nid) {
379 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
380 conexant_pcm_digital_capture;
381 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
382 spec->dig_in_nid;
383 }
Andy Robinsonf6a24912011-01-24 10:12:37 -0500384 if (spec->slave_dig_outs[0])
385 codec->slave_dig_outs = spec->slave_dig_outs;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100386 }
387
388 return 0;
389}
390
391static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
392 struct snd_ctl_elem_info *uinfo)
393{
394 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
395 struct conexant_spec *spec = codec->spec;
396
397 return snd_hda_input_mux_info(spec->input_mux, uinfo);
398}
399
400static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
401 struct snd_ctl_elem_value *ucontrol)
402{
403 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
404 struct conexant_spec *spec = codec->spec;
405 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
406
407 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
408 return 0;
409}
410
411static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
412 struct snd_ctl_elem_value *ucontrol)
413{
414 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
415 struct conexant_spec *spec = codec->spec;
416 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
417
418 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
419 spec->capsrc_nids[adc_idx],
420 &spec->cur_mux[adc_idx]);
421}
422
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +0200423static void conexant_set_power(struct hda_codec *codec, hda_nid_t fg,
424 unsigned int power_state)
425{
426 if (power_state == AC_PWRST_D3)
427 msleep(100);
428 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE,
429 power_state);
430 /* partial workaround for "azx_get_response timeout" */
431 if (power_state == AC_PWRST_D0)
432 msleep(10);
433 snd_hda_codec_set_power_to_all(codec, fg, power_state, true);
434}
435
Tobin Davisc9b443d2006-11-14 12:13:39 +0100436static int conexant_init(struct hda_codec *codec)
437{
438 struct conexant_spec *spec = codec->spec;
439 int i;
440
441 for (i = 0; i < spec->num_init_verbs; i++)
442 snd_hda_sequence_write(codec, spec->init_verbs[i]);
443 return 0;
444}
445
446static void conexant_free(struct hda_codec *codec)
447{
Einar Rünkaruc0f8faf2009-12-16 22:41:36 +0200448 snd_hda_detach_beep_device(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100449 kfree(codec->spec);
450}
451
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200452static const struct snd_kcontrol_new cxt_capture_mixers[] = {
Takashi Iwaib880c742009-03-10 14:41:05 +0100453 {
454 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
455 .name = "Capture Source",
456 .info = conexant_mux_enum_info,
457 .get = conexant_mux_enum_get,
458 .put = conexant_mux_enum_put
459 },
460 {}
461};
462
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200463#ifdef CONFIG_SND_HDA_INPUT_BEEP
464/* additional beep mixers; the actual parameters are overwritten at build */
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200465static const struct snd_kcontrol_new cxt_beep_mixer[] = {
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200466 HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0, 1, 0, HDA_OUTPUT),
467 HDA_CODEC_MUTE_BEEP_MONO("Beep Playback Switch", 0, 1, 0, HDA_OUTPUT),
468 { } /* end */
469};
470#endif
471
Takashi Iwai9322ca52012-02-03 14:28:01 +0100472static const char * const slave_pfxs[] = {
473 "Headphone", "Speaker", "Front", "Surround", "CLFE",
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100474 NULL
475};
476
Tobin Davisc9b443d2006-11-14 12:13:39 +0100477static int conexant_build_controls(struct hda_codec *codec)
478{
479 struct conexant_spec *spec = codec->spec;
480 unsigned int i;
481 int err;
482
483 for (i = 0; i < spec->num_mixers; i++) {
484 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
485 if (err < 0)
486 return err;
487 }
488 if (spec->multiout.dig_out_nid) {
489 err = snd_hda_create_spdif_out_ctls(codec,
Stephen Warren74b654c2011-06-01 11:14:18 -0600490 spec->multiout.dig_out_nid,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100491 spec->multiout.dig_out_nid);
492 if (err < 0)
493 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +0100494 err = snd_hda_create_spdif_share_sw(codec,
495 &spec->multiout);
496 if (err < 0)
497 return err;
498 spec->multiout.share_spdif = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100499 }
500 if (spec->dig_in_nid) {
501 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
502 if (err < 0)
503 return err;
504 }
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100505
506 /* if we have no master control, let's create it */
507 if (spec->vmaster_nid &&
508 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
509 unsigned int vmaster_tlv[4];
510 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
511 HDA_OUTPUT, vmaster_tlv);
512 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
Takashi Iwai9322ca52012-02-03 14:28:01 +0100513 vmaster_tlv, slave_pfxs,
514 "Playback Volume");
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100515 if (err < 0)
516 return err;
517 }
518 if (spec->vmaster_nid &&
519 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
Takashi Iwai527c73b2012-03-12 12:38:51 +0100520 err = __snd_hda_add_vmaster(codec, "Master Playback Switch",
521 NULL, slave_pfxs,
522 "Playback Switch", true,
Takashi Iwaid2f344b2012-03-12 16:59:58 +0100523 &spec->vmaster_mute.sw_kctl);
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100524 if (err < 0)
525 return err;
526 }
527
Takashi Iwaib880c742009-03-10 14:41:05 +0100528 if (spec->input_mux) {
529 err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
530 if (err < 0)
531 return err;
532 }
533
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200534#ifdef CONFIG_SND_HDA_INPUT_BEEP
535 /* create beep controls if needed */
536 if (spec->beep_amp) {
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200537 const struct snd_kcontrol_new *knew;
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200538 for (knew = cxt_beep_mixer; knew->name; knew++) {
539 struct snd_kcontrol *kctl;
540 kctl = snd_ctl_new1(knew, codec);
541 if (!kctl)
542 return -ENOMEM;
543 kctl->private_value = spec->beep_amp;
544 err = snd_hda_ctl_add(codec, 0, kctl);
545 if (err < 0)
546 return err;
547 }
548 }
549#endif
550
Tobin Davisc9b443d2006-11-14 12:13:39 +0100551 return 0;
552}
553
Takashi Iwai697c3732010-07-30 11:28:02 +0200554#ifdef CONFIG_SND_HDA_POWER_SAVE
555static int conexant_suspend(struct hda_codec *codec, pm_message_t state)
556{
557 snd_hda_shutup_pins(codec);
558 return 0;
559}
560#endif
561
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200562static const struct hda_codec_ops conexant_patch_ops = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100563 .build_controls = conexant_build_controls,
564 .build_pcms = conexant_build_pcms,
565 .init = conexant_init,
566 .free = conexant_free,
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +0200567 .set_power_state = conexant_set_power,
Takashi Iwai697c3732010-07-30 11:28:02 +0200568#ifdef CONFIG_SND_HDA_POWER_SAVE
569 .suspend = conexant_suspend,
570#endif
571 .reboot_notify = snd_hda_shutup_pins,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100572};
573
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200574#ifdef CONFIG_SND_HDA_INPUT_BEEP
575#define set_beep_amp(spec, nid, idx, dir) \
576 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir))
577#else
578#define set_beep_amp(spec, nid, idx, dir) /* NOP */
579#endif
580
Takashi Iwai6764bce2011-05-13 16:52:25 +0200581static int patch_conexant_auto(struct hda_codec *codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100582/*
583 * EAPD control
584 * the private value = nid | (invert << 8)
585 */
586
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200587#define cxt_eapd_info snd_ctl_boolean_mono_info
Tobin Davisc9b443d2006-11-14 12:13:39 +0100588
Tobin Davis82f30042007-02-13 12:45:44 +0100589static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100590 struct snd_ctl_elem_value *ucontrol)
591{
592 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
593 struct conexant_spec *spec = codec->spec;
594 int invert = (kcontrol->private_value >> 8) & 1;
595 if (invert)
596 ucontrol->value.integer.value[0] = !spec->cur_eapd;
597 else
598 ucontrol->value.integer.value[0] = spec->cur_eapd;
599 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100600
Tobin Davisc9b443d2006-11-14 12:13:39 +0100601}
602
Tobin Davis82f30042007-02-13 12:45:44 +0100603static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100604 struct snd_ctl_elem_value *ucontrol)
605{
606 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
607 struct conexant_spec *spec = codec->spec;
608 int invert = (kcontrol->private_value >> 8) & 1;
609 hda_nid_t nid = kcontrol->private_value & 0xff;
610 unsigned int eapd;
Tobin Davis82f30042007-02-13 12:45:44 +0100611
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100612 eapd = !!ucontrol->value.integer.value[0];
Tobin Davisc9b443d2006-11-14 12:13:39 +0100613 if (invert)
614 eapd = !eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200615 if (eapd == spec->cur_eapd)
Tobin Davisc9b443d2006-11-14 12:13:39 +0100616 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100617
Tobin Davisc9b443d2006-11-14 12:13:39 +0100618 spec->cur_eapd = eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200619 snd_hda_codec_write_cache(codec, nid,
620 0, AC_VERB_SET_EAPD_BTLENABLE,
621 eapd ? 0x02 : 0x00);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100622 return 1;
623}
624
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100625/* controls for test mode */
626#ifdef CONFIG_SND_DEBUG
627
Tobin Davis82f30042007-02-13 12:45:44 +0100628#define CXT_EAPD_SWITCH(xname, nid, mask) \
629 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
630 .info = cxt_eapd_info, \
631 .get = cxt_eapd_get, \
632 .put = cxt_eapd_put, \
633 .private_value = nid | (mask<<16) }
634
635
636
Tobin Davisc9b443d2006-11-14 12:13:39 +0100637static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
638 struct snd_ctl_elem_info *uinfo)
639{
640 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
641 struct conexant_spec *spec = codec->spec;
642 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
643 spec->num_channel_mode);
644}
645
646static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
647 struct snd_ctl_elem_value *ucontrol)
648{
649 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
650 struct conexant_spec *spec = codec->spec;
651 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
652 spec->num_channel_mode,
653 spec->multiout.max_channels);
654}
655
656static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
657 struct snd_ctl_elem_value *ucontrol)
658{
659 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
660 struct conexant_spec *spec = codec->spec;
661 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
662 spec->num_channel_mode,
663 &spec->multiout.max_channels);
664 if (err >= 0 && spec->need_dac_fix)
665 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
666 return err;
667}
668
669#define CXT_PIN_MODE(xname, nid, dir) \
670 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
671 .info = conexant_ch_mode_info, \
672 .get = conexant_ch_mode_get, \
673 .put = conexant_ch_mode_put, \
674 .private_value = nid | (dir<<16) }
675
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100676#endif /* CONFIG_SND_DEBUG */
677
Tobin Davisc9b443d2006-11-14 12:13:39 +0100678/* Conexant 5045 specific */
679
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200680static const hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
681static const hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
682static const hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
Takashi Iwaicbef9782008-02-22 18:36:46 +0100683#define CXT5045_SPDIF_OUT 0x18
Tobin Davisc9b443d2006-11-14 12:13:39 +0100684
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200685static const struct hda_channel_mode cxt5045_modes[1] = {
Tobin Davis5cd57522006-11-20 17:42:09 +0100686 { 2, NULL },
687};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100688
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200689static const struct hda_input_mux cxt5045_capture_source = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100690 .num_items = 2,
691 .items = {
Michael Karcher3edbbb92012-04-06 15:34:16 +0200692 { "Internal Mic", 0x1 },
693 { "Mic", 0x2 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100694 }
695};
696
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200697static const struct hda_input_mux cxt5045_capture_source_benq = {
Michael Karchere6e03da2012-04-06 15:34:18 +0200698 .num_items = 4,
Jiang Zhe5218c892008-01-17 11:18:41 +0100699 .items = {
Michael Karcher3edbbb92012-04-06 15:34:16 +0200700 { "Internal Mic", 0x1 },
701 { "Mic", 0x2 },
702 { "Line", 0x3 },
703 { "Mixer", 0x0 },
Jiang Zhe5218c892008-01-17 11:18:41 +0100704 }
705};
706
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200707static const struct hda_input_mux cxt5045_capture_source_hp530 = {
Jiang zhe2de3c232008-03-06 11:09:09 +0100708 .num_items = 2,
709 .items = {
Michael Karcher3edbbb92012-04-06 15:34:16 +0200710 { "Mic", 0x1 },
711 { "Internal Mic", 0x2 },
Jiang zhe2de3c232008-03-06 11:09:09 +0100712 }
713};
714
Tobin Davisc9b443d2006-11-14 12:13:39 +0100715/* turn on/off EAPD (+ mute HP) as a master switch */
716static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
717 struct snd_ctl_elem_value *ucontrol)
718{
719 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
720 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +0100721 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100722
Tobin Davis82f30042007-02-13 12:45:44 +0100723 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +0100724 return 0;
725
Tobin Davis82f30042007-02-13 12:45:44 +0100726 /* toggle internal speakers mute depending of presence of
727 * the headphone jack
728 */
Takashi Iwai47fd8302007-08-10 17:11:07 +0200729 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
730 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
731 HDA_AMP_MUTE, bits);
Tobin Davis7f296732007-03-12 11:39:01 +0100732
Takashi Iwai47fd8302007-08-10 17:11:07 +0200733 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
734 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
735 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100736 return 1;
737}
738
739/* bind volumes of both NID 0x10 and 0x11 */
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200740static const struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
Takashi Iwaicca3b372007-08-10 17:12:15 +0200741 .ops = &snd_hda_bind_vol,
742 .values = {
743 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
744 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
745 0
746 },
747};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100748
Tobin Davis7f296732007-03-12 11:39:01 +0100749/* toggle input of built-in and mic jack appropriately */
750static void cxt5045_hp_automic(struct hda_codec *codec)
751{
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200752 static const struct hda_verb mic_jack_on[] = {
Tobin Davis7f296732007-03-12 11:39:01 +0100753 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
754 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
755 {}
756 };
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200757 static const struct hda_verb mic_jack_off[] = {
Tobin Davis7f296732007-03-12 11:39:01 +0100758 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
759 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
760 {}
761 };
762 unsigned int present;
763
Takashi Iwaid56757a2009-11-18 08:00:14 +0100764 present = snd_hda_jack_detect(codec, 0x12);
Tobin Davis7f296732007-03-12 11:39:01 +0100765 if (present)
766 snd_hda_sequence_write(codec, mic_jack_on);
767 else
768 snd_hda_sequence_write(codec, mic_jack_off);
769}
770
Tobin Davisc9b443d2006-11-14 12:13:39 +0100771
772/* mute internal speaker if HP is plugged */
773static void cxt5045_hp_automute(struct hda_codec *codec)
774{
Tobin Davis82f30042007-02-13 12:45:44 +0100775 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +0100776 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100777
Takashi Iwaid56757a2009-11-18 08:00:14 +0100778 spec->hp_present = snd_hda_jack_detect(codec, 0x11);
Tobin Davisdd87da12007-02-26 16:07:42 +0100779
Takashi Iwai47fd8302007-08-10 17:11:07 +0200780 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
781 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
782 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100783}
784
785/* unsolicited event for HP jack sensing */
786static void cxt5045_hp_unsol_event(struct hda_codec *codec,
787 unsigned int res)
788{
789 res >>= 26;
790 switch (res) {
791 case CONEXANT_HP_EVENT:
792 cxt5045_hp_automute(codec);
793 break;
Tobin Davis7f296732007-03-12 11:39:01 +0100794 case CONEXANT_MIC_EVENT:
795 cxt5045_hp_automic(codec);
796 break;
797
Tobin Davisc9b443d2006-11-14 12:13:39 +0100798 }
799}
800
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200801static const struct snd_kcontrol_new cxt5045_mixers[] = {
Michael Karchercbf2d282012-04-06 15:34:17 +0200802 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x00, HDA_INPUT),
803 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT),
Takashi Iwaic8229c32007-10-19 08:06:21 +0200804 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
805 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
David Henningsson28c4edb2010-12-20 14:24:29 +0100806 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
807 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +0100808 HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
809 HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
Takashi Iwaicca3b372007-08-10 17:12:15 +0200810 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100811 {
812 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
813 .name = "Master Playback Switch",
Tobin Davis82f30042007-02-13 12:45:44 +0100814 .info = cxt_eapd_info,
815 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100816 .put = cxt5045_hp_master_sw_put,
Tobin Davis82f30042007-02-13 12:45:44 +0100817 .private_value = 0x10,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100818 },
819
820 {}
821};
822
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200823static const struct snd_kcontrol_new cxt5045_benq_mixers[] = {
Michael Karcher3edbbb92012-04-06 15:34:16 +0200824 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x3, HDA_INPUT),
825 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x3, HDA_INPUT),
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200826
Jiang Zhe5218c892008-01-17 11:18:41 +0100827 {}
828};
829
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200830static const struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
Michael Karchercbf2d282012-04-06 15:34:17 +0200831 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x00, HDA_INPUT),
832 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT),
Jiang zhe2de3c232008-03-06 11:09:09 +0100833 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
834 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
David Henningsson28c4edb2010-12-20 14:24:29 +0100835 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
836 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +0100837 HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
838 HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
Jiang zhe2de3c232008-03-06 11:09:09 +0100839 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
840 {
841 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
842 .name = "Master Playback Switch",
843 .info = cxt_eapd_info,
844 .get = cxt_eapd_get,
845 .put = cxt5045_hp_master_sw_put,
846 .private_value = 0x10,
847 },
848
849 {}
850};
851
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200852static const struct hda_verb cxt5045_init_verbs[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100853 /* Line in, Mic */
Takashi Iwai4090dff2008-07-12 12:02:45 +0200854 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
Tobin Davis7f296732007-03-12 11:39:01 +0100855 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100856 /* HP, Amp */
Takashi Iwaic8229c32007-10-19 08:06:21 +0200857 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
858 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
859 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
860 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
861 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
862 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
863 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
864 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
865 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
David Henningsson28c4edb2010-12-20 14:24:29 +0100866 /* Record selector: Internal mic */
Tobin Davis7f296732007-03-12 11:39:01 +0100867 {0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
Tobin Davis82f30042007-02-13 12:45:44 +0100868 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100869 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
870 /* SPDIF route: PCM */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100871 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100872 { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100873 /* EAPD */
Tobin Davis82f30042007-02-13 12:45:44 +0100874 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100875 { } /* end */
876};
877
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200878static const struct hda_verb cxt5045_benq_init_verbs[] = {
David Henningsson28c4edb2010-12-20 14:24:29 +0100879 /* Internal Mic, Mic */
Jiang Zhe5218c892008-01-17 11:18:41 +0100880 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
881 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
882 /* Line In,HP, Amp */
883 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
884 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
885 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
886 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
887 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
888 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
889 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
890 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
891 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
David Henningsson28c4edb2010-12-20 14:24:29 +0100892 /* Record selector: Internal mic */
Jiang Zhe5218c892008-01-17 11:18:41 +0100893 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
894 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
895 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
896 /* SPDIF route: PCM */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100897 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Jiang Zhe5218c892008-01-17 11:18:41 +0100898 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
899 /* EAPD */
900 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
901 { } /* end */
902};
Tobin Davis7f296732007-03-12 11:39:01 +0100903
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200904static const struct hda_verb cxt5045_hp_sense_init_verbs[] = {
Tobin Davis7f296732007-03-12 11:39:01 +0100905 /* pin sensing on HP jack */
906 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
Takashi Iwaid3091fa2007-03-28 15:11:53 +0200907 { } /* end */
Tobin Davis7f296732007-03-12 11:39:01 +0100908};
909
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200910static const struct hda_verb cxt5045_mic_sense_init_verbs[] = {
Tobin Davis7f296732007-03-12 11:39:01 +0100911 /* pin sensing on HP jack */
912 {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Takashi Iwaid3091fa2007-03-28 15:11:53 +0200913 { } /* end */
Tobin Davis7f296732007-03-12 11:39:01 +0100914};
915
Tobin Davisc9b443d2006-11-14 12:13:39 +0100916#ifdef CONFIG_SND_DEBUG
917/* Test configuration for debugging, modelled after the ALC260 test
918 * configuration.
919 */
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200920static const struct hda_input_mux cxt5045_test_capture_source = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100921 .num_items = 5,
922 .items = {
923 { "MIXER", 0x0 },
924 { "MIC1 pin", 0x1 },
925 { "LINE1 pin", 0x2 },
926 { "HP-OUT pin", 0x3 },
927 { "CD pin", 0x4 },
928 },
929};
930
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200931static const struct snd_kcontrol_new cxt5045_test_mixer[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +0100932
933 /* Output controls */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100934 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
935 HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
Michael Karcher250f3272012-04-06 15:34:20 +0200936 HDA_CODEC_VOLUME("HP-OUT Playback Volume", 0x11, 0x0, HDA_OUTPUT),
937 HDA_CODEC_MUTE("HP-OUT Playback Switch", 0x11, 0x0, HDA_OUTPUT),
938 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
939 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100940
941 /* Modes for retasking pin widgets */
942 CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
943 CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
944
Tobin Davis82f30042007-02-13 12:45:44 +0100945 /* EAPD Switch Control */
946 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
947
Tobin Davisc9b443d2006-11-14 12:13:39 +0100948 /* Loopback mixer controls */
Tobin Davisc9b443d2006-11-14 12:13:39 +0100949
Michael Karcher250f3272012-04-06 15:34:20 +0200950 HDA_CODEC_VOLUME("PCM Volume", 0x17, 0x0, HDA_INPUT),
951 HDA_CODEC_MUTE("PCM Switch", 0x17, 0x0, HDA_INPUT),
952 HDA_CODEC_VOLUME("MIC1 pin Volume", 0x17, 0x1, HDA_INPUT),
953 HDA_CODEC_MUTE("MIC1 pin Switch", 0x17, 0x1, HDA_INPUT),
954 HDA_CODEC_VOLUME("LINE1 pin Volume", 0x17, 0x2, HDA_INPUT),
955 HDA_CODEC_MUTE("LINE1 pin Switch", 0x17, 0x2, HDA_INPUT),
956 HDA_CODEC_VOLUME("HP-OUT pin Volume", 0x17, 0x3, HDA_INPUT),
957 HDA_CODEC_MUTE("HP-OUT pin Switch", 0x17, 0x3, HDA_INPUT),
958 HDA_CODEC_VOLUME("CD pin Volume", 0x17, 0x4, HDA_INPUT),
959 HDA_CODEC_MUTE("CD pin Switch", 0x17, 0x4, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100960 {
961 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
962 .name = "Input Source",
963 .info = conexant_mux_enum_info,
964 .get = conexant_mux_enum_get,
965 .put = conexant_mux_enum_put,
966 },
Tobin Davisfb3409e2007-05-17 09:40:47 +0200967 /* Audio input controls */
Michael Karchercbf2d282012-04-06 15:34:17 +0200968 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x0, HDA_INPUT),
969 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100970 { } /* end */
971};
972
Takashi Iwai34cbe3a2011-05-02 11:38:21 +0200973static const struct hda_verb cxt5045_test_init_verbs[] = {
Tobin Davis7f296732007-03-12 11:39:01 +0100974 /* Set connections */
975 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
976 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
977 { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100978 /* Enable retasking pins as output, initially without power amp */
979 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davis7f296732007-03-12 11:39:01 +0100980 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100981
982 /* Disable digital (SPDIF) pins initially, but users can enable
983 * them via a mixer switch. In the case of SPDIF-out, this initverb
984 * payload also sets the generation to 0, output to be in "consumer"
985 * PCM format, copyright asserted, no pre-emphasis and no validity
986 * control.
987 */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100988 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
989 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100990
Tobin Davisc9b443d2006-11-14 12:13:39 +0100991 /* Unmute retasking pin widget output buffers since the default
992 * state appears to be output. As the pin mode is changed by the
993 * user the pin mode control will take care of enabling the pin's
994 * input/output buffers as needed.
995 */
996 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
997 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
998
999 /* Mute capture amp left and right */
1000 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1001
1002 /* Set ADC connection select to match default mixer setting (mic1
1003 * pin)
1004 */
Michael Karcher250f3272012-04-06 15:34:20 +02001005 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01},
1006 {0x17, AC_VERB_SET_CONNECT_SEL, 0x01},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001007
1008 /* Mute all inputs to mixer widget (even unconnected ones) */
Michael Karcher250f3272012-04-06 15:34:20 +02001009 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001010 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1011 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1012 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1013 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1014
1015 { }
1016};
1017#endif
1018
1019
1020/* initialize jack-sensing, too */
1021static int cxt5045_init(struct hda_codec *codec)
1022{
1023 conexant_init(codec);
1024 cxt5045_hp_automute(codec);
1025 return 0;
1026}
1027
1028
1029enum {
Marc Boucher15908c32008-01-22 15:15:59 +01001030 CXT5045_LAPTOP_HPSENSE,
1031 CXT5045_LAPTOP_MICSENSE,
1032 CXT5045_LAPTOP_HPMICSENSE,
Jiang Zhe5218c892008-01-17 11:18:41 +01001033 CXT5045_BENQ,
Jiang zhe2de3c232008-03-06 11:09:09 +01001034 CXT5045_LAPTOP_HP530,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001035#ifdef CONFIG_SND_DEBUG
1036 CXT5045_TEST,
1037#endif
Takashi Iwai1f8458a2011-05-13 17:22:05 +02001038 CXT5045_AUTO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001039 CXT5045_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001040};
1041
Takashi Iwaiea734962011-01-17 11:29:34 +01001042static const char * const cxt5045_models[CXT5045_MODELS] = {
Marc Boucher15908c32008-01-22 15:15:59 +01001043 [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense",
1044 [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense",
1045 [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense",
1046 [CXT5045_BENQ] = "benq",
Jiang zhe2de3c232008-03-06 11:09:09 +01001047 [CXT5045_LAPTOP_HP530] = "laptop-hp530",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001048#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001049 [CXT5045_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001050#endif
Takashi Iwai1f8458a2011-05-13 17:22:05 +02001051 [CXT5045_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001052};
1053
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001054static const struct snd_pci_quirk cxt5045_cfg_tbl[] = {
Jiang zhe2de3c232008-03-06 11:09:09 +01001055 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
Takashi Iwai6a9dccd2008-07-01 14:52:05 +02001056 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
Jiang Zhe5218c892008-01-17 11:18:41 +01001057 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
Marc Boucher15908c32008-01-22 15:15:59 +01001058 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
1059 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
Takashi Iwai9e464152008-07-12 12:05:25 +02001060 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
1061 CXT5045_LAPTOP_HPMICSENSE),
Marc Boucher15908c32008-01-22 15:15:59 +01001062 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1063 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1064 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001065 SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1066 CXT5045_LAPTOP_HPMICSENSE),
Marc Boucher15908c32008-01-22 15:15:59 +01001067 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001068 {}
1069};
1070
1071static int patch_cxt5045(struct hda_codec *codec)
1072{
1073 struct conexant_spec *spec;
1074 int board_config;
1075
Takashi Iwai1f8458a2011-05-13 17:22:05 +02001076 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1077 cxt5045_models,
1078 cxt5045_cfg_tbl);
1079 if (board_config < 0)
Takashi Iwaic82693d2011-06-28 14:17:17 +02001080 board_config = CXT5045_AUTO; /* model=auto as default */
Takashi Iwai1f8458a2011-05-13 17:22:05 +02001081 if (board_config == CXT5045_AUTO)
1082 return patch_conexant_auto(codec);
1083
Tobin Davisc9b443d2006-11-14 12:13:39 +01001084 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1085 if (!spec)
1086 return -ENOMEM;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001087 codec->spec = spec;
Michael Karcher4f324562012-04-06 15:34:15 +02001088 codec->single_adc_amp = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001089
1090 spec->multiout.max_channels = 2;
1091 spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1092 spec->multiout.dac_nids = cxt5045_dac_nids;
1093 spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1094 spec->num_adc_nids = 1;
1095 spec->adc_nids = cxt5045_adc_nids;
1096 spec->capsrc_nids = cxt5045_capsrc_nids;
1097 spec->input_mux = &cxt5045_capture_source;
1098 spec->num_mixers = 1;
1099 spec->mixers[0] = cxt5045_mixers;
1100 spec->num_init_verbs = 1;
1101 spec->init_verbs[0] = cxt5045_init_verbs;
1102 spec->spdif_route = 0;
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001103 spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes);
1104 spec->channel_mode = cxt5045_modes;
Tobin Davis5cd57522006-11-20 17:42:09 +01001105
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001106 set_beep_amp(spec, 0x16, 0, 1);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001107
1108 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001109
Tobin Davisc9b443d2006-11-14 12:13:39 +01001110 switch (board_config) {
Marc Boucher15908c32008-01-22 15:15:59 +01001111 case CXT5045_LAPTOP_HPSENSE:
Tobin Davis7f296732007-03-12 11:39:01 +01001112 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001113 spec->input_mux = &cxt5045_capture_source;
1114 spec->num_init_verbs = 2;
Tobin Davis7f296732007-03-12 11:39:01 +01001115 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1116 spec->mixers[0] = cxt5045_mixers;
1117 codec->patch_ops.init = cxt5045_init;
1118 break;
Marc Boucher15908c32008-01-22 15:15:59 +01001119 case CXT5045_LAPTOP_MICSENSE:
Takashi Iwai86376df2008-07-12 12:04:05 +02001120 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davis7f296732007-03-12 11:39:01 +01001121 spec->input_mux = &cxt5045_capture_source;
1122 spec->num_init_verbs = 2;
1123 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001124 spec->mixers[0] = cxt5045_mixers;
1125 codec->patch_ops.init = cxt5045_init;
1126 break;
Marc Boucher15908c32008-01-22 15:15:59 +01001127 default:
1128 case CXT5045_LAPTOP_HPMICSENSE:
1129 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1130 spec->input_mux = &cxt5045_capture_source;
1131 spec->num_init_verbs = 3;
1132 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1133 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
1134 spec->mixers[0] = cxt5045_mixers;
1135 codec->patch_ops.init = cxt5045_init;
1136 break;
Jiang Zhe5218c892008-01-17 11:18:41 +01001137 case CXT5045_BENQ:
1138 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1139 spec->input_mux = &cxt5045_capture_source_benq;
1140 spec->num_init_verbs = 1;
1141 spec->init_verbs[0] = cxt5045_benq_init_verbs;
1142 spec->mixers[0] = cxt5045_mixers;
1143 spec->mixers[1] = cxt5045_benq_mixers;
1144 spec->num_mixers = 2;
1145 codec->patch_ops.init = cxt5045_init;
1146 break;
Jiang zhe2de3c232008-03-06 11:09:09 +01001147 case CXT5045_LAPTOP_HP530:
1148 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1149 spec->input_mux = &cxt5045_capture_source_hp530;
1150 spec->num_init_verbs = 2;
1151 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1152 spec->mixers[0] = cxt5045_mixers_hp530;
1153 codec->patch_ops.init = cxt5045_init;
1154 break;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001155#ifdef CONFIG_SND_DEBUG
1156 case CXT5045_TEST:
1157 spec->input_mux = &cxt5045_test_capture_source;
1158 spec->mixers[0] = cxt5045_test_mixer;
1159 spec->init_verbs[0] = cxt5045_test_init_verbs;
Marc Boucher15908c32008-01-22 15:15:59 +01001160 break;
1161
Tobin Davisc9b443d2006-11-14 12:13:39 +01001162#endif
1163 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001164
Takashi Iwai031005f2008-06-26 14:49:58 +02001165 switch (codec->subsystem_id >> 16) {
1166 case 0x103c:
Daniel T Chen8f0f5ff2010-04-28 18:00:11 -04001167 case 0x1631:
Daniel T Chen0b587fc2009-11-25 18:27:20 -05001168 case 0x1734:
Daniel T Chen0ebf9e32010-05-10 21:50:04 +02001169 case 0x17aa:
1170 /* HP, Packard Bell, Fujitsu-Siemens & Lenovo laptops have
1171 * really bad sound over 0dB on NID 0x17. Fix max PCM level to
1172 * 0 dB (originally it has 0x2b steps with 0dB offset 0x14)
Takashi Iwai031005f2008-06-26 14:49:58 +02001173 */
1174 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1175 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1176 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1177 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1178 (1 << AC_AMPCAP_MUTE_SHIFT));
1179 break;
1180 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001181
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001182 if (spec->beep_amp)
1183 snd_hda_attach_beep_device(codec, spec->beep_amp);
1184
Tobin Davisc9b443d2006-11-14 12:13:39 +01001185 return 0;
1186}
1187
1188
1189/* Conexant 5047 specific */
Tobin Davis82f30042007-02-13 12:45:44 +01001190#define CXT5047_SPDIF_OUT 0x11
Tobin Davisc9b443d2006-11-14 12:13:39 +01001191
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001192static const hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
1193static const hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1194static const hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
Tobin Davisc9b443d2006-11-14 12:13:39 +01001195
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001196static const struct hda_channel_mode cxt5047_modes[1] = {
Tobin Davis5cd57522006-11-20 17:42:09 +01001197 { 2, NULL },
1198};
Tobin Davisc9b443d2006-11-14 12:13:39 +01001199
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001200static const struct hda_input_mux cxt5047_toshiba_capture_source = {
Tobin Davis82f30042007-02-13 12:45:44 +01001201 .num_items = 2,
1202 .items = {
1203 { "ExtMic", 0x2 },
1204 { "Line-In", 0x1 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001205 }
1206};
1207
1208/* turn on/off EAPD (+ mute HP) as a master switch */
1209static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1210 struct snd_ctl_elem_value *ucontrol)
1211{
1212 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1213 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +01001214 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001215
Tobin Davis82f30042007-02-13 12:45:44 +01001216 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +01001217 return 0;
1218
Tobin Davis82f30042007-02-13 12:45:44 +01001219 /* toggle internal speakers mute depending of presence of
1220 * the headphone jack
1221 */
Takashi Iwai47fd8302007-08-10 17:11:07 +02001222 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001223 /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1224 * pin widgets unlike other codecs. In this case, we need to
1225 * set index 0x01 for the volume from the mixer amp 0x19.
1226 */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001227 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001228 HDA_AMP_MUTE, bits);
1229 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1230 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1231 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001232 return 1;
1233}
1234
Tobin Davisc9b443d2006-11-14 12:13:39 +01001235/* mute internal speaker if HP is plugged */
1236static void cxt5047_hp_automute(struct hda_codec *codec)
1237{
Tobin Davis82f30042007-02-13 12:45:44 +01001238 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +01001239 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001240
Takashi Iwaid56757a2009-11-18 08:00:14 +01001241 spec->hp_present = snd_hda_jack_detect(codec, 0x13);
Tobin Davisdd87da12007-02-26 16:07:42 +01001242
Takashi Iwai47fd8302007-08-10 17:11:07 +02001243 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001244 /* See the note in cxt5047_hp_master_sw_put */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001245 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001246 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001247}
1248
1249/* toggle input of built-in and mic jack appropriately */
1250static void cxt5047_hp_automic(struct hda_codec *codec)
1251{
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001252 static const struct hda_verb mic_jack_on[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001253 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1254 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001255 {}
1256 };
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001257 static const struct hda_verb mic_jack_off[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001258 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1259 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001260 {}
1261 };
1262 unsigned int present;
1263
Takashi Iwaid56757a2009-11-18 08:00:14 +01001264 present = snd_hda_jack_detect(codec, 0x15);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001265 if (present)
1266 snd_hda_sequence_write(codec, mic_jack_on);
1267 else
1268 snd_hda_sequence_write(codec, mic_jack_off);
1269}
1270
1271/* unsolicited event for HP jack sensing */
1272static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1273 unsigned int res)
1274{
Marc Boucher9f113e02008-01-22 15:18:08 +01001275 switch (res >> 26) {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001276 case CONEXANT_HP_EVENT:
1277 cxt5047_hp_automute(codec);
1278 break;
1279 case CONEXANT_MIC_EVENT:
1280 cxt5047_hp_automic(codec);
1281 break;
1282 }
1283}
1284
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001285static const struct snd_kcontrol_new cxt5047_base_mixers[] = {
Takashi Iwaidf481e42009-03-10 15:35:35 +01001286 HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1287 HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
David Henningsson5f99f862011-01-04 15:24:24 +01001288 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001289 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1290 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1291 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1292 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001293 {
1294 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1295 .name = "Master Playback Switch",
1296 .info = cxt_eapd_info,
1297 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001298 .put = cxt5047_hp_master_sw_put,
1299 .private_value = 0x13,
1300 },
1301
1302 {}
1303};
1304
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001305static const struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001306 /* See the note in cxt5047_hp_master_sw_put */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001307 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
Takashi Iwaidf481e42009-03-10 15:35:35 +01001308 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1309 {}
1310};
1311
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001312static const struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001313 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001314 { } /* end */
1315};
1316
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001317static const struct hda_verb cxt5047_init_verbs[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001318 /* Line in, Mic, Built-in Mic */
1319 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1320 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1321 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
Tobin Davis7f296732007-03-12 11:39:01 +01001322 /* HP, Speaker */
Tobin Davisb7589ce2007-04-24 17:56:55 +02001323 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Takashi Iwai5b3a7442009-03-10 15:10:55 +01001324 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
1325 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
Tobin Davis7f296732007-03-12 11:39:01 +01001326 /* Record selector: Mic */
1327 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1328 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1329 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1330 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001331 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1332 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1333 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1334 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001335 /* SPDIF route: PCM */
1336 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davis82f30042007-02-13 12:45:44 +01001337 /* Enable unsolicited events */
1338 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1339 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001340 { } /* end */
1341};
1342
1343/* configuration for Toshiba Laptops */
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001344static const struct hda_verb cxt5047_toshiba_init_verbs[] = {
Takashi Iwai3b628862009-03-10 14:53:54 +01001345 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001346 {}
1347};
1348
1349/* Test configuration for debugging, modelled after the ALC260 test
1350 * configuration.
1351 */
1352#ifdef CONFIG_SND_DEBUG
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001353static const struct hda_input_mux cxt5047_test_capture_source = {
Tobin Davis82f30042007-02-13 12:45:44 +01001354 .num_items = 4,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001355 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +01001356 { "LINE1 pin", 0x0 },
1357 { "MIC1 pin", 0x1 },
1358 { "MIC2 pin", 0x2 },
1359 { "CD pin", 0x3 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001360 },
1361};
1362
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001363static const struct snd_kcontrol_new cxt5047_test_mixer[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001364
1365 /* Output only controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001366 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1367 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1368 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1369 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001370 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1371 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1372 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1373 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001374 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1375 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1376 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1377 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001378
1379 /* Modes for retasking pin widgets */
1380 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1381 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1382
Tobin Davis82f30042007-02-13 12:45:44 +01001383 /* EAPD Switch Control */
1384 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1385
Tobin Davisc9b443d2006-11-14 12:13:39 +01001386 /* Loopback mixer controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001387 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1388 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1389 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1390 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1391 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1392 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1393 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1394 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001395
Tobin Davis82f30042007-02-13 12:45:44 +01001396 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1397 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1398 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1399 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1400 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1401 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1402 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1403 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001404 {
1405 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1406 .name = "Input Source",
1407 .info = conexant_mux_enum_info,
1408 .get = conexant_mux_enum_get,
1409 .put = conexant_mux_enum_put,
1410 },
Takashi Iwai854206b2009-11-30 18:22:04 +01001411 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
Marc Boucher9f113e02008-01-22 15:18:08 +01001412
Tobin Davisc9b443d2006-11-14 12:13:39 +01001413 { } /* end */
1414};
1415
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001416static const struct hda_verb cxt5047_test_init_verbs[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001417 /* Enable retasking pins as output, initially without power amp */
1418 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1419 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1420 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1421
1422 /* Disable digital (SPDIF) pins initially, but users can enable
1423 * them via a mixer switch. In the case of SPDIF-out, this initverb
1424 * payload also sets the generation to 0, output to be in "consumer"
1425 * PCM format, copyright asserted, no pre-emphasis and no validity
1426 * control.
1427 */
1428 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1429
1430 /* Ensure mic1, mic2, line1 pin widgets take input from the
1431 * OUT1 sum bus when acting as an output.
1432 */
1433 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1434 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1435
1436 /* Start with output sum widgets muted and their output gains at min */
1437 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1438 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1439
1440 /* Unmute retasking pin widget output buffers since the default
1441 * state appears to be output. As the pin mode is changed by the
1442 * user the pin mode control will take care of enabling the pin's
1443 * input/output buffers as needed.
1444 */
1445 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1446 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1447 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1448
1449 /* Mute capture amp left and right */
1450 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1451
1452 /* Set ADC connection select to match default mixer setting (mic1
1453 * pin)
1454 */
1455 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1456
1457 /* Mute all inputs to mixer widget (even unconnected ones) */
1458 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1459 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1460 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1461 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1462 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1463 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1464 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1465 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1466
1467 { }
1468};
1469#endif
1470
1471
1472/* initialize jack-sensing, too */
1473static int cxt5047_hp_init(struct hda_codec *codec)
1474{
1475 conexant_init(codec);
1476 cxt5047_hp_automute(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001477 return 0;
1478}
1479
1480
1481enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001482 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1483 CXT5047_LAPTOP_HP, /* Some HP laptops */
1484 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001485#ifdef CONFIG_SND_DEBUG
1486 CXT5047_TEST,
1487#endif
Takashi Iwaifa5dadc2011-05-13 19:33:18 +02001488 CXT5047_AUTO,
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001489 CXT5047_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001490};
1491
Takashi Iwaiea734962011-01-17 11:29:34 +01001492static const char * const cxt5047_models[CXT5047_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001493 [CXT5047_LAPTOP] = "laptop",
1494 [CXT5047_LAPTOP_HP] = "laptop-hp",
1495 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001496#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001497 [CXT5047_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001498#endif
Takashi Iwaifa5dadc2011-05-13 19:33:18 +02001499 [CXT5047_AUTO] = "auto",
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001500};
1501
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001502static const struct snd_pci_quirk cxt5047_cfg_tbl[] = {
Takashi Iwaiac3e3742007-12-17 17:14:18 +01001503 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001504 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1505 CXT5047_LAPTOP),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001506 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001507 {}
1508};
1509
1510static int patch_cxt5047(struct hda_codec *codec)
1511{
1512 struct conexant_spec *spec;
1513 int board_config;
1514
Takashi Iwaifa5dadc2011-05-13 19:33:18 +02001515 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1516 cxt5047_models,
1517 cxt5047_cfg_tbl);
Takashi Iwaifa5dadc2011-05-13 19:33:18 +02001518 if (board_config < 0)
Takashi Iwaic82693d2011-06-28 14:17:17 +02001519 board_config = CXT5047_AUTO; /* model=auto as default */
Takashi Iwaifa5dadc2011-05-13 19:33:18 +02001520 if (board_config == CXT5047_AUTO)
1521 return patch_conexant_auto(codec);
1522
Tobin Davisc9b443d2006-11-14 12:13:39 +01001523 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1524 if (!spec)
1525 return -ENOMEM;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001526 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001527 codec->pin_amp_workaround = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001528
1529 spec->multiout.max_channels = 2;
1530 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1531 spec->multiout.dac_nids = cxt5047_dac_nids;
1532 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1533 spec->num_adc_nids = 1;
1534 spec->adc_nids = cxt5047_adc_nids;
1535 spec->capsrc_nids = cxt5047_capsrc_nids;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001536 spec->num_mixers = 1;
Takashi Iwaidf481e42009-03-10 15:35:35 +01001537 spec->mixers[0] = cxt5047_base_mixers;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001538 spec->num_init_verbs = 1;
1539 spec->init_verbs[0] = cxt5047_init_verbs;
1540 spec->spdif_route = 0;
Tobin Davis5cd57522006-11-20 17:42:09 +01001541 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1542 spec->channel_mode = cxt5047_modes,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001543
1544 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001545
Tobin Davisc9b443d2006-11-14 12:13:39 +01001546 switch (board_config) {
1547 case CXT5047_LAPTOP:
Takashi Iwaidf481e42009-03-10 15:35:35 +01001548 spec->num_mixers = 2;
1549 spec->mixers[1] = cxt5047_hp_spk_mixers;
1550 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001551 break;
1552 case CXT5047_LAPTOP_HP:
Takashi Iwaidf481e42009-03-10 15:35:35 +01001553 spec->num_mixers = 2;
1554 spec->mixers[1] = cxt5047_hp_only_mixers;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001555 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001556 codec->patch_ops.init = cxt5047_hp_init;
1557 break;
1558 case CXT5047_LAPTOP_EAPD:
Tobin Davis82f30042007-02-13 12:45:44 +01001559 spec->input_mux = &cxt5047_toshiba_capture_source;
Takashi Iwaidf481e42009-03-10 15:35:35 +01001560 spec->num_mixers = 2;
1561 spec->mixers[1] = cxt5047_hp_spk_mixers;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001562 spec->num_init_verbs = 2;
1563 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001564 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001565 break;
1566#ifdef CONFIG_SND_DEBUG
1567 case CXT5047_TEST:
1568 spec->input_mux = &cxt5047_test_capture_source;
1569 spec->mixers[0] = cxt5047_test_mixer;
1570 spec->init_verbs[0] = cxt5047_test_init_verbs;
Tobin Davisfb3409e2007-05-17 09:40:47 +02001571 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001572#endif
1573 }
Takashi Iwaidd5746a2009-03-10 14:30:40 +01001574 spec->vmaster_nid = 0x13;
Daniel T Chen025f2062010-03-21 18:34:43 -04001575
1576 switch (codec->subsystem_id >> 16) {
1577 case 0x103c:
1578 /* HP laptops have really bad sound over 0 dB on NID 0x10.
1579 * Fix max PCM level to 0 dB (originally it has 0x1e steps
1580 * with 0 dB offset 0x17)
1581 */
1582 snd_hda_override_amp_caps(codec, 0x10, HDA_INPUT,
1583 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
1584 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1585 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1586 (1 << AC_AMPCAP_MUTE_SHIFT));
1587 break;
1588 }
1589
Tobin Davisc9b443d2006-11-14 12:13:39 +01001590 return 0;
1591}
1592
Takashi Iwai461e2c72008-01-25 11:35:17 +01001593/* Conexant 5051 specific */
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001594static const hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1595static const hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
Takashi Iwai461e2c72008-01-25 11:35:17 +01001596
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001597static const struct hda_channel_mode cxt5051_modes[1] = {
Takashi Iwai461e2c72008-01-25 11:35:17 +01001598 { 2, NULL },
1599};
1600
1601static void cxt5051_update_speaker(struct hda_codec *codec)
1602{
1603 struct conexant_spec *spec = codec->spec;
1604 unsigned int pinctl;
Takashi Iwai23d2df52010-01-24 11:19:27 +01001605 /* headphone pin */
1606 pinctl = (spec->hp_present && spec->cur_eapd) ? PIN_HP : 0;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001607 snd_hda_set_pin_ctl(codec, 0x16, pinctl);
Takashi Iwai23d2df52010-01-24 11:19:27 +01001608 /* speaker pin */
Takashi Iwai461e2c72008-01-25 11:35:17 +01001609 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001610 snd_hda_set_pin_ctl(codec, 0x1a, pinctl);
Justin P. Mattocka80581d2012-02-11 05:55:58 -08001611 /* on ideapad there is an additional speaker (subwoofer) to mute */
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001612 if (spec->ideapad)
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001613 snd_hda_set_pin_ctl(codec, 0x1b, pinctl);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001614}
1615
1616/* turn on/off EAPD (+ mute HP) as a master switch */
1617static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1618 struct snd_ctl_elem_value *ucontrol)
1619{
1620 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1621
1622 if (!cxt_eapd_put(kcontrol, ucontrol))
1623 return 0;
1624 cxt5051_update_speaker(codec);
1625 return 1;
1626}
1627
1628/* toggle input of built-in and mic jack appropriately */
1629static void cxt5051_portb_automic(struct hda_codec *codec)
1630{
Takashi Iwai79d7d532009-03-04 09:03:50 +01001631 struct conexant_spec *spec = codec->spec;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001632 unsigned int present;
1633
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001634 if (!(spec->auto_mic & AUTO_MIC_PORTB))
Takashi Iwai79d7d532009-03-04 09:03:50 +01001635 return;
Takashi Iwaid56757a2009-11-18 08:00:14 +01001636 present = snd_hda_jack_detect(codec, 0x17);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001637 snd_hda_codec_write(codec, 0x14, 0,
1638 AC_VERB_SET_CONNECT_SEL,
1639 present ? 0x01 : 0x00);
1640}
1641
1642/* switch the current ADC according to the jack state */
1643static void cxt5051_portc_automic(struct hda_codec *codec)
1644{
1645 struct conexant_spec *spec = codec->spec;
1646 unsigned int present;
1647 hda_nid_t new_adc;
1648
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001649 if (!(spec->auto_mic & AUTO_MIC_PORTC))
Takashi Iwai79d7d532009-03-04 09:03:50 +01001650 return;
Takashi Iwaid56757a2009-11-18 08:00:14 +01001651 present = snd_hda_jack_detect(codec, 0x18);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001652 if (present)
1653 spec->cur_adc_idx = 1;
1654 else
1655 spec->cur_adc_idx = 0;
1656 new_adc = spec->adc_nids[spec->cur_adc_idx];
1657 if (spec->cur_adc && spec->cur_adc != new_adc) {
1658 /* stream is running, let's swap the current ADC */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001659 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001660 spec->cur_adc = new_adc;
1661 snd_hda_codec_setup_stream(codec, new_adc,
1662 spec->cur_adc_stream_tag, 0,
1663 spec->cur_adc_format);
1664 }
1665}
1666
1667/* mute internal speaker if HP is plugged */
1668static void cxt5051_hp_automute(struct hda_codec *codec)
1669{
1670 struct conexant_spec *spec = codec->spec;
1671
Takashi Iwaid56757a2009-11-18 08:00:14 +01001672 spec->hp_present = snd_hda_jack_detect(codec, 0x16);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001673 cxt5051_update_speaker(codec);
1674}
1675
1676/* unsolicited event for HP jack sensing */
1677static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1678 unsigned int res)
1679{
1680 switch (res >> 26) {
1681 case CONEXANT_HP_EVENT:
1682 cxt5051_hp_automute(codec);
1683 break;
1684 case CXT5051_PORTB_EVENT:
1685 cxt5051_portb_automic(codec);
1686 break;
1687 case CXT5051_PORTC_EVENT:
1688 cxt5051_portc_automic(codec);
1689 break;
1690 }
1691}
1692
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001693static const struct snd_kcontrol_new cxt5051_playback_mixers[] = {
Takashi Iwai461e2c72008-01-25 11:35:17 +01001694 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1695 {
1696 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1697 .name = "Master Playback Switch",
1698 .info = cxt_eapd_info,
1699 .get = cxt_eapd_get,
1700 .put = cxt5051_hp_master_sw_put,
1701 .private_value = 0x1a,
1702 },
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001703 {}
1704};
Takashi Iwai461e2c72008-01-25 11:35:17 +01001705
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001706static const struct snd_kcontrol_new cxt5051_capture_mixers[] = {
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001707 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1708 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +01001709 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT),
1710 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT),
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001711 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1712 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001713 {}
1714};
1715
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001716static const struct snd_kcontrol_new cxt5051_hp_mixers[] = {
Takashi Iwai461e2c72008-01-25 11:35:17 +01001717 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1718 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +01001719 HDA_CODEC_VOLUME("Mic Volume", 0x15, 0x00, HDA_INPUT),
1720 HDA_CODEC_MUTE("Mic Switch", 0x15, 0x00, HDA_INPUT),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001721 {}
1722};
1723
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001724static const struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
Takashi Iwai4e4ac602010-01-23 22:29:54 +01001725 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x00, HDA_INPUT),
1726 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x00, HDA_INPUT),
Takashi Iwai79d7d532009-03-04 09:03:50 +01001727 {}
1728};
1729
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001730static const struct snd_kcontrol_new cxt5051_f700_mixers[] = {
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001731 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x01, HDA_INPUT),
1732 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x01, HDA_INPUT),
Ken Proxcd9d95a2010-01-08 09:01:47 +01001733 {}
1734};
1735
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001736static const struct snd_kcontrol_new cxt5051_toshiba_mixers[] = {
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001737 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1738 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +01001739 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT),
1740 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT),
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001741 {}
1742};
1743
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001744static const struct hda_verb cxt5051_init_verbs[] = {
Takashi Iwai461e2c72008-01-25 11:35:17 +01001745 /* Line in, Mic */
1746 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1747 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1748 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1749 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1750 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1751 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1752 /* SPK */
1753 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1754 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1755 /* HP, Amp */
1756 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1757 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1758 /* DAC1 */
1759 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
David Henningsson28c4edb2010-12-20 14:24:29 +01001760 /* Record selector: Internal mic */
Takashi Iwai461e2c72008-01-25 11:35:17 +01001761 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1762 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1763 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1764 /* SPDIF route: PCM */
Pierre-Louis Bossart1965c442010-05-06 16:37:03 -05001765 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai461e2c72008-01-25 11:35:17 +01001766 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1767 /* EAPD */
1768 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1769 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
Takashi Iwai461e2c72008-01-25 11:35:17 +01001770 { } /* end */
1771};
1772
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001773static const struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
Takashi Iwai79d7d532009-03-04 09:03:50 +01001774 /* Line in, Mic */
1775 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1776 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1777 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1778 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1779 /* SPK */
1780 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1781 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1782 /* HP, Amp */
1783 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1784 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1785 /* DAC1 */
1786 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
David Henningsson28c4edb2010-12-20 14:24:29 +01001787 /* Record selector: Internal mic */
Takashi Iwai79d7d532009-03-04 09:03:50 +01001788 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1789 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1790 /* SPDIF route: PCM */
1791 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1792 /* EAPD */
1793 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1794 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
Takashi Iwai79d7d532009-03-04 09:03:50 +01001795 { } /* end */
1796};
1797
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001798static const struct hda_verb cxt5051_f700_init_verbs[] = {
Ken Proxcd9d95a2010-01-08 09:01:47 +01001799 /* Line in, Mic */
Takashi Iwai30ed7ed2010-01-28 17:11:45 +01001800 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
Ken Proxcd9d95a2010-01-08 09:01:47 +01001801 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1802 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1803 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1804 /* SPK */
1805 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1806 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1807 /* HP, Amp */
1808 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1809 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1810 /* DAC1 */
1811 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
David Henningsson28c4edb2010-12-20 14:24:29 +01001812 /* Record selector: Internal mic */
Ken Proxcd9d95a2010-01-08 09:01:47 +01001813 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1814 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1815 /* SPDIF route: PCM */
1816 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1817 /* EAPD */
1818 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1819 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
Ken Proxcd9d95a2010-01-08 09:01:47 +01001820 { } /* end */
1821};
1822
Takashi Iwai6953e552010-01-24 11:00:27 +01001823static void cxt5051_init_mic_port(struct hda_codec *codec, hda_nid_t nid,
1824 unsigned int event)
1825{
1826 snd_hda_codec_write(codec, nid, 0,
1827 AC_VERB_SET_UNSOLICITED_ENABLE,
1828 AC_USRSP_EN | event);
Takashi Iwai6953e552010-01-24 11:00:27 +01001829}
1830
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001831static const struct hda_verb cxt5051_ideapad_init_verbs[] = {
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001832 /* Subwoofer */
1833 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1834 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1835 { } /* end */
1836};
1837
Takashi Iwai461e2c72008-01-25 11:35:17 +01001838/* initialize jack-sensing, too */
1839static int cxt5051_init(struct hda_codec *codec)
1840{
Takashi Iwai6953e552010-01-24 11:00:27 +01001841 struct conexant_spec *spec = codec->spec;
1842
Takashi Iwai461e2c72008-01-25 11:35:17 +01001843 conexant_init(codec);
Takashi Iwai6953e552010-01-24 11:00:27 +01001844
1845 if (spec->auto_mic & AUTO_MIC_PORTB)
1846 cxt5051_init_mic_port(codec, 0x17, CXT5051_PORTB_EVENT);
1847 if (spec->auto_mic & AUTO_MIC_PORTC)
1848 cxt5051_init_mic_port(codec, 0x18, CXT5051_PORTC_EVENT);
1849
Takashi Iwai461e2c72008-01-25 11:35:17 +01001850 if (codec->patch_ops.unsol_event) {
1851 cxt5051_hp_automute(codec);
1852 cxt5051_portb_automic(codec);
1853 cxt5051_portc_automic(codec);
1854 }
1855 return 0;
1856}
1857
1858
1859enum {
1860 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1861 CXT5051_HP, /* no docking */
Takashi Iwai79d7d532009-03-04 09:03:50 +01001862 CXT5051_HP_DV6736, /* HP without mic switch */
Ken Proxcd9d95a2010-01-08 09:01:47 +01001863 CXT5051_F700, /* HP Compaq Presario F700 */
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001864 CXT5051_TOSHIBA, /* Toshiba M300 & co */
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001865 CXT5051_IDEAPAD, /* Lenovo IdeaPad Y430 */
Takashi Iwai6764bce2011-05-13 16:52:25 +02001866 CXT5051_AUTO, /* auto-parser */
Takashi Iwai461e2c72008-01-25 11:35:17 +01001867 CXT5051_MODELS
1868};
1869
Takashi Iwaiea734962011-01-17 11:29:34 +01001870static const char *const cxt5051_models[CXT5051_MODELS] = {
Takashi Iwai461e2c72008-01-25 11:35:17 +01001871 [CXT5051_LAPTOP] = "laptop",
1872 [CXT5051_HP] = "hp",
Takashi Iwai79d7d532009-03-04 09:03:50 +01001873 [CXT5051_HP_DV6736] = "hp-dv6736",
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001874 [CXT5051_F700] = "hp-700",
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001875 [CXT5051_TOSHIBA] = "toshiba",
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001876 [CXT5051_IDEAPAD] = "ideapad",
Takashi Iwai6764bce2011-05-13 16:52:25 +02001877 [CXT5051_AUTO] = "auto",
Takashi Iwai461e2c72008-01-25 11:35:17 +01001878};
1879
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001880static const struct snd_pci_quirk cxt5051_cfg_tbl[] = {
Takashi Iwai79d7d532009-03-04 09:03:50 +01001881 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
Tony Vroon1812e672009-05-27 21:00:41 +01001882 SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001883 SND_PCI_QUIRK(0x103c, 0x30ea, "Compaq Presario F700", CXT5051_F700),
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001884 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba M30x", CXT5051_TOSHIBA),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001885 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1886 CXT5051_LAPTOP),
1887 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001888 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo IdeaPad", CXT5051_IDEAPAD),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001889 {}
1890};
1891
1892static int patch_cxt5051(struct hda_codec *codec)
1893{
1894 struct conexant_spec *spec;
1895 int board_config;
1896
Takashi Iwai6764bce2011-05-13 16:52:25 +02001897 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1898 cxt5051_models,
1899 cxt5051_cfg_tbl);
1900 if (board_config < 0)
Takashi Iwaic82693d2011-06-28 14:17:17 +02001901 board_config = CXT5051_AUTO; /* model=auto as default */
Takashi Iwai1f8458a2011-05-13 17:22:05 +02001902 if (board_config == CXT5051_AUTO)
Takashi Iwai6764bce2011-05-13 16:52:25 +02001903 return patch_conexant_auto(codec);
Takashi Iwai6764bce2011-05-13 16:52:25 +02001904
Takashi Iwai461e2c72008-01-25 11:35:17 +01001905 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1906 if (!spec)
1907 return -ENOMEM;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001908 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001909 codec->pin_amp_workaround = 1;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001910
1911 codec->patch_ops = conexant_patch_ops;
1912 codec->patch_ops.init = cxt5051_init;
1913
1914 spec->multiout.max_channels = 2;
1915 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1916 spec->multiout.dac_nids = cxt5051_dac_nids;
1917 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1918 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1919 spec->adc_nids = cxt5051_adc_nids;
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001920 spec->num_mixers = 2;
1921 spec->mixers[0] = cxt5051_capture_mixers;
1922 spec->mixers[1] = cxt5051_playback_mixers;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001923 spec->num_init_verbs = 1;
1924 spec->init_verbs[0] = cxt5051_init_verbs;
1925 spec->spdif_route = 0;
1926 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1927 spec->channel_mode = cxt5051_modes;
1928 spec->cur_adc = 0;
1929 spec->cur_adc_idx = 0;
1930
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001931 set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
1932
Takashi Iwai79d7d532009-03-04 09:03:50 +01001933 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1934
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001935 spec->auto_mic = AUTO_MIC_PORTB | AUTO_MIC_PORTC;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001936 switch (board_config) {
1937 case CXT5051_HP:
Takashi Iwai461e2c72008-01-25 11:35:17 +01001938 spec->mixers[0] = cxt5051_hp_mixers;
1939 break;
Takashi Iwai79d7d532009-03-04 09:03:50 +01001940 case CXT5051_HP_DV6736:
1941 spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
1942 spec->mixers[0] = cxt5051_hp_dv6736_mixers;
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001943 spec->auto_mic = 0;
Takashi Iwai79d7d532009-03-04 09:03:50 +01001944 break;
Ken Proxcd9d95a2010-01-08 09:01:47 +01001945 case CXT5051_F700:
1946 spec->init_verbs[0] = cxt5051_f700_init_verbs;
1947 spec->mixers[0] = cxt5051_f700_mixers;
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001948 spec->auto_mic = 0;
1949 break;
1950 case CXT5051_TOSHIBA:
1951 spec->mixers[0] = cxt5051_toshiba_mixers;
1952 spec->auto_mic = AUTO_MIC_PORTB;
Ken Proxcd9d95a2010-01-08 09:01:47 +01001953 break;
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001954 case CXT5051_IDEAPAD:
1955 spec->init_verbs[spec->num_init_verbs++] =
1956 cxt5051_ideapad_init_verbs;
1957 spec->ideapad = 1;
1958 break;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001959 }
1960
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001961 if (spec->beep_amp)
1962 snd_hda_attach_beep_device(codec, spec->beep_amp);
1963
Takashi Iwai461e2c72008-01-25 11:35:17 +01001964 return 0;
1965}
1966
Daniel Drake0fb67e92009-07-16 14:46:57 +01001967/* Conexant 5066 specific */
1968
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001969static const hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
1970static const hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
1971static const hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
1972static const hda_nid_t cxt5066_digout_pin_nids[2] = { 0x20, 0x22 };
Daniel Drake0fb67e92009-07-16 14:46:57 +01001973
Daniel Drakedbaccc02009-11-09 15:17:24 +00001974/* OLPC's microphone port is DC coupled for use with external sensors,
1975 * therefore we use a 50% mic bias in order to center the input signal with
1976 * the DC input range of the codec. */
1977#define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
1978
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02001979static const struct hda_channel_mode cxt5066_modes[1] = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01001980 { 2, NULL },
1981};
1982
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01001983#define HP_PRESENT_PORT_A (1 << 0)
1984#define HP_PRESENT_PORT_D (1 << 1)
1985#define hp_port_a_present(spec) ((spec)->hp_present & HP_PRESENT_PORT_A)
1986#define hp_port_d_present(spec) ((spec)->hp_present & HP_PRESENT_PORT_D)
1987
Daniel Drake0fb67e92009-07-16 14:46:57 +01001988static void cxt5066_update_speaker(struct hda_codec *codec)
1989{
1990 struct conexant_spec *spec = codec->spec;
1991 unsigned int pinctl;
1992
John Baboval3a253442010-12-02 11:21:31 -05001993 snd_printdd("CXT5066: update speaker, hp_present=%d, cur_eapd=%d\n",
1994 spec->hp_present, spec->cur_eapd);
Daniel Drake0fb67e92009-07-16 14:46:57 +01001995
1996 /* Port A (HP) */
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01001997 pinctl = (hp_port_a_present(spec) && spec->cur_eapd) ? PIN_HP : 0;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02001998 snd_hda_set_pin_ctl(codec, 0x19, pinctl);
Daniel Drake0fb67e92009-07-16 14:46:57 +01001999
2000 /* Port D (HP/LO) */
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01002001 pinctl = spec->cur_eapd ? spec->port_d_mode : 0;
2002 if (spec->dell_automute || spec->thinkpad) {
2003 /* Mute if Port A is connected */
2004 if (hp_port_a_present(spec))
John Baboval3a253442010-12-02 11:21:31 -05002005 pinctl = 0;
2006 } else {
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01002007 /* Thinkpad/Dell doesn't give pin-D status */
2008 if (!hp_port_d_present(spec))
2009 pinctl = 0;
John Baboval3a253442010-12-02 11:21:31 -05002010 }
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002011 snd_hda_set_pin_ctl(codec, 0x1c, pinctl);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002012
2013 /* CLASS_D AMP */
2014 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002015 snd_hda_set_pin_ctl(codec, 0x1f, pinctl);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002016}
2017
2018/* turn on/off EAPD (+ mute HP) as a master switch */
2019static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
2020 struct snd_ctl_elem_value *ucontrol)
2021{
2022 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2023
2024 if (!cxt_eapd_put(kcontrol, ucontrol))
2025 return 0;
2026
2027 cxt5066_update_speaker(codec);
2028 return 1;
2029}
2030
Daniel Drakec4cfe662010-01-07 13:47:04 +01002031static const struct hda_input_mux cxt5066_olpc_dc_bias = {
2032 .num_items = 3,
2033 .items = {
2034 { "Off", PIN_IN },
2035 { "50%", PIN_VREF50 },
2036 { "80%", PIN_VREF80 },
2037 },
2038};
2039
2040static int cxt5066_set_olpc_dc_bias(struct hda_codec *codec)
2041{
2042 struct conexant_spec *spec = codec->spec;
2043 /* Even though port F is the DC input, the bias is controlled on port B.
2044 * we also leave that port as an active input (but unselected) in DC mode
2045 * just in case that is necessary to make the bias setting take effect. */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002046 return snd_hda_set_pin_ctl_cache(codec, 0x1a,
Daniel Drakec4cfe662010-01-07 13:47:04 +01002047 cxt5066_olpc_dc_bias.items[spec->dc_input_bias].index);
2048}
2049
Daniel Drake75f89912010-01-07 13:46:25 +01002050/* OLPC defers mic widget control until when capture is started because the
2051 * microphone LED comes on as soon as these settings are put in place. if we
2052 * did this before recording, it would give the false indication that recording
2053 * is happening when it is not. */
2054static void cxt5066_olpc_select_mic(struct hda_codec *codec)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002055{
Daniel Drakedbaccc02009-11-09 15:17:24 +00002056 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +01002057 if (!spec->recording)
2058 return;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002059
Daniel Drakec4cfe662010-01-07 13:47:04 +01002060 if (spec->dc_enable) {
2061 /* in DC mode we ignore presence detection and just use the jack
2062 * through our special DC port */
2063 const struct hda_verb enable_dc_mode[] = {
2064 /* disble internal mic, port C */
2065 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2066
2067 /* enable DC capture, port F */
2068 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2069 {},
2070 };
2071
2072 snd_hda_sequence_write(codec, enable_dc_mode);
2073 /* port B input disabled (and bias set) through the following call */
2074 cxt5066_set_olpc_dc_bias(codec);
2075 return;
2076 }
2077
2078 /* disable DC (port F) */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002079 snd_hda_set_pin_ctl(codec, 0x1e, 0);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002080
Daniel Drake75f89912010-01-07 13:46:25 +01002081 /* external mic, port B */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002082 snd_hda_set_pin_ctl(codec, 0x1a,
Daniel Drake75f89912010-01-07 13:46:25 +01002083 spec->ext_mic_present ? CXT5066_OLPC_EXT_MIC_BIAS : 0);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002084
Daniel Drake75f89912010-01-07 13:46:25 +01002085 /* internal mic, port C */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02002086 snd_hda_set_pin_ctl(codec, 0x1b,
Daniel Drake75f89912010-01-07 13:46:25 +01002087 spec->ext_mic_present ? 0 : PIN_VREF80);
2088}
Daniel Drake0fb67e92009-07-16 14:46:57 +01002089
Daniel Drake75f89912010-01-07 13:46:25 +01002090/* toggle input of built-in and mic jack appropriately */
2091static void cxt5066_olpc_automic(struct hda_codec *codec)
2092{
2093 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002094 unsigned int present;
2095
Daniel Drakec4cfe662010-01-07 13:47:04 +01002096 if (spec->dc_enable) /* don't do presence detection in DC mode */
2097 return;
2098
Daniel Drake75f89912010-01-07 13:46:25 +01002099 present = snd_hda_codec_read(codec, 0x1a, 0,
2100 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2101 if (present)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002102 snd_printdd("CXT5066: external microphone detected\n");
Daniel Drake75f89912010-01-07 13:46:25 +01002103 else
Daniel Drake0fb67e92009-07-16 14:46:57 +01002104 snd_printdd("CXT5066: external microphone absent\n");
Daniel Drake75f89912010-01-07 13:46:25 +01002105
2106 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2107 present ? 0 : 1);
2108 spec->ext_mic_present = !!present;
2109
2110 cxt5066_olpc_select_mic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002111}
2112
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002113/* toggle input of built-in digital mic and mic jack appropriately */
2114static void cxt5066_vostro_automic(struct hda_codec *codec)
2115{
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002116 unsigned int present;
2117
2118 struct hda_verb ext_mic_present[] = {
2119 /* enable external mic, port B */
Daniel Drake75f89912010-01-07 13:46:25 +01002120 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002121
2122 /* switch to external mic input */
2123 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2124 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2125
2126 /* disable internal digital mic */
2127 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2128 {}
2129 };
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002130 static const struct hda_verb ext_mic_absent[] = {
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002131 /* enable internal mic, port C */
2132 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2133
2134 /* switch to internal mic input */
2135 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2136
2137 /* disable external mic, port B */
2138 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2139 {}
2140 };
2141
2142 present = snd_hda_jack_detect(codec, 0x1a);
2143 if (present) {
2144 snd_printdd("CXT5066: external microphone detected\n");
2145 snd_hda_sequence_write(codec, ext_mic_present);
2146 } else {
2147 snd_printdd("CXT5066: external microphone absent\n");
2148 snd_hda_sequence_write(codec, ext_mic_absent);
2149 }
2150}
2151
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002152/* toggle input of built-in digital mic and mic jack appropriately */
2153static void cxt5066_ideapad_automic(struct hda_codec *codec)
2154{
2155 unsigned int present;
2156
2157 struct hda_verb ext_mic_present[] = {
2158 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2159 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2160 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2161 {}
2162 };
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002163 static const struct hda_verb ext_mic_absent[] = {
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002164 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2165 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2166 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2167 {}
2168 };
2169
2170 present = snd_hda_jack_detect(codec, 0x1b);
2171 if (present) {
2172 snd_printdd("CXT5066: external microphone detected\n");
2173 snd_hda_sequence_write(codec, ext_mic_present);
2174 } else {
2175 snd_printdd("CXT5066: external microphone absent\n");
2176 snd_hda_sequence_write(codec, ext_mic_absent);
2177 }
2178}
2179
David Henningssona1d69062011-01-21 13:33:28 +01002180
2181/* toggle input of built-in digital mic and mic jack appropriately */
2182static void cxt5066_asus_automic(struct hda_codec *codec)
2183{
2184 unsigned int present;
2185
2186 present = snd_hda_jack_detect(codec, 0x1b);
2187 snd_printdd("CXT5066: external microphone present=%d\n", present);
2188 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2189 present ? 1 : 0);
2190}
2191
2192
David Henningsson048e78a2010-09-02 08:35:47 +02002193/* toggle input of built-in digital mic and mic jack appropriately */
2194static void cxt5066_hp_laptop_automic(struct hda_codec *codec)
2195{
2196 unsigned int present;
2197
2198 present = snd_hda_jack_detect(codec, 0x1b);
2199 snd_printdd("CXT5066: external microphone present=%d\n", present);
2200 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2201 present ? 1 : 3);
2202}
2203
2204
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002205/* toggle input of built-in digital mic and mic jack appropriately
2206 order is: external mic -> dock mic -> interal mic */
2207static void cxt5066_thinkpad_automic(struct hda_codec *codec)
2208{
2209 unsigned int ext_present, dock_present;
2210
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002211 static const struct hda_verb ext_mic_present[] = {
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002212 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2213 {0x17, AC_VERB_SET_CONNECT_SEL, 1},
2214 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2215 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2216 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2217 {}
2218 };
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002219 static const struct hda_verb dock_mic_present[] = {
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002220 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2221 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2222 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2223 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2224 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2225 {}
2226 };
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002227 static const struct hda_verb ext_mic_absent[] = {
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002228 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2229 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2230 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2231 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2232 {}
2233 };
2234
2235 ext_present = snd_hda_jack_detect(codec, 0x1b);
2236 dock_present = snd_hda_jack_detect(codec, 0x1a);
2237 if (ext_present) {
2238 snd_printdd("CXT5066: external microphone detected\n");
2239 snd_hda_sequence_write(codec, ext_mic_present);
2240 } else if (dock_present) {
2241 snd_printdd("CXT5066: dock microphone detected\n");
2242 snd_hda_sequence_write(codec, dock_mic_present);
2243 } else {
2244 snd_printdd("CXT5066: external microphone absent\n");
2245 snd_hda_sequence_write(codec, ext_mic_absent);
2246 }
2247}
2248
Daniel Drake0fb67e92009-07-16 14:46:57 +01002249/* mute internal speaker if HP is plugged */
2250static void cxt5066_hp_automute(struct hda_codec *codec)
2251{
2252 struct conexant_spec *spec = codec->spec;
2253 unsigned int portA, portD;
2254
2255 /* Port A */
Takashi Iwaid56757a2009-11-18 08:00:14 +01002256 portA = snd_hda_jack_detect(codec, 0x19);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002257
2258 /* Port D */
Takashi Iwaid56757a2009-11-18 08:00:14 +01002259 portD = snd_hda_jack_detect(codec, 0x1c);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002260
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01002261 spec->hp_present = portA ? HP_PRESENT_PORT_A : 0;
2262 spec->hp_present |= portD ? HP_PRESENT_PORT_D : 0;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002263 snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2264 portA, portD, spec->hp_present);
2265 cxt5066_update_speaker(codec);
2266}
2267
David Henningsson02b6b5b2011-01-21 13:27:39 +01002268/* Dispatch the right mic autoswitch function */
2269static void cxt5066_automic(struct hda_codec *codec)
2270{
2271 struct conexant_spec *spec = codec->spec;
2272
2273 if (spec->dell_vostro)
2274 cxt5066_vostro_automic(codec);
2275 else if (spec->ideapad)
2276 cxt5066_ideapad_automic(codec);
2277 else if (spec->thinkpad)
2278 cxt5066_thinkpad_automic(codec);
2279 else if (spec->hp_laptop)
2280 cxt5066_hp_laptop_automic(codec);
David Henningssona1d69062011-01-21 13:33:28 +01002281 else if (spec->asus)
2282 cxt5066_asus_automic(codec);
David Henningsson02b6b5b2011-01-21 13:27:39 +01002283}
2284
Daniel Drake0fb67e92009-07-16 14:46:57 +01002285/* unsolicited event for jack sensing */
Daniel Drake75f89912010-01-07 13:46:25 +01002286static void cxt5066_olpc_unsol_event(struct hda_codec *codec, unsigned int res)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002287{
Daniel Drakec4cfe662010-01-07 13:47:04 +01002288 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002289 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
2290 switch (res >> 26) {
2291 case CONEXANT_HP_EVENT:
2292 cxt5066_hp_automute(codec);
2293 break;
2294 case CONEXANT_MIC_EVENT:
Daniel Drakec4cfe662010-01-07 13:47:04 +01002295 /* ignore mic events in DC mode; we're always using the jack */
2296 if (!spec->dc_enable)
2297 cxt5066_olpc_automic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002298 break;
2299 }
2300}
2301
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002302/* unsolicited event for jack sensing */
David Henningsson02b6b5b2011-01-21 13:27:39 +01002303static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res)
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002304{
David Henningsson02b6b5b2011-01-21 13:27:39 +01002305 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002306 switch (res >> 26) {
2307 case CONEXANT_HP_EVENT:
2308 cxt5066_hp_automute(codec);
2309 break;
2310 case CONEXANT_MIC_EVENT:
David Henningsson02b6b5b2011-01-21 13:27:39 +01002311 cxt5066_automic(codec);
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002312 break;
2313 }
2314}
2315
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002316
Daniel Drake0fb67e92009-07-16 14:46:57 +01002317static const struct hda_input_mux cxt5066_analog_mic_boost = {
2318 .num_items = 5,
2319 .items = {
2320 { "0dB", 0 },
2321 { "10dB", 1 },
2322 { "20dB", 2 },
2323 { "30dB", 3 },
2324 { "40dB", 4 },
2325 },
2326};
2327
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002328static void cxt5066_set_mic_boost(struct hda_codec *codec)
Daniel Drakec4cfe662010-01-07 13:47:04 +01002329{
2330 struct conexant_spec *spec = codec->spec;
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002331 snd_hda_codec_write_cache(codec, 0x17, 0,
Daniel Drakec4cfe662010-01-07 13:47:04 +01002332 AC_VERB_SET_AMP_GAIN_MUTE,
2333 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2334 cxt5066_analog_mic_boost.items[spec->mic_boost].index);
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002335 if (spec->ideapad || spec->thinkpad) {
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002336 /* adjust the internal mic as well...it is not through 0x17 */
2337 snd_hda_codec_write_cache(codec, 0x23, 0,
2338 AC_VERB_SET_AMP_GAIN_MUTE,
2339 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_INPUT |
2340 cxt5066_analog_mic_boost.
2341 items[spec->mic_boost].index);
2342 }
Daniel Drakec4cfe662010-01-07 13:47:04 +01002343}
2344
Daniel Drake0fb67e92009-07-16 14:46:57 +01002345static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
2346 struct snd_ctl_elem_info *uinfo)
2347{
2348 return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
2349}
2350
2351static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
2352 struct snd_ctl_elem_value *ucontrol)
2353{
2354 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002355 struct conexant_spec *spec = codec->spec;
2356 ucontrol->value.enumerated.item[0] = spec->mic_boost;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002357 return 0;
2358}
2359
2360static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
2361 struct snd_ctl_elem_value *ucontrol)
2362{
2363 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002364 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002365 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2366 unsigned int idx;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002367 idx = ucontrol->value.enumerated.item[0];
2368 if (idx >= imux->num_items)
2369 idx = imux->num_items - 1;
2370
Daniel Drakec4cfe662010-01-07 13:47:04 +01002371 spec->mic_boost = idx;
2372 if (!spec->dc_enable)
2373 cxt5066_set_mic_boost(codec);
2374 return 1;
2375}
Daniel Drake0fb67e92009-07-16 14:46:57 +01002376
Daniel Drakec4cfe662010-01-07 13:47:04 +01002377static void cxt5066_enable_dc(struct hda_codec *codec)
2378{
2379 const struct hda_verb enable_dc_mode[] = {
2380 /* disable gain */
2381 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2382
2383 /* switch to DC input */
2384 {0x17, AC_VERB_SET_CONNECT_SEL, 3},
2385 {}
2386 };
2387
2388 /* configure as input source */
2389 snd_hda_sequence_write(codec, enable_dc_mode);
2390 cxt5066_olpc_select_mic(codec); /* also sets configured bias */
2391}
2392
2393static void cxt5066_disable_dc(struct hda_codec *codec)
2394{
2395 /* reconfigure input source */
2396 cxt5066_set_mic_boost(codec);
2397 /* automic also selects the right mic if we're recording */
2398 cxt5066_olpc_automic(codec);
2399}
2400
2401static int cxt5066_olpc_dc_get(struct snd_kcontrol *kcontrol,
2402 struct snd_ctl_elem_value *ucontrol)
2403{
2404 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2405 struct conexant_spec *spec = codec->spec;
2406 ucontrol->value.integer.value[0] = spec->dc_enable;
2407 return 0;
2408}
2409
2410static int cxt5066_olpc_dc_put(struct snd_kcontrol *kcontrol,
2411 struct snd_ctl_elem_value *ucontrol)
2412{
2413 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2414 struct conexant_spec *spec = codec->spec;
2415 int dc_enable = !!ucontrol->value.integer.value[0];
2416
2417 if (dc_enable == spec->dc_enable)
2418 return 0;
2419
2420 spec->dc_enable = dc_enable;
2421 if (dc_enable)
2422 cxt5066_enable_dc(codec);
2423 else
2424 cxt5066_disable_dc(codec);
2425
2426 return 1;
2427}
2428
2429static int cxt5066_olpc_dc_bias_enum_info(struct snd_kcontrol *kcontrol,
2430 struct snd_ctl_elem_info *uinfo)
2431{
2432 return snd_hda_input_mux_info(&cxt5066_olpc_dc_bias, uinfo);
2433}
2434
2435static int cxt5066_olpc_dc_bias_enum_get(struct snd_kcontrol *kcontrol,
2436 struct snd_ctl_elem_value *ucontrol)
2437{
2438 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2439 struct conexant_spec *spec = codec->spec;
2440 ucontrol->value.enumerated.item[0] = spec->dc_input_bias;
2441 return 0;
2442}
2443
2444static int cxt5066_olpc_dc_bias_enum_put(struct snd_kcontrol *kcontrol,
2445 struct snd_ctl_elem_value *ucontrol)
2446{
2447 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2448 struct conexant_spec *spec = codec->spec;
2449 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2450 unsigned int idx;
2451
2452 idx = ucontrol->value.enumerated.item[0];
2453 if (idx >= imux->num_items)
2454 idx = imux->num_items - 1;
2455
2456 spec->dc_input_bias = idx;
2457 if (spec->dc_enable)
2458 cxt5066_set_olpc_dc_bias(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002459 return 1;
2460}
2461
Daniel Drake75f89912010-01-07 13:46:25 +01002462static void cxt5066_olpc_capture_prepare(struct hda_codec *codec)
2463{
2464 struct conexant_spec *spec = codec->spec;
2465 /* mark as recording and configure the microphone widget so that the
2466 * recording LED comes on. */
2467 spec->recording = 1;
2468 cxt5066_olpc_select_mic(codec);
2469}
2470
2471static void cxt5066_olpc_capture_cleanup(struct hda_codec *codec)
2472{
2473 struct conexant_spec *spec = codec->spec;
2474 const struct hda_verb disable_mics[] = {
2475 /* disable external mic, port B */
2476 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2477
2478 /* disble internal mic, port C */
2479 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drakec4cfe662010-01-07 13:47:04 +01002480
2481 /* disable DC capture, port F */
2482 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake75f89912010-01-07 13:46:25 +01002483 {},
2484 };
2485
2486 snd_hda_sequence_write(codec, disable_mics);
2487 spec->recording = 0;
2488}
2489
Andy Robinsonf6a24912011-01-24 10:12:37 -05002490static void conexant_check_dig_outs(struct hda_codec *codec,
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002491 const hda_nid_t *dig_pins,
Andy Robinsonf6a24912011-01-24 10:12:37 -05002492 int num_pins)
2493{
2494 struct conexant_spec *spec = codec->spec;
2495 hda_nid_t *nid_loc = &spec->multiout.dig_out_nid;
2496 int i;
2497
2498 for (i = 0; i < num_pins; i++, dig_pins++) {
2499 unsigned int cfg = snd_hda_codec_get_pincfg(codec, *dig_pins);
2500 if (get_defcfg_connect(cfg) == AC_JACK_PORT_NONE)
2501 continue;
2502 if (snd_hda_get_connections(codec, *dig_pins, nid_loc, 1) != 1)
2503 continue;
2504 if (spec->slave_dig_outs[0])
2505 nid_loc++;
2506 else
2507 nid_loc = spec->slave_dig_outs;
2508 }
2509}
2510
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002511static const struct hda_input_mux cxt5066_capture_source = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002512 .num_items = 4,
2513 .items = {
2514 { "Mic B", 0 },
2515 { "Mic C", 1 },
2516 { "Mic E", 2 },
2517 { "Mic F", 3 },
2518 },
2519};
2520
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002521static const struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002522 .ops = &snd_hda_bind_vol,
2523 .values = {
2524 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2525 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2526 0
2527 },
2528};
2529
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002530static const struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002531 .ops = &snd_hda_bind_sw,
2532 .values = {
2533 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2534 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2535 0
2536 },
2537};
2538
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002539static const struct snd_kcontrol_new cxt5066_mixer_master[] = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002540 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
2541 {}
2542};
2543
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002544static const struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002545 {
2546 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2547 .name = "Master Playback Volume",
2548 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
2549 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2550 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002551 .subdevice = HDA_SUBDEV_AMP_FLAG,
Daniel Drake0fb67e92009-07-16 14:46:57 +01002552 .info = snd_hda_mixer_amp_volume_info,
2553 .get = snd_hda_mixer_amp_volume_get,
2554 .put = snd_hda_mixer_amp_volume_put,
2555 .tlv = { .c = snd_hda_mixer_amp_tlv },
2556 /* offset by 28 volume steps to limit minimum gain to -46dB */
2557 .private_value =
2558 HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
2559 },
2560 {}
2561};
2562
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002563static const struct snd_kcontrol_new cxt5066_mixer_olpc_dc[] = {
Daniel Drakec4cfe662010-01-07 13:47:04 +01002564 {
2565 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2566 .name = "DC Mode Enable Switch",
2567 .info = snd_ctl_boolean_mono_info,
2568 .get = cxt5066_olpc_dc_get,
2569 .put = cxt5066_olpc_dc_put,
2570 },
2571 {
2572 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2573 .name = "DC Input Bias Enum",
2574 .info = cxt5066_olpc_dc_bias_enum_info,
2575 .get = cxt5066_olpc_dc_bias_enum_get,
2576 .put = cxt5066_olpc_dc_bias_enum_put,
2577 },
2578 {}
2579};
2580
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002581static const struct snd_kcontrol_new cxt5066_mixers[] = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002582 {
2583 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2584 .name = "Master Playback Switch",
2585 .info = cxt_eapd_info,
2586 .get = cxt_eapd_get,
2587 .put = cxt5066_hp_master_sw_put,
2588 .private_value = 0x1d,
2589 },
2590
2591 {
2592 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Daniel Drakec4cfe662010-01-07 13:47:04 +01002593 .name = "Analog Mic Boost Capture Enum",
Daniel Drake0fb67e92009-07-16 14:46:57 +01002594 .info = cxt5066_mic_boost_mux_enum_info,
2595 .get = cxt5066_mic_boost_mux_enum_get,
2596 .put = cxt5066_mic_boost_mux_enum_put,
2597 },
2598
2599 HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
2600 HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
2601 {}
2602};
2603
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002604static const struct snd_kcontrol_new cxt5066_vostro_mixers[] = {
Einar Rünkaru254bba62009-12-16 22:16:13 +02002605 {
2606 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
David Henningsson28c4edb2010-12-20 14:24:29 +01002607 .name = "Internal Mic Boost Capture Enum",
Einar Rünkaru254bba62009-12-16 22:16:13 +02002608 .info = cxt5066_mic_boost_mux_enum_info,
2609 .get = cxt5066_mic_boost_mux_enum_get,
2610 .put = cxt5066_mic_boost_mux_enum_put,
2611 .private_value = 0x23 | 0x100,
2612 },
2613 {}
2614};
2615
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002616static const struct hda_verb cxt5066_init_verbs[] = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002617 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2618 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2619 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2620 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2621
2622 /* Speakers */
2623 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2624 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2625
2626 /* HP, Amp */
2627 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2628 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2629
2630 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2631 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2632
2633 /* DAC1 */
2634 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2635
2636 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2637 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2638 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2639 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2640 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2641 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2642
2643 /* no digital microphone support yet */
2644 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2645
2646 /* Audio input selector */
2647 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2648
2649 /* SPDIF route: PCM */
2650 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2651 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2652
2653 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2654 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2655
2656 /* EAPD */
2657 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2658
2659 /* not handling these yet */
2660 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2661 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2662 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2663 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2664 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2665 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2666 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2667 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2668 { } /* end */
2669};
2670
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002671static const struct hda_verb cxt5066_init_verbs_olpc[] = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002672 /* Port A: headphones */
2673 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2674 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2675
2676 /* Port B: external microphone */
Daniel Drake75f89912010-01-07 13:46:25 +01002677 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake0fb67e92009-07-16 14:46:57 +01002678
2679 /* Port C: internal microphone */
Daniel Drake75f89912010-01-07 13:46:25 +01002680 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake0fb67e92009-07-16 14:46:57 +01002681
2682 /* Port D: unused */
2683 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2684
2685 /* Port E: unused, but has primary EAPD */
2686 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2687 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2688
Daniel Drakec4cfe662010-01-07 13:47:04 +01002689 /* Port F: external DC input through microphone port */
Daniel Drake0fb67e92009-07-16 14:46:57 +01002690 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2691
2692 /* Port G: internal speakers */
2693 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2694 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2695
2696 /* DAC1 */
2697 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2698
2699 /* DAC2: unused */
2700 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2701
2702 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2703 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2704 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2705 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2706 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2707 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2708 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2709 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2710 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2711 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2712 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2713 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2714
2715 /* Disable digital microphone port */
2716 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2717
2718 /* Audio input selectors */
2719 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2720 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2721
2722 /* Disable SPDIF */
2723 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2724 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2725
2726 /* enable unsolicited events for Port A and B */
2727 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2728 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2729 { } /* end */
2730};
2731
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002732static const struct hda_verb cxt5066_init_verbs_vostro[] = {
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002733 /* Port A: headphones */
2734 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2735 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2736
2737 /* Port B: external microphone */
2738 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2739
2740 /* Port C: unused */
2741 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2742
2743 /* Port D: unused */
2744 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2745
2746 /* Port E: unused, but has primary EAPD */
2747 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2748 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2749
2750 /* Port F: unused */
2751 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2752
2753 /* Port G: internal speakers */
2754 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2755 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2756
2757 /* DAC1 */
2758 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2759
2760 /* DAC2: unused */
2761 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2762
2763 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2764 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2765 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2766 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2767 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2768 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2769 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2770 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2771 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2772 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2773 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2774 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2775
2776 /* Digital microphone port */
2777 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2778
2779 /* Audio input selectors */
2780 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2781 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2782
2783 /* Disable SPDIF */
2784 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2785 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2786
2787 /* enable unsolicited events for Port A and B */
2788 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2789 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2790 { } /* end */
2791};
2792
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002793static const struct hda_verb cxt5066_init_verbs_ideapad[] = {
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002794 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2795 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2796 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2797 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2798
2799 /* Speakers */
2800 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2801 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2802
2803 /* HP, Amp */
2804 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2805 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2806
2807 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2808 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2809
2810 /* DAC1 */
2811 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2812
2813 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2814 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2815 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2816 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2817 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2818 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2819 {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */
2820
2821 /* Audio input selector */
2822 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2823 {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */
2824
2825 /* SPDIF route: PCM */
2826 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2827 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2828
2829 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2830 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2831
2832 /* internal microphone */
David Henningsson28c4edb2010-12-20 14:24:29 +01002833 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable internal mic */
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002834
2835 /* EAPD */
2836 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2837
2838 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2839 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2840 { } /* end */
2841};
2842
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002843static const struct hda_verb cxt5066_init_verbs_thinkpad[] = {
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002844 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2845 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2846
2847 /* Port G: internal speakers */
2848 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2849 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2850
2851 /* Port A: HP, Amp */
2852 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2853 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2854
2855 /* Port B: Mic Dock */
2856 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2857
2858 /* Port C: Mic */
2859 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2860
2861 /* Port D: HP Dock, Amp */
2862 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2863 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2864
2865 /* DAC1 */
2866 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2867
2868 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2869 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2870 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2871 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2872 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2873 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2874 {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */
2875
2876 /* Audio input selector */
2877 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2878 {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */
2879
2880 /* SPDIF route: PCM */
2881 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2882 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2883
2884 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2885 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2886
2887 /* internal microphone */
David Henningsson28c4edb2010-12-20 14:24:29 +01002888 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable internal mic */
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002889
2890 /* EAPD */
2891 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2892
2893 /* enable unsolicited events for Port A, B, C and D */
2894 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2895 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2896 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2897 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2898 { } /* end */
2899};
2900
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002901static const struct hda_verb cxt5066_init_verbs_portd_lo[] = {
Daniel Drake0fb67e92009-07-16 14:46:57 +01002902 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2903 { } /* end */
2904};
2905
David Henningsson048e78a2010-09-02 08:35:47 +02002906
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002907static const struct hda_verb cxt5066_init_verbs_hp_laptop[] = {
David Henningsson048e78a2010-09-02 08:35:47 +02002908 {0x14, AC_VERB_SET_CONNECT_SEL, 0x0},
2909 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2910 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2911 { } /* end */
2912};
2913
Daniel Drake0fb67e92009-07-16 14:46:57 +01002914/* initialize jack-sensing, too */
2915static int cxt5066_init(struct hda_codec *codec)
2916{
2917 snd_printdd("CXT5066: init\n");
2918 conexant_init(codec);
2919 if (codec->patch_ops.unsol_event) {
2920 cxt5066_hp_automute(codec);
David Henningsson02b6b5b2011-01-21 13:27:39 +01002921 cxt5066_automic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002922 }
Daniel Drakec4cfe662010-01-07 13:47:04 +01002923 cxt5066_set_mic_boost(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002924 return 0;
2925}
2926
Daniel Drake75f89912010-01-07 13:46:25 +01002927static int cxt5066_olpc_init(struct hda_codec *codec)
2928{
Daniel Drakec4cfe662010-01-07 13:47:04 +01002929 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +01002930 snd_printdd("CXT5066: init\n");
2931 conexant_init(codec);
2932 cxt5066_hp_automute(codec);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002933 if (!spec->dc_enable) {
2934 cxt5066_set_mic_boost(codec);
2935 cxt5066_olpc_automic(codec);
2936 } else {
2937 cxt5066_enable_dc(codec);
2938 }
Daniel Drake75f89912010-01-07 13:46:25 +01002939 return 0;
2940}
2941
Daniel Drake0fb67e92009-07-16 14:46:57 +01002942enum {
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002943 CXT5066_LAPTOP, /* Laptops w/ EAPD support */
Daniel Drake0fb67e92009-07-16 14:46:57 +01002944 CXT5066_DELL_LAPTOP, /* Dell Laptop */
2945 CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */
David Henningsson1feba3b2010-09-17 10:52:50 +02002946 CXT5066_DELL_VOSTRO, /* Dell Vostro 1015i */
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002947 CXT5066_IDEAPAD, /* Lenovo IdeaPad U150 */
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002948 CXT5066_THINKPAD, /* Lenovo ThinkPad T410s, others? */
David Henningssona1d69062011-01-21 13:33:28 +01002949 CXT5066_ASUS, /* Asus K52JU, Lenovo G560 - Int mic at 0x1a and Ext mic at 0x1b */
David Henningsson048e78a2010-09-02 08:35:47 +02002950 CXT5066_HP_LAPTOP, /* HP Laptop */
Takashi Iwaifea4a4f2011-05-16 11:49:12 +02002951 CXT5066_AUTO, /* BIOS auto-parser */
Daniel Drake0fb67e92009-07-16 14:46:57 +01002952 CXT5066_MODELS
2953};
2954
Takashi Iwaiea734962011-01-17 11:29:34 +01002955static const char * const cxt5066_models[CXT5066_MODELS] = {
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002956 [CXT5066_LAPTOP] = "laptop",
Daniel Drake0fb67e92009-07-16 14:46:57 +01002957 [CXT5066_DELL_LAPTOP] = "dell-laptop",
2958 [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5",
David Henningsson1feba3b2010-09-17 10:52:50 +02002959 [CXT5066_DELL_VOSTRO] = "dell-vostro",
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002960 [CXT5066_IDEAPAD] = "ideapad",
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002961 [CXT5066_THINKPAD] = "thinkpad",
David Henningssona1d69062011-01-21 13:33:28 +01002962 [CXT5066_ASUS] = "asus",
David Henningsson048e78a2010-09-02 08:35:47 +02002963 [CXT5066_HP_LAPTOP] = "hp-laptop",
Takashi Iwaifea4a4f2011-05-16 11:49:12 +02002964 [CXT5066_AUTO] = "auto",
Daniel Drake0fb67e92009-07-16 14:46:57 +01002965};
2966
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02002967static const struct snd_pci_quirk cxt5066_cfg_tbl[] = {
David Henningsson9966db222011-06-21 21:01:52 +02002968 SND_PCI_QUIRK(0x1025, 0x054c, "Acer Aspire 3830TG", CXT5066_AUTO),
Takashi Iwai00cd0bb2010-10-21 09:57:40 +02002969 SND_PCI_QUIRK_MASK(0x1025, 0xff00, 0x0400, "Acer", CXT5066_IDEAPAD),
David Henningsson1feba3b2010-09-17 10:52:50 +02002970 SND_PCI_QUIRK(0x1028, 0x02d8, "Dell Vostro", CXT5066_DELL_VOSTRO),
David Henningsson8a96b1e2010-12-09 07:17:27 +01002971 SND_PCI_QUIRK(0x1028, 0x02f5, "Dell Vostro 320", CXT5066_IDEAPAD),
Daniel T Chenca6cd852011-01-08 18:25:27 -05002972 SND_PCI_QUIRK(0x1028, 0x0401, "Dell Vostro 1014", CXT5066_DELL_VOSTRO),
David Henningsson1feba3b2010-09-17 10:52:50 +02002973 SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTRO),
Anisse Astier231f50b2010-04-28 18:05:06 +02002974 SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD),
David Henningssonebbd2242011-02-23 13:15:56 +01002975 SND_PCI_QUIRK(0x1028, 0x050f, "Dell Inspiron", CXT5066_IDEAPAD),
2976 SND_PCI_QUIRK(0x1028, 0x0510, "Dell Vostro", CXT5066_IDEAPAD),
David Henningsson048e78a2010-09-02 08:35:47 +02002977 SND_PCI_QUIRK(0x103c, 0x360b, "HP G60", CXT5066_HP_LAPTOP),
Andy Robinsonf6a24912011-01-24 10:12:37 -05002978 SND_PCI_QUIRK(0x1043, 0x13f3, "Asus A52J", CXT5066_ASUS),
David Henningssona1d69062011-01-21 13:33:28 +01002979 SND_PCI_QUIRK(0x1043, 0x1643, "Asus K52JU", CXT5066_ASUS),
Andy Robinsonf6a24912011-01-24 10:12:37 -05002980 SND_PCI_QUIRK(0x1043, 0x1993, "Asus U50F", CXT5066_ASUS),
Anisse Astier2ca9cac2010-09-10 15:47:55 +02002981 SND_PCI_QUIRK(0x1179, 0xff1e, "Toshiba Satellite C650D", CXT5066_IDEAPAD),
Daniel T Chenc5366682010-05-04 22:07:58 -04002982 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba Satellite P500-PSPGSC-01800T", CXT5066_OLPC_XO_1_5),
David Henningsson5637edb2010-09-17 10:58:03 +02002983 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
2984 CXT5066_LAPTOP),
2985 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
Takashi Iwai4d155642010-09-07 11:58:30 +02002986 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400s", CXT5066_THINKPAD),
Manoj Iyeref61d4e2010-12-03 18:43:55 -06002987 SND_PCI_QUIRK(0x17aa, 0x21c5, "Thinkpad Edge 13", CXT5066_THINKPAD),
David Henningsson19593872011-01-27 10:28:46 +01002988 SND_PCI_QUIRK(0x17aa, 0x21c6, "Thinkpad Edge 13", CXT5066_ASUS),
David Henningsson29c5fbb2012-01-23 16:39:55 +01002989 SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo T510", CXT5066_AUTO),
Daniel Suchyca201c02011-10-18 11:09:44 +02002990 SND_PCI_QUIRK(0x17aa, 0x21cf, "Lenovo T520 & W520", CXT5066_AUTO),
David Henningsson84012652011-03-31 09:36:19 +02002991 SND_PCI_QUIRK(0x17aa, 0x21da, "Lenovo X220", CXT5066_THINKPAD),
David Henningssonb2cb1292011-04-05 07:55:24 +02002992 SND_PCI_QUIRK(0x17aa, 0x21db, "Lenovo X220-tablet", CXT5066_THINKPAD),
David Henningssond2859fd2011-05-23 08:26:16 +02002993 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo U350", CXT5066_ASUS),
David Henningssona1d69062011-01-21 13:33:28 +01002994 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G560", CXT5066_ASUS),
Takashi Iwaiaf4ccf42011-05-25 07:33:20 +02002995 SND_PCI_QUIRK(0x17aa, 0x3938, "Lenovo G565", CXT5066_AUTO),
Daniel T Chen7ab1fc02011-06-10 10:14:01 -04002996 SND_PCI_QUIRK(0x1b0a, 0x2092, "CyberpowerPC Gamer Xplorer N57001", CXT5066_AUTO),
Daniel Drake0fb67e92009-07-16 14:46:57 +01002997 {}
2998};
2999
3000static int patch_cxt5066(struct hda_codec *codec)
3001{
3002 struct conexant_spec *spec;
3003 int board_config;
3004
Takashi Iwaifea4a4f2011-05-16 11:49:12 +02003005 board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
3006 cxt5066_models, cxt5066_cfg_tbl);
Takashi Iwaifea4a4f2011-05-16 11:49:12 +02003007 if (board_config < 0)
Takashi Iwaic82693d2011-06-28 14:17:17 +02003008 board_config = CXT5066_AUTO; /* model=auto as default */
Takashi Iwaifea4a4f2011-05-16 11:49:12 +02003009 if (board_config == CXT5066_AUTO)
3010 return patch_conexant_auto(codec);
3011
Daniel Drake0fb67e92009-07-16 14:46:57 +01003012 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3013 if (!spec)
3014 return -ENOMEM;
3015 codec->spec = spec;
3016
3017 codec->patch_ops = conexant_patch_ops;
Daniel Drake75f89912010-01-07 13:46:25 +01003018 codec->patch_ops.init = conexant_init;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003019
3020 spec->dell_automute = 0;
3021 spec->multiout.max_channels = 2;
3022 spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
3023 spec->multiout.dac_nids = cxt5066_dac_nids;
Andy Robinsonf6a24912011-01-24 10:12:37 -05003024 conexant_check_dig_outs(codec, cxt5066_digout_pin_nids,
3025 ARRAY_SIZE(cxt5066_digout_pin_nids));
Daniel Drake0fb67e92009-07-16 14:46:57 +01003026 spec->num_adc_nids = 1;
3027 spec->adc_nids = cxt5066_adc_nids;
3028 spec->capsrc_nids = cxt5066_capsrc_nids;
3029 spec->input_mux = &cxt5066_capture_source;
3030
3031 spec->port_d_mode = PIN_HP;
3032
3033 spec->num_init_verbs = 1;
3034 spec->init_verbs[0] = cxt5066_init_verbs;
3035 spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
3036 spec->channel_mode = cxt5066_modes;
3037 spec->cur_adc = 0;
3038 spec->cur_adc_idx = 0;
3039
Takashi Iwai3507e2a2010-07-08 18:39:00 +02003040 set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
3041
Daniel Drake0fb67e92009-07-16 14:46:57 +01003042 switch (board_config) {
3043 default:
3044 case CXT5066_LAPTOP:
3045 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3046 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3047 break;
3048 case CXT5066_DELL_LAPTOP:
3049 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3050 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3051
3052 spec->port_d_mode = PIN_OUT;
3053 spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
3054 spec->num_init_verbs++;
3055 spec->dell_automute = 1;
3056 break;
David Henningssona1d69062011-01-21 13:33:28 +01003057 case CXT5066_ASUS:
David Henningsson048e78a2010-09-02 08:35:47 +02003058 case CXT5066_HP_LAPTOP:
3059 codec->patch_ops.init = cxt5066_init;
David Henningsson02b6b5b2011-01-21 13:27:39 +01003060 codec->patch_ops.unsol_event = cxt5066_unsol_event;
David Henningsson048e78a2010-09-02 08:35:47 +02003061 spec->init_verbs[spec->num_init_verbs] =
3062 cxt5066_init_verbs_hp_laptop;
3063 spec->num_init_verbs++;
David Henningssona1d69062011-01-21 13:33:28 +01003064 spec->hp_laptop = board_config == CXT5066_HP_LAPTOP;
3065 spec->asus = board_config == CXT5066_ASUS;
David Henningsson048e78a2010-09-02 08:35:47 +02003066 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3067 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3068 /* no S/PDIF out */
Andy Robinsonf6a24912011-01-24 10:12:37 -05003069 if (board_config == CXT5066_HP_LAPTOP)
3070 spec->multiout.dig_out_nid = 0;
David Henningsson048e78a2010-09-02 08:35:47 +02003071 /* input source automatically selected */
3072 spec->input_mux = NULL;
3073 spec->port_d_mode = 0;
3074 spec->mic_boost = 3; /* default 30dB gain */
3075 break;
3076
Daniel Drake0fb67e92009-07-16 14:46:57 +01003077 case CXT5066_OLPC_XO_1_5:
Daniel Drake75f89912010-01-07 13:46:25 +01003078 codec->patch_ops.init = cxt5066_olpc_init;
3079 codec->patch_ops.unsol_event = cxt5066_olpc_unsol_event;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003080 spec->init_verbs[0] = cxt5066_init_verbs_olpc;
3081 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
Daniel Drakec4cfe662010-01-07 13:47:04 +01003082 spec->mixers[spec->num_mixers++] = cxt5066_mixer_olpc_dc;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003083 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3084 spec->port_d_mode = 0;
Daniel Drakec4cfe662010-01-07 13:47:04 +01003085 spec->mic_boost = 3; /* default 30dB gain */
Daniel Drake0fb67e92009-07-16 14:46:57 +01003086
3087 /* no S/PDIF out */
3088 spec->multiout.dig_out_nid = 0;
3089
3090 /* input source automatically selected */
3091 spec->input_mux = NULL;
Daniel Drake75f89912010-01-07 13:46:25 +01003092
3093 /* our capture hooks which allow us to turn on the microphone LED
3094 * at the right time */
3095 spec->capture_prepare = cxt5066_olpc_capture_prepare;
3096 spec->capture_cleanup = cxt5066_olpc_capture_cleanup;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003097 break;
David Henningsson1feba3b2010-09-17 10:52:50 +02003098 case CXT5066_DELL_VOSTRO:
Daniel Drake75f89912010-01-07 13:46:25 +01003099 codec->patch_ops.init = cxt5066_init;
David Henningsson02b6b5b2011-01-21 13:27:39 +01003100 codec->patch_ops.unsol_event = cxt5066_unsol_event;
Einar Rünkaru95a618b2009-11-23 22:23:49 +02003101 spec->init_verbs[0] = cxt5066_init_verbs_vostro;
3102 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
3103 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
Einar Rünkaru254bba62009-12-16 22:16:13 +02003104 spec->mixers[spec->num_mixers++] = cxt5066_vostro_mixers;
Einar Rünkaru95a618b2009-11-23 22:23:49 +02003105 spec->port_d_mode = 0;
Einar Rünkaru254bba62009-12-16 22:16:13 +02003106 spec->dell_vostro = 1;
Daniel Drakec4cfe662010-01-07 13:47:04 +01003107 spec->mic_boost = 3; /* default 30dB gain */
Einar Rünkaru95a618b2009-11-23 22:23:49 +02003108
3109 /* no S/PDIF out */
3110 spec->multiout.dig_out_nid = 0;
3111
3112 /* input source automatically selected */
3113 spec->input_mux = NULL;
3114 break;
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05003115 case CXT5066_IDEAPAD:
3116 codec->patch_ops.init = cxt5066_init;
David Henningsson02b6b5b2011-01-21 13:27:39 +01003117 codec->patch_ops.unsol_event = cxt5066_unsol_event;
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05003118 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3119 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3120 spec->init_verbs[0] = cxt5066_init_verbs_ideapad;
3121 spec->port_d_mode = 0;
3122 spec->ideapad = 1;
3123 spec->mic_boost = 2; /* default 20dB gain */
3124
3125 /* no S/PDIF out */
3126 spec->multiout.dig_out_nid = 0;
3127
3128 /* input source automatically selected */
3129 spec->input_mux = NULL;
3130 break;
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02003131 case CXT5066_THINKPAD:
3132 codec->patch_ops.init = cxt5066_init;
David Henningsson02b6b5b2011-01-21 13:27:39 +01003133 codec->patch_ops.unsol_event = cxt5066_unsol_event;
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02003134 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3135 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3136 spec->init_verbs[0] = cxt5066_init_verbs_thinkpad;
3137 spec->thinkpad = 1;
3138 spec->port_d_mode = PIN_OUT;
3139 spec->mic_boost = 2; /* default 20dB gain */
3140
3141 /* no S/PDIF out */
3142 spec->multiout.dig_out_nid = 0;
3143
3144 /* input source automatically selected */
3145 spec->input_mux = NULL;
3146 break;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003147 }
3148
Takashi Iwai3507e2a2010-07-08 18:39:00 +02003149 if (spec->beep_amp)
3150 snd_hda_attach_beep_device(codec, spec->beep_amp);
3151
Daniel Drake0fb67e92009-07-16 14:46:57 +01003152 return 0;
3153}
Takashi Iwai461e2c72008-01-25 11:35:17 +01003154
3155/*
Takashi Iwaif2e57312010-09-15 10:07:08 +02003156 * Automatic parser for CX20641 & co
3157 */
3158
Takashi Iwai6764bce2011-05-13 16:52:25 +02003159static int cx_auto_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
3160 struct hda_codec *codec,
3161 unsigned int stream_tag,
3162 unsigned int format,
3163 struct snd_pcm_substream *substream)
3164{
3165 struct conexant_spec *spec = codec->spec;
Takashi Iwai47ad1f42011-05-17 09:15:55 +02003166 hda_nid_t adc = spec->imux_info[spec->cur_mux[0]].adc;
Takashi Iwai6764bce2011-05-13 16:52:25 +02003167 if (spec->adc_switching) {
3168 spec->cur_adc = adc;
3169 spec->cur_adc_stream_tag = stream_tag;
3170 spec->cur_adc_format = format;
3171 }
3172 snd_hda_codec_setup_stream(codec, adc, stream_tag, 0, format);
3173 return 0;
3174}
3175
3176static int cx_auto_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
3177 struct hda_codec *codec,
3178 struct snd_pcm_substream *substream)
3179{
3180 struct conexant_spec *spec = codec->spec;
3181 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
3182 spec->cur_adc = 0;
3183 return 0;
3184}
3185
3186static const struct hda_pcm_stream cx_auto_pcm_analog_capture = {
3187 .substreams = 1,
3188 .channels_min = 2,
3189 .channels_max = 2,
3190 .nid = 0, /* fill later */
3191 .ops = {
3192 .prepare = cx_auto_capture_pcm_prepare,
3193 .cleanup = cx_auto_capture_pcm_cleanup
3194 },
3195};
3196
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02003197static const hda_nid_t cx_auto_adc_nids[] = { 0x14 };
Takashi Iwaif2e57312010-09-15 10:07:08 +02003198
Takashi Iwai8d087c72011-06-28 12:45:47 +02003199#define get_connection_index(codec, mux, nid)\
3200 snd_hda_get_conn_index(codec, mux, nid, 0)
Takashi Iwaif2e57312010-09-15 10:07:08 +02003201
3202/* get an unassigned DAC from the given list.
3203 * Return the nid if found and reduce the DAC list, or return zero if
3204 * not found
3205 */
3206static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t pin,
3207 hda_nid_t *dacs, int *num_dacs)
3208{
3209 int i, nums = *num_dacs;
3210 hda_nid_t ret = 0;
3211
3212 for (i = 0; i < nums; i++) {
3213 if (get_connection_index(codec, pin, dacs[i]) >= 0) {
3214 ret = dacs[i];
3215 break;
3216 }
3217 }
3218 if (!ret)
3219 return 0;
3220 if (--nums > 0)
3221 memmove(dacs, dacs + 1, nums * sizeof(hda_nid_t));
3222 *num_dacs = nums;
3223 return ret;
3224}
3225
3226#define MAX_AUTO_DACS 5
3227
Takashi Iwai1f015f52011-08-23 14:57:08 +02003228#define DAC_SLAVE_FLAG 0x8000 /* filled dac is a slave */
3229
Takashi Iwaif2e57312010-09-15 10:07:08 +02003230/* fill analog DAC list from the widget tree */
3231static int fill_cx_auto_dacs(struct hda_codec *codec, hda_nid_t *dacs)
3232{
3233 hda_nid_t nid, end_nid;
3234 int nums = 0;
3235
3236 end_nid = codec->start_nid + codec->num_nodes;
3237 for (nid = codec->start_nid; nid < end_nid; nid++) {
3238 unsigned int wcaps = get_wcaps(codec, nid);
3239 unsigned int type = get_wcaps_type(wcaps);
3240 if (type == AC_WID_AUD_OUT && !(wcaps & AC_WCAP_DIGITAL)) {
3241 dacs[nums++] = nid;
3242 if (nums >= MAX_AUTO_DACS)
3243 break;
3244 }
3245 }
3246 return nums;
3247}
3248
3249/* fill pin_dac_pair list from the pin and dac list */
3250static int fill_dacs_for_pins(struct hda_codec *codec, hda_nid_t *pins,
3251 int num_pins, hda_nid_t *dacs, int *rest,
David Henningsson468c5452011-08-25 13:16:02 +02003252 struct pin_dac_pair *filled, int nums,
3253 int type)
Takashi Iwaif2e57312010-09-15 10:07:08 +02003254{
David Henningsson468c5452011-08-25 13:16:02 +02003255 int i, start = nums;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003256
David Henningsson468c5452011-08-25 13:16:02 +02003257 for (i = 0; i < num_pins; i++, nums++) {
Takashi Iwaif2e57312010-09-15 10:07:08 +02003258 filled[nums].pin = pins[i];
3259 filled[nums].type = type;
3260 filled[nums].dac = get_unassigned_dac(codec, pins[i], dacs, rest);
David Henningsson468c5452011-08-25 13:16:02 +02003261 if (filled[nums].dac)
3262 continue;
3263 if (filled[start].dac && get_connection_index(codec, pins[i], filled[start].dac) >= 0) {
3264 filled[nums].dac = filled[start].dac | DAC_SLAVE_FLAG;
3265 continue;
3266 }
3267 if (filled[0].dac && get_connection_index(codec, pins[i], filled[0].dac) >= 0) {
Takashi Iwai1f015f52011-08-23 14:57:08 +02003268 filled[nums].dac = filled[0].dac | DAC_SLAVE_FLAG;
David Henningsson468c5452011-08-25 13:16:02 +02003269 continue;
3270 }
3271 snd_printdd("Failed to find a DAC for pin 0x%x", pins[i]);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003272 }
3273 return nums;
3274}
3275
3276/* parse analog output paths */
3277static void cx_auto_parse_output(struct hda_codec *codec)
3278{
3279 struct conexant_spec *spec = codec->spec;
3280 struct auto_pin_cfg *cfg = &spec->autocfg;
3281 hda_nid_t dacs[MAX_AUTO_DACS];
3282 int i, j, nums, rest;
3283
3284 rest = fill_cx_auto_dacs(codec, dacs);
3285 /* parse all analog output pins */
3286 nums = fill_dacs_for_pins(codec, cfg->line_out_pins, cfg->line_outs,
David Henningsson468c5452011-08-25 13:16:02 +02003287 dacs, &rest, spec->dac_info, 0,
3288 AUTO_PIN_LINE_OUT);
3289 nums = fill_dacs_for_pins(codec, cfg->hp_pins, cfg->hp_outs,
3290 dacs, &rest, spec->dac_info, nums,
3291 AUTO_PIN_HP_OUT);
3292 nums = fill_dacs_for_pins(codec, cfg->speaker_pins, cfg->speaker_outs,
3293 dacs, &rest, spec->dac_info, nums,
3294 AUTO_PIN_SPEAKER_OUT);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003295 spec->dac_info_filled = nums;
3296 /* fill multiout struct */
3297 for (i = 0; i < nums; i++) {
3298 hda_nid_t dac = spec->dac_info[i].dac;
Takashi Iwai1f015f52011-08-23 14:57:08 +02003299 if (!dac || (dac & DAC_SLAVE_FLAG))
Takashi Iwaif2e57312010-09-15 10:07:08 +02003300 continue;
3301 switch (spec->dac_info[i].type) {
3302 case AUTO_PIN_LINE_OUT:
3303 spec->private_dac_nids[spec->multiout.num_dacs] = dac;
3304 spec->multiout.num_dacs++;
3305 break;
3306 case AUTO_PIN_HP_OUT:
3307 case AUTO_PIN_SPEAKER_OUT:
3308 if (!spec->multiout.hp_nid) {
3309 spec->multiout.hp_nid = dac;
3310 break;
3311 }
3312 for (j = 0; j < ARRAY_SIZE(spec->multiout.extra_out_nid); j++)
3313 if (!spec->multiout.extra_out_nid[j]) {
3314 spec->multiout.extra_out_nid[j] = dac;
3315 break;
3316 }
3317 break;
3318 }
3319 }
3320 spec->multiout.dac_nids = spec->private_dac_nids;
David Henningsson89724952011-02-16 21:34:04 +01003321 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003322
Takashi Iwai03697e22011-05-17 09:53:31 +02003323 for (i = 0; i < cfg->hp_outs; i++) {
3324 if (is_jack_detectable(codec, cfg->hp_pins[i])) {
3325 spec->auto_mute = 1;
3326 break;
3327 }
3328 }
Takashi Iwaie2df82f2011-05-24 11:49:12 +02003329 if (spec->auto_mute &&
3330 cfg->line_out_pins[0] &&
3331 cfg->line_out_type != AUTO_PIN_SPEAKER_OUT &&
Takashi Iwai03697e22011-05-17 09:53:31 +02003332 cfg->line_out_pins[0] != cfg->hp_pins[0] &&
3333 cfg->line_out_pins[0] != cfg->speaker_pins[0]) {
3334 for (i = 0; i < cfg->line_outs; i++) {
3335 if (is_jack_detectable(codec, cfg->line_out_pins[i])) {
3336 spec->detect_line = 1;
3337 break;
3338 }
3339 }
3340 spec->automute_lines = spec->detect_line;
3341 }
3342
Takashi Iwaif2e57312010-09-15 10:07:08 +02003343 spec->vmaster_nid = spec->private_dac_nids[0];
3344}
3345
Takashi Iwaida339862011-05-13 16:24:15 +02003346static void cx_auto_turn_eapd(struct hda_codec *codec, int num_pins,
3347 hda_nid_t *pins, bool on);
3348
Takashi Iwai03697e22011-05-17 09:53:31 +02003349static void do_automute(struct hda_codec *codec, int num_pins,
3350 hda_nid_t *pins, bool on)
3351{
Takashi Iwai254f2962011-10-14 15:22:34 +02003352 struct conexant_spec *spec = codec->spec;
Takashi Iwai03697e22011-05-17 09:53:31 +02003353 int i;
3354 for (i = 0; i < num_pins; i++)
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003355 snd_hda_set_pin_ctl(codec, pins[i], on ? PIN_OUT : 0);
Takashi Iwai254f2962011-10-14 15:22:34 +02003356 if (spec->pin_eapd_ctrls)
3357 cx_auto_turn_eapd(codec, num_pins, pins, on);
Takashi Iwai03697e22011-05-17 09:53:31 +02003358}
3359
3360static int detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
3361{
3362 int i, present = 0;
3363
3364 for (i = 0; i < num_pins; i++) {
3365 hda_nid_t nid = pins[i];
3366 if (!nid || !is_jack_detectable(codec, nid))
3367 break;
Takashi Iwai03697e22011-05-17 09:53:31 +02003368 present |= snd_hda_jack_detect(codec, nid);
3369 }
3370 return present;
3371}
3372
Takashi Iwaif2e57312010-09-15 10:07:08 +02003373/* auto-mute/unmute speaker and line outs according to headphone jack */
Takashi Iwai03697e22011-05-17 09:53:31 +02003374static void cx_auto_update_speakers(struct hda_codec *codec)
3375{
3376 struct conexant_spec *spec = codec->spec;
3377 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaie2df82f2011-05-24 11:49:12 +02003378 int on = 1;
Takashi Iwai03697e22011-05-17 09:53:31 +02003379
Takashi Iwaie2df82f2011-05-24 11:49:12 +02003380 /* turn on HP EAPD when HP jacks are present */
Takashi Iwai254f2962011-10-14 15:22:34 +02003381 if (spec->pin_eapd_ctrls) {
3382 if (spec->auto_mute)
3383 on = spec->hp_present;
3384 cx_auto_turn_eapd(codec, cfg->hp_outs, cfg->hp_pins, on);
3385 }
3386
Takashi Iwaie2df82f2011-05-24 11:49:12 +02003387 /* mute speakers in auto-mode if HP or LO jacks are plugged */
3388 if (spec->auto_mute)
3389 on = !(spec->hp_present ||
3390 (spec->detect_line && spec->line_present));
3391 do_automute(codec, cfg->speaker_outs, cfg->speaker_pins, on);
Takashi Iwai03697e22011-05-17 09:53:31 +02003392
3393 /* toggle line-out mutes if needed, too */
3394 /* if LO is a copy of either HP or Speaker, don't need to handle it */
3395 if (cfg->line_out_pins[0] == cfg->hp_pins[0] ||
3396 cfg->line_out_pins[0] == cfg->speaker_pins[0])
3397 return;
Takashi Iwaie2df82f2011-05-24 11:49:12 +02003398 if (spec->auto_mute) {
3399 /* mute LO in auto-mode when HP jack is present */
3400 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT ||
3401 spec->automute_lines)
3402 on = !spec->hp_present;
3403 else
3404 on = 1;
3405 }
3406 do_automute(codec, cfg->line_outs, cfg->line_out_pins, on);
Takashi Iwai03697e22011-05-17 09:53:31 +02003407}
3408
Takashi Iwaif2e57312010-09-15 10:07:08 +02003409static void cx_auto_hp_automute(struct hda_codec *codec)
3410{
3411 struct conexant_spec *spec = codec->spec;
3412 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003413
3414 if (!spec->auto_mute)
3415 return;
Takashi Iwai03697e22011-05-17 09:53:31 +02003416 spec->hp_present = detect_jacks(codec, cfg->hp_outs, cfg->hp_pins);
3417 cx_auto_update_speakers(codec);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003418}
3419
Takashi Iwai03697e22011-05-17 09:53:31 +02003420static void cx_auto_line_automute(struct hda_codec *codec)
3421{
3422 struct conexant_spec *spec = codec->spec;
3423 struct auto_pin_cfg *cfg = &spec->autocfg;
3424
3425 if (!spec->auto_mute || !spec->detect_line)
3426 return;
3427 spec->line_present = detect_jacks(codec, cfg->line_outs,
3428 cfg->line_out_pins);
3429 cx_auto_update_speakers(codec);
3430}
3431
3432static int cx_automute_mode_info(struct snd_kcontrol *kcontrol,
3433 struct snd_ctl_elem_info *uinfo)
3434{
3435 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3436 struct conexant_spec *spec = codec->spec;
3437 static const char * const texts2[] = {
3438 "Disabled", "Enabled"
3439 };
3440 static const char * const texts3[] = {
Takashi Iwaie49a3432012-03-01 18:14:41 +01003441 "Disabled", "Speaker Only", "Line Out+Speaker"
Takashi Iwai03697e22011-05-17 09:53:31 +02003442 };
3443 const char * const *texts;
3444
3445 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3446 uinfo->count = 1;
3447 if (spec->automute_hp_lo) {
3448 uinfo->value.enumerated.items = 3;
3449 texts = texts3;
3450 } else {
3451 uinfo->value.enumerated.items = 2;
3452 texts = texts2;
3453 }
3454 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
3455 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
3456 strcpy(uinfo->value.enumerated.name,
3457 texts[uinfo->value.enumerated.item]);
3458 return 0;
3459}
3460
3461static int cx_automute_mode_get(struct snd_kcontrol *kcontrol,
3462 struct snd_ctl_elem_value *ucontrol)
3463{
3464 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3465 struct conexant_spec *spec = codec->spec;
3466 unsigned int val;
3467 if (!spec->auto_mute)
3468 val = 0;
3469 else if (!spec->automute_lines)
3470 val = 1;
3471 else
3472 val = 2;
3473 ucontrol->value.enumerated.item[0] = val;
3474 return 0;
3475}
3476
3477static int cx_automute_mode_put(struct snd_kcontrol *kcontrol,
3478 struct snd_ctl_elem_value *ucontrol)
3479{
3480 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3481 struct conexant_spec *spec = codec->spec;
3482
3483 switch (ucontrol->value.enumerated.item[0]) {
3484 case 0:
3485 if (!spec->auto_mute)
3486 return 0;
3487 spec->auto_mute = 0;
3488 break;
3489 case 1:
3490 if (spec->auto_mute && !spec->automute_lines)
3491 return 0;
3492 spec->auto_mute = 1;
3493 spec->automute_lines = 0;
3494 break;
3495 case 2:
3496 if (!spec->automute_hp_lo)
3497 return -EINVAL;
3498 if (spec->auto_mute && spec->automute_lines)
3499 return 0;
3500 spec->auto_mute = 1;
3501 spec->automute_lines = 1;
3502 break;
3503 default:
3504 return -EINVAL;
3505 }
3506 cx_auto_update_speakers(codec);
3507 return 1;
3508}
3509
3510static const struct snd_kcontrol_new cx_automute_mode_enum[] = {
3511 {
3512 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3513 .name = "Auto-Mute Mode",
3514 .info = cx_automute_mode_info,
3515 .get = cx_automute_mode_get,
3516 .put = cx_automute_mode_put,
3517 },
3518 { }
3519};
3520
Takashi Iwai6764bce2011-05-13 16:52:25 +02003521static int cx_auto_mux_enum_info(struct snd_kcontrol *kcontrol,
3522 struct snd_ctl_elem_info *uinfo)
3523{
3524 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3525 struct conexant_spec *spec = codec->spec;
3526
3527 return snd_hda_input_mux_info(&spec->private_imux, uinfo);
3528}
3529
3530static int cx_auto_mux_enum_get(struct snd_kcontrol *kcontrol,
3531 struct snd_ctl_elem_value *ucontrol)
3532{
3533 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3534 struct conexant_spec *spec = codec->spec;
3535
3536 ucontrol->value.enumerated.item[0] = spec->cur_mux[0];
3537 return 0;
3538}
3539
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003540/* look for the route the given pin from mux and return the index;
3541 * if do_select is set, actually select the route.
3542 */
3543static int __select_input_connection(struct hda_codec *codec, hda_nid_t mux,
Takashi Iwaicf27f292011-05-16 11:33:02 +02003544 hda_nid_t pin, hda_nid_t *srcp,
3545 bool do_select, int depth)
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003546{
3547 hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3548 int i, nums;
3549
Takashi Iwaicf27f292011-05-16 11:33:02 +02003550 switch (get_wcaps_type(get_wcaps(codec, mux))) {
3551 case AC_WID_AUD_IN:
3552 case AC_WID_AUD_SEL:
3553 case AC_WID_AUD_MIX:
3554 break;
3555 default:
3556 return -1;
3557 }
3558
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003559 nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3560 for (i = 0; i < nums; i++)
3561 if (conn[i] == pin) {
3562 if (do_select)
3563 snd_hda_codec_write(codec, mux, 0,
3564 AC_VERB_SET_CONNECT_SEL, i);
Takashi Iwaicf27f292011-05-16 11:33:02 +02003565 if (srcp)
3566 *srcp = mux;
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003567 return i;
3568 }
3569 depth++;
3570 if (depth == 2)
3571 return -1;
3572 for (i = 0; i < nums; i++) {
Takashi Iwaicf27f292011-05-16 11:33:02 +02003573 int ret = __select_input_connection(codec, conn[i], pin, srcp,
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003574 do_select, depth);
3575 if (ret >= 0) {
3576 if (do_select)
3577 snd_hda_codec_write(codec, mux, 0,
3578 AC_VERB_SET_CONNECT_SEL, i);
Takashi Iwaicf27f292011-05-16 11:33:02 +02003579 return i;
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003580 }
3581 }
3582 return -1;
3583}
3584
3585static void select_input_connection(struct hda_codec *codec, hda_nid_t mux,
3586 hda_nid_t pin)
3587{
Takashi Iwaicf27f292011-05-16 11:33:02 +02003588 __select_input_connection(codec, mux, pin, NULL, true, 0);
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003589}
3590
3591static int get_input_connection(struct hda_codec *codec, hda_nid_t mux,
3592 hda_nid_t pin)
3593{
Takashi Iwaicf27f292011-05-16 11:33:02 +02003594 return __select_input_connection(codec, mux, pin, NULL, false, 0);
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003595}
3596
Takashi Iwai6764bce2011-05-13 16:52:25 +02003597static int cx_auto_mux_enum_update(struct hda_codec *codec,
3598 const struct hda_input_mux *imux,
3599 unsigned int idx)
3600{
3601 struct conexant_spec *spec = codec->spec;
3602 hda_nid_t adc;
Takashi Iwai313d2c02011-05-23 20:27:02 +02003603 int changed = 1;
Takashi Iwai6764bce2011-05-13 16:52:25 +02003604
3605 if (!imux->num_items)
3606 return 0;
3607 if (idx >= imux->num_items)
3608 idx = imux->num_items - 1;
3609 if (spec->cur_mux[0] == idx)
Takashi Iwai313d2c02011-05-23 20:27:02 +02003610 changed = 0;
Takashi Iwai47ad1f42011-05-17 09:15:55 +02003611 adc = spec->imux_info[idx].adc;
3612 select_input_connection(codec, spec->imux_info[idx].adc,
3613 spec->imux_info[idx].pin);
Takashi Iwai6764bce2011-05-13 16:52:25 +02003614 if (spec->cur_adc && spec->cur_adc != adc) {
3615 /* stream is running, let's swap the current ADC */
3616 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
3617 spec->cur_adc = adc;
3618 snd_hda_codec_setup_stream(codec, adc,
3619 spec->cur_adc_stream_tag, 0,
3620 spec->cur_adc_format);
3621 }
3622 spec->cur_mux[0] = idx;
Takashi Iwai313d2c02011-05-23 20:27:02 +02003623 return changed;
Takashi Iwai6764bce2011-05-13 16:52:25 +02003624}
3625
3626static int cx_auto_mux_enum_put(struct snd_kcontrol *kcontrol,
3627 struct snd_ctl_elem_value *ucontrol)
3628{
3629 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3630 struct conexant_spec *spec = codec->spec;
3631
3632 return cx_auto_mux_enum_update(codec, &spec->private_imux,
3633 ucontrol->value.enumerated.item[0]);
3634}
3635
3636static const struct snd_kcontrol_new cx_auto_capture_mixers[] = {
3637 {
3638 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3639 .name = "Capture Source",
3640 .info = cx_auto_mux_enum_info,
3641 .get = cx_auto_mux_enum_get,
3642 .put = cx_auto_mux_enum_put
3643 },
3644 {}
3645};
3646
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003647static bool select_automic(struct hda_codec *codec, int idx, bool detect)
3648{
3649 struct conexant_spec *spec = codec->spec;
3650 if (idx < 0)
3651 return false;
3652 if (detect && !snd_hda_jack_detect(codec, spec->imux_info[idx].pin))
3653 return false;
3654 cx_auto_mux_enum_update(codec, &spec->private_imux, idx);
3655 return true;
3656}
3657
Takashi Iwaif2e57312010-09-15 10:07:08 +02003658/* automatic switch internal and external mic */
3659static void cx_auto_automic(struct hda_codec *codec)
3660{
3661 struct conexant_spec *spec = codec->spec;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003662
3663 if (!spec->auto_mic)
3664 return;
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003665 if (!select_automic(codec, spec->auto_mic_ext, true))
3666 if (!select_automic(codec, spec->auto_mic_dock, true))
3667 select_automic(codec, spec->auto_mic_int, false);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003668}
3669
3670static void cx_auto_unsol_event(struct hda_codec *codec, unsigned int res)
3671{
Takashi Iwai3a938972011-10-28 01:16:55 +02003672 switch (snd_hda_jack_get_action(codec, res >> 26)) {
Takashi Iwaif2e57312010-09-15 10:07:08 +02003673 case CONEXANT_HP_EVENT:
3674 cx_auto_hp_automute(codec);
Takashi Iwai03697e22011-05-17 09:53:31 +02003675 break;
3676 case CONEXANT_LINE_EVENT:
3677 cx_auto_line_automute(codec);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003678 break;
3679 case CONEXANT_MIC_EVENT:
3680 cx_auto_automic(codec);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003681 break;
3682 }
Takashi Iwai01a61e12011-10-28 00:03:22 +02003683 snd_hda_jack_report_sync(codec);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003684}
3685
Takashi Iwaif2e57312010-09-15 10:07:08 +02003686/* check whether the pin config is suitable for auto-mic switching;
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003687 * auto-mic is enabled only when one int-mic and one ext- and/or
3688 * one dock-mic exist
Takashi Iwaif2e57312010-09-15 10:07:08 +02003689 */
3690static void cx_auto_check_auto_mic(struct hda_codec *codec)
3691{
3692 struct conexant_spec *spec = codec->spec;
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003693 int pset[INPUT_PIN_ATTR_NORMAL + 1];
3694 int i;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003695
Takashi Iwai506a4192011-05-23 20:07:15 +02003696 for (i = 0; i < ARRAY_SIZE(pset); i++)
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003697 pset[i] = -1;
3698 for (i = 0; i < spec->private_imux.num_items; i++) {
3699 hda_nid_t pin = spec->imux_info[i].pin;
3700 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, pin);
Takashi Iwaib55fcb52011-05-17 12:57:46 +02003701 int type, attr;
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003702 attr = snd_hda_get_input_pin_attr(def_conf);
3703 if (attr == INPUT_PIN_ATTR_UNUSED)
Takashi Iwaib55fcb52011-05-17 12:57:46 +02003704 return; /* invalid entry */
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003705 if (attr > INPUT_PIN_ATTR_NORMAL)
3706 attr = INPUT_PIN_ATTR_NORMAL;
3707 if (attr != INPUT_PIN_ATTR_INT &&
3708 !is_jack_detectable(codec, pin))
Takashi Iwaib55fcb52011-05-17 12:57:46 +02003709 return; /* non-detectable pin */
3710 type = get_defcfg_device(def_conf);
3711 if (type != AC_JACK_MIC_IN &&
3712 (attr != INPUT_PIN_ATTR_DOCK || type != AC_JACK_LINE_IN))
3713 return; /* no valid input type */
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003714 if (pset[attr] >= 0)
3715 return; /* already occupied */
3716 pset[attr] = i;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003717 }
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003718 if (pset[INPUT_PIN_ATTR_INT] < 0 ||
3719 (pset[INPUT_PIN_ATTR_NORMAL] < 0 && pset[INPUT_PIN_ATTR_DOCK]))
3720 return; /* no input to switch*/
3721 spec->auto_mic = 1;
3722 spec->auto_mic_ext = pset[INPUT_PIN_ATTR_NORMAL];
3723 spec->auto_mic_dock = pset[INPUT_PIN_ATTR_DOCK];
3724 spec->auto_mic_int = pset[INPUT_PIN_ATTR_INT];
Takashi Iwaif2e57312010-09-15 10:07:08 +02003725}
3726
3727static void cx_auto_parse_input(struct hda_codec *codec)
3728{
3729 struct conexant_spec *spec = codec->spec;
3730 struct auto_pin_cfg *cfg = &spec->autocfg;
3731 struct hda_input_mux *imux;
Takashi Iwai6764bce2011-05-13 16:52:25 +02003732 int i, j;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003733
3734 imux = &spec->private_imux;
3735 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai6764bce2011-05-13 16:52:25 +02003736 for (j = 0; j < spec->num_adc_nids; j++) {
3737 hda_nid_t adc = spec->adc_nids[j];
Takashi Iwai5c9887e2011-05-13 18:36:37 +02003738 int idx = get_input_connection(codec, adc,
3739 cfg->inputs[i].pin);
Takashi Iwai6764bce2011-05-13 16:52:25 +02003740 if (idx >= 0) {
3741 const char *label;
3742 label = hda_get_autocfg_input_label(codec, cfg, i);
Takashi Iwai47ad1f42011-05-17 09:15:55 +02003743 spec->imux_info[imux->num_items].index = i;
3744 spec->imux_info[imux->num_items].boost = 0;
3745 spec->imux_info[imux->num_items].adc = adc;
3746 spec->imux_info[imux->num_items].pin =
Takashi Iwaif6100bb2011-05-13 18:26:39 +02003747 cfg->inputs[i].pin;
Takashi Iwai6764bce2011-05-13 16:52:25 +02003748 snd_hda_add_imux_item(imux, label, idx, NULL);
Takashi Iwai6764bce2011-05-13 16:52:25 +02003749 break;
3750 }
Takashi Iwaif2e57312010-09-15 10:07:08 +02003751 }
3752 }
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02003753 if (imux->num_items >= 2 && cfg->num_inputs == imux->num_items)
Takashi Iwaif2e57312010-09-15 10:07:08 +02003754 cx_auto_check_auto_mic(codec);
Takashi Iwai76755352011-08-24 10:53:10 +02003755 if (imux->num_items > 1) {
Takashi Iwai6764bce2011-05-13 16:52:25 +02003756 for (i = 1; i < imux->num_items; i++) {
Takashi Iwai47ad1f42011-05-17 09:15:55 +02003757 if (spec->imux_info[i].adc != spec->imux_info[0].adc) {
Takashi Iwai6764bce2011-05-13 16:52:25 +02003758 spec->adc_switching = 1;
3759 break;
3760 }
3761 }
3762 }
Takashi Iwaif2e57312010-09-15 10:07:08 +02003763}
3764
3765/* get digital-input audio widget corresponding to the given pin */
3766static hda_nid_t cx_auto_get_dig_in(struct hda_codec *codec, hda_nid_t pin)
3767{
3768 hda_nid_t nid, end_nid;
3769
3770 end_nid = codec->start_nid + codec->num_nodes;
3771 for (nid = codec->start_nid; nid < end_nid; nid++) {
3772 unsigned int wcaps = get_wcaps(codec, nid);
3773 unsigned int type = get_wcaps_type(wcaps);
3774 if (type == AC_WID_AUD_IN && (wcaps & AC_WCAP_DIGITAL)) {
3775 if (get_connection_index(codec, nid, pin) >= 0)
3776 return nid;
3777 }
3778 }
3779 return 0;
3780}
3781
3782static void cx_auto_parse_digital(struct hda_codec *codec)
3783{
3784 struct conexant_spec *spec = codec->spec;
3785 struct auto_pin_cfg *cfg = &spec->autocfg;
3786 hda_nid_t nid;
3787
3788 if (cfg->dig_outs &&
3789 snd_hda_get_connections(codec, cfg->dig_out_pins[0], &nid, 1) == 1)
3790 spec->multiout.dig_out_nid = nid;
3791 if (cfg->dig_in_pin)
3792 spec->dig_in_nid = cx_auto_get_dig_in(codec, cfg->dig_in_pin);
3793}
3794
3795#ifdef CONFIG_SND_HDA_INPUT_BEEP
3796static void cx_auto_parse_beep(struct hda_codec *codec)
3797{
3798 struct conexant_spec *spec = codec->spec;
3799 hda_nid_t nid, end_nid;
3800
3801 end_nid = codec->start_nid + codec->num_nodes;
3802 for (nid = codec->start_nid; nid < end_nid; nid++)
3803 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_BEEP) {
3804 set_beep_amp(spec, nid, 0, HDA_OUTPUT);
3805 break;
3806 }
3807}
3808#else
3809#define cx_auto_parse_beep(codec)
3810#endif
3811
Takashi Iwai254f2962011-10-14 15:22:34 +02003812/* parse EAPDs */
Takashi Iwai19110592011-07-11 14:46:44 +02003813static void cx_auto_parse_eapd(struct hda_codec *codec)
3814{
3815 struct conexant_spec *spec = codec->spec;
Takashi Iwai19110592011-07-11 14:46:44 +02003816 hda_nid_t nid, end_nid;
3817
3818 end_nid = codec->start_nid + codec->num_nodes;
3819 for (nid = codec->start_nid; nid < end_nid; nid++) {
3820 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
3821 continue;
3822 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD))
3823 continue;
Takashi Iwai19110592011-07-11 14:46:44 +02003824 spec->eapds[spec->num_eapds++] = nid;
3825 if (spec->num_eapds >= ARRAY_SIZE(spec->eapds))
3826 break;
3827 }
Takashi Iwai254f2962011-10-14 15:22:34 +02003828
3829 /* NOTE: below is a wild guess; if we have more than two EAPDs,
3830 * it's a new chip, where EAPDs are supposed to be associated to
3831 * pins, and we can control EAPD per pin.
3832 * OTOH, if only one or two EAPDs are found, it's an old chip,
3833 * thus it might control over all pins.
3834 */
3835 spec->pin_eapd_ctrls = spec->num_eapds > 2;
Takashi Iwai19110592011-07-11 14:46:44 +02003836}
3837
Takashi Iwaif2e57312010-09-15 10:07:08 +02003838static int cx_auto_parse_auto_config(struct hda_codec *codec)
3839{
3840 struct conexant_spec *spec = codec->spec;
3841 int err;
3842
3843 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
3844 if (err < 0)
3845 return err;
3846
3847 cx_auto_parse_output(codec);
3848 cx_auto_parse_input(codec);
3849 cx_auto_parse_digital(codec);
3850 cx_auto_parse_beep(codec);
Takashi Iwai19110592011-07-11 14:46:44 +02003851 cx_auto_parse_eapd(codec);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003852 return 0;
3853}
3854
Takashi Iwaida339862011-05-13 16:24:15 +02003855static void cx_auto_turn_eapd(struct hda_codec *codec, int num_pins,
3856 hda_nid_t *pins, bool on)
Takashi Iwaif2e57312010-09-15 10:07:08 +02003857{
3858 int i;
3859 for (i = 0; i < num_pins; i++) {
3860 if (snd_hda_query_pin_caps(codec, pins[i]) & AC_PINCAP_EAPD)
3861 snd_hda_codec_write(codec, pins[i], 0,
Takashi Iwaida339862011-05-13 16:24:15 +02003862 AC_VERB_SET_EAPD_BTLENABLE,
3863 on ? 0x02 : 0);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003864 }
3865}
3866
3867static void select_connection(struct hda_codec *codec, hda_nid_t pin,
3868 hda_nid_t src)
3869{
3870 int idx = get_connection_index(codec, pin, src);
3871 if (idx >= 0)
3872 snd_hda_codec_write(codec, pin, 0,
3873 AC_VERB_SET_CONNECT_SEL, idx);
3874}
3875
Takashi Iwai1f8458a2011-05-13 17:22:05 +02003876static void mute_outputs(struct hda_codec *codec, int num_nids,
3877 const hda_nid_t *nids)
Takashi Iwaif2e57312010-09-15 10:07:08 +02003878{
Takashi Iwai0ad1b5b2011-05-13 16:43:12 +02003879 int i, val;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003880
Takashi Iwai1f8458a2011-05-13 17:22:05 +02003881 for (i = 0; i < num_nids; i++) {
3882 hda_nid_t nid = nids[i];
3883 if (!(get_wcaps(codec, nid) & AC_WCAP_OUT_AMP))
3884 continue;
Takashi Iwai0ad1b5b2011-05-13 16:43:12 +02003885 if (query_amp_caps(codec, nid, HDA_OUTPUT) & AC_AMPCAP_MUTE)
3886 val = AMP_OUT_MUTE;
3887 else
3888 val = AMP_OUT_ZERO;
3889 snd_hda_codec_write(codec, nid, 0,
3890 AC_VERB_SET_AMP_GAIN_MUTE, val);
3891 }
Takashi Iwai1f8458a2011-05-13 17:22:05 +02003892}
Takashi Iwaif2e57312010-09-15 10:07:08 +02003893
Takashi Iwai03697e22011-05-17 09:53:31 +02003894static void enable_unsol_pins(struct hda_codec *codec, int num_pins,
Takashi Iwai3a938972011-10-28 01:16:55 +02003895 hda_nid_t *pins, unsigned int action)
Takashi Iwai03697e22011-05-17 09:53:31 +02003896{
3897 int i;
3898 for (i = 0; i < num_pins; i++)
Takashi Iwai3a938972011-10-28 01:16:55 +02003899 snd_hda_jack_detect_enable(codec, pins[i], action);
Takashi Iwai03697e22011-05-17 09:53:31 +02003900}
3901
Takashi Iwai07cafff2012-02-20 12:30:59 +01003902static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
3903{
3904 int i;
3905 for (i = 0; i < nums; i++)
3906 if (list[i] == nid)
3907 return true;
3908 return false;
3909}
3910
3911/* is the given NID found in any of autocfg items? */
3912static bool found_in_autocfg(struct auto_pin_cfg *cfg, hda_nid_t nid)
3913{
3914 int i;
3915
3916 if (found_in_nid_list(nid, cfg->line_out_pins, cfg->line_outs) ||
3917 found_in_nid_list(nid, cfg->hp_pins, cfg->hp_outs) ||
3918 found_in_nid_list(nid, cfg->speaker_pins, cfg->speaker_outs) ||
3919 found_in_nid_list(nid, cfg->dig_out_pins, cfg->dig_outs))
3920 return true;
3921 for (i = 0; i < cfg->num_inputs; i++)
3922 if (cfg->inputs[i].pin == nid)
3923 return true;
3924 if (cfg->dig_in_pin == nid)
3925 return true;
3926 return false;
3927}
3928
3929/* clear unsol-event tags on unused pins; Conexant codecs seem to leave
3930 * invalid unsol tags by some reason
3931 */
3932static void clear_unsol_on_unused_pins(struct hda_codec *codec)
3933{
3934 struct conexant_spec *spec = codec->spec;
3935 struct auto_pin_cfg *cfg = &spec->autocfg;
3936 int i;
3937
3938 for (i = 0; i < codec->init_pins.used; i++) {
3939 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
3940 if (!found_in_autocfg(cfg, pin->nid))
3941 snd_hda_codec_write(codec, pin->nid, 0,
3942 AC_VERB_SET_UNSOLICITED_ENABLE, 0);
3943 }
3944}
3945
Takashi Iwai527c73b2012-03-12 12:38:51 +01003946/* turn on/off EAPD according to Master switch */
3947static void cx_auto_vmaster_hook(void *private_data, int enabled)
3948{
3949 struct hda_codec *codec = private_data;
3950 struct conexant_spec *spec = codec->spec;
3951
3952 if (enabled && spec->pin_eapd_ctrls) {
3953 cx_auto_update_speakers(codec);
3954 return;
3955 }
3956 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, enabled);
3957}
3958
Takashi Iwai1f8458a2011-05-13 17:22:05 +02003959static void cx_auto_init_output(struct hda_codec *codec)
3960{
3961 struct conexant_spec *spec = codec->spec;
3962 struct auto_pin_cfg *cfg = &spec->autocfg;
3963 hda_nid_t nid;
3964 int i;
3965
3966 mute_outputs(codec, spec->multiout.num_dacs, spec->multiout.dac_nids);
Takashi Iwaica3649d2012-04-19 15:15:25 +02003967 for (i = 0; i < cfg->hp_outs; i++) {
3968 unsigned int val = PIN_OUT;
3969 if (snd_hda_query_pin_caps(codec, cfg->hp_pins[i]) &
3970 AC_PINCAP_HP_DRV)
3971 val |= AC_PINCTL_HP_EN;
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02003972 snd_hda_set_pin_ctl(codec, cfg->hp_pins[i], val);
Takashi Iwaica3649d2012-04-19 15:15:25 +02003973 }
Takashi Iwai1f8458a2011-05-13 17:22:05 +02003974 mute_outputs(codec, cfg->hp_outs, cfg->hp_pins);
3975 mute_outputs(codec, cfg->line_outs, cfg->line_out_pins);
3976 mute_outputs(codec, cfg->speaker_outs, cfg->speaker_pins);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003977 for (i = 0; i < spec->dac_info_filled; i++) {
3978 nid = spec->dac_info[i].dac;
3979 if (!nid)
3980 nid = spec->multiout.dac_nids[0];
Takashi Iwai1f015f52011-08-23 14:57:08 +02003981 else if (nid & DAC_SLAVE_FLAG)
3982 nid &= ~DAC_SLAVE_FLAG;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003983 select_connection(codec, spec->dac_info[i].pin, nid);
3984 }
Takashi Iwai03697e22011-05-17 09:53:31 +02003985 if (spec->auto_mute) {
3986 enable_unsol_pins(codec, cfg->hp_outs, cfg->hp_pins,
3987 CONEXANT_HP_EVENT);
3988 spec->hp_present = detect_jacks(codec, cfg->hp_outs,
3989 cfg->hp_pins);
3990 if (spec->detect_line) {
3991 enable_unsol_pins(codec, cfg->line_outs,
3992 cfg->line_out_pins,
3993 CONEXANT_LINE_EVENT);
3994 spec->line_present =
3995 detect_jacks(codec, cfg->line_outs,
3996 cfg->line_out_pins);
3997 }
3998 }
3999 cx_auto_update_speakers(codec);
Takashi Iwai254f2962011-10-14 15:22:34 +02004000 /* turn on all EAPDs if no individual EAPD control is available */
4001 if (!spec->pin_eapd_ctrls)
4002 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, true);
Takashi Iwai07cafff2012-02-20 12:30:59 +01004003 clear_unsol_on_unused_pins(codec);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004004}
4005
4006static void cx_auto_init_input(struct hda_codec *codec)
4007{
4008 struct conexant_spec *spec = codec->spec;
4009 struct auto_pin_cfg *cfg = &spec->autocfg;
Takashi Iwai0ad1b5b2011-05-13 16:43:12 +02004010 int i, val;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004011
Takashi Iwai0ad1b5b2011-05-13 16:43:12 +02004012 for (i = 0; i < spec->num_adc_nids; i++) {
4013 hda_nid_t nid = spec->adc_nids[i];
Takashi Iwai1f8458a2011-05-13 17:22:05 +02004014 if (!(get_wcaps(codec, nid) & AC_WCAP_IN_AMP))
4015 continue;
Takashi Iwai0ad1b5b2011-05-13 16:43:12 +02004016 if (query_amp_caps(codec, nid, HDA_INPUT) & AC_AMPCAP_MUTE)
4017 val = AMP_IN_MUTE(0);
4018 else
4019 val = AMP_IN_UNMUTE(0);
4020 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4021 val);
4022 }
Takashi Iwaif2e57312010-09-15 10:07:08 +02004023
4024 for (i = 0; i < cfg->num_inputs; i++) {
Takashi Iwai47408602012-04-20 13:06:53 +02004025 hda_nid_t pin = cfg->inputs[i].pin;
4026 unsigned int type = PIN_IN;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004027 if (cfg->inputs[i].type == AUTO_PIN_MIC)
Takashi Iwai47408602012-04-20 13:06:53 +02004028 type |= snd_hda_get_default_vref(codec, pin);
4029 snd_hda_set_pin_ctl(codec, pin, type);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004030 }
4031
4032 if (spec->auto_mic) {
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02004033 if (spec->auto_mic_ext >= 0) {
Takashi Iwai1835a0f2011-10-27 22:12:46 +02004034 snd_hda_jack_detect_enable(codec,
4035 cfg->inputs[spec->auto_mic_ext].pin,
4036 CONEXANT_MIC_EVENT);
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02004037 }
4038 if (spec->auto_mic_dock >= 0) {
Takashi Iwai1835a0f2011-10-27 22:12:46 +02004039 snd_hda_jack_detect_enable(codec,
4040 cfg->inputs[spec->auto_mic_dock].pin,
4041 CONEXANT_MIC_EVENT);
Takashi Iwai43c1b2e2011-05-17 10:35:15 +02004042 }
Takashi Iwaif2e57312010-09-15 10:07:08 +02004043 cx_auto_automic(codec);
4044 } else {
Takashi Iwai47ad1f42011-05-17 09:15:55 +02004045 select_input_connection(codec, spec->imux_info[0].adc,
4046 spec->imux_info[0].pin);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004047 }
4048}
4049
4050static void cx_auto_init_digital(struct hda_codec *codec)
4051{
4052 struct conexant_spec *spec = codec->spec;
4053 struct auto_pin_cfg *cfg = &spec->autocfg;
4054
4055 if (spec->multiout.dig_out_nid)
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004056 snd_hda_set_pin_ctl(codec, cfg->dig_out_pins[0], PIN_OUT);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004057 if (spec->dig_in_nid)
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004058 snd_hda_set_pin_ctl(codec, cfg->dig_in_pin, PIN_IN);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004059}
4060
4061static int cx_auto_init(struct hda_codec *codec)
4062{
Takashi Iwai527c73b2012-03-12 12:38:51 +01004063 struct conexant_spec *spec = codec->spec;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004064 /*snd_hda_sequence_write(codec, cx_auto_init_verbs);*/
4065 cx_auto_init_output(codec);
4066 cx_auto_init_input(codec);
4067 cx_auto_init_digital(codec);
Takashi Iwai01a61e12011-10-28 00:03:22 +02004068 snd_hda_jack_report_sync(codec);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01004069 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004070 return 0;
4071}
4072
David Henningsson983345e2011-02-15 19:57:09 +01004073static int cx_auto_add_volume_idx(struct hda_codec *codec, const char *basename,
Takashi Iwaif2e57312010-09-15 10:07:08 +02004074 const char *dir, int cidx,
David Henningsson18dcd302012-04-02 15:40:27 +02004075 hda_nid_t nid, int hda_dir, int amp_idx, int chs)
Takashi Iwaif2e57312010-09-15 10:07:08 +02004076{
David Henningsson18dcd302012-04-02 15:40:27 +02004077 static char name[44];
Takashi Iwaif2e57312010-09-15 10:07:08 +02004078 static struct snd_kcontrol_new knew[] = {
4079 HDA_CODEC_VOLUME(name, 0, 0, 0),
4080 HDA_CODEC_MUTE(name, 0, 0, 0),
4081 };
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02004082 static const char * const sfx[2] = { "Volume", "Switch" };
Takashi Iwaif2e57312010-09-15 10:07:08 +02004083 int i, err;
4084
4085 for (i = 0; i < 2; i++) {
4086 struct snd_kcontrol *kctl;
David Henningsson18dcd302012-04-02 15:40:27 +02004087 knew[i].private_value = HDA_COMPOSE_AMP_VAL(nid, chs, amp_idx,
David Henningsson983345e2011-02-15 19:57:09 +01004088 hda_dir);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004089 knew[i].subdevice = HDA_SUBDEV_AMP_FLAG;
4090 knew[i].index = cidx;
4091 snprintf(name, sizeof(name), "%s%s %s", basename, dir, sfx[i]);
4092 kctl = snd_ctl_new1(&knew[i], codec);
4093 if (!kctl)
4094 return -ENOMEM;
4095 err = snd_hda_ctl_add(codec, nid, kctl);
4096 if (err < 0)
4097 return err;
Takashi Iwai38681372012-02-27 15:00:58 +01004098 if (!(query_amp_caps(codec, nid, hda_dir) &
4099 (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)))
Takashi Iwaif2e57312010-09-15 10:07:08 +02004100 break;
4101 }
4102 return 0;
4103}
4104
David Henningsson983345e2011-02-15 19:57:09 +01004105#define cx_auto_add_volume(codec, str, dir, cidx, nid, hda_dir) \
David Henningsson18dcd302012-04-02 15:40:27 +02004106 cx_auto_add_volume_idx(codec, str, dir, cidx, nid, hda_dir, 0, 3)
David Henningsson983345e2011-02-15 19:57:09 +01004107
Takashi Iwaif2e57312010-09-15 10:07:08 +02004108#define cx_auto_add_pb_volume(codec, nid, str, idx) \
4109 cx_auto_add_volume(codec, str, " Playback", idx, nid, HDA_OUTPUT)
4110
Takashi Iwai1f8458a2011-05-13 17:22:05 +02004111static int try_add_pb_volume(struct hda_codec *codec, hda_nid_t dac,
4112 hda_nid_t pin, const char *name, int idx)
4113{
4114 unsigned int caps;
David Henningsson468c5452011-08-25 13:16:02 +02004115 if (dac && !(dac & DAC_SLAVE_FLAG)) {
4116 caps = query_amp_caps(codec, dac, HDA_OUTPUT);
4117 if (caps & AC_AMPCAP_NUM_STEPS)
4118 return cx_auto_add_pb_volume(codec, dac, name, idx);
4119 }
Takashi Iwai1f8458a2011-05-13 17:22:05 +02004120 caps = query_amp_caps(codec, pin, HDA_OUTPUT);
4121 if (caps & AC_AMPCAP_NUM_STEPS)
4122 return cx_auto_add_pb_volume(codec, pin, name, idx);
4123 return 0;
4124}
4125
Takashi Iwaif2e57312010-09-15 10:07:08 +02004126static int cx_auto_build_output_controls(struct hda_codec *codec)
4127{
4128 struct conexant_spec *spec = codec->spec;
4129 int i, err;
4130 int num_line = 0, num_hp = 0, num_spk = 0;
Takashi Iwaiea734962011-01-17 11:29:34 +01004131 static const char * const texts[3] = { "Front", "Surround", "CLFE" };
Takashi Iwaif2e57312010-09-15 10:07:08 +02004132
4133 if (spec->dac_info_filled == 1)
Takashi Iwai1f8458a2011-05-13 17:22:05 +02004134 return try_add_pb_volume(codec, spec->dac_info[0].dac,
4135 spec->dac_info[0].pin,
4136 "Master", 0);
4137
Takashi Iwaif2e57312010-09-15 10:07:08 +02004138 for (i = 0; i < spec->dac_info_filled; i++) {
4139 const char *label;
4140 int idx, type;
Takashi Iwai1f015f52011-08-23 14:57:08 +02004141 hda_nid_t dac = spec->dac_info[i].dac;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004142 type = spec->dac_info[i].type;
4143 if (type == AUTO_PIN_LINE_OUT)
4144 type = spec->autocfg.line_out_type;
4145 switch (type) {
4146 case AUTO_PIN_LINE_OUT:
4147 default:
4148 label = texts[num_line++];
4149 idx = 0;
4150 break;
4151 case AUTO_PIN_HP_OUT:
4152 label = "Headphone";
4153 idx = num_hp++;
4154 break;
4155 case AUTO_PIN_SPEAKER_OUT:
4156 label = "Speaker";
4157 idx = num_spk++;
4158 break;
4159 }
Takashi Iwai1f015f52011-08-23 14:57:08 +02004160 err = try_add_pb_volume(codec, dac,
Takashi Iwai1f8458a2011-05-13 17:22:05 +02004161 spec->dac_info[i].pin,
4162 label, idx);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004163 if (err < 0)
4164 return err;
4165 }
Takashi Iwai03697e22011-05-17 09:53:31 +02004166
4167 if (spec->auto_mute) {
4168 err = snd_hda_add_new_ctls(codec, cx_automute_mode_enum);
4169 if (err < 0)
4170 return err;
4171 }
4172
Takashi Iwaif2e57312010-09-15 10:07:08 +02004173 return 0;
4174}
4175
David Henningsson18dcd302012-04-02 15:40:27 +02004176/* Returns zero if this is a normal stereo channel, and non-zero if it should
4177 be split in two independent channels.
4178 dest_label must be at least 44 characters. */
4179static int cx_auto_get_rightch_label(struct hda_codec *codec, const char *label,
4180 char *dest_label, int nid)
4181{
4182 struct conexant_spec *spec = codec->spec;
4183 int i;
4184
4185 if (!spec->fixup_stereo_dmic)
4186 return 0;
4187
4188 for (i = 0; i < AUTO_CFG_MAX_INS; i++) {
4189 int def_conf;
4190 if (spec->autocfg.inputs[i].pin != nid)
4191 continue;
4192
4193 if (spec->autocfg.inputs[i].type != AUTO_PIN_MIC)
4194 return 0;
4195 def_conf = snd_hda_codec_get_pincfg(codec, nid);
4196 if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT)
4197 return 0;
4198
4199 /* Finally found the inverted internal mic! */
4200 snprintf(dest_label, 44, "Inverted %s", label);
4201 return 1;
4202 }
4203 return 0;
4204}
4205
Takashi Iwai6764bce2011-05-13 16:52:25 +02004206static int cx_auto_add_capture_volume(struct hda_codec *codec, hda_nid_t nid,
4207 const char *label, const char *pfx,
4208 int cidx)
4209{
4210 struct conexant_spec *spec = codec->spec;
4211 int i;
4212
4213 for (i = 0; i < spec->num_adc_nids; i++) {
David Henningsson18dcd302012-04-02 15:40:27 +02004214 char rightch_label[44];
Takashi Iwai6764bce2011-05-13 16:52:25 +02004215 hda_nid_t adc_nid = spec->adc_nids[i];
Takashi Iwai5c9887e2011-05-13 18:36:37 +02004216 int idx = get_input_connection(codec, adc_nid, nid);
Takashi Iwai6764bce2011-05-13 16:52:25 +02004217 if (idx < 0)
4218 continue;
Michael Karcher4f324562012-04-06 15:34:15 +02004219 if (codec->single_adc_amp)
Takashi Iwai6b452142011-10-14 15:26:20 +02004220 idx = 0;
David Henningsson18dcd302012-04-02 15:40:27 +02004221
4222 if (cx_auto_get_rightch_label(codec, label, rightch_label, nid)) {
4223 /* Make two independent kcontrols for left and right */
4224 int err = cx_auto_add_volume_idx(codec, label, pfx,
4225 cidx, adc_nid, HDA_INPUT, idx, 1);
4226 if (err < 0)
4227 return err;
4228 return cx_auto_add_volume_idx(codec, rightch_label, pfx,
4229 cidx, adc_nid, HDA_INPUT, idx, 2);
4230 }
Takashi Iwai6764bce2011-05-13 16:52:25 +02004231 return cx_auto_add_volume_idx(codec, label, pfx,
David Henningsson18dcd302012-04-02 15:40:27 +02004232 cidx, adc_nid, HDA_INPUT, idx, 3);
Takashi Iwai6764bce2011-05-13 16:52:25 +02004233 }
4234 return 0;
4235}
4236
Takashi Iwaicf27f292011-05-16 11:33:02 +02004237static int cx_auto_add_boost_volume(struct hda_codec *codec, int idx,
4238 const char *label, int cidx)
4239{
4240 struct conexant_spec *spec = codec->spec;
4241 hda_nid_t mux, nid;
Takashi Iwaif9759302011-05-16 11:45:15 +02004242 int i, con;
Takashi Iwaicf27f292011-05-16 11:33:02 +02004243
Takashi Iwai47ad1f42011-05-17 09:15:55 +02004244 nid = spec->imux_info[idx].pin;
David Henningsson18dcd302012-04-02 15:40:27 +02004245 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
4246 char rightch_label[44];
4247 if (cx_auto_get_rightch_label(codec, label, rightch_label, nid)) {
4248 int err = cx_auto_add_volume_idx(codec, label, " Boost",
4249 cidx, nid, HDA_INPUT, 0, 1);
4250 if (err < 0)
4251 return err;
4252 return cx_auto_add_volume_idx(codec, rightch_label, " Boost",
4253 cidx, nid, HDA_INPUT, 0, 2);
4254 }
Takashi Iwaicf27f292011-05-16 11:33:02 +02004255 return cx_auto_add_volume(codec, label, " Boost", cidx,
4256 nid, HDA_INPUT);
David Henningsson18dcd302012-04-02 15:40:27 +02004257 }
Takashi Iwai47ad1f42011-05-17 09:15:55 +02004258 con = __select_input_connection(codec, spec->imux_info[idx].adc, nid,
4259 &mux, false, 0);
Takashi Iwaicf27f292011-05-16 11:33:02 +02004260 if (con < 0)
4261 return 0;
Takashi Iwaif9759302011-05-16 11:45:15 +02004262 for (i = 0; i < idx; i++) {
Takashi Iwai47ad1f42011-05-17 09:15:55 +02004263 if (spec->imux_info[i].boost == mux)
Takashi Iwaif9759302011-05-16 11:45:15 +02004264 return 0; /* already present */
4265 }
4266
4267 if (get_wcaps(codec, mux) & AC_WCAP_OUT_AMP) {
Takashi Iwai47ad1f42011-05-17 09:15:55 +02004268 spec->imux_info[idx].boost = mux;
Takashi Iwaicf27f292011-05-16 11:33:02 +02004269 return cx_auto_add_volume(codec, label, " Boost", 0,
4270 mux, HDA_OUTPUT);
Takashi Iwaif9759302011-05-16 11:45:15 +02004271 }
Takashi Iwaicf27f292011-05-16 11:33:02 +02004272 return 0;
4273}
4274
Takashi Iwaif2e57312010-09-15 10:07:08 +02004275static int cx_auto_build_input_controls(struct hda_codec *codec)
4276{
4277 struct conexant_spec *spec = codec->spec;
Takashi Iwaicf27f292011-05-16 11:33:02 +02004278 struct hda_input_mux *imux = &spec->private_imux;
4279 const char *prev_label;
4280 int input_conn[HDA_MAX_NUM_INPUTS];
Takashi Iwai6b452142011-10-14 15:26:20 +02004281 int i, j, err, cidx;
Takashi Iwaicf27f292011-05-16 11:33:02 +02004282 int multi_connection;
4283
Takashi Iwai6b452142011-10-14 15:26:20 +02004284 if (!imux->num_items)
4285 return 0;
4286
Takashi Iwaicf27f292011-05-16 11:33:02 +02004287 multi_connection = 0;
4288 for (i = 0; i < imux->num_items; i++) {
Takashi Iwai47ad1f42011-05-17 09:15:55 +02004289 cidx = get_input_connection(codec, spec->imux_info[i].adc,
4290 spec->imux_info[i].pin);
Takashi Iwai6b452142011-10-14 15:26:20 +02004291 if (cidx < 0)
4292 continue;
4293 input_conn[i] = spec->imux_info[i].adc;
Michael Karcher4f324562012-04-06 15:34:15 +02004294 if (!codec->single_adc_amp)
Takashi Iwai6b452142011-10-14 15:26:20 +02004295 input_conn[i] |= cidx << 8;
Takashi Iwaicf27f292011-05-16 11:33:02 +02004296 if (i > 0 && input_conn[i] != input_conn[0])
4297 multi_connection = 1;
4298 }
David Henningsson983345e2011-02-15 19:57:09 +01004299
Takashi Iwaif2e57312010-09-15 10:07:08 +02004300 prev_label = NULL;
4301 cidx = 0;
Takashi Iwaicf27f292011-05-16 11:33:02 +02004302 for (i = 0; i < imux->num_items; i++) {
Takashi Iwai47ad1f42011-05-17 09:15:55 +02004303 hda_nid_t nid = spec->imux_info[i].pin;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004304 const char *label;
David Henningsson983345e2011-02-15 19:57:09 +01004305
Takashi Iwaicf27f292011-05-16 11:33:02 +02004306 label = hda_get_autocfg_input_label(codec, &spec->autocfg,
Takashi Iwai47ad1f42011-05-17 09:15:55 +02004307 spec->imux_info[i].index);
Takashi Iwaif2e57312010-09-15 10:07:08 +02004308 if (label == prev_label)
4309 cidx++;
4310 else
4311 cidx = 0;
4312 prev_label = label;
David Henningsson983345e2011-02-15 19:57:09 +01004313
Takashi Iwaicf27f292011-05-16 11:33:02 +02004314 err = cx_auto_add_boost_volume(codec, i, label, cidx);
4315 if (err < 0)
4316 return err;
David Henningsson983345e2011-02-15 19:57:09 +01004317
Takashi Iwaicf27f292011-05-16 11:33:02 +02004318 if (!multi_connection) {
Takashi Iwaif9759302011-05-16 11:45:15 +02004319 if (i > 0)
4320 continue;
Takashi Iwai6764bce2011-05-13 16:52:25 +02004321 err = cx_auto_add_capture_volume(codec, nid,
4322 "Capture", "", cidx);
4323 } else {
Takashi Iwai6b452142011-10-14 15:26:20 +02004324 bool dup_found = false;
4325 for (j = 0; j < i; j++) {
4326 if (input_conn[j] == input_conn[i]) {
4327 dup_found = true;
4328 break;
4329 }
4330 }
4331 if (dup_found)
4332 continue;
Takashi Iwai6764bce2011-05-13 16:52:25 +02004333 err = cx_auto_add_capture_volume(codec, nid,
4334 label, " Capture", cidx);
David Henningsson983345e2011-02-15 19:57:09 +01004335 }
Takashi Iwai6764bce2011-05-13 16:52:25 +02004336 if (err < 0)
4337 return err;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004338 }
Takashi Iwai6764bce2011-05-13 16:52:25 +02004339
4340 if (spec->private_imux.num_items > 1 && !spec->auto_mic) {
4341 err = snd_hda_add_new_ctls(codec, cx_auto_capture_mixers);
4342 if (err < 0)
4343 return err;
4344 }
4345
Takashi Iwaif2e57312010-09-15 10:07:08 +02004346 return 0;
4347}
4348
4349static int cx_auto_build_controls(struct hda_codec *codec)
4350{
Takashi Iwai31ef2252011-12-01 17:41:36 +01004351 struct conexant_spec *spec = codec->spec;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004352 int err;
4353
4354 err = cx_auto_build_output_controls(codec);
4355 if (err < 0)
4356 return err;
4357 err = cx_auto_build_input_controls(codec);
4358 if (err < 0)
4359 return err;
Takashi Iwai31ef2252011-12-01 17:41:36 +01004360 err = conexant_build_controls(codec);
4361 if (err < 0)
4362 return err;
4363 err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
4364 if (err < 0)
4365 return err;
Takashi Iwaif29735c2012-03-13 07:55:10 +01004366 if (spec->vmaster_mute.sw_kctl) {
4367 spec->vmaster_mute.hook = cx_auto_vmaster_hook;
4368 err = snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute,
4369 spec->vmaster_mute_led);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01004370 if (err < 0)
4371 return err;
Takashi Iwai527c73b2012-03-12 12:38:51 +01004372 }
Takashi Iwai31ef2252011-12-01 17:41:36 +01004373 return 0;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004374}
4375
Takashi Iwai22ce5f72011-05-15 12:19:29 +02004376static int cx_auto_search_adcs(struct hda_codec *codec)
4377{
4378 struct conexant_spec *spec = codec->spec;
4379 hda_nid_t nid, end_nid;
4380
4381 end_nid = codec->start_nid + codec->num_nodes;
4382 for (nid = codec->start_nid; nid < end_nid; nid++) {
4383 unsigned int caps = get_wcaps(codec, nid);
4384 if (get_wcaps_type(caps) != AC_WID_AUD_IN)
4385 continue;
4386 if (caps & AC_WCAP_DIGITAL)
4387 continue;
4388 if (snd_BUG_ON(spec->num_adc_nids >=
4389 ARRAY_SIZE(spec->private_adc_nids)))
4390 break;
4391 spec->private_adc_nids[spec->num_adc_nids++] = nid;
4392 }
4393 spec->adc_nids = spec->private_adc_nids;
4394 return 0;
4395}
4396
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02004397static const struct hda_codec_ops cx_auto_patch_ops = {
Takashi Iwaif2e57312010-09-15 10:07:08 +02004398 .build_controls = cx_auto_build_controls,
4399 .build_pcms = conexant_build_pcms,
4400 .init = cx_auto_init,
4401 .free = conexant_free,
4402 .unsol_event = cx_auto_unsol_event,
4403#ifdef CONFIG_SND_HDA_POWER_SAVE
4404 .suspend = conexant_suspend,
4405#endif
4406 .reboot_notify = snd_hda_shutup_pins,
4407};
4408
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004409/*
4410 * pin fix-up
4411 */
David Henningsson18dcd302012-04-02 15:40:27 +02004412enum {
4413 CXT_PINCFG_LENOVO_X200,
Takashi Iwaid3980112012-04-19 17:17:59 +02004414 CXT_PINCFG_LENOVO_TP410,
David Henningsson18dcd302012-04-02 15:40:27 +02004415 CXT_FIXUP_STEREO_DMIC,
4416};
4417
Takashi Iwai23d30f22012-05-07 17:17:32 +02004418static void cxt_fixup_stereo_dmic(struct hda_codec *codec,
4419 const struct hda_fixup *fix, int action)
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004420{
David Henningsson18dcd302012-04-02 15:40:27 +02004421 struct conexant_spec *spec = codec->spec;
Takashi Iwai23d30f22012-05-07 17:17:32 +02004422 spec->fixup_stereo_dmic = 1;
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004423}
4424
Takashi Iwaid70f3632012-04-19 15:18:08 +02004425/* ThinkPad X200 & co with cxt5051 */
Takashi Iwai23d30f22012-05-07 17:17:32 +02004426static const struct hda_pintbl cxt_pincfg_lenovo_x200[] = {
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004427 { 0x16, 0x042140ff }, /* HP (seq# overridden) */
4428 { 0x17, 0x21a11000 }, /* dock-mic */
4429 { 0x19, 0x2121103f }, /* dock-HP */
Takashi Iwai3e93f5e2012-02-28 21:49:55 +01004430 { 0x1c, 0x21440100 }, /* dock SPDIF out */
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004431 {}
4432};
4433
Takashi Iwaid70f3632012-04-19 15:18:08 +02004434/* ThinkPad 410/420/510/520, X201 & co with cxt5066 */
Takashi Iwai23d30f22012-05-07 17:17:32 +02004435static const struct hda_pintbl cxt_pincfg_lenovo_tp410[] = {
Takashi Iwaid70f3632012-04-19 15:18:08 +02004436 { 0x19, 0x042110ff }, /* HP (seq# overridden) */
4437 { 0x1a, 0x21a190f0 }, /* dock-mic */
4438 { 0x1c, 0x212140ff }, /* dock-HP */
4439 {}
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004440};
4441
Takashi Iwai23d30f22012-05-07 17:17:32 +02004442static const struct hda_fixup cxt_fixups[] = {
4443 [CXT_PINCFG_LENOVO_X200] = {
4444 .type = HDA_FIXUP_PINS,
4445 .v.pins = cxt_pincfg_lenovo_x200,
4446 },
4447 [CXT_PINCFG_LENOVO_TP410] = {
4448 .type = HDA_FIXUP_PINS,
4449 .v.pins = cxt_pincfg_lenovo_tp410,
4450 },
4451 [CXT_FIXUP_STEREO_DMIC] = {
4452 .type = HDA_FIXUP_FUNC,
4453 .v.func = cxt_fixup_stereo_dmic,
4454 },
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004455};
4456
Takashi Iwaid70f3632012-04-19 15:18:08 +02004457static const struct snd_pci_quirk cxt5051_fixups[] = {
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004458 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT_PINCFG_LENOVO_X200),
4459 {}
4460};
4461
Takashi Iwaid70f3632012-04-19 15:18:08 +02004462static const struct snd_pci_quirk cxt5066_fixups[] = {
4463 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400", CXT_PINCFG_LENOVO_TP410),
4464 SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo T410", CXT_PINCFG_LENOVO_TP410),
4465 SND_PCI_QUIRK(0x17aa, 0x215f, "Lenovo T510", CXT_PINCFG_LENOVO_TP410),
4466 SND_PCI_QUIRK(0x17aa, 0x21ce, "Lenovo T420", CXT_PINCFG_LENOVO_TP410),
4467 SND_PCI_QUIRK(0x17aa, 0x21cf, "Lenovo T520", CXT_PINCFG_LENOVO_TP410),
David Henningsson18dcd302012-04-02 15:40:27 +02004468 SND_PCI_QUIRK(0x17aa, 0x3975, "Lenovo U300s", CXT_FIXUP_STEREO_DMIC),
Takashi Iwaif2e57312010-09-15 10:07:08 +02004469 {}
4470};
4471
Takashi Iwai38681372012-02-27 15:00:58 +01004472/* add "fake" mute amp-caps to DACs on cx5051 so that mixer mute switches
4473 * can be created (bko#42825)
4474 */
4475static void add_cx5051_fake_mutes(struct hda_codec *codec)
4476{
4477 static hda_nid_t out_nids[] = {
4478 0x10, 0x11, 0
4479 };
4480 hda_nid_t *p;
4481
4482 for (p = out_nids; *p; p++)
4483 snd_hda_override_amp_caps(codec, *p, HDA_OUTPUT,
4484 AC_AMPCAP_MIN_MUTE |
4485 query_amp_caps(codec, *p, HDA_OUTPUT));
4486}
4487
Takashi Iwaif2e57312010-09-15 10:07:08 +02004488static int patch_conexant_auto(struct hda_codec *codec)
4489{
4490 struct conexant_spec *spec;
4491 int err;
4492
Takashi Iwai1f8458a2011-05-13 17:22:05 +02004493 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4494 codec->chip_name);
4495
Takashi Iwaif2e57312010-09-15 10:07:08 +02004496 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4497 if (!spec)
4498 return -ENOMEM;
4499 codec->spec = spec;
Takashi Iwaie92d4b02011-08-24 16:22:21 +02004500
Takashi Iwai6b452142011-10-14 15:26:20 +02004501 switch (codec->vendor_id) {
4502 case 0x14f15045:
Michael Karcher4f324562012-04-06 15:34:15 +02004503 codec->single_adc_amp = 1;
Takashi Iwai6b452142011-10-14 15:26:20 +02004504 break;
Takashi Iwai38681372012-02-27 15:00:58 +01004505 case 0x14f15051:
4506 add_cx5051_fake_mutes(codec);
Michael Karcher51969d62012-04-06 15:34:19 +02004507 codec->pin_amp_workaround = 1;
Takashi Iwai23d30f22012-05-07 17:17:32 +02004508 snd_hda_pick_fixup(codec, NULL, cxt5051_fixups, cxt_fixups);
Takashi Iwai38681372012-02-27 15:00:58 +01004509 break;
Michael Karcher51969d62012-04-06 15:34:19 +02004510 default:
4511 codec->pin_amp_workaround = 1;
Takashi Iwai23d30f22012-05-07 17:17:32 +02004512 snd_hda_pick_fixup(codec, NULL, cxt5066_fixups, cxt_fixups);
4513 break;
Takashi Iwai6b452142011-10-14 15:26:20 +02004514 }
4515
Takashi Iwai23d30f22012-05-07 17:17:32 +02004516 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4517
Takashi Iwaif29735c2012-03-13 07:55:10 +01004518 /* Show mute-led control only on HP laptops
4519 * This is a sort of white-list: on HP laptops, EAPD corresponds
4520 * only to the mute-LED without actualy amp function. Meanwhile,
4521 * others may use EAPD really as an amp switch, so it might be
4522 * not good to expose it blindly.
Takashi Iwai527c73b2012-03-12 12:38:51 +01004523 */
Takashi Iwaif29735c2012-03-13 07:55:10 +01004524 switch (codec->subsystem_id >> 16) {
4525 case 0x103c:
4526 spec->vmaster_mute_led = 1;
4527 break;
4528 }
Takashi Iwai527c73b2012-03-12 12:38:51 +01004529
Takashi Iwai22ce5f72011-05-15 12:19:29 +02004530 err = cx_auto_search_adcs(codec);
4531 if (err < 0)
4532 return err;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004533 err = cx_auto_parse_auto_config(codec);
4534 if (err < 0) {
4535 kfree(codec->spec);
4536 codec->spec = NULL;
4537 return err;
4538 }
Takashi Iwai6764bce2011-05-13 16:52:25 +02004539 spec->capture_stream = &cx_auto_pcm_analog_capture;
Takashi Iwaif2e57312010-09-15 10:07:08 +02004540 codec->patch_ops = cx_auto_patch_ops;
4541 if (spec->beep_amp)
4542 snd_hda_attach_beep_device(codec, spec->beep_amp);
Takashi Iwai4f2864a2012-01-25 11:54:19 +01004543
4544 /* Some laptops with Conexant chips show stalls in S3 resume,
4545 * which falls into the single-cmd mode.
4546 * Better to make reset, then.
4547 */
4548 if (!codec->bus->sync_write) {
4549 snd_printd("hda_codec: "
4550 "Enable sync_write for stable communication\n");
4551 codec->bus->sync_write = 1;
4552 codec->bus->allow_bus_reset = 1;
4553 }
4554
Takashi Iwaif2e57312010-09-15 10:07:08 +02004555 return 0;
4556}
4557
4558/*
Takashi Iwai461e2c72008-01-25 11:35:17 +01004559 */
4560
Takashi Iwai34cbe3a2011-05-02 11:38:21 +02004561static const struct hda_codec_preset snd_hda_preset_conexant[] = {
Tobin Davis82f30042007-02-13 12:45:44 +01004562 { .id = 0x14f15045, .name = "CX20549 (Venice)",
4563 .patch = patch_cxt5045 },
4564 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
4565 .patch = patch_cxt5047 },
Takashi Iwai461e2c72008-01-25 11:35:17 +01004566 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
4567 .patch = patch_cxt5051 },
Daniel Drake0fb67e92009-07-16 14:46:57 +01004568 { .id = 0x14f15066, .name = "CX20582 (Pebble)",
4569 .patch = patch_cxt5066 },
Einar Rünkaru95a618b2009-11-23 22:23:49 +02004570 { .id = 0x14f15067, .name = "CX20583 (Pebble HSF)",
4571 .patch = patch_cxt5066 },
Takashi Iwai850eab92010-08-09 13:44:27 +02004572 { .id = 0x14f15068, .name = "CX20584",
4573 .patch = patch_cxt5066 },
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02004574 { .id = 0x14f15069, .name = "CX20585",
4575 .patch = patch_cxt5066 },
David Henningssonf0ca89b2011-06-21 20:51:34 +02004576 { .id = 0x14f1506c, .name = "CX20588",
4577 .patch = patch_cxt5066 },
David Henningsson6da8b512011-02-08 07:16:06 +01004578 { .id = 0x14f1506e, .name = "CX20590",
4579 .patch = patch_cxt5066 },
Takashi Iwaif2e57312010-09-15 10:07:08 +02004580 { .id = 0x14f15097, .name = "CX20631",
4581 .patch = patch_conexant_auto },
4582 { .id = 0x14f15098, .name = "CX20632",
4583 .patch = patch_conexant_auto },
4584 { .id = 0x14f150a1, .name = "CX20641",
4585 .patch = patch_conexant_auto },
4586 { .id = 0x14f150a2, .name = "CX20642",
4587 .patch = patch_conexant_auto },
4588 { .id = 0x14f150ab, .name = "CX20651",
4589 .patch = patch_conexant_auto },
4590 { .id = 0x14f150ac, .name = "CX20652",
4591 .patch = patch_conexant_auto },
4592 { .id = 0x14f150b8, .name = "CX20664",
4593 .patch = patch_conexant_auto },
4594 { .id = 0x14f150b9, .name = "CX20665",
4595 .patch = patch_conexant_auto },
Tobin Davisc9b443d2006-11-14 12:13:39 +01004596 {} /* terminator */
4597};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004598
4599MODULE_ALIAS("snd-hda-codec-id:14f15045");
4600MODULE_ALIAS("snd-hda-codec-id:14f15047");
4601MODULE_ALIAS("snd-hda-codec-id:14f15051");
Daniel Drake0fb67e92009-07-16 14:46:57 +01004602MODULE_ALIAS("snd-hda-codec-id:14f15066");
Einar Rünkaru95a618b2009-11-23 22:23:49 +02004603MODULE_ALIAS("snd-hda-codec-id:14f15067");
Takashi Iwai850eab92010-08-09 13:44:27 +02004604MODULE_ALIAS("snd-hda-codec-id:14f15068");
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02004605MODULE_ALIAS("snd-hda-codec-id:14f15069");
David Henningssonf0ca89b2011-06-21 20:51:34 +02004606MODULE_ALIAS("snd-hda-codec-id:14f1506c");
David Henningsson6da8b512011-02-08 07:16:06 +01004607MODULE_ALIAS("snd-hda-codec-id:14f1506e");
Takashi Iwaif2e57312010-09-15 10:07:08 +02004608MODULE_ALIAS("snd-hda-codec-id:14f15097");
4609MODULE_ALIAS("snd-hda-codec-id:14f15098");
4610MODULE_ALIAS("snd-hda-codec-id:14f150a1");
4611MODULE_ALIAS("snd-hda-codec-id:14f150a2");
4612MODULE_ALIAS("snd-hda-codec-id:14f150ab");
4613MODULE_ALIAS("snd-hda-codec-id:14f150ac");
4614MODULE_ALIAS("snd-hda-codec-id:14f150b8");
4615MODULE_ALIAS("snd-hda-codec-id:14f150b9");
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004616
4617MODULE_LICENSE("GPL");
4618MODULE_DESCRIPTION("Conexant HD-audio codec");
4619
4620static struct hda_codec_preset_list conexant_list = {
4621 .preset = snd_hda_preset_conexant,
4622 .owner = THIS_MODULE,
4623};
4624
4625static int __init patch_conexant_init(void)
4626{
4627 return snd_hda_add_codec_preset(&conexant_list);
4628}
4629
4630static void __exit patch_conexant_exit(void)
4631{
4632 snd_hda_delete_codec_preset(&conexant_list);
4633}
4634
4635module_init(patch_conexant_init)
4636module_exit(patch_conexant_exit)