blob: ad97d937d3a8d92d362a108c8285a99c4dbdfc76 [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>
27#include <sound/core.h>
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010028#include <sound/jack.h>
29
Tobin Davisc9b443d2006-11-14 12:13:39 +010030#include "hda_codec.h"
31#include "hda_local.h"
Einar Rünkaruc0f8faf2009-12-16 22:41:36 +020032#include "hda_beep.h"
Tobin Davisc9b443d2006-11-14 12:13:39 +010033
34#define CXT_PIN_DIR_IN 0x00
35#define CXT_PIN_DIR_OUT 0x01
36#define CXT_PIN_DIR_INOUT 0x02
37#define CXT_PIN_DIR_IN_NOMICBIAS 0x03
38#define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
39
40#define CONEXANT_HP_EVENT 0x37
41#define CONEXANT_MIC_EVENT 0x38
42
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010043/* Conexant 5051 specific */
Tobin Davisc9b443d2006-11-14 12:13:39 +010044
Takashi Iwaiecda0cf2010-01-24 11:14:36 +010045#define CXT5051_SPDIF_OUT 0x12
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010046#define CXT5051_PORTB_EVENT 0x38
47#define CXT5051_PORTC_EVENT 0x39
48
Takashi Iwaifaddaa52010-01-23 22:31:36 +010049#define AUTO_MIC_PORTB (1 << 1)
50#define AUTO_MIC_PORTC (1 << 2)
Ulrich Dangelbc7a1662009-01-02 19:30:13 +010051
Takashi Iwaif2e57312010-09-15 10:07:08 +020052struct pin_dac_pair {
53 hda_nid_t pin;
54 hda_nid_t dac;
55 int type;
56};
57
Tobin Davisc9b443d2006-11-14 12:13:39 +010058struct conexant_spec {
59
60 struct snd_kcontrol_new *mixers[5];
61 int num_mixers;
Takashi Iwaidd5746a2009-03-10 14:30:40 +010062 hda_nid_t vmaster_nid;
Tobin Davisc9b443d2006-11-14 12:13:39 +010063
64 const struct hda_verb *init_verbs[5]; /* initialization verbs
65 * don't forget NULL
66 * termination!
67 */
68 unsigned int num_init_verbs;
69
70 /* playback */
71 struct hda_multi_out multiout; /* playback set-up
72 * max_channels, dacs must be set
73 * dig_out_nid and hp_nid are optional
74 */
75 unsigned int cur_eapd;
Tobin Davis82f30042007-02-13 12:45:44 +010076 unsigned int hp_present;
Takashi Iwaifaddaa52010-01-23 22:31:36 +010077 unsigned int auto_mic;
Takashi Iwaif2e57312010-09-15 10:07:08 +020078 int auto_mic_ext; /* autocfg.inputs[] index for ext mic */
Tobin Davisc9b443d2006-11-14 12:13:39 +010079 unsigned int need_dac_fix;
Andy Robinsonf6a24912011-01-24 10:12:37 -050080 hda_nid_t slave_dig_outs[2];
Tobin Davisc9b443d2006-11-14 12:13:39 +010081
82 /* capture */
83 unsigned int num_adc_nids;
84 hda_nid_t *adc_nids;
85 hda_nid_t dig_in_nid; /* digital-in NID; optional */
86
Takashi Iwai461e2c72008-01-25 11:35:17 +010087 unsigned int cur_adc_idx;
88 hda_nid_t cur_adc;
89 unsigned int cur_adc_stream_tag;
90 unsigned int cur_adc_format;
91
Tobin Davisc9b443d2006-11-14 12:13:39 +010092 /* capture source */
93 const struct hda_input_mux *input_mux;
94 hda_nid_t *capsrc_nids;
95 unsigned int cur_mux[3];
96
97 /* channel model */
98 const struct hda_channel_mode *channel_mode;
99 int num_channel_mode;
100
101 /* PCM information */
102 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
103
Tobin Davisc9b443d2006-11-14 12:13:39 +0100104 unsigned int spdif_route;
105
106 /* dynamic controls, init_verbs and input_mux */
107 struct auto_pin_cfg autocfg;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100108 struct hda_input_mux private_imux;
Takashi Iwai41923e42007-10-22 17:20:10 +0200109 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
Takashi Iwaif2e57312010-09-15 10:07:08 +0200110 struct pin_dac_pair dac_info[8];
111 int dac_info_filled;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100112
Daniel Drake0fb67e92009-07-16 14:46:57 +0100113 unsigned int port_d_mode;
Takashi Iwaif2e57312010-09-15 10:07:08 +0200114 unsigned int auto_mute:1; /* used in auto-parser */
115 unsigned int dell_automute:1;
Greg Alexandercfd3d8d2010-02-13 02:02:25 -0500116 unsigned int dell_vostro:1;
117 unsigned int ideapad:1;
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +0200118 unsigned int thinkpad:1;
David Henningsson048e78a2010-09-02 08:35:47 +0200119 unsigned int hp_laptop:1;
David Henningssona1d69062011-01-21 13:33:28 +0100120 unsigned int asus:1;
Daniel Drake75f89912010-01-07 13:46:25 +0100121
122 unsigned int ext_mic_present;
123 unsigned int recording;
124 void (*capture_prepare)(struct hda_codec *codec);
125 void (*capture_cleanup)(struct hda_codec *codec);
Daniel Drakec4cfe662010-01-07 13:47:04 +0100126
127 /* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors)
128 * through the microphone jack.
129 * When the user enables this through a mixer switch, both internal and
130 * external microphones are disabled. Gain is fixed at 0dB. In this mode,
131 * we also allow the bias to be configured through a separate mixer
132 * control. */
133 unsigned int dc_enable;
134 unsigned int dc_input_bias; /* offset into cxt5066_olpc_dc_bias */
135 unsigned int mic_boost; /* offset into cxt5066_analog_mic_boost */
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200136
137 unsigned int beep_amp;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100138};
139
140static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
141 struct hda_codec *codec,
142 struct snd_pcm_substream *substream)
143{
144 struct conexant_spec *spec = codec->spec;
Takashi Iwai9a081602008-02-12 18:37:26 +0100145 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
146 hinfo);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100147}
148
149static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
150 struct hda_codec *codec,
151 unsigned int stream_tag,
152 unsigned int format,
153 struct snd_pcm_substream *substream)
154{
155 struct conexant_spec *spec = codec->spec;
156 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
157 stream_tag,
158 format, substream);
159}
160
161static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
162 struct hda_codec *codec,
163 struct snd_pcm_substream *substream)
164{
165 struct conexant_spec *spec = codec->spec;
166 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
167}
168
169/*
170 * Digital out
171 */
172static int conexant_dig_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;
177 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
178}
179
180static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
181 struct hda_codec *codec,
182 struct snd_pcm_substream *substream)
183{
184 struct conexant_spec *spec = codec->spec;
185 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
186}
187
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200188static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
189 struct hda_codec *codec,
190 unsigned int stream_tag,
191 unsigned int format,
192 struct snd_pcm_substream *substream)
193{
194 struct conexant_spec *spec = codec->spec;
195 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
196 stream_tag,
197 format, substream);
198}
199
Tobin Davisc9b443d2006-11-14 12:13:39 +0100200/*
201 * Analog capture
202 */
203static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
204 struct hda_codec *codec,
205 unsigned int stream_tag,
206 unsigned int format,
207 struct snd_pcm_substream *substream)
208{
209 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +0100210 if (spec->capture_prepare)
211 spec->capture_prepare(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100212 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
213 stream_tag, 0, format);
214 return 0;
215}
216
217static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
218 struct hda_codec *codec,
219 struct snd_pcm_substream *substream)
220{
221 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100222 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
Daniel Drake75f89912010-01-07 13:46:25 +0100223 if (spec->capture_cleanup)
224 spec->capture_cleanup(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100225 return 0;
226}
227
228
229
230static struct hda_pcm_stream conexant_pcm_analog_playback = {
231 .substreams = 1,
232 .channels_min = 2,
233 .channels_max = 2,
234 .nid = 0, /* fill later */
235 .ops = {
236 .open = conexant_playback_pcm_open,
237 .prepare = conexant_playback_pcm_prepare,
238 .cleanup = conexant_playback_pcm_cleanup
239 },
240};
241
242static struct hda_pcm_stream conexant_pcm_analog_capture = {
243 .substreams = 1,
244 .channels_min = 2,
245 .channels_max = 2,
246 .nid = 0, /* fill later */
247 .ops = {
248 .prepare = conexant_capture_pcm_prepare,
249 .cleanup = conexant_capture_pcm_cleanup
250 },
251};
252
253
254static struct hda_pcm_stream conexant_pcm_digital_playback = {
255 .substreams = 1,
256 .channels_min = 2,
257 .channels_max = 2,
258 .nid = 0, /* fill later */
259 .ops = {
260 .open = conexant_dig_playback_pcm_open,
Takashi Iwai6b97eb42007-04-05 14:51:48 +0200261 .close = conexant_dig_playback_pcm_close,
262 .prepare = conexant_dig_playback_pcm_prepare
Tobin Davisc9b443d2006-11-14 12:13:39 +0100263 },
264};
265
266static struct hda_pcm_stream conexant_pcm_digital_capture = {
267 .substreams = 1,
268 .channels_min = 2,
269 .channels_max = 2,
270 /* NID is set in alc_build_pcms */
271};
272
Takashi Iwai461e2c72008-01-25 11:35:17 +0100273static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
274 struct hda_codec *codec,
275 unsigned int stream_tag,
276 unsigned int format,
277 struct snd_pcm_substream *substream)
278{
279 struct conexant_spec *spec = codec->spec;
280 spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
281 spec->cur_adc_stream_tag = stream_tag;
282 spec->cur_adc_format = format;
283 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
284 return 0;
285}
286
287static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
288 struct hda_codec *codec,
289 struct snd_pcm_substream *substream)
290{
291 struct conexant_spec *spec = codec->spec;
Takashi Iwai888afa12008-03-18 09:57:50 +0100292 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
Takashi Iwai461e2c72008-01-25 11:35:17 +0100293 spec->cur_adc = 0;
294 return 0;
295}
296
297static struct hda_pcm_stream cx5051_pcm_analog_capture = {
298 .substreams = 1,
299 .channels_min = 2,
300 .channels_max = 2,
301 .nid = 0, /* fill later */
302 .ops = {
303 .prepare = cx5051_capture_pcm_prepare,
304 .cleanup = cx5051_capture_pcm_cleanup
305 },
306};
307
Tobin Davisc9b443d2006-11-14 12:13:39 +0100308static int conexant_build_pcms(struct hda_codec *codec)
309{
310 struct conexant_spec *spec = codec->spec;
311 struct hda_pcm *info = spec->pcm_rec;
312
313 codec->num_pcms = 1;
314 codec->pcm_info = info;
315
316 info->name = "CONEXANT Analog";
317 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
318 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
319 spec->multiout.max_channels;
320 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
321 spec->multiout.dac_nids[0];
Takashi Iwai461e2c72008-01-25 11:35:17 +0100322 if (codec->vendor_id == 0x14f15051)
323 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
324 cx5051_pcm_analog_capture;
325 else
326 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
327 conexant_pcm_analog_capture;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100328 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
329 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
330
331 if (spec->multiout.dig_out_nid) {
332 info++;
333 codec->num_pcms++;
334 info->name = "Conexant Digital";
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100335 info->pcm_type = HDA_PCM_TYPE_SPDIF;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100336 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
337 conexant_pcm_digital_playback;
338 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
339 spec->multiout.dig_out_nid;
340 if (spec->dig_in_nid) {
341 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
342 conexant_pcm_digital_capture;
343 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
344 spec->dig_in_nid;
345 }
Andy Robinsonf6a24912011-01-24 10:12:37 -0500346 if (spec->slave_dig_outs[0])
347 codec->slave_dig_outs = spec->slave_dig_outs;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100348 }
349
350 return 0;
351}
352
353static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
354 struct snd_ctl_elem_info *uinfo)
355{
356 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
357 struct conexant_spec *spec = codec->spec;
358
359 return snd_hda_input_mux_info(spec->input_mux, uinfo);
360}
361
362static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
363 struct snd_ctl_elem_value *ucontrol)
364{
365 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
366 struct conexant_spec *spec = codec->spec;
367 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
368
369 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
370 return 0;
371}
372
373static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
374 struct snd_ctl_elem_value *ucontrol)
375{
376 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
377 struct conexant_spec *spec = codec->spec;
378 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
379
380 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
381 spec->capsrc_nids[adc_idx],
382 &spec->cur_mux[adc_idx]);
383}
384
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100385static int conexant_init_jacks(struct hda_codec *codec)
386{
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100387#ifdef CONFIG_SND_HDA_INPUT_JACK
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100388 struct conexant_spec *spec = codec->spec;
389 int i;
390
391 for (i = 0; i < spec->num_init_verbs; i++) {
392 const struct hda_verb *hv;
393
394 hv = spec->init_verbs[i];
395 while (hv->nid) {
396 int err = 0;
397 switch (hv->param ^ AC_USRSP_EN) {
398 case CONEXANT_HP_EVENT:
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100399 err = snd_hda_input_jack_add(codec, hv->nid,
400 SND_JACK_HEADPHONE, NULL);
401 snd_hda_input_jack_report(codec, hv->nid);
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100402 break;
403 case CXT5051_PORTC_EVENT:
404 case CONEXANT_MIC_EVENT:
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100405 err = snd_hda_input_jack_add(codec, hv->nid,
406 SND_JACK_MICROPHONE, NULL);
407 snd_hda_input_jack_report(codec, hv->nid);
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100408 break;
409 }
410 if (err < 0)
411 return err;
412 ++hv;
413 }
414 }
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100415#endif /* CONFIG_SND_HDA_INPUT_JACK */
Takashi Iwai5801f992009-01-27 12:53:22 +0100416 return 0;
417}
Ulrich Dangelbc7a1662009-01-02 19:30:13 +0100418
Tobin Davisc9b443d2006-11-14 12:13:39 +0100419static int conexant_init(struct hda_codec *codec)
420{
421 struct conexant_spec *spec = codec->spec;
422 int i;
423
424 for (i = 0; i < spec->num_init_verbs; i++)
425 snd_hda_sequence_write(codec, spec->init_verbs[i]);
426 return 0;
427}
428
429static void conexant_free(struct hda_codec *codec)
430{
Takashi Iwaicd372fb2011-03-03 14:40:14 +0100431 snd_hda_input_jack_free(codec);
Einar Rünkaruc0f8faf2009-12-16 22:41:36 +0200432 snd_hda_detach_beep_device(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100433 kfree(codec->spec);
434}
435
Takashi Iwaib880c742009-03-10 14:41:05 +0100436static struct snd_kcontrol_new cxt_capture_mixers[] = {
437 {
438 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
439 .name = "Capture Source",
440 .info = conexant_mux_enum_info,
441 .get = conexant_mux_enum_get,
442 .put = conexant_mux_enum_put
443 },
444 {}
445};
446
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200447#ifdef CONFIG_SND_HDA_INPUT_BEEP
448/* additional beep mixers; the actual parameters are overwritten at build */
449static struct snd_kcontrol_new cxt_beep_mixer[] = {
450 HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0, 1, 0, HDA_OUTPUT),
451 HDA_CODEC_MUTE_BEEP_MONO("Beep Playback Switch", 0, 1, 0, HDA_OUTPUT),
452 { } /* end */
453};
454#endif
455
Takashi Iwaiea734962011-01-17 11:29:34 +0100456static const char * const slave_vols[] = {
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100457 "Headphone Playback Volume",
458 "Speaker Playback Volume",
459 NULL
460};
461
Takashi Iwaiea734962011-01-17 11:29:34 +0100462static const char * const slave_sws[] = {
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100463 "Headphone Playback Switch",
464 "Speaker Playback Switch",
465 NULL
466};
467
Tobin Davisc9b443d2006-11-14 12:13:39 +0100468static int conexant_build_controls(struct hda_codec *codec)
469{
470 struct conexant_spec *spec = codec->spec;
471 unsigned int i;
472 int err;
473
474 for (i = 0; i < spec->num_mixers; i++) {
475 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
476 if (err < 0)
477 return err;
478 }
479 if (spec->multiout.dig_out_nid) {
480 err = snd_hda_create_spdif_out_ctls(codec,
481 spec->multiout.dig_out_nid);
482 if (err < 0)
483 return err;
Takashi Iwai9a081602008-02-12 18:37:26 +0100484 err = snd_hda_create_spdif_share_sw(codec,
485 &spec->multiout);
486 if (err < 0)
487 return err;
488 spec->multiout.share_spdif = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100489 }
490 if (spec->dig_in_nid) {
491 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
492 if (err < 0)
493 return err;
494 }
Takashi Iwaidd5746a2009-03-10 14:30:40 +0100495
496 /* if we have no master control, let's create it */
497 if (spec->vmaster_nid &&
498 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
499 unsigned int vmaster_tlv[4];
500 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
501 HDA_OUTPUT, vmaster_tlv);
502 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
503 vmaster_tlv, slave_vols);
504 if (err < 0)
505 return err;
506 }
507 if (spec->vmaster_nid &&
508 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
509 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
510 NULL, slave_sws);
511 if (err < 0)
512 return err;
513 }
514
Takashi Iwaib880c742009-03-10 14:41:05 +0100515 if (spec->input_mux) {
516 err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
517 if (err < 0)
518 return err;
519 }
520
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200521#ifdef CONFIG_SND_HDA_INPUT_BEEP
522 /* create beep controls if needed */
523 if (spec->beep_amp) {
524 struct snd_kcontrol_new *knew;
525 for (knew = cxt_beep_mixer; knew->name; knew++) {
526 struct snd_kcontrol *kctl;
527 kctl = snd_ctl_new1(knew, codec);
528 if (!kctl)
529 return -ENOMEM;
530 kctl->private_value = spec->beep_amp;
531 err = snd_hda_ctl_add(codec, 0, kctl);
532 if (err < 0)
533 return err;
534 }
535 }
536#endif
537
Tobin Davisc9b443d2006-11-14 12:13:39 +0100538 return 0;
539}
540
Takashi Iwai697c3732010-07-30 11:28:02 +0200541#ifdef CONFIG_SND_HDA_POWER_SAVE
542static int conexant_suspend(struct hda_codec *codec, pm_message_t state)
543{
544 snd_hda_shutup_pins(codec);
545 return 0;
546}
547#endif
548
Tobin Davisc9b443d2006-11-14 12:13:39 +0100549static struct hda_codec_ops conexant_patch_ops = {
550 .build_controls = conexant_build_controls,
551 .build_pcms = conexant_build_pcms,
552 .init = conexant_init,
553 .free = conexant_free,
Takashi Iwai697c3732010-07-30 11:28:02 +0200554#ifdef CONFIG_SND_HDA_POWER_SAVE
555 .suspend = conexant_suspend,
556#endif
557 .reboot_notify = snd_hda_shutup_pins,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100558};
559
Takashi Iwai3507e2a2010-07-08 18:39:00 +0200560#ifdef CONFIG_SND_HDA_INPUT_BEEP
561#define set_beep_amp(spec, nid, idx, dir) \
562 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir))
563#else
564#define set_beep_amp(spec, nid, idx, dir) /* NOP */
565#endif
566
Tobin Davisc9b443d2006-11-14 12:13:39 +0100567/*
568 * EAPD control
569 * the private value = nid | (invert << 8)
570 */
571
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200572#define cxt_eapd_info snd_ctl_boolean_mono_info
Tobin Davisc9b443d2006-11-14 12:13:39 +0100573
Tobin Davis82f30042007-02-13 12:45:44 +0100574static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100575 struct snd_ctl_elem_value *ucontrol)
576{
577 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
578 struct conexant_spec *spec = codec->spec;
579 int invert = (kcontrol->private_value >> 8) & 1;
580 if (invert)
581 ucontrol->value.integer.value[0] = !spec->cur_eapd;
582 else
583 ucontrol->value.integer.value[0] = spec->cur_eapd;
584 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100585
Tobin Davisc9b443d2006-11-14 12:13:39 +0100586}
587
Tobin Davis82f30042007-02-13 12:45:44 +0100588static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100589 struct snd_ctl_elem_value *ucontrol)
590{
591 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
592 struct conexant_spec *spec = codec->spec;
593 int invert = (kcontrol->private_value >> 8) & 1;
594 hda_nid_t nid = kcontrol->private_value & 0xff;
595 unsigned int eapd;
Tobin Davis82f30042007-02-13 12:45:44 +0100596
Takashi Iwai68ea7b22007-11-15 15:54:38 +0100597 eapd = !!ucontrol->value.integer.value[0];
Tobin Davisc9b443d2006-11-14 12:13:39 +0100598 if (invert)
599 eapd = !eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200600 if (eapd == spec->cur_eapd)
Tobin Davisc9b443d2006-11-14 12:13:39 +0100601 return 0;
Tobin Davis82f30042007-02-13 12:45:44 +0100602
Tobin Davisc9b443d2006-11-14 12:13:39 +0100603 spec->cur_eapd = eapd;
Takashi Iwai82beb8f2007-08-10 17:09:26 +0200604 snd_hda_codec_write_cache(codec, nid,
605 0, AC_VERB_SET_EAPD_BTLENABLE,
606 eapd ? 0x02 : 0x00);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100607 return 1;
608}
609
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100610/* controls for test mode */
611#ifdef CONFIG_SND_DEBUG
612
Tobin Davis82f30042007-02-13 12:45:44 +0100613#define CXT_EAPD_SWITCH(xname, nid, mask) \
614 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
615 .info = cxt_eapd_info, \
616 .get = cxt_eapd_get, \
617 .put = cxt_eapd_put, \
618 .private_value = nid | (mask<<16) }
619
620
621
Tobin Davisc9b443d2006-11-14 12:13:39 +0100622static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
623 struct snd_ctl_elem_info *uinfo)
624{
625 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
626 struct conexant_spec *spec = codec->spec;
627 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
628 spec->num_channel_mode);
629}
630
631static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
632 struct snd_ctl_elem_value *ucontrol)
633{
634 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
635 struct conexant_spec *spec = codec->spec;
636 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
637 spec->num_channel_mode,
638 spec->multiout.max_channels);
639}
640
641static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
642 struct snd_ctl_elem_value *ucontrol)
643{
644 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
645 struct conexant_spec *spec = codec->spec;
646 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
647 spec->num_channel_mode,
648 &spec->multiout.max_channels);
649 if (err >= 0 && spec->need_dac_fix)
650 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
651 return err;
652}
653
654#define CXT_PIN_MODE(xname, nid, dir) \
655 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
656 .info = conexant_ch_mode_info, \
657 .get = conexant_ch_mode_get, \
658 .put = conexant_ch_mode_put, \
659 .private_value = nid | (dir<<16) }
660
Takashi Iwai86d72bd2006-11-28 11:33:10 +0100661#endif /* CONFIG_SND_DEBUG */
662
Tobin Davisc9b443d2006-11-14 12:13:39 +0100663/* Conexant 5045 specific */
664
665static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
666static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
667static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
Takashi Iwaicbef9782008-02-22 18:36:46 +0100668#define CXT5045_SPDIF_OUT 0x18
Tobin Davisc9b443d2006-11-14 12:13:39 +0100669
Tobin Davis5cd57522006-11-20 17:42:09 +0100670static struct hda_channel_mode cxt5045_modes[1] = {
671 { 2, NULL },
672};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100673
674static struct hda_input_mux cxt5045_capture_source = {
675 .num_items = 2,
676 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +0100677 { "IntMic", 0x1 },
Jiang zhef4beee92008-01-17 11:19:26 +0100678 { "ExtMic", 0x2 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100679 }
680};
681
Jiang Zhe5218c892008-01-17 11:18:41 +0100682static struct hda_input_mux cxt5045_capture_source_benq = {
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200683 .num_items = 5,
Jiang Zhe5218c892008-01-17 11:18:41 +0100684 .items = {
685 { "IntMic", 0x1 },
686 { "ExtMic", 0x2 },
687 { "LineIn", 0x3 },
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200688 { "CD", 0x4 },
689 { "Mixer", 0x0 },
Jiang Zhe5218c892008-01-17 11:18:41 +0100690 }
691};
692
Jiang zhe2de3c232008-03-06 11:09:09 +0100693static struct hda_input_mux cxt5045_capture_source_hp530 = {
694 .num_items = 2,
695 .items = {
696 { "ExtMic", 0x1 },
697 { "IntMic", 0x2 },
698 }
699};
700
Tobin Davisc9b443d2006-11-14 12:13:39 +0100701/* turn on/off EAPD (+ mute HP) as a master switch */
702static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
703 struct snd_ctl_elem_value *ucontrol)
704{
705 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
706 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +0100707 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100708
Tobin Davis82f30042007-02-13 12:45:44 +0100709 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +0100710 return 0;
711
Tobin Davis82f30042007-02-13 12:45:44 +0100712 /* toggle internal speakers mute depending of presence of
713 * the headphone jack
714 */
Takashi Iwai47fd8302007-08-10 17:11:07 +0200715 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
716 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
717 HDA_AMP_MUTE, bits);
Tobin Davis7f296732007-03-12 11:39:01 +0100718
Takashi Iwai47fd8302007-08-10 17:11:07 +0200719 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
720 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
721 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100722 return 1;
723}
724
725/* bind volumes of both NID 0x10 and 0x11 */
Takashi Iwaicca3b372007-08-10 17:12:15 +0200726static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
727 .ops = &snd_hda_bind_vol,
728 .values = {
729 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
730 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
731 0
732 },
733};
Tobin Davisc9b443d2006-11-14 12:13:39 +0100734
Tobin Davis7f296732007-03-12 11:39:01 +0100735/* toggle input of built-in and mic jack appropriately */
736static void cxt5045_hp_automic(struct hda_codec *codec)
737{
738 static struct hda_verb mic_jack_on[] = {
739 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
740 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
741 {}
742 };
743 static struct hda_verb mic_jack_off[] = {
744 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
745 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
746 {}
747 };
748 unsigned int present;
749
Takashi Iwaid56757a2009-11-18 08:00:14 +0100750 present = snd_hda_jack_detect(codec, 0x12);
Tobin Davis7f296732007-03-12 11:39:01 +0100751 if (present)
752 snd_hda_sequence_write(codec, mic_jack_on);
753 else
754 snd_hda_sequence_write(codec, mic_jack_off);
755}
756
Tobin Davisc9b443d2006-11-14 12:13:39 +0100757
758/* mute internal speaker if HP is plugged */
759static void cxt5045_hp_automute(struct hda_codec *codec)
760{
Tobin Davis82f30042007-02-13 12:45:44 +0100761 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +0100762 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +0100763
Takashi Iwaid56757a2009-11-18 08:00:14 +0100764 spec->hp_present = snd_hda_jack_detect(codec, 0x11);
Tobin Davisdd87da12007-02-26 16:07:42 +0100765
Takashi Iwai47fd8302007-08-10 17:11:07 +0200766 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
767 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
768 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +0100769}
770
771/* unsolicited event for HP jack sensing */
772static void cxt5045_hp_unsol_event(struct hda_codec *codec,
773 unsigned int res)
774{
775 res >>= 26;
776 switch (res) {
777 case CONEXANT_HP_EVENT:
778 cxt5045_hp_automute(codec);
779 break;
Tobin Davis7f296732007-03-12 11:39:01 +0100780 case CONEXANT_MIC_EVENT:
781 cxt5045_hp_automic(codec);
782 break;
783
Tobin Davisc9b443d2006-11-14 12:13:39 +0100784 }
785}
786
787static struct snd_kcontrol_new cxt5045_mixers[] = {
David Henningsson28c4edb2010-12-20 14:24:29 +0100788 HDA_CODEC_VOLUME("Internal Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
789 HDA_CODEC_MUTE("Internal Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +0100790 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
791 HDA_CODEC_MUTE("Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
Takashi Iwaic8229c32007-10-19 08:06:21 +0200792 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
793 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
David Henningsson28c4edb2010-12-20 14:24:29 +0100794 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
795 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +0100796 HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
797 HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
Takashi Iwaicca3b372007-08-10 17:12:15 +0200798 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100799 {
800 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
801 .name = "Master Playback Switch",
Tobin Davis82f30042007-02-13 12:45:44 +0100802 .info = cxt_eapd_info,
803 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100804 .put = cxt5045_hp_master_sw_put,
Tobin Davis82f30042007-02-13 12:45:44 +0100805 .private_value = 0x10,
Tobin Davisc9b443d2006-11-14 12:13:39 +0100806 },
807
808 {}
809};
810
Jiang Zhe5218c892008-01-17 11:18:41 +0100811static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200812 HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT),
813 HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT),
814 HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT),
815 HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT),
816
Jiang Zhe5218c892008-01-17 11:18:41 +0100817 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
818 HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
819 HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
820 HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
821
Lukasz Marcinowski22e14132009-09-22 21:42:40 +0200822 HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT),
823 HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT),
824
Jiang Zhe5218c892008-01-17 11:18:41 +0100825 {}
826};
827
Jiang zhe2de3c232008-03-06 11:09:09 +0100828static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
David Henningsson28c4edb2010-12-20 14:24:29 +0100829 HDA_CODEC_VOLUME("Internal Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
830 HDA_CODEC_MUTE("Internal Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +0100831 HDA_CODEC_VOLUME("Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
832 HDA_CODEC_MUTE("Mic Capture Switch", 0x1a, 0x01, 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
Tobin Davisc9b443d2006-11-14 12:13:39 +0100852static struct hda_verb cxt5045_init_verbs[] = {
853 /* 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
Jiang Zhe5218c892008-01-17 11:18:41 +0100878static 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
904static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
905 /* 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
910static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
911 /* 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 */
920static struct hda_input_mux cxt5045_test_capture_source = {
921 .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
931static struct snd_kcontrol_new cxt5045_test_mixer[] = {
932
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),
Tobin Davis7f296732007-03-12 11:39:01 +0100936 HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
937 HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
938 HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
939 HDA_CODEC_MUTE("Node 12 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
Tobin Davis7f296732007-03-12 11:39:01 +0100950 HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
951 HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
952 HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
953 HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
954 HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
955 HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
956 HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
957 HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
958 HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
959 HDA_CODEC_MUTE("Mixer-5 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 */
968 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
969 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
970 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
971 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
972 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
973 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
974 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
975 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
976 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
977 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +0100978 { } /* end */
979};
980
981static struct hda_verb cxt5045_test_init_verbs[] = {
Tobin Davis7f296732007-03-12 11:39:01 +0100982 /* Set connections */
983 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
984 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
985 { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davisc9b443d2006-11-14 12:13:39 +0100986 /* Enable retasking pins as output, initially without power amp */
987 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davis7f296732007-03-12 11:39:01 +0100988 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100989
990 /* Disable digital (SPDIF) pins initially, but users can enable
991 * them via a mixer switch. In the case of SPDIF-out, this initverb
992 * payload also sets the generation to 0, output to be in "consumer"
993 * PCM format, copyright asserted, no pre-emphasis and no validity
994 * control.
995 */
Takashi Iwaicbef9782008-02-22 18:36:46 +0100996 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
997 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
Tobin Davisc9b443d2006-11-14 12:13:39 +0100998
999 /* Start with output sum widgets muted and their output gains at min */
1000 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1001 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1002
1003 /* Unmute retasking pin widget output buffers since the default
1004 * state appears to be output. As the pin mode is changed by the
1005 * user the pin mode control will take care of enabling the pin's
1006 * input/output buffers as needed.
1007 */
1008 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1009 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1010
1011 /* Mute capture amp left and right */
1012 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1013
1014 /* Set ADC connection select to match default mixer setting (mic1
1015 * pin)
1016 */
1017 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
Tobin Davis7f296732007-03-12 11:39:01 +01001018 {0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001019
1020 /* Mute all inputs to mixer widget (even unconnected ones) */
1021 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
1022 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1023 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1024 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1025 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1026
1027 { }
1028};
1029#endif
1030
1031
1032/* initialize jack-sensing, too */
1033static int cxt5045_init(struct hda_codec *codec)
1034{
1035 conexant_init(codec);
1036 cxt5045_hp_automute(codec);
1037 return 0;
1038}
1039
1040
1041enum {
Marc Boucher15908c32008-01-22 15:15:59 +01001042 CXT5045_LAPTOP_HPSENSE,
1043 CXT5045_LAPTOP_MICSENSE,
1044 CXT5045_LAPTOP_HPMICSENSE,
Jiang Zhe5218c892008-01-17 11:18:41 +01001045 CXT5045_BENQ,
Jiang zhe2de3c232008-03-06 11:09:09 +01001046 CXT5045_LAPTOP_HP530,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001047#ifdef CONFIG_SND_DEBUG
1048 CXT5045_TEST,
1049#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001050 CXT5045_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001051};
1052
Takashi Iwaiea734962011-01-17 11:29:34 +01001053static const char * const cxt5045_models[CXT5045_MODELS] = {
Marc Boucher15908c32008-01-22 15:15:59 +01001054 [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense",
1055 [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense",
1056 [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense",
1057 [CXT5045_BENQ] = "benq",
Jiang zhe2de3c232008-03-06 11:09:09 +01001058 [CXT5045_LAPTOP_HP530] = "laptop-hp530",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001059#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001060 [CXT5045_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001061#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001062};
1063
1064static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
Jiang zhe2de3c232008-03-06 11:09:09 +01001065 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001066 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1067 CXT5045_LAPTOP_HPSENSE),
Takashi Iwai6a9dccd2008-07-01 14:52:05 +02001068 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
Jiang Zhe5218c892008-01-17 11:18:41 +01001069 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
Marc Boucher15908c32008-01-22 15:15:59 +01001070 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
1071 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
Takashi Iwai9e464152008-07-12 12:05:25 +02001072 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
1073 CXT5045_LAPTOP_HPMICSENSE),
Marc Boucher15908c32008-01-22 15:15:59 +01001074 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1075 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1076 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001077 SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1078 CXT5045_LAPTOP_HPMICSENSE),
Marc Boucher15908c32008-01-22 15:15:59 +01001079 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001080 {}
1081};
1082
1083static int patch_cxt5045(struct hda_codec *codec)
1084{
1085 struct conexant_spec *spec;
1086 int board_config;
1087
1088 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1089 if (!spec)
1090 return -ENOMEM;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001091 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001092 codec->pin_amp_workaround = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001093
1094 spec->multiout.max_channels = 2;
1095 spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1096 spec->multiout.dac_nids = cxt5045_dac_nids;
1097 spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1098 spec->num_adc_nids = 1;
1099 spec->adc_nids = cxt5045_adc_nids;
1100 spec->capsrc_nids = cxt5045_capsrc_nids;
1101 spec->input_mux = &cxt5045_capture_source;
1102 spec->num_mixers = 1;
1103 spec->mixers[0] = cxt5045_mixers;
1104 spec->num_init_verbs = 1;
1105 spec->init_verbs[0] = cxt5045_init_verbs;
1106 spec->spdif_route = 0;
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001107 spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes);
1108 spec->channel_mode = cxt5045_modes;
Tobin Davis5cd57522006-11-20 17:42:09 +01001109
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001110 set_beep_amp(spec, 0x16, 0, 1);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001111
1112 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001113
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001114 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1115 cxt5045_models,
1116 cxt5045_cfg_tbl);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001117 switch (board_config) {
Marc Boucher15908c32008-01-22 15:15:59 +01001118 case CXT5045_LAPTOP_HPSENSE:
Tobin Davis7f296732007-03-12 11:39:01 +01001119 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001120 spec->input_mux = &cxt5045_capture_source;
1121 spec->num_init_verbs = 2;
Tobin Davis7f296732007-03-12 11:39:01 +01001122 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1123 spec->mixers[0] = cxt5045_mixers;
1124 codec->patch_ops.init = cxt5045_init;
1125 break;
Marc Boucher15908c32008-01-22 15:15:59 +01001126 case CXT5045_LAPTOP_MICSENSE:
Takashi Iwai86376df2008-07-12 12:04:05 +02001127 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
Tobin Davis7f296732007-03-12 11:39:01 +01001128 spec->input_mux = &cxt5045_capture_source;
1129 spec->num_init_verbs = 2;
1130 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001131 spec->mixers[0] = cxt5045_mixers;
1132 codec->patch_ops.init = cxt5045_init;
1133 break;
Marc Boucher15908c32008-01-22 15:15:59 +01001134 default:
1135 case CXT5045_LAPTOP_HPMICSENSE:
1136 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1137 spec->input_mux = &cxt5045_capture_source;
1138 spec->num_init_verbs = 3;
1139 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1140 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
1141 spec->mixers[0] = cxt5045_mixers;
1142 codec->patch_ops.init = cxt5045_init;
1143 break;
Jiang Zhe5218c892008-01-17 11:18:41 +01001144 case CXT5045_BENQ:
1145 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1146 spec->input_mux = &cxt5045_capture_source_benq;
1147 spec->num_init_verbs = 1;
1148 spec->init_verbs[0] = cxt5045_benq_init_verbs;
1149 spec->mixers[0] = cxt5045_mixers;
1150 spec->mixers[1] = cxt5045_benq_mixers;
1151 spec->num_mixers = 2;
1152 codec->patch_ops.init = cxt5045_init;
1153 break;
Jiang zhe2de3c232008-03-06 11:09:09 +01001154 case CXT5045_LAPTOP_HP530:
1155 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1156 spec->input_mux = &cxt5045_capture_source_hp530;
1157 spec->num_init_verbs = 2;
1158 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1159 spec->mixers[0] = cxt5045_mixers_hp530;
1160 codec->patch_ops.init = cxt5045_init;
1161 break;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001162#ifdef CONFIG_SND_DEBUG
1163 case CXT5045_TEST:
1164 spec->input_mux = &cxt5045_test_capture_source;
1165 spec->mixers[0] = cxt5045_test_mixer;
1166 spec->init_verbs[0] = cxt5045_test_init_verbs;
Marc Boucher15908c32008-01-22 15:15:59 +01001167 break;
1168
Tobin Davisc9b443d2006-11-14 12:13:39 +01001169#endif
1170 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001171
Takashi Iwai031005f2008-06-26 14:49:58 +02001172 switch (codec->subsystem_id >> 16) {
1173 case 0x103c:
Daniel T Chen8f0f5ff2010-04-28 18:00:11 -04001174 case 0x1631:
Daniel T Chen0b587fc2009-11-25 18:27:20 -05001175 case 0x1734:
Daniel T Chen0ebf9e32010-05-10 21:50:04 +02001176 case 0x17aa:
1177 /* HP, Packard Bell, Fujitsu-Siemens & Lenovo laptops have
1178 * really bad sound over 0dB on NID 0x17. Fix max PCM level to
1179 * 0 dB (originally it has 0x2b steps with 0dB offset 0x14)
Takashi Iwai031005f2008-06-26 14:49:58 +02001180 */
1181 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1182 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1183 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1184 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1185 (1 << AC_AMPCAP_MUTE_SHIFT));
1186 break;
1187 }
Takashi Iwai48ecb7e2007-12-17 14:32:49 +01001188
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001189 if (spec->beep_amp)
1190 snd_hda_attach_beep_device(codec, spec->beep_amp);
1191
Tobin Davisc9b443d2006-11-14 12:13:39 +01001192 return 0;
1193}
1194
1195
1196/* Conexant 5047 specific */
Tobin Davis82f30042007-02-13 12:45:44 +01001197#define CXT5047_SPDIF_OUT 0x11
Tobin Davisc9b443d2006-11-14 12:13:39 +01001198
Takashi Iwai5b3a7442009-03-10 15:10:55 +01001199static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001200static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1201static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
Tobin Davisc9b443d2006-11-14 12:13:39 +01001202
Tobin Davis5cd57522006-11-20 17:42:09 +01001203static struct hda_channel_mode cxt5047_modes[1] = {
1204 { 2, NULL },
1205};
Tobin Davisc9b443d2006-11-14 12:13:39 +01001206
Tobin Davis82f30042007-02-13 12:45:44 +01001207static struct hda_input_mux cxt5047_toshiba_capture_source = {
1208 .num_items = 2,
1209 .items = {
1210 { "ExtMic", 0x2 },
1211 { "Line-In", 0x1 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001212 }
1213};
1214
1215/* turn on/off EAPD (+ mute HP) as a master switch */
1216static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1217 struct snd_ctl_elem_value *ucontrol)
1218{
1219 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1220 struct conexant_spec *spec = codec->spec;
Tobin Davis82f30042007-02-13 12:45:44 +01001221 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001222
Tobin Davis82f30042007-02-13 12:45:44 +01001223 if (!cxt_eapd_put(kcontrol, ucontrol))
Tobin Davisc9b443d2006-11-14 12:13:39 +01001224 return 0;
1225
Tobin Davis82f30042007-02-13 12:45:44 +01001226 /* toggle internal speakers mute depending of presence of
1227 * the headphone jack
1228 */
Takashi Iwai47fd8302007-08-10 17:11:07 +02001229 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001230 /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1231 * pin widgets unlike other codecs. In this case, we need to
1232 * set index 0x01 for the volume from the mixer amp 0x19.
1233 */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001234 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001235 HDA_AMP_MUTE, bits);
1236 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1237 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1238 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001239 return 1;
1240}
1241
Tobin Davisc9b443d2006-11-14 12:13:39 +01001242/* mute internal speaker if HP is plugged */
1243static void cxt5047_hp_automute(struct hda_codec *codec)
1244{
Tobin Davis82f30042007-02-13 12:45:44 +01001245 struct conexant_spec *spec = codec->spec;
Tobin Davisdd87da12007-02-26 16:07:42 +01001246 unsigned int bits;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001247
Takashi Iwaid56757a2009-11-18 08:00:14 +01001248 spec->hp_present = snd_hda_jack_detect(codec, 0x13);
Tobin Davisdd87da12007-02-26 16:07:42 +01001249
Takashi Iwai47fd8302007-08-10 17:11:07 +02001250 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001251 /* See the note in cxt5047_hp_master_sw_put */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001252 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
Takashi Iwai47fd8302007-08-10 17:11:07 +02001253 HDA_AMP_MUTE, bits);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001254}
1255
1256/* toggle input of built-in and mic jack appropriately */
1257static void cxt5047_hp_automic(struct hda_codec *codec)
1258{
1259 static struct hda_verb mic_jack_on[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001260 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1261 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001262 {}
1263 };
1264 static struct hda_verb mic_jack_off[] = {
Marc Boucher9f113e02008-01-22 15:18:08 +01001265 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1266 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001267 {}
1268 };
1269 unsigned int present;
1270
Takashi Iwaid56757a2009-11-18 08:00:14 +01001271 present = snd_hda_jack_detect(codec, 0x15);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001272 if (present)
1273 snd_hda_sequence_write(codec, mic_jack_on);
1274 else
1275 snd_hda_sequence_write(codec, mic_jack_off);
1276}
1277
1278/* unsolicited event for HP jack sensing */
1279static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1280 unsigned int res)
1281{
Marc Boucher9f113e02008-01-22 15:18:08 +01001282 switch (res >> 26) {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001283 case CONEXANT_HP_EVENT:
1284 cxt5047_hp_automute(codec);
1285 break;
1286 case CONEXANT_MIC_EVENT:
1287 cxt5047_hp_automic(codec);
1288 break;
1289 }
1290}
1291
Takashi Iwaidf481e42009-03-10 15:35:35 +01001292static struct snd_kcontrol_new cxt5047_base_mixers[] = {
1293 HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1294 HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
David Henningsson5f99f862011-01-04 15:24:24 +01001295 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001296 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1297 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1298 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1299 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001300 {
1301 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1302 .name = "Master Playback Switch",
1303 .info = cxt_eapd_info,
1304 .get = cxt_eapd_get,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001305 .put = cxt5047_hp_master_sw_put,
1306 .private_value = 0x13,
1307 },
1308
1309 {}
1310};
1311
Takashi Iwaidf481e42009-03-10 15:35:35 +01001312static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
Takashi Iwai3b7523f2009-03-12 16:45:01 +01001313 /* See the note in cxt5047_hp_master_sw_put */
Gregorio Guidi5d75bc52009-03-12 16:41:51 +01001314 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
Takashi Iwaidf481e42009-03-10 15:35:35 +01001315 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1316 {}
1317};
1318
1319static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001320 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001321 { } /* end */
1322};
1323
1324static struct hda_verb cxt5047_init_verbs[] = {
1325 /* Line in, Mic, Built-in Mic */
1326 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1327 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1328 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
Tobin Davis7f296732007-03-12 11:39:01 +01001329 /* HP, Speaker */
Tobin Davisb7589ce2007-04-24 17:56:55 +02001330 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
Takashi Iwai5b3a7442009-03-10 15:10:55 +01001331 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
1332 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
Tobin Davis7f296732007-03-12 11:39:01 +01001333 /* Record selector: Mic */
1334 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1335 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1336 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1337 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001338 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1339 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1340 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1341 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001342 /* SPDIF route: PCM */
1343 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
Tobin Davis82f30042007-02-13 12:45:44 +01001344 /* Enable unsolicited events */
1345 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1346 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
Tobin Davisc9b443d2006-11-14 12:13:39 +01001347 { } /* end */
1348};
1349
1350/* configuration for Toshiba Laptops */
1351static struct hda_verb cxt5047_toshiba_init_verbs[] = {
Takashi Iwai3b628862009-03-10 14:53:54 +01001352 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001353 {}
1354};
1355
1356/* Test configuration for debugging, modelled after the ALC260 test
1357 * configuration.
1358 */
1359#ifdef CONFIG_SND_DEBUG
1360static struct hda_input_mux cxt5047_test_capture_source = {
Tobin Davis82f30042007-02-13 12:45:44 +01001361 .num_items = 4,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001362 .items = {
Tobin Davis82f30042007-02-13 12:45:44 +01001363 { "LINE1 pin", 0x0 },
1364 { "MIC1 pin", 0x1 },
1365 { "MIC2 pin", 0x2 },
1366 { "CD pin", 0x3 },
Tobin Davisc9b443d2006-11-14 12:13:39 +01001367 },
1368};
1369
1370static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1371
1372 /* Output only controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001373 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1374 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1375 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1376 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001377 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1378 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1379 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1380 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
Tobin Davis82f30042007-02-13 12:45:44 +01001381 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1382 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1383 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1384 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001385
1386 /* Modes for retasking pin widgets */
1387 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1388 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1389
Tobin Davis82f30042007-02-13 12:45:44 +01001390 /* EAPD Switch Control */
1391 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1392
Tobin Davisc9b443d2006-11-14 12:13:39 +01001393 /* Loopback mixer controls */
Tobin Davis82f30042007-02-13 12:45:44 +01001394 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1395 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1396 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1397 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1398 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1399 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1400 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1401 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001402
Tobin Davis82f30042007-02-13 12:45:44 +01001403 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1404 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1405 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1406 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1407 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1408 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1409 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1410 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001411 {
1412 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1413 .name = "Input Source",
1414 .info = conexant_mux_enum_info,
1415 .get = conexant_mux_enum_get,
1416 .put = conexant_mux_enum_put,
1417 },
Takashi Iwai854206b2009-11-30 18:22:04 +01001418 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
Marc Boucher9f113e02008-01-22 15:18:08 +01001419
Tobin Davisc9b443d2006-11-14 12:13:39 +01001420 { } /* end */
1421};
1422
1423static struct hda_verb cxt5047_test_init_verbs[] = {
Tobin Davisc9b443d2006-11-14 12:13:39 +01001424 /* Enable retasking pins as output, initially without power amp */
1425 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1426 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1427 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1428
1429 /* Disable digital (SPDIF) pins initially, but users can enable
1430 * them via a mixer switch. In the case of SPDIF-out, this initverb
1431 * payload also sets the generation to 0, output to be in "consumer"
1432 * PCM format, copyright asserted, no pre-emphasis and no validity
1433 * control.
1434 */
1435 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1436
1437 /* Ensure mic1, mic2, line1 pin widgets take input from the
1438 * OUT1 sum bus when acting as an output.
1439 */
1440 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1441 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1442
1443 /* Start with output sum widgets muted and their output gains at min */
1444 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1445 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1446
1447 /* Unmute retasking pin widget output buffers since the default
1448 * state appears to be output. As the pin mode is changed by the
1449 * user the pin mode control will take care of enabling the pin's
1450 * input/output buffers as needed.
1451 */
1452 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1453 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1454 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1455
1456 /* Mute capture amp left and right */
1457 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1458
1459 /* Set ADC connection select to match default mixer setting (mic1
1460 * pin)
1461 */
1462 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1463
1464 /* Mute all inputs to mixer widget (even unconnected ones) */
1465 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1466 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1467 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1468 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1469 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1470 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1471 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1472 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1473
1474 { }
1475};
1476#endif
1477
1478
1479/* initialize jack-sensing, too */
1480static int cxt5047_hp_init(struct hda_codec *codec)
1481{
1482 conexant_init(codec);
1483 cxt5047_hp_automute(codec);
Tobin Davisc9b443d2006-11-14 12:13:39 +01001484 return 0;
1485}
1486
1487
1488enum {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001489 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1490 CXT5047_LAPTOP_HP, /* Some HP laptops */
1491 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
Tobin Davisc9b443d2006-11-14 12:13:39 +01001492#ifdef CONFIG_SND_DEBUG
1493 CXT5047_TEST,
1494#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001495 CXT5047_MODELS
Tobin Davisc9b443d2006-11-14 12:13:39 +01001496};
1497
Takashi Iwaiea734962011-01-17 11:29:34 +01001498static const char * const cxt5047_models[CXT5047_MODELS] = {
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001499 [CXT5047_LAPTOP] = "laptop",
1500 [CXT5047_LAPTOP_HP] = "laptop-hp",
1501 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001502#ifdef CONFIG_SND_DEBUG
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001503 [CXT5047_TEST] = "test",
Tobin Davisc9b443d2006-11-14 12:13:39 +01001504#endif
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001505};
1506
1507static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
Takashi Iwaiac3e3742007-12-17 17:14:18 +01001508 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
Takashi Iwaidea0a502009-02-09 17:14:52 +01001509 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1510 CXT5047_LAPTOP),
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001511 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
Tobin Davisc9b443d2006-11-14 12:13:39 +01001512 {}
1513};
1514
1515static int patch_cxt5047(struct hda_codec *codec)
1516{
1517 struct conexant_spec *spec;
1518 int board_config;
1519
1520 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1521 if (!spec)
1522 return -ENOMEM;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001523 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001524 codec->pin_amp_workaround = 1;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001525
1526 spec->multiout.max_channels = 2;
1527 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1528 spec->multiout.dac_nids = cxt5047_dac_nids;
1529 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1530 spec->num_adc_nids = 1;
1531 spec->adc_nids = cxt5047_adc_nids;
1532 spec->capsrc_nids = cxt5047_capsrc_nids;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001533 spec->num_mixers = 1;
Takashi Iwaidf481e42009-03-10 15:35:35 +01001534 spec->mixers[0] = cxt5047_base_mixers;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001535 spec->num_init_verbs = 1;
1536 spec->init_verbs[0] = cxt5047_init_verbs;
1537 spec->spdif_route = 0;
Tobin Davis5cd57522006-11-20 17:42:09 +01001538 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1539 spec->channel_mode = cxt5047_modes,
Tobin Davisc9b443d2006-11-14 12:13:39 +01001540
1541 codec->patch_ops = conexant_patch_ops;
Tobin Davisc9b443d2006-11-14 12:13:39 +01001542
Takashi Iwaif5fcc132006-11-24 17:07:44 +01001543 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1544 cxt5047_models,
1545 cxt5047_cfg_tbl);
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 */
1594static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1595static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
Takashi Iwai461e2c72008-01-25 11:35:17 +01001596
1597static struct hda_channel_mode cxt5051_modes[1] = {
1598 { 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;
1607 snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1608 pinctl);
1609 /* speaker pin */
Takashi Iwai461e2c72008-01-25 11:35:17 +01001610 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1611 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1612 pinctl);
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001613 /* on ideapad there is an aditional speaker (subwoofer) to mute */
1614 if (spec->ideapad)
1615 snd_hda_codec_write(codec, 0x1b, 0,
1616 AC_VERB_SET_PIN_WIDGET_CONTROL,
1617 pinctl);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001618}
1619
1620/* turn on/off EAPD (+ mute HP) as a master switch */
1621static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1622 struct snd_ctl_elem_value *ucontrol)
1623{
1624 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1625
1626 if (!cxt_eapd_put(kcontrol, ucontrol))
1627 return 0;
1628 cxt5051_update_speaker(codec);
1629 return 1;
1630}
1631
1632/* toggle input of built-in and mic jack appropriately */
1633static void cxt5051_portb_automic(struct hda_codec *codec)
1634{
Takashi Iwai79d7d532009-03-04 09:03:50 +01001635 struct conexant_spec *spec = codec->spec;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001636 unsigned int present;
1637
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001638 if (!(spec->auto_mic & AUTO_MIC_PORTB))
Takashi Iwai79d7d532009-03-04 09:03:50 +01001639 return;
Takashi Iwaid56757a2009-11-18 08:00:14 +01001640 present = snd_hda_jack_detect(codec, 0x17);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001641 snd_hda_codec_write(codec, 0x14, 0,
1642 AC_VERB_SET_CONNECT_SEL,
1643 present ? 0x01 : 0x00);
1644}
1645
1646/* switch the current ADC according to the jack state */
1647static void cxt5051_portc_automic(struct hda_codec *codec)
1648{
1649 struct conexant_spec *spec = codec->spec;
1650 unsigned int present;
1651 hda_nid_t new_adc;
1652
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001653 if (!(spec->auto_mic & AUTO_MIC_PORTC))
Takashi Iwai79d7d532009-03-04 09:03:50 +01001654 return;
Takashi Iwaid56757a2009-11-18 08:00:14 +01001655 present = snd_hda_jack_detect(codec, 0x18);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001656 if (present)
1657 spec->cur_adc_idx = 1;
1658 else
1659 spec->cur_adc_idx = 0;
1660 new_adc = spec->adc_nids[spec->cur_adc_idx];
1661 if (spec->cur_adc && spec->cur_adc != new_adc) {
1662 /* stream is running, let's swap the current ADC */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001663 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001664 spec->cur_adc = new_adc;
1665 snd_hda_codec_setup_stream(codec, new_adc,
1666 spec->cur_adc_stream_tag, 0,
1667 spec->cur_adc_format);
1668 }
1669}
1670
1671/* mute internal speaker if HP is plugged */
1672static void cxt5051_hp_automute(struct hda_codec *codec)
1673{
1674 struct conexant_spec *spec = codec->spec;
1675
Takashi Iwaid56757a2009-11-18 08:00:14 +01001676 spec->hp_present = snd_hda_jack_detect(codec, 0x16);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001677 cxt5051_update_speaker(codec);
1678}
1679
1680/* unsolicited event for HP jack sensing */
1681static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1682 unsigned int res)
1683{
Ulrich Dangelacf26c02009-01-02 19:30:14 +01001684 int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001685 switch (res >> 26) {
1686 case CONEXANT_HP_EVENT:
1687 cxt5051_hp_automute(codec);
1688 break;
1689 case CXT5051_PORTB_EVENT:
1690 cxt5051_portb_automic(codec);
1691 break;
1692 case CXT5051_PORTC_EVENT:
1693 cxt5051_portc_automic(codec);
1694 break;
1695 }
Takashi Iwaicd372fb2011-03-03 14:40:14 +01001696 snd_hda_input_jack_report(codec, nid);
Takashi Iwai461e2c72008-01-25 11:35:17 +01001697}
1698
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001699static struct snd_kcontrol_new cxt5051_playback_mixers[] = {
Takashi Iwai461e2c72008-01-25 11:35:17 +01001700 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1701 {
1702 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1703 .name = "Master Playback Switch",
1704 .info = cxt_eapd_info,
1705 .get = cxt_eapd_get,
1706 .put = cxt5051_hp_master_sw_put,
1707 .private_value = 0x1a,
1708 },
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001709 {}
1710};
Takashi Iwai461e2c72008-01-25 11:35:17 +01001711
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001712static struct snd_kcontrol_new cxt5051_capture_mixers[] = {
1713 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1714 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +01001715 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT),
1716 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT),
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001717 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1718 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001719 {}
1720};
1721
1722static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1723 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1724 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +01001725 HDA_CODEC_VOLUME("Mic Volume", 0x15, 0x00, HDA_INPUT),
1726 HDA_CODEC_MUTE("Mic Switch", 0x15, 0x00, HDA_INPUT),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001727 {}
1728};
1729
Takashi Iwai79d7d532009-03-04 09:03:50 +01001730static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
Takashi Iwai4e4ac602010-01-23 22:29:54 +01001731 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x00, HDA_INPUT),
1732 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x00, HDA_INPUT),
Takashi Iwai79d7d532009-03-04 09:03:50 +01001733 {}
1734};
1735
Ken Proxcd9d95a2010-01-08 09:01:47 +01001736static struct snd_kcontrol_new cxt5051_f700_mixers[] = {
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001737 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x01, HDA_INPUT),
1738 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x01, HDA_INPUT),
Ken Proxcd9d95a2010-01-08 09:01:47 +01001739 {}
1740};
1741
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001742static struct snd_kcontrol_new cxt5051_toshiba_mixers[] = {
1743 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1744 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
David Henningsson8607f7c2010-12-20 14:43:54 +01001745 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT),
1746 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT),
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001747 {}
1748};
1749
Takashi Iwai461e2c72008-01-25 11:35:17 +01001750static struct hda_verb cxt5051_init_verbs[] = {
1751 /* Line in, Mic */
1752 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1753 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1754 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1755 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1756 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1757 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1758 /* SPK */
1759 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1760 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1761 /* HP, Amp */
1762 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1763 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1764 /* DAC1 */
1765 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
David Henningsson28c4edb2010-12-20 14:24:29 +01001766 /* Record selector: Internal mic */
Takashi Iwai461e2c72008-01-25 11:35:17 +01001767 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1768 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1769 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1770 /* SPDIF route: PCM */
Pierre-Louis Bossart1965c442010-05-06 16:37:03 -05001771 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
Takashi Iwai461e2c72008-01-25 11:35:17 +01001772 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1773 /* EAPD */
1774 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1775 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
Takashi Iwai461e2c72008-01-25 11:35:17 +01001776 { } /* end */
1777};
1778
Takashi Iwai79d7d532009-03-04 09:03:50 +01001779static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
1780 /* Line in, Mic */
1781 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1782 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1783 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1784 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1785 /* SPK */
1786 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1787 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1788 /* HP, Amp */
1789 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1790 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1791 /* DAC1 */
1792 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
David Henningsson28c4edb2010-12-20 14:24:29 +01001793 /* Record selector: Internal mic */
Takashi Iwai79d7d532009-03-04 09:03:50 +01001794 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1795 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1796 /* SPDIF route: PCM */
1797 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1798 /* EAPD */
1799 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1800 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
Takashi Iwai79d7d532009-03-04 09:03:50 +01001801 { } /* end */
1802};
1803
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001804static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
1805 /* Line in, Mic */
1806 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1807 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1808 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1809 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1810 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1811 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1812 /* SPK */
1813 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1814 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1815 /* HP, Amp */
1816 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1817 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1818 /* Docking HP */
1819 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1820 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00},
1821 /* DAC1 */
1822 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
David Henningsson28c4edb2010-12-20 14:24:29 +01001823 /* Record selector: Internal mic */
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001824 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1825 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1826 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1827 /* SPDIF route: PCM */
Pierre-Louis Bossart1965c442010-05-06 16:37:03 -05001828 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, /* needed for W500 Advanced Mini Dock 250410 */
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001829 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1830 /* EAPD */
1831 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1832 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001833 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1834 { } /* end */
1835};
1836
Ken Proxcd9d95a2010-01-08 09:01:47 +01001837static struct hda_verb cxt5051_f700_init_verbs[] = {
1838 /* Line in, Mic */
Takashi Iwai30ed7ed2010-01-28 17:11:45 +01001839 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
Ken Proxcd9d95a2010-01-08 09:01:47 +01001840 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1841 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1842 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1843 /* SPK */
1844 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1845 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1846 /* HP, Amp */
1847 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1848 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1849 /* DAC1 */
1850 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
David Henningsson28c4edb2010-12-20 14:24:29 +01001851 /* Record selector: Internal mic */
Ken Proxcd9d95a2010-01-08 09:01:47 +01001852 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1853 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1854 /* SPDIF route: PCM */
1855 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1856 /* EAPD */
1857 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1858 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
Ken Proxcd9d95a2010-01-08 09:01:47 +01001859 { } /* end */
1860};
1861
Takashi Iwai6953e552010-01-24 11:00:27 +01001862static void cxt5051_init_mic_port(struct hda_codec *codec, hda_nid_t nid,
1863 unsigned int event)
1864{
1865 snd_hda_codec_write(codec, nid, 0,
1866 AC_VERB_SET_UNSOLICITED_ENABLE,
1867 AC_USRSP_EN | event);
Takashi Iwaicd372fb2011-03-03 14:40:14 +01001868 snd_hda_input_jack_add(codec, nid, SND_JACK_MICROPHONE, NULL);
1869 snd_hda_input_jack_report(codec, nid);
Takashi Iwai6953e552010-01-24 11:00:27 +01001870}
1871
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001872static struct hda_verb cxt5051_ideapad_init_verbs[] = {
1873 /* Subwoofer */
1874 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1875 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1876 { } /* end */
1877};
1878
Takashi Iwai461e2c72008-01-25 11:35:17 +01001879/* initialize jack-sensing, too */
1880static int cxt5051_init(struct hda_codec *codec)
1881{
Takashi Iwai6953e552010-01-24 11:00:27 +01001882 struct conexant_spec *spec = codec->spec;
1883
Takashi Iwai461e2c72008-01-25 11:35:17 +01001884 conexant_init(codec);
Ulrich Dangelacf26c02009-01-02 19:30:14 +01001885 conexant_init_jacks(codec);
Takashi Iwai6953e552010-01-24 11:00:27 +01001886
1887 if (spec->auto_mic & AUTO_MIC_PORTB)
1888 cxt5051_init_mic_port(codec, 0x17, CXT5051_PORTB_EVENT);
1889 if (spec->auto_mic & AUTO_MIC_PORTC)
1890 cxt5051_init_mic_port(codec, 0x18, CXT5051_PORTC_EVENT);
1891
Takashi Iwai461e2c72008-01-25 11:35:17 +01001892 if (codec->patch_ops.unsol_event) {
1893 cxt5051_hp_automute(codec);
1894 cxt5051_portb_automic(codec);
1895 cxt5051_portc_automic(codec);
1896 }
1897 return 0;
1898}
1899
1900
1901enum {
1902 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1903 CXT5051_HP, /* no docking */
Takashi Iwai79d7d532009-03-04 09:03:50 +01001904 CXT5051_HP_DV6736, /* HP without mic switch */
Pierre-Louis Bossart1965c442010-05-06 16:37:03 -05001905 CXT5051_LENOVO_X200, /* Lenovo X200 laptop, also used for Advanced Mini Dock 250410 */
Ken Proxcd9d95a2010-01-08 09:01:47 +01001906 CXT5051_F700, /* HP Compaq Presario F700 */
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001907 CXT5051_TOSHIBA, /* Toshiba M300 & co */
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001908 CXT5051_IDEAPAD, /* Lenovo IdeaPad Y430 */
Takashi Iwai461e2c72008-01-25 11:35:17 +01001909 CXT5051_MODELS
1910};
1911
Takashi Iwaiea734962011-01-17 11:29:34 +01001912static const char *const cxt5051_models[CXT5051_MODELS] = {
Takashi Iwai461e2c72008-01-25 11:35:17 +01001913 [CXT5051_LAPTOP] = "laptop",
1914 [CXT5051_HP] = "hp",
Takashi Iwai79d7d532009-03-04 09:03:50 +01001915 [CXT5051_HP_DV6736] = "hp-dv6736",
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001916 [CXT5051_LENOVO_X200] = "lenovo-x200",
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001917 [CXT5051_F700] = "hp-700",
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001918 [CXT5051_TOSHIBA] = "toshiba",
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001919 [CXT5051_IDEAPAD] = "ideapad",
Takashi Iwai461e2c72008-01-25 11:35:17 +01001920};
1921
1922static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
Takashi Iwai79d7d532009-03-04 09:03:50 +01001923 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
Tony Vroon1812e672009-05-27 21:00:41 +01001924 SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
Takashi Iwai5f6c3de2010-01-23 22:19:29 +01001925 SND_PCI_QUIRK(0x103c, 0x30ea, "Compaq Presario F700", CXT5051_F700),
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001926 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba M30x", CXT5051_TOSHIBA),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001927 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1928 CXT5051_LAPTOP),
1929 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001930 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200),
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001931 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo IdeaPad", CXT5051_IDEAPAD),
Takashi Iwai461e2c72008-01-25 11:35:17 +01001932 {}
1933};
1934
1935static int patch_cxt5051(struct hda_codec *codec)
1936{
1937 struct conexant_spec *spec;
1938 int board_config;
1939
1940 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1941 if (!spec)
1942 return -ENOMEM;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001943 codec->spec = spec;
Takashi Iwai9421f952009-03-12 17:06:07 +01001944 codec->pin_amp_workaround = 1;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001945
1946 codec->patch_ops = conexant_patch_ops;
1947 codec->patch_ops.init = cxt5051_init;
1948
1949 spec->multiout.max_channels = 2;
1950 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1951 spec->multiout.dac_nids = cxt5051_dac_nids;
1952 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1953 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1954 spec->adc_nids = cxt5051_adc_nids;
Takashi Iwai2c7a3fb2010-01-24 10:47:02 +01001955 spec->num_mixers = 2;
1956 spec->mixers[0] = cxt5051_capture_mixers;
1957 spec->mixers[1] = cxt5051_playback_mixers;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001958 spec->num_init_verbs = 1;
1959 spec->init_verbs[0] = cxt5051_init_verbs;
1960 spec->spdif_route = 0;
1961 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1962 spec->channel_mode = cxt5051_modes;
1963 spec->cur_adc = 0;
1964 spec->cur_adc_idx = 0;
1965
Takashi Iwai3507e2a2010-07-08 18:39:00 +02001966 set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
1967
Takashi Iwai79d7d532009-03-04 09:03:50 +01001968 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1969
Takashi Iwai461e2c72008-01-25 11:35:17 +01001970 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1971 cxt5051_models,
1972 cxt5051_cfg_tbl);
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001973 spec->auto_mic = AUTO_MIC_PORTB | AUTO_MIC_PORTC;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001974 switch (board_config) {
1975 case CXT5051_HP:
Takashi Iwai461e2c72008-01-25 11:35:17 +01001976 spec->mixers[0] = cxt5051_hp_mixers;
1977 break;
Takashi Iwai79d7d532009-03-04 09:03:50 +01001978 case CXT5051_HP_DV6736:
1979 spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
1980 spec->mixers[0] = cxt5051_hp_dv6736_mixers;
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001981 spec->auto_mic = 0;
Takashi Iwai79d7d532009-03-04 09:03:50 +01001982 break;
Aristeu Sergio Rozanski Filho27e08982009-02-12 17:50:37 -05001983 case CXT5051_LENOVO_X200:
1984 spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs;
Jerone Young607bc3e2010-08-03 01:46:42 -05001985 /* Thinkpad X301 does not have S/PDIF wired and no ability
1986 to use a docking station. */
1987 if (codec->subsystem_id == 0x17aa211f)
1988 spec->multiout.dig_out_nid = 0;
Takashi Iwai461e2c72008-01-25 11:35:17 +01001989 break;
Ken Proxcd9d95a2010-01-08 09:01:47 +01001990 case CXT5051_F700:
1991 spec->init_verbs[0] = cxt5051_f700_init_verbs;
1992 spec->mixers[0] = cxt5051_f700_mixers;
Takashi Iwaifaddaa52010-01-23 22:31:36 +01001993 spec->auto_mic = 0;
1994 break;
1995 case CXT5051_TOSHIBA:
1996 spec->mixers[0] = cxt5051_toshiba_mixers;
1997 spec->auto_mic = AUTO_MIC_PORTB;
Ken Proxcd9d95a2010-01-08 09:01:47 +01001998 break;
Herton Ronaldo Krzesinskif7154de22010-06-17 14:15:06 -03001999 case CXT5051_IDEAPAD:
2000 spec->init_verbs[spec->num_init_verbs++] =
2001 cxt5051_ideapad_init_verbs;
2002 spec->ideapad = 1;
2003 break;
Takashi Iwai461e2c72008-01-25 11:35:17 +01002004 }
2005
Takashi Iwai3507e2a2010-07-08 18:39:00 +02002006 if (spec->beep_amp)
2007 snd_hda_attach_beep_device(codec, spec->beep_amp);
2008
Takashi Iwai461e2c72008-01-25 11:35:17 +01002009 return 0;
2010}
2011
Daniel Drake0fb67e92009-07-16 14:46:57 +01002012/* Conexant 5066 specific */
2013
2014static hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
2015static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
2016static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
Andy Robinsonf6a24912011-01-24 10:12:37 -05002017static hda_nid_t cxt5066_digout_pin_nids[2] = { 0x20, 0x22 };
Daniel Drake0fb67e92009-07-16 14:46:57 +01002018
Daniel Drakedbaccc02009-11-09 15:17:24 +00002019/* OLPC's microphone port is DC coupled for use with external sensors,
2020 * therefore we use a 50% mic bias in order to center the input signal with
2021 * the DC input range of the codec. */
2022#define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
2023
Daniel Drake0fb67e92009-07-16 14:46:57 +01002024static struct hda_channel_mode cxt5066_modes[1] = {
2025 { 2, NULL },
2026};
2027
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01002028#define HP_PRESENT_PORT_A (1 << 0)
2029#define HP_PRESENT_PORT_D (1 << 1)
2030#define hp_port_a_present(spec) ((spec)->hp_present & HP_PRESENT_PORT_A)
2031#define hp_port_d_present(spec) ((spec)->hp_present & HP_PRESENT_PORT_D)
2032
Daniel Drake0fb67e92009-07-16 14:46:57 +01002033static void cxt5066_update_speaker(struct hda_codec *codec)
2034{
2035 struct conexant_spec *spec = codec->spec;
2036 unsigned int pinctl;
2037
John Baboval3a253442010-12-02 11:21:31 -05002038 snd_printdd("CXT5066: update speaker, hp_present=%d, cur_eapd=%d\n",
2039 spec->hp_present, spec->cur_eapd);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002040
2041 /* Port A (HP) */
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01002042 pinctl = (hp_port_a_present(spec) && spec->cur_eapd) ? PIN_HP : 0;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002043 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2044 pinctl);
2045
2046 /* Port D (HP/LO) */
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01002047 pinctl = spec->cur_eapd ? spec->port_d_mode : 0;
2048 if (spec->dell_automute || spec->thinkpad) {
2049 /* Mute if Port A is connected */
2050 if (hp_port_a_present(spec))
John Baboval3a253442010-12-02 11:21:31 -05002051 pinctl = 0;
2052 } else {
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01002053 /* Thinkpad/Dell doesn't give pin-D status */
2054 if (!hp_port_d_present(spec))
2055 pinctl = 0;
John Baboval3a253442010-12-02 11:21:31 -05002056 }
Daniel Drake0fb67e92009-07-16 14:46:57 +01002057 snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2058 pinctl);
2059
2060 /* CLASS_D AMP */
2061 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
2062 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2063 pinctl);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002064}
2065
2066/* turn on/off EAPD (+ mute HP) as a master switch */
2067static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
2068 struct snd_ctl_elem_value *ucontrol)
2069{
2070 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2071
2072 if (!cxt_eapd_put(kcontrol, ucontrol))
2073 return 0;
2074
2075 cxt5066_update_speaker(codec);
2076 return 1;
2077}
2078
Daniel Drakec4cfe662010-01-07 13:47:04 +01002079static const struct hda_input_mux cxt5066_olpc_dc_bias = {
2080 .num_items = 3,
2081 .items = {
2082 { "Off", PIN_IN },
2083 { "50%", PIN_VREF50 },
2084 { "80%", PIN_VREF80 },
2085 },
2086};
2087
2088static int cxt5066_set_olpc_dc_bias(struct hda_codec *codec)
2089{
2090 struct conexant_spec *spec = codec->spec;
2091 /* Even though port F is the DC input, the bias is controlled on port B.
2092 * we also leave that port as an active input (but unselected) in DC mode
2093 * just in case that is necessary to make the bias setting take effect. */
2094 return snd_hda_codec_write_cache(codec, 0x1a, 0,
2095 AC_VERB_SET_PIN_WIDGET_CONTROL,
2096 cxt5066_olpc_dc_bias.items[spec->dc_input_bias].index);
2097}
2098
Daniel Drake75f89912010-01-07 13:46:25 +01002099/* OLPC defers mic widget control until when capture is started because the
2100 * microphone LED comes on as soon as these settings are put in place. if we
2101 * did this before recording, it would give the false indication that recording
2102 * is happening when it is not. */
2103static void cxt5066_olpc_select_mic(struct hda_codec *codec)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002104{
Daniel Drakedbaccc02009-11-09 15:17:24 +00002105 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +01002106 if (!spec->recording)
2107 return;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002108
Daniel Drakec4cfe662010-01-07 13:47:04 +01002109 if (spec->dc_enable) {
2110 /* in DC mode we ignore presence detection and just use the jack
2111 * through our special DC port */
2112 const struct hda_verb enable_dc_mode[] = {
2113 /* disble internal mic, port C */
2114 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2115
2116 /* enable DC capture, port F */
2117 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2118 {},
2119 };
2120
2121 snd_hda_sequence_write(codec, enable_dc_mode);
2122 /* port B input disabled (and bias set) through the following call */
2123 cxt5066_set_olpc_dc_bias(codec);
2124 return;
2125 }
2126
2127 /* disable DC (port F) */
2128 snd_hda_codec_write(codec, 0x1e, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
2129
Daniel Drake75f89912010-01-07 13:46:25 +01002130 /* external mic, port B */
2131 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2132 spec->ext_mic_present ? CXT5066_OLPC_EXT_MIC_BIAS : 0);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002133
Daniel Drake75f89912010-01-07 13:46:25 +01002134 /* internal mic, port C */
2135 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2136 spec->ext_mic_present ? 0 : PIN_VREF80);
2137}
Daniel Drake0fb67e92009-07-16 14:46:57 +01002138
Daniel Drake75f89912010-01-07 13:46:25 +01002139/* toggle input of built-in and mic jack appropriately */
2140static void cxt5066_olpc_automic(struct hda_codec *codec)
2141{
2142 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002143 unsigned int present;
2144
Daniel Drakec4cfe662010-01-07 13:47:04 +01002145 if (spec->dc_enable) /* don't do presence detection in DC mode */
2146 return;
2147
Daniel Drake75f89912010-01-07 13:46:25 +01002148 present = snd_hda_codec_read(codec, 0x1a, 0,
2149 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2150 if (present)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002151 snd_printdd("CXT5066: external microphone detected\n");
Daniel Drake75f89912010-01-07 13:46:25 +01002152 else
Daniel Drake0fb67e92009-07-16 14:46:57 +01002153 snd_printdd("CXT5066: external microphone absent\n");
Daniel Drake75f89912010-01-07 13:46:25 +01002154
2155 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2156 present ? 0 : 1);
2157 spec->ext_mic_present = !!present;
2158
2159 cxt5066_olpc_select_mic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002160}
2161
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002162/* toggle input of built-in digital mic and mic jack appropriately */
2163static void cxt5066_vostro_automic(struct hda_codec *codec)
2164{
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002165 unsigned int present;
2166
2167 struct hda_verb ext_mic_present[] = {
2168 /* enable external mic, port B */
Daniel Drake75f89912010-01-07 13:46:25 +01002169 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002170
2171 /* switch to external mic input */
2172 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2173 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2174
2175 /* disable internal digital mic */
2176 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2177 {}
2178 };
2179 static struct hda_verb ext_mic_absent[] = {
2180 /* enable internal mic, port C */
2181 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2182
2183 /* switch to internal mic input */
2184 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2185
2186 /* disable external mic, port B */
2187 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2188 {}
2189 };
2190
2191 present = snd_hda_jack_detect(codec, 0x1a);
2192 if (present) {
2193 snd_printdd("CXT5066: external microphone detected\n");
2194 snd_hda_sequence_write(codec, ext_mic_present);
2195 } else {
2196 snd_printdd("CXT5066: external microphone absent\n");
2197 snd_hda_sequence_write(codec, ext_mic_absent);
2198 }
2199}
2200
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002201/* toggle input of built-in digital mic and mic jack appropriately */
2202static void cxt5066_ideapad_automic(struct hda_codec *codec)
2203{
2204 unsigned int present;
2205
2206 struct hda_verb ext_mic_present[] = {
2207 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2208 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2209 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2210 {}
2211 };
2212 static struct hda_verb ext_mic_absent[] = {
2213 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2214 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2215 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2216 {}
2217 };
2218
2219 present = snd_hda_jack_detect(codec, 0x1b);
2220 if (present) {
2221 snd_printdd("CXT5066: external microphone detected\n");
2222 snd_hda_sequence_write(codec, ext_mic_present);
2223 } else {
2224 snd_printdd("CXT5066: external microphone absent\n");
2225 snd_hda_sequence_write(codec, ext_mic_absent);
2226 }
2227}
2228
David Henningssona1d69062011-01-21 13:33:28 +01002229
2230/* toggle input of built-in digital mic and mic jack appropriately */
2231static void cxt5066_asus_automic(struct hda_codec *codec)
2232{
2233 unsigned int present;
2234
2235 present = snd_hda_jack_detect(codec, 0x1b);
2236 snd_printdd("CXT5066: external microphone present=%d\n", present);
2237 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2238 present ? 1 : 0);
2239}
2240
2241
David Henningsson048e78a2010-09-02 08:35:47 +02002242/* toggle input of built-in digital mic and mic jack appropriately */
2243static void cxt5066_hp_laptop_automic(struct hda_codec *codec)
2244{
2245 unsigned int present;
2246
2247 present = snd_hda_jack_detect(codec, 0x1b);
2248 snd_printdd("CXT5066: external microphone present=%d\n", present);
2249 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2250 present ? 1 : 3);
2251}
2252
2253
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002254/* toggle input of built-in digital mic and mic jack appropriately
2255 order is: external mic -> dock mic -> interal mic */
2256static void cxt5066_thinkpad_automic(struct hda_codec *codec)
2257{
2258 unsigned int ext_present, dock_present;
2259
2260 static struct hda_verb ext_mic_present[] = {
2261 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2262 {0x17, AC_VERB_SET_CONNECT_SEL, 1},
2263 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2264 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2265 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2266 {}
2267 };
2268 static struct hda_verb dock_mic_present[] = {
2269 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2270 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2271 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2272 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2273 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2274 {}
2275 };
2276 static struct hda_verb ext_mic_absent[] = {
2277 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2278 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2279 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2280 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2281 {}
2282 };
2283
2284 ext_present = snd_hda_jack_detect(codec, 0x1b);
2285 dock_present = snd_hda_jack_detect(codec, 0x1a);
2286 if (ext_present) {
2287 snd_printdd("CXT5066: external microphone detected\n");
2288 snd_hda_sequence_write(codec, ext_mic_present);
2289 } else if (dock_present) {
2290 snd_printdd("CXT5066: dock microphone detected\n");
2291 snd_hda_sequence_write(codec, dock_mic_present);
2292 } else {
2293 snd_printdd("CXT5066: external microphone absent\n");
2294 snd_hda_sequence_write(codec, ext_mic_absent);
2295 }
2296}
2297
Daniel Drake0fb67e92009-07-16 14:46:57 +01002298/* mute internal speaker if HP is plugged */
2299static void cxt5066_hp_automute(struct hda_codec *codec)
2300{
2301 struct conexant_spec *spec = codec->spec;
2302 unsigned int portA, portD;
2303
2304 /* Port A */
Takashi Iwaid56757a2009-11-18 08:00:14 +01002305 portA = snd_hda_jack_detect(codec, 0x19);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002306
2307 /* Port D */
Takashi Iwaid56757a2009-11-18 08:00:14 +01002308 portD = snd_hda_jack_detect(codec, 0x1c);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002309
Takashi Iwaia3de8ab2010-12-03 12:29:14 +01002310 spec->hp_present = portA ? HP_PRESENT_PORT_A : 0;
2311 spec->hp_present |= portD ? HP_PRESENT_PORT_D : 0;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002312 snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2313 portA, portD, spec->hp_present);
2314 cxt5066_update_speaker(codec);
2315}
2316
David Henningsson02b6b5b2011-01-21 13:27:39 +01002317/* Dispatch the right mic autoswitch function */
2318static void cxt5066_automic(struct hda_codec *codec)
2319{
2320 struct conexant_spec *spec = codec->spec;
2321
2322 if (spec->dell_vostro)
2323 cxt5066_vostro_automic(codec);
2324 else if (spec->ideapad)
2325 cxt5066_ideapad_automic(codec);
2326 else if (spec->thinkpad)
2327 cxt5066_thinkpad_automic(codec);
2328 else if (spec->hp_laptop)
2329 cxt5066_hp_laptop_automic(codec);
David Henningssona1d69062011-01-21 13:33:28 +01002330 else if (spec->asus)
2331 cxt5066_asus_automic(codec);
David Henningsson02b6b5b2011-01-21 13:27:39 +01002332}
2333
Daniel Drake0fb67e92009-07-16 14:46:57 +01002334/* unsolicited event for jack sensing */
Daniel Drake75f89912010-01-07 13:46:25 +01002335static void cxt5066_olpc_unsol_event(struct hda_codec *codec, unsigned int res)
Daniel Drake0fb67e92009-07-16 14:46:57 +01002336{
Daniel Drakec4cfe662010-01-07 13:47:04 +01002337 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002338 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
2339 switch (res >> 26) {
2340 case CONEXANT_HP_EVENT:
2341 cxt5066_hp_automute(codec);
2342 break;
2343 case CONEXANT_MIC_EVENT:
Daniel Drakec4cfe662010-01-07 13:47:04 +01002344 /* ignore mic events in DC mode; we're always using the jack */
2345 if (!spec->dc_enable)
2346 cxt5066_olpc_automic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002347 break;
2348 }
2349}
2350
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002351/* unsolicited event for jack sensing */
David Henningsson02b6b5b2011-01-21 13:27:39 +01002352static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res)
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002353{
David Henningsson02b6b5b2011-01-21 13:27:39 +01002354 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002355 switch (res >> 26) {
2356 case CONEXANT_HP_EVENT:
2357 cxt5066_hp_automute(codec);
2358 break;
2359 case CONEXANT_MIC_EVENT:
David Henningsson02b6b5b2011-01-21 13:27:39 +01002360 cxt5066_automic(codec);
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002361 break;
2362 }
2363}
2364
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002365
Daniel Drake0fb67e92009-07-16 14:46:57 +01002366static const struct hda_input_mux cxt5066_analog_mic_boost = {
2367 .num_items = 5,
2368 .items = {
2369 { "0dB", 0 },
2370 { "10dB", 1 },
2371 { "20dB", 2 },
2372 { "30dB", 3 },
2373 { "40dB", 4 },
2374 },
2375};
2376
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002377static void cxt5066_set_mic_boost(struct hda_codec *codec)
Daniel Drakec4cfe662010-01-07 13:47:04 +01002378{
2379 struct conexant_spec *spec = codec->spec;
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002380 snd_hda_codec_write_cache(codec, 0x17, 0,
Daniel Drakec4cfe662010-01-07 13:47:04 +01002381 AC_VERB_SET_AMP_GAIN_MUTE,
2382 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2383 cxt5066_analog_mic_boost.items[spec->mic_boost].index);
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002384 if (spec->ideapad || spec->thinkpad) {
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002385 /* adjust the internal mic as well...it is not through 0x17 */
2386 snd_hda_codec_write_cache(codec, 0x23, 0,
2387 AC_VERB_SET_AMP_GAIN_MUTE,
2388 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_INPUT |
2389 cxt5066_analog_mic_boost.
2390 items[spec->mic_boost].index);
2391 }
Daniel Drakec4cfe662010-01-07 13:47:04 +01002392}
2393
Daniel Drake0fb67e92009-07-16 14:46:57 +01002394static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
2395 struct snd_ctl_elem_info *uinfo)
2396{
2397 return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
2398}
2399
2400static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
2401 struct snd_ctl_elem_value *ucontrol)
2402{
2403 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002404 struct conexant_spec *spec = codec->spec;
2405 ucontrol->value.enumerated.item[0] = spec->mic_boost;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002406 return 0;
2407}
2408
2409static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
2410 struct snd_ctl_elem_value *ucontrol)
2411{
2412 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002413 struct conexant_spec *spec = codec->spec;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002414 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2415 unsigned int idx;
Daniel Drake0fb67e92009-07-16 14:46:57 +01002416 idx = ucontrol->value.enumerated.item[0];
2417 if (idx >= imux->num_items)
2418 idx = imux->num_items - 1;
2419
Daniel Drakec4cfe662010-01-07 13:47:04 +01002420 spec->mic_boost = idx;
2421 if (!spec->dc_enable)
2422 cxt5066_set_mic_boost(codec);
2423 return 1;
2424}
Daniel Drake0fb67e92009-07-16 14:46:57 +01002425
Daniel Drakec4cfe662010-01-07 13:47:04 +01002426static void cxt5066_enable_dc(struct hda_codec *codec)
2427{
2428 const struct hda_verb enable_dc_mode[] = {
2429 /* disable gain */
2430 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2431
2432 /* switch to DC input */
2433 {0x17, AC_VERB_SET_CONNECT_SEL, 3},
2434 {}
2435 };
2436
2437 /* configure as input source */
2438 snd_hda_sequence_write(codec, enable_dc_mode);
2439 cxt5066_olpc_select_mic(codec); /* also sets configured bias */
2440}
2441
2442static void cxt5066_disable_dc(struct hda_codec *codec)
2443{
2444 /* reconfigure input source */
2445 cxt5066_set_mic_boost(codec);
2446 /* automic also selects the right mic if we're recording */
2447 cxt5066_olpc_automic(codec);
2448}
2449
2450static int cxt5066_olpc_dc_get(struct snd_kcontrol *kcontrol,
2451 struct snd_ctl_elem_value *ucontrol)
2452{
2453 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2454 struct conexant_spec *spec = codec->spec;
2455 ucontrol->value.integer.value[0] = spec->dc_enable;
2456 return 0;
2457}
2458
2459static int cxt5066_olpc_dc_put(struct snd_kcontrol *kcontrol,
2460 struct snd_ctl_elem_value *ucontrol)
2461{
2462 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2463 struct conexant_spec *spec = codec->spec;
2464 int dc_enable = !!ucontrol->value.integer.value[0];
2465
2466 if (dc_enable == spec->dc_enable)
2467 return 0;
2468
2469 spec->dc_enable = dc_enable;
2470 if (dc_enable)
2471 cxt5066_enable_dc(codec);
2472 else
2473 cxt5066_disable_dc(codec);
2474
2475 return 1;
2476}
2477
2478static int cxt5066_olpc_dc_bias_enum_info(struct snd_kcontrol *kcontrol,
2479 struct snd_ctl_elem_info *uinfo)
2480{
2481 return snd_hda_input_mux_info(&cxt5066_olpc_dc_bias, uinfo);
2482}
2483
2484static int cxt5066_olpc_dc_bias_enum_get(struct snd_kcontrol *kcontrol,
2485 struct snd_ctl_elem_value *ucontrol)
2486{
2487 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2488 struct conexant_spec *spec = codec->spec;
2489 ucontrol->value.enumerated.item[0] = spec->dc_input_bias;
2490 return 0;
2491}
2492
2493static int cxt5066_olpc_dc_bias_enum_put(struct snd_kcontrol *kcontrol,
2494 struct snd_ctl_elem_value *ucontrol)
2495{
2496 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2497 struct conexant_spec *spec = codec->spec;
2498 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2499 unsigned int idx;
2500
2501 idx = ucontrol->value.enumerated.item[0];
2502 if (idx >= imux->num_items)
2503 idx = imux->num_items - 1;
2504
2505 spec->dc_input_bias = idx;
2506 if (spec->dc_enable)
2507 cxt5066_set_olpc_dc_bias(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002508 return 1;
2509}
2510
Daniel Drake75f89912010-01-07 13:46:25 +01002511static void cxt5066_olpc_capture_prepare(struct hda_codec *codec)
2512{
2513 struct conexant_spec *spec = codec->spec;
2514 /* mark as recording and configure the microphone widget so that the
2515 * recording LED comes on. */
2516 spec->recording = 1;
2517 cxt5066_olpc_select_mic(codec);
2518}
2519
2520static void cxt5066_olpc_capture_cleanup(struct hda_codec *codec)
2521{
2522 struct conexant_spec *spec = codec->spec;
2523 const struct hda_verb disable_mics[] = {
2524 /* disable external mic, port B */
2525 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2526
2527 /* disble internal mic, port C */
2528 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drakec4cfe662010-01-07 13:47:04 +01002529
2530 /* disable DC capture, port F */
2531 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake75f89912010-01-07 13:46:25 +01002532 {},
2533 };
2534
2535 snd_hda_sequence_write(codec, disable_mics);
2536 spec->recording = 0;
2537}
2538
Andy Robinsonf6a24912011-01-24 10:12:37 -05002539static void conexant_check_dig_outs(struct hda_codec *codec,
2540 hda_nid_t *dig_pins,
2541 int num_pins)
2542{
2543 struct conexant_spec *spec = codec->spec;
2544 hda_nid_t *nid_loc = &spec->multiout.dig_out_nid;
2545 int i;
2546
2547 for (i = 0; i < num_pins; i++, dig_pins++) {
2548 unsigned int cfg = snd_hda_codec_get_pincfg(codec, *dig_pins);
2549 if (get_defcfg_connect(cfg) == AC_JACK_PORT_NONE)
2550 continue;
2551 if (snd_hda_get_connections(codec, *dig_pins, nid_loc, 1) != 1)
2552 continue;
2553 if (spec->slave_dig_outs[0])
2554 nid_loc++;
2555 else
2556 nid_loc = spec->slave_dig_outs;
2557 }
2558}
2559
Daniel Drake0fb67e92009-07-16 14:46:57 +01002560static struct hda_input_mux cxt5066_capture_source = {
2561 .num_items = 4,
2562 .items = {
2563 { "Mic B", 0 },
2564 { "Mic C", 1 },
2565 { "Mic E", 2 },
2566 { "Mic F", 3 },
2567 },
2568};
2569
2570static struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
2571 .ops = &snd_hda_bind_vol,
2572 .values = {
2573 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2574 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2575 0
2576 },
2577};
2578
2579static struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
2580 .ops = &snd_hda_bind_sw,
2581 .values = {
2582 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2583 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2584 0
2585 },
2586};
2587
2588static struct snd_kcontrol_new cxt5066_mixer_master[] = {
2589 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
2590 {}
2591};
2592
2593static struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
2594 {
2595 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2596 .name = "Master Playback Volume",
2597 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
2598 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2599 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01002600 .subdevice = HDA_SUBDEV_AMP_FLAG,
Daniel Drake0fb67e92009-07-16 14:46:57 +01002601 .info = snd_hda_mixer_amp_volume_info,
2602 .get = snd_hda_mixer_amp_volume_get,
2603 .put = snd_hda_mixer_amp_volume_put,
2604 .tlv = { .c = snd_hda_mixer_amp_tlv },
2605 /* offset by 28 volume steps to limit minimum gain to -46dB */
2606 .private_value =
2607 HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
2608 },
2609 {}
2610};
2611
Daniel Drakec4cfe662010-01-07 13:47:04 +01002612static struct snd_kcontrol_new cxt5066_mixer_olpc_dc[] = {
2613 {
2614 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2615 .name = "DC Mode Enable Switch",
2616 .info = snd_ctl_boolean_mono_info,
2617 .get = cxt5066_olpc_dc_get,
2618 .put = cxt5066_olpc_dc_put,
2619 },
2620 {
2621 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2622 .name = "DC Input Bias Enum",
2623 .info = cxt5066_olpc_dc_bias_enum_info,
2624 .get = cxt5066_olpc_dc_bias_enum_get,
2625 .put = cxt5066_olpc_dc_bias_enum_put,
2626 },
2627 {}
2628};
2629
Daniel Drake0fb67e92009-07-16 14:46:57 +01002630static struct snd_kcontrol_new cxt5066_mixers[] = {
2631 {
2632 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2633 .name = "Master Playback Switch",
2634 .info = cxt_eapd_info,
2635 .get = cxt_eapd_get,
2636 .put = cxt5066_hp_master_sw_put,
2637 .private_value = 0x1d,
2638 },
2639
2640 {
2641 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Daniel Drakec4cfe662010-01-07 13:47:04 +01002642 .name = "Analog Mic Boost Capture Enum",
Daniel Drake0fb67e92009-07-16 14:46:57 +01002643 .info = cxt5066_mic_boost_mux_enum_info,
2644 .get = cxt5066_mic_boost_mux_enum_get,
2645 .put = cxt5066_mic_boost_mux_enum_put,
2646 },
2647
2648 HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
2649 HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
2650 {}
2651};
2652
Einar Rünkaru254bba62009-12-16 22:16:13 +02002653static struct snd_kcontrol_new cxt5066_vostro_mixers[] = {
2654 {
2655 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
David Henningsson28c4edb2010-12-20 14:24:29 +01002656 .name = "Internal Mic Boost Capture Enum",
Einar Rünkaru254bba62009-12-16 22:16:13 +02002657 .info = cxt5066_mic_boost_mux_enum_info,
2658 .get = cxt5066_mic_boost_mux_enum_get,
2659 .put = cxt5066_mic_boost_mux_enum_put,
2660 .private_value = 0x23 | 0x100,
2661 },
2662 {}
2663};
2664
Daniel Drake0fb67e92009-07-16 14:46:57 +01002665static struct hda_verb cxt5066_init_verbs[] = {
2666 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2667 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2668 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2669 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2670
2671 /* Speakers */
2672 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2673 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2674
2675 /* HP, Amp */
2676 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2677 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2678
2679 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2680 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2681
2682 /* DAC1 */
2683 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2684
2685 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2686 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2687 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2688 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2689 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2690 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2691
2692 /* no digital microphone support yet */
2693 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2694
2695 /* Audio input selector */
2696 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2697
2698 /* SPDIF route: PCM */
2699 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2700 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2701
2702 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2703 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2704
2705 /* EAPD */
2706 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2707
2708 /* not handling these yet */
2709 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2710 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2711 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2712 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2713 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2714 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2715 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2716 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2717 { } /* end */
2718};
2719
2720static struct hda_verb cxt5066_init_verbs_olpc[] = {
2721 /* Port A: headphones */
2722 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2723 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2724
2725 /* Port B: external microphone */
Daniel Drake75f89912010-01-07 13:46:25 +01002726 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake0fb67e92009-07-16 14:46:57 +01002727
2728 /* Port C: internal microphone */
Daniel Drake75f89912010-01-07 13:46:25 +01002729 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
Daniel Drake0fb67e92009-07-16 14:46:57 +01002730
2731 /* Port D: unused */
2732 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2733
2734 /* Port E: unused, but has primary EAPD */
2735 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2736 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2737
Daniel Drakec4cfe662010-01-07 13:47:04 +01002738 /* Port F: external DC input through microphone port */
Daniel Drake0fb67e92009-07-16 14:46:57 +01002739 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2740
2741 /* Port G: internal speakers */
2742 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2743 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2744
2745 /* DAC1 */
2746 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2747
2748 /* DAC2: unused */
2749 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2750
2751 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2752 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2753 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2754 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2755 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2756 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2757 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2758 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2759 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2760 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2761 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2762 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2763
2764 /* Disable digital microphone port */
2765 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2766
2767 /* Audio input selectors */
2768 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2769 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2770
2771 /* Disable SPDIF */
2772 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2773 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2774
2775 /* enable unsolicited events for Port A and B */
2776 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2777 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2778 { } /* end */
2779};
2780
Einar Rünkaru95a618b2009-11-23 22:23:49 +02002781static struct hda_verb cxt5066_init_verbs_vostro[] = {
2782 /* Port A: headphones */
2783 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2784 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2785
2786 /* Port B: external microphone */
2787 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2788
2789 /* Port C: unused */
2790 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2791
2792 /* Port D: unused */
2793 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2794
2795 /* Port E: unused, but has primary EAPD */
2796 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2797 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2798
2799 /* Port F: unused */
2800 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2801
2802 /* Port G: internal speakers */
2803 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2804 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2805
2806 /* DAC1 */
2807 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2808
2809 /* DAC2: unused */
2810 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2811
2812 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2813 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2814 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2815 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2816 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2817 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2818 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2819 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2820 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2821 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2822 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2823 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2824
2825 /* Digital microphone port */
2826 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2827
2828 /* Audio input selectors */
2829 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2830 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2831
2832 /* Disable SPDIF */
2833 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2834 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2835
2836 /* enable unsolicited events for Port A and B */
2837 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2838 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2839 { } /* end */
2840};
2841
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002842static struct hda_verb cxt5066_init_verbs_ideapad[] = {
2843 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2844 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2845 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2846 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2847
2848 /* Speakers */
2849 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2850 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2851
2852 /* HP, Amp */
2853 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2854 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2855
2856 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2857 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2858
2859 /* DAC1 */
2860 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2861
2862 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2863 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2864 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2865 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2866 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2867 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2868 {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */
2869
2870 /* Audio input selector */
2871 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2872 {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */
2873
2874 /* SPDIF route: PCM */
2875 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2876 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2877
2878 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2879 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2880
2881 /* internal microphone */
David Henningsson28c4edb2010-12-20 14:24:29 +01002882 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable internal mic */
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002883
2884 /* EAPD */
2885 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2886
2887 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2888 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2889 { } /* end */
2890};
2891
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002892static struct hda_verb cxt5066_init_verbs_thinkpad[] = {
2893 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2894 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2895
2896 /* Port G: internal speakers */
2897 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2898 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2899
2900 /* Port A: HP, Amp */
2901 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2902 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2903
2904 /* Port B: Mic Dock */
2905 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2906
2907 /* Port C: Mic */
2908 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2909
2910 /* Port D: HP Dock, Amp */
2911 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2912 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2913
2914 /* DAC1 */
2915 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2916
2917 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2918 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2919 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2920 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2921 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2922 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2923 {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */
2924
2925 /* Audio input selector */
2926 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2927 {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */
2928
2929 /* SPDIF route: PCM */
2930 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2931 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2932
2933 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2934 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2935
2936 /* internal microphone */
David Henningsson28c4edb2010-12-20 14:24:29 +01002937 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable internal mic */
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002938
2939 /* EAPD */
2940 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2941
2942 /* enable unsolicited events for Port A, B, C and D */
2943 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2944 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2945 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2946 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2947 { } /* end */
2948};
2949
Daniel Drake0fb67e92009-07-16 14:46:57 +01002950static struct hda_verb cxt5066_init_verbs_portd_lo[] = {
2951 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2952 { } /* end */
2953};
2954
David Henningsson048e78a2010-09-02 08:35:47 +02002955
2956static struct hda_verb cxt5066_init_verbs_hp_laptop[] = {
2957 {0x14, AC_VERB_SET_CONNECT_SEL, 0x0},
2958 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2959 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2960 { } /* end */
2961};
2962
Daniel Drake0fb67e92009-07-16 14:46:57 +01002963/* initialize jack-sensing, too */
2964static int cxt5066_init(struct hda_codec *codec)
2965{
2966 snd_printdd("CXT5066: init\n");
2967 conexant_init(codec);
2968 if (codec->patch_ops.unsol_event) {
2969 cxt5066_hp_automute(codec);
David Henningsson02b6b5b2011-01-21 13:27:39 +01002970 cxt5066_automic(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002971 }
Daniel Drakec4cfe662010-01-07 13:47:04 +01002972 cxt5066_set_mic_boost(codec);
Daniel Drake0fb67e92009-07-16 14:46:57 +01002973 return 0;
2974}
2975
Daniel Drake75f89912010-01-07 13:46:25 +01002976static int cxt5066_olpc_init(struct hda_codec *codec)
2977{
Daniel Drakec4cfe662010-01-07 13:47:04 +01002978 struct conexant_spec *spec = codec->spec;
Daniel Drake75f89912010-01-07 13:46:25 +01002979 snd_printdd("CXT5066: init\n");
2980 conexant_init(codec);
2981 cxt5066_hp_automute(codec);
Daniel Drakec4cfe662010-01-07 13:47:04 +01002982 if (!spec->dc_enable) {
2983 cxt5066_set_mic_boost(codec);
2984 cxt5066_olpc_automic(codec);
2985 } else {
2986 cxt5066_enable_dc(codec);
2987 }
Daniel Drake75f89912010-01-07 13:46:25 +01002988 return 0;
2989}
2990
Daniel Drake0fb67e92009-07-16 14:46:57 +01002991enum {
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002992 CXT5066_LAPTOP, /* Laptops w/ EAPD support */
Daniel Drake0fb67e92009-07-16 14:46:57 +01002993 CXT5066_DELL_LAPTOP, /* Dell Laptop */
2994 CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */
David Henningsson1feba3b2010-09-17 10:52:50 +02002995 CXT5066_DELL_VOSTRO, /* Dell Vostro 1015i */
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05002996 CXT5066_IDEAPAD, /* Lenovo IdeaPad U150 */
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02002997 CXT5066_THINKPAD, /* Lenovo ThinkPad T410s, others? */
David Henningssona1d69062011-01-21 13:33:28 +01002998 CXT5066_ASUS, /* Asus K52JU, Lenovo G560 - Int mic at 0x1a and Ext mic at 0x1b */
David Henningsson048e78a2010-09-02 08:35:47 +02002999 CXT5066_HP_LAPTOP, /* HP Laptop */
Daniel Drake0fb67e92009-07-16 14:46:57 +01003000 CXT5066_MODELS
3001};
3002
Takashi Iwaiea734962011-01-17 11:29:34 +01003003static const char * const cxt5066_models[CXT5066_MODELS] = {
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02003004 [CXT5066_LAPTOP] = "laptop",
Daniel Drake0fb67e92009-07-16 14:46:57 +01003005 [CXT5066_DELL_LAPTOP] = "dell-laptop",
3006 [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5",
David Henningsson1feba3b2010-09-17 10:52:50 +02003007 [CXT5066_DELL_VOSTRO] = "dell-vostro",
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05003008 [CXT5066_IDEAPAD] = "ideapad",
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02003009 [CXT5066_THINKPAD] = "thinkpad",
David Henningssona1d69062011-01-21 13:33:28 +01003010 [CXT5066_ASUS] = "asus",
David Henningsson048e78a2010-09-02 08:35:47 +02003011 [CXT5066_HP_LAPTOP] = "hp-laptop",
Daniel Drake0fb67e92009-07-16 14:46:57 +01003012};
3013
3014static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
Takashi Iwai00cd0bb2010-10-21 09:57:40 +02003015 SND_PCI_QUIRK_MASK(0x1025, 0xff00, 0x0400, "Acer", CXT5066_IDEAPAD),
David Henningsson1feba3b2010-09-17 10:52:50 +02003016 SND_PCI_QUIRK(0x1028, 0x02d8, "Dell Vostro", CXT5066_DELL_VOSTRO),
David Henningsson8a96b1e2010-12-09 07:17:27 +01003017 SND_PCI_QUIRK(0x1028, 0x02f5, "Dell Vostro 320", CXT5066_IDEAPAD),
Daniel T Chenca6cd852011-01-08 18:25:27 -05003018 SND_PCI_QUIRK(0x1028, 0x0401, "Dell Vostro 1014", CXT5066_DELL_VOSTRO),
David Henningsson1feba3b2010-09-17 10:52:50 +02003019 SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTRO),
Anisse Astier231f50b2010-04-28 18:05:06 +02003020 SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD),
David Henningssonebbd2242011-02-23 13:15:56 +01003021 SND_PCI_QUIRK(0x1028, 0x050f, "Dell Inspiron", CXT5066_IDEAPAD),
3022 SND_PCI_QUIRK(0x1028, 0x0510, "Dell Vostro", CXT5066_IDEAPAD),
David Henningsson048e78a2010-09-02 08:35:47 +02003023 SND_PCI_QUIRK(0x103c, 0x360b, "HP G60", CXT5066_HP_LAPTOP),
Andy Robinsonf6a24912011-01-24 10:12:37 -05003024 SND_PCI_QUIRK(0x1043, 0x13f3, "Asus A52J", CXT5066_ASUS),
David Henningssona1d69062011-01-21 13:33:28 +01003025 SND_PCI_QUIRK(0x1043, 0x1643, "Asus K52JU", CXT5066_ASUS),
Andy Robinsonf6a24912011-01-24 10:12:37 -05003026 SND_PCI_QUIRK(0x1043, 0x1993, "Asus U50F", CXT5066_ASUS),
Anisse Astier2ca9cac2010-09-10 15:47:55 +02003027 SND_PCI_QUIRK(0x1179, 0xff1e, "Toshiba Satellite C650D", CXT5066_IDEAPAD),
Daniel T Chenc5366682010-05-04 22:07:58 -04003028 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba Satellite P500-PSPGSC-01800T", CXT5066_OLPC_XO_1_5),
Daniel T Chen4442dd42010-05-03 20:39:31 -04003029 SND_PCI_QUIRK(0x1179, 0xffe0, "Toshiba Satellite Pro T130-15F", CXT5066_OLPC_XO_1_5),
David Henningsson5637edb2010-09-17 10:58:03 +02003030 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
3031 CXT5066_LAPTOP),
3032 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
Takashi Iwai4d155642010-09-07 11:58:30 +02003033 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400s", CXT5066_THINKPAD),
Manoj Iyeref61d4e2010-12-03 18:43:55 -06003034 SND_PCI_QUIRK(0x17aa, 0x21c5, "Thinkpad Edge 13", CXT5066_THINKPAD),
David Henningsson19593872011-01-27 10:28:46 +01003035 SND_PCI_QUIRK(0x17aa, 0x21c6, "Thinkpad Edge 13", CXT5066_ASUS),
Jerone Youngab854572010-07-19 08:30:58 -05003036 SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo Thinkpad", CXT5066_THINKPAD),
David Henningsson84012652011-03-31 09:36:19 +02003037 SND_PCI_QUIRK(0x17aa, 0x21da, "Lenovo X220", CXT5066_THINKPAD),
David Henningssonb2cb1292011-04-05 07:55:24 +02003038 SND_PCI_QUIRK(0x17aa, 0x21db, "Lenovo X220-tablet", CXT5066_THINKPAD),
David Henningssona1d69062011-01-21 13:33:28 +01003039 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G560", CXT5066_ASUS),
David Henningsson22f21d52011-01-07 07:53:39 +01003040 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", CXT5066_IDEAPAD), /* Fallback for Lenovos without dock mic */
Daniel Drake0fb67e92009-07-16 14:46:57 +01003041 {}
3042};
3043
3044static int patch_cxt5066(struct hda_codec *codec)
3045{
3046 struct conexant_spec *spec;
3047 int board_config;
3048
3049 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3050 if (!spec)
3051 return -ENOMEM;
3052 codec->spec = spec;
3053
3054 codec->patch_ops = conexant_patch_ops;
Daniel Drake75f89912010-01-07 13:46:25 +01003055 codec->patch_ops.init = conexant_init;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003056
3057 spec->dell_automute = 0;
3058 spec->multiout.max_channels = 2;
3059 spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
3060 spec->multiout.dac_nids = cxt5066_dac_nids;
Andy Robinsonf6a24912011-01-24 10:12:37 -05003061 conexant_check_dig_outs(codec, cxt5066_digout_pin_nids,
3062 ARRAY_SIZE(cxt5066_digout_pin_nids));
Daniel Drake0fb67e92009-07-16 14:46:57 +01003063 spec->num_adc_nids = 1;
3064 spec->adc_nids = cxt5066_adc_nids;
3065 spec->capsrc_nids = cxt5066_capsrc_nids;
3066 spec->input_mux = &cxt5066_capture_source;
3067
3068 spec->port_d_mode = PIN_HP;
3069
3070 spec->num_init_verbs = 1;
3071 spec->init_verbs[0] = cxt5066_init_verbs;
3072 spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
3073 spec->channel_mode = cxt5066_modes;
3074 spec->cur_adc = 0;
3075 spec->cur_adc_idx = 0;
3076
Takashi Iwai3507e2a2010-07-08 18:39:00 +02003077 set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
3078
Daniel Drake0fb67e92009-07-16 14:46:57 +01003079 board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
3080 cxt5066_models, cxt5066_cfg_tbl);
3081 switch (board_config) {
3082 default:
3083 case CXT5066_LAPTOP:
3084 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3085 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3086 break;
3087 case CXT5066_DELL_LAPTOP:
3088 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3089 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3090
3091 spec->port_d_mode = PIN_OUT;
3092 spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
3093 spec->num_init_verbs++;
3094 spec->dell_automute = 1;
3095 break;
David Henningssona1d69062011-01-21 13:33:28 +01003096 case CXT5066_ASUS:
David Henningsson048e78a2010-09-02 08:35:47 +02003097 case CXT5066_HP_LAPTOP:
3098 codec->patch_ops.init = cxt5066_init;
David Henningsson02b6b5b2011-01-21 13:27:39 +01003099 codec->patch_ops.unsol_event = cxt5066_unsol_event;
David Henningsson048e78a2010-09-02 08:35:47 +02003100 spec->init_verbs[spec->num_init_verbs] =
3101 cxt5066_init_verbs_hp_laptop;
3102 spec->num_init_verbs++;
David Henningssona1d69062011-01-21 13:33:28 +01003103 spec->hp_laptop = board_config == CXT5066_HP_LAPTOP;
3104 spec->asus = board_config == CXT5066_ASUS;
David Henningsson048e78a2010-09-02 08:35:47 +02003105 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3106 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3107 /* no S/PDIF out */
Andy Robinsonf6a24912011-01-24 10:12:37 -05003108 if (board_config == CXT5066_HP_LAPTOP)
3109 spec->multiout.dig_out_nid = 0;
David Henningsson048e78a2010-09-02 08:35:47 +02003110 /* input source automatically selected */
3111 spec->input_mux = NULL;
3112 spec->port_d_mode = 0;
3113 spec->mic_boost = 3; /* default 30dB gain */
3114 break;
3115
Daniel Drake0fb67e92009-07-16 14:46:57 +01003116 case CXT5066_OLPC_XO_1_5:
Daniel Drake75f89912010-01-07 13:46:25 +01003117 codec->patch_ops.init = cxt5066_olpc_init;
3118 codec->patch_ops.unsol_event = cxt5066_olpc_unsol_event;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003119 spec->init_verbs[0] = cxt5066_init_verbs_olpc;
3120 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
Daniel Drakec4cfe662010-01-07 13:47:04 +01003121 spec->mixers[spec->num_mixers++] = cxt5066_mixer_olpc_dc;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003122 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3123 spec->port_d_mode = 0;
Daniel Drakec4cfe662010-01-07 13:47:04 +01003124 spec->mic_boost = 3; /* default 30dB gain */
Daniel Drake0fb67e92009-07-16 14:46:57 +01003125
3126 /* no S/PDIF out */
3127 spec->multiout.dig_out_nid = 0;
3128
3129 /* input source automatically selected */
3130 spec->input_mux = NULL;
Daniel Drake75f89912010-01-07 13:46:25 +01003131
3132 /* our capture hooks which allow us to turn on the microphone LED
3133 * at the right time */
3134 spec->capture_prepare = cxt5066_olpc_capture_prepare;
3135 spec->capture_cleanup = cxt5066_olpc_capture_cleanup;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003136 break;
David Henningsson1feba3b2010-09-17 10:52:50 +02003137 case CXT5066_DELL_VOSTRO:
Daniel Drake75f89912010-01-07 13:46:25 +01003138 codec->patch_ops.init = cxt5066_init;
David Henningsson02b6b5b2011-01-21 13:27:39 +01003139 codec->patch_ops.unsol_event = cxt5066_unsol_event;
Einar Rünkaru95a618b2009-11-23 22:23:49 +02003140 spec->init_verbs[0] = cxt5066_init_verbs_vostro;
3141 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
3142 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
Einar Rünkaru254bba62009-12-16 22:16:13 +02003143 spec->mixers[spec->num_mixers++] = cxt5066_vostro_mixers;
Einar Rünkaru95a618b2009-11-23 22:23:49 +02003144 spec->port_d_mode = 0;
Einar Rünkaru254bba62009-12-16 22:16:13 +02003145 spec->dell_vostro = 1;
Daniel Drakec4cfe662010-01-07 13:47:04 +01003146 spec->mic_boost = 3; /* default 30dB gain */
Einar Rünkaru95a618b2009-11-23 22:23:49 +02003147
3148 /* no S/PDIF out */
3149 spec->multiout.dig_out_nid = 0;
3150
3151 /* input source automatically selected */
3152 spec->input_mux = NULL;
3153 break;
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05003154 case CXT5066_IDEAPAD:
3155 codec->patch_ops.init = cxt5066_init;
David Henningsson02b6b5b2011-01-21 13:27:39 +01003156 codec->patch_ops.unsol_event = cxt5066_unsol_event;
Greg Alexandercfd3d8d2010-02-13 02:02:25 -05003157 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3158 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3159 spec->init_verbs[0] = cxt5066_init_verbs_ideapad;
3160 spec->port_d_mode = 0;
3161 spec->ideapad = 1;
3162 spec->mic_boost = 2; /* default 20dB gain */
3163
3164 /* no S/PDIF out */
3165 spec->multiout.dig_out_nid = 0;
3166
3167 /* input source automatically selected */
3168 spec->input_mux = NULL;
3169 break;
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02003170 case CXT5066_THINKPAD:
3171 codec->patch_ops.init = cxt5066_init;
David Henningsson02b6b5b2011-01-21 13:27:39 +01003172 codec->patch_ops.unsol_event = cxt5066_unsol_event;
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02003173 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3174 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3175 spec->init_verbs[0] = cxt5066_init_verbs_thinkpad;
3176 spec->thinkpad = 1;
3177 spec->port_d_mode = PIN_OUT;
3178 spec->mic_boost = 2; /* default 20dB gain */
3179
3180 /* no S/PDIF out */
3181 spec->multiout.dig_out_nid = 0;
3182
3183 /* input source automatically selected */
3184 spec->input_mux = NULL;
3185 break;
Daniel Drake0fb67e92009-07-16 14:46:57 +01003186 }
3187
Takashi Iwai3507e2a2010-07-08 18:39:00 +02003188 if (spec->beep_amp)
3189 snd_hda_attach_beep_device(codec, spec->beep_amp);
3190
Daniel Drake0fb67e92009-07-16 14:46:57 +01003191 return 0;
3192}
Takashi Iwai461e2c72008-01-25 11:35:17 +01003193
3194/*
Takashi Iwaif2e57312010-09-15 10:07:08 +02003195 * Automatic parser for CX20641 & co
3196 */
3197
3198static hda_nid_t cx_auto_adc_nids[] = { 0x14 };
3199
3200/* get the connection index of @nid in the widget @mux */
3201static int get_connection_index(struct hda_codec *codec, hda_nid_t mux,
3202 hda_nid_t nid)
3203{
3204 hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3205 int i, nums;
3206
3207 nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3208 for (i = 0; i < nums; i++)
3209 if (conn[i] == nid)
3210 return i;
3211 return -1;
3212}
3213
3214/* get an unassigned DAC from the given list.
3215 * Return the nid if found and reduce the DAC list, or return zero if
3216 * not found
3217 */
3218static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t pin,
3219 hda_nid_t *dacs, int *num_dacs)
3220{
3221 int i, nums = *num_dacs;
3222 hda_nid_t ret = 0;
3223
3224 for (i = 0; i < nums; i++) {
3225 if (get_connection_index(codec, pin, dacs[i]) >= 0) {
3226 ret = dacs[i];
3227 break;
3228 }
3229 }
3230 if (!ret)
3231 return 0;
3232 if (--nums > 0)
3233 memmove(dacs, dacs + 1, nums * sizeof(hda_nid_t));
3234 *num_dacs = nums;
3235 return ret;
3236}
3237
3238#define MAX_AUTO_DACS 5
3239
3240/* fill analog DAC list from the widget tree */
3241static int fill_cx_auto_dacs(struct hda_codec *codec, hda_nid_t *dacs)
3242{
3243 hda_nid_t nid, end_nid;
3244 int nums = 0;
3245
3246 end_nid = codec->start_nid + codec->num_nodes;
3247 for (nid = codec->start_nid; nid < end_nid; nid++) {
3248 unsigned int wcaps = get_wcaps(codec, nid);
3249 unsigned int type = get_wcaps_type(wcaps);
3250 if (type == AC_WID_AUD_OUT && !(wcaps & AC_WCAP_DIGITAL)) {
3251 dacs[nums++] = nid;
3252 if (nums >= MAX_AUTO_DACS)
3253 break;
3254 }
3255 }
3256 return nums;
3257}
3258
3259/* fill pin_dac_pair list from the pin and dac list */
3260static int fill_dacs_for_pins(struct hda_codec *codec, hda_nid_t *pins,
3261 int num_pins, hda_nid_t *dacs, int *rest,
3262 struct pin_dac_pair *filled, int type)
3263{
3264 int i, nums;
3265
3266 nums = 0;
3267 for (i = 0; i < num_pins; i++) {
3268 filled[nums].pin = pins[i];
3269 filled[nums].type = type;
3270 filled[nums].dac = get_unassigned_dac(codec, pins[i], dacs, rest);
3271 nums++;
3272 }
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,
3287 dacs, &rest, spec->dac_info,
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);
3295 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;
3299 if (!dac)
3300 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
3323 if (cfg->hp_outs > 0)
3324 spec->auto_mute = 1;
3325 spec->vmaster_nid = spec->private_dac_nids[0];
3326}
3327
3328/* auto-mute/unmute speaker and line outs according to headphone jack */
3329static void cx_auto_hp_automute(struct hda_codec *codec)
3330{
3331 struct conexant_spec *spec = codec->spec;
3332 struct auto_pin_cfg *cfg = &spec->autocfg;
3333 int i, present;
3334
3335 if (!spec->auto_mute)
3336 return;
3337 present = 0;
3338 for (i = 0; i < cfg->hp_outs; i++) {
3339 if (snd_hda_jack_detect(codec, cfg->hp_pins[i])) {
3340 present = 1;
3341 break;
3342 }
3343 }
3344 for (i = 0; i < cfg->line_outs; i++) {
3345 snd_hda_codec_write(codec, cfg->line_out_pins[i], 0,
3346 AC_VERB_SET_PIN_WIDGET_CONTROL,
3347 present ? 0 : PIN_OUT);
3348 }
Takashi Iwaifbb5bb52010-12-13 12:48:35 +01003349 for (i = 0; !present && i < cfg->line_outs; i++)
3350 if (snd_hda_jack_detect(codec, cfg->line_out_pins[i]))
3351 present = 1;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003352 for (i = 0; i < cfg->speaker_outs; i++) {
3353 snd_hda_codec_write(codec, cfg->speaker_pins[i], 0,
3354 AC_VERB_SET_PIN_WIDGET_CONTROL,
3355 present ? 0 : PIN_OUT);
3356 }
3357}
3358
3359/* automatic switch internal and external mic */
3360static void cx_auto_automic(struct hda_codec *codec)
3361{
3362 struct conexant_spec *spec = codec->spec;
3363 struct auto_pin_cfg *cfg = &spec->autocfg;
3364 struct hda_input_mux *imux = &spec->private_imux;
3365 int ext_idx = spec->auto_mic_ext;
3366
3367 if (!spec->auto_mic)
3368 return;
3369 if (snd_hda_jack_detect(codec, cfg->inputs[ext_idx].pin)) {
3370 snd_hda_codec_write(codec, spec->adc_nids[0], 0,
3371 AC_VERB_SET_CONNECT_SEL,
3372 imux->items[ext_idx].index);
3373 } else {
3374 snd_hda_codec_write(codec, spec->adc_nids[0], 0,
3375 AC_VERB_SET_CONNECT_SEL,
3376 imux->items[!ext_idx].index);
3377 }
3378}
3379
3380static void cx_auto_unsol_event(struct hda_codec *codec, unsigned int res)
3381{
3382 int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
3383 switch (res >> 26) {
3384 case CONEXANT_HP_EVENT:
3385 cx_auto_hp_automute(codec);
Takashi Iwaicd372fb2011-03-03 14:40:14 +01003386 snd_hda_input_jack_report(codec, nid);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003387 break;
3388 case CONEXANT_MIC_EVENT:
3389 cx_auto_automic(codec);
Takashi Iwaicd372fb2011-03-03 14:40:14 +01003390 snd_hda_input_jack_report(codec, nid);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003391 break;
3392 }
3393}
3394
Takashi Iwaif2e57312010-09-15 10:07:08 +02003395/* return true if it's an internal-mic pin */
3396static int is_int_mic(struct hda_codec *codec, hda_nid_t pin)
3397{
3398 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, pin);
3399 return get_defcfg_device(def_conf) == AC_JACK_MIC_IN &&
Takashi Iwai99ae28b2010-09-17 14:42:34 +02003400 snd_hda_get_input_pin_attr(def_conf) == INPUT_PIN_ATTR_INT;
Takashi Iwaif2e57312010-09-15 10:07:08 +02003401}
3402
3403/* return true if it's an external-mic pin */
3404static int is_ext_mic(struct hda_codec *codec, hda_nid_t pin)
3405{
3406 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, pin);
3407 return get_defcfg_device(def_conf) == AC_JACK_MIC_IN &&
Takashi Iwaif68b3b22010-09-17 14:45:14 +02003408 snd_hda_get_input_pin_attr(def_conf) >= INPUT_PIN_ATTR_NORMAL &&
3409 (snd_hda_query_pin_caps(codec, pin) & AC_PINCAP_PRES_DETECT);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003410}
3411
3412/* check whether the pin config is suitable for auto-mic switching;
3413 * auto-mic is enabled only when one int-mic and one-ext mic exist
3414 */
3415static void cx_auto_check_auto_mic(struct hda_codec *codec)
3416{
3417 struct conexant_spec *spec = codec->spec;
3418 struct auto_pin_cfg *cfg = &spec->autocfg;
3419
3420 if (is_ext_mic(codec, cfg->inputs[0].pin) &&
3421 is_int_mic(codec, cfg->inputs[1].pin)) {
3422 spec->auto_mic = 1;
3423 spec->auto_mic_ext = 1;
3424 return;
3425 }
3426 if (is_int_mic(codec, cfg->inputs[1].pin) &&
3427 is_ext_mic(codec, cfg->inputs[0].pin)) {
3428 spec->auto_mic = 1;
3429 spec->auto_mic_ext = 0;
3430 return;
3431 }
3432}
3433
3434static void cx_auto_parse_input(struct hda_codec *codec)
3435{
3436 struct conexant_spec *spec = codec->spec;
3437 struct auto_pin_cfg *cfg = &spec->autocfg;
3438 struct hda_input_mux *imux;
3439 int i;
3440
3441 imux = &spec->private_imux;
3442 for (i = 0; i < cfg->num_inputs; i++) {
3443 int idx = get_connection_index(codec, spec->adc_nids[0],
3444 cfg->inputs[i].pin);
3445 if (idx >= 0) {
3446 const char *label;
3447 label = hda_get_autocfg_input_label(codec, cfg, i);
3448 snd_hda_add_imux_item(imux, label, idx, NULL);
3449 }
3450 }
3451 if (imux->num_items == 2 && cfg->num_inputs == 2)
3452 cx_auto_check_auto_mic(codec);
3453 if (imux->num_items > 1 && !spec->auto_mic)
3454 spec->input_mux = imux;
3455}
3456
3457/* get digital-input audio widget corresponding to the given pin */
3458static hda_nid_t cx_auto_get_dig_in(struct hda_codec *codec, hda_nid_t pin)
3459{
3460 hda_nid_t nid, end_nid;
3461
3462 end_nid = codec->start_nid + codec->num_nodes;
3463 for (nid = codec->start_nid; nid < end_nid; nid++) {
3464 unsigned int wcaps = get_wcaps(codec, nid);
3465 unsigned int type = get_wcaps_type(wcaps);
3466 if (type == AC_WID_AUD_IN && (wcaps & AC_WCAP_DIGITAL)) {
3467 if (get_connection_index(codec, nid, pin) >= 0)
3468 return nid;
3469 }
3470 }
3471 return 0;
3472}
3473
3474static void cx_auto_parse_digital(struct hda_codec *codec)
3475{
3476 struct conexant_spec *spec = codec->spec;
3477 struct auto_pin_cfg *cfg = &spec->autocfg;
3478 hda_nid_t nid;
3479
3480 if (cfg->dig_outs &&
3481 snd_hda_get_connections(codec, cfg->dig_out_pins[0], &nid, 1) == 1)
3482 spec->multiout.dig_out_nid = nid;
3483 if (cfg->dig_in_pin)
3484 spec->dig_in_nid = cx_auto_get_dig_in(codec, cfg->dig_in_pin);
3485}
3486
3487#ifdef CONFIG_SND_HDA_INPUT_BEEP
3488static void cx_auto_parse_beep(struct hda_codec *codec)
3489{
3490 struct conexant_spec *spec = codec->spec;
3491 hda_nid_t nid, end_nid;
3492
3493 end_nid = codec->start_nid + codec->num_nodes;
3494 for (nid = codec->start_nid; nid < end_nid; nid++)
3495 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_BEEP) {
3496 set_beep_amp(spec, nid, 0, HDA_OUTPUT);
3497 break;
3498 }
3499}
3500#else
3501#define cx_auto_parse_beep(codec)
3502#endif
3503
3504static int cx_auto_parse_auto_config(struct hda_codec *codec)
3505{
3506 struct conexant_spec *spec = codec->spec;
3507 int err;
3508
3509 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
3510 if (err < 0)
3511 return err;
3512
3513 cx_auto_parse_output(codec);
3514 cx_auto_parse_input(codec);
3515 cx_auto_parse_digital(codec);
3516 cx_auto_parse_beep(codec);
3517 return 0;
3518}
3519
3520static void cx_auto_turn_on_eapd(struct hda_codec *codec, int num_pins,
3521 hda_nid_t *pins)
3522{
3523 int i;
3524 for (i = 0; i < num_pins; i++) {
3525 if (snd_hda_query_pin_caps(codec, pins[i]) & AC_PINCAP_EAPD)
3526 snd_hda_codec_write(codec, pins[i], 0,
3527 AC_VERB_SET_EAPD_BTLENABLE, 0x02);
3528 }
3529}
3530
3531static void select_connection(struct hda_codec *codec, hda_nid_t pin,
3532 hda_nid_t src)
3533{
3534 int idx = get_connection_index(codec, pin, src);
3535 if (idx >= 0)
3536 snd_hda_codec_write(codec, pin, 0,
3537 AC_VERB_SET_CONNECT_SEL, idx);
3538}
3539
3540static void cx_auto_init_output(struct hda_codec *codec)
3541{
3542 struct conexant_spec *spec = codec->spec;
3543 struct auto_pin_cfg *cfg = &spec->autocfg;
3544 hda_nid_t nid;
3545 int i;
3546
3547 for (i = 0; i < spec->multiout.num_dacs; i++)
3548 snd_hda_codec_write(codec, spec->multiout.dac_nids[i], 0,
3549 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3550
3551 for (i = 0; i < cfg->hp_outs; i++)
3552 snd_hda_codec_write(codec, cfg->hp_pins[i], 0,
3553 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
3554 if (spec->auto_mute) {
3555 for (i = 0; i < cfg->hp_outs; i++) {
3556 snd_hda_codec_write(codec, cfg->hp_pins[i], 0,
3557 AC_VERB_SET_UNSOLICITED_ENABLE,
3558 AC_USRSP_EN | CONEXANT_HP_EVENT);
3559 }
3560 cx_auto_hp_automute(codec);
3561 } else {
3562 for (i = 0; i < cfg->line_outs; i++)
3563 snd_hda_codec_write(codec, cfg->line_out_pins[i], 0,
3564 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3565 for (i = 0; i < cfg->speaker_outs; i++)
3566 snd_hda_codec_write(codec, cfg->speaker_pins[i], 0,
3567 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3568 }
3569
3570 for (i = 0; i < spec->dac_info_filled; i++) {
3571 nid = spec->dac_info[i].dac;
3572 if (!nid)
3573 nid = spec->multiout.dac_nids[0];
3574 select_connection(codec, spec->dac_info[i].pin, nid);
3575 }
3576
3577 /* turn on EAPD */
3578 cx_auto_turn_on_eapd(codec, cfg->line_outs, cfg->line_out_pins);
3579 cx_auto_turn_on_eapd(codec, cfg->hp_outs, cfg->hp_pins);
3580 cx_auto_turn_on_eapd(codec, cfg->speaker_outs, cfg->speaker_pins);
3581}
3582
3583static void cx_auto_init_input(struct hda_codec *codec)
3584{
3585 struct conexant_spec *spec = codec->spec;
3586 struct auto_pin_cfg *cfg = &spec->autocfg;
3587 int i;
3588
3589 for (i = 0; i < spec->num_adc_nids; i++)
3590 snd_hda_codec_write(codec, spec->adc_nids[i], 0,
3591 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0));
3592
3593 for (i = 0; i < cfg->num_inputs; i++) {
3594 unsigned int type;
3595 if (cfg->inputs[i].type == AUTO_PIN_MIC)
3596 type = PIN_VREF80;
3597 else
3598 type = PIN_IN;
3599 snd_hda_codec_write(codec, cfg->inputs[i].pin, 0,
3600 AC_VERB_SET_PIN_WIDGET_CONTROL, type);
3601 }
3602
3603 if (spec->auto_mic) {
3604 int ext_idx = spec->auto_mic_ext;
3605 snd_hda_codec_write(codec, cfg->inputs[ext_idx].pin, 0,
3606 AC_VERB_SET_UNSOLICITED_ENABLE,
3607 AC_USRSP_EN | CONEXANT_MIC_EVENT);
3608 cx_auto_automic(codec);
3609 } else {
3610 for (i = 0; i < spec->num_adc_nids; i++) {
3611 snd_hda_codec_write(codec, spec->adc_nids[i], 0,
3612 AC_VERB_SET_CONNECT_SEL,
3613 spec->private_imux.items[0].index);
3614 }
3615 }
3616}
3617
3618static void cx_auto_init_digital(struct hda_codec *codec)
3619{
3620 struct conexant_spec *spec = codec->spec;
3621 struct auto_pin_cfg *cfg = &spec->autocfg;
3622
3623 if (spec->multiout.dig_out_nid)
3624 snd_hda_codec_write(codec, cfg->dig_out_pins[0], 0,
3625 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3626 if (spec->dig_in_nid)
3627 snd_hda_codec_write(codec, cfg->dig_in_pin, 0,
3628 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN);
3629}
3630
3631static int cx_auto_init(struct hda_codec *codec)
3632{
3633 /*snd_hda_sequence_write(codec, cx_auto_init_verbs);*/
3634 cx_auto_init_output(codec);
3635 cx_auto_init_input(codec);
3636 cx_auto_init_digital(codec);
3637 return 0;
3638}
3639
David Henningsson983345e2011-02-15 19:57:09 +01003640static int cx_auto_add_volume_idx(struct hda_codec *codec, const char *basename,
Takashi Iwaif2e57312010-09-15 10:07:08 +02003641 const char *dir, int cidx,
David Henningsson983345e2011-02-15 19:57:09 +01003642 hda_nid_t nid, int hda_dir, int amp_idx)
Takashi Iwaif2e57312010-09-15 10:07:08 +02003643{
3644 static char name[32];
3645 static struct snd_kcontrol_new knew[] = {
3646 HDA_CODEC_VOLUME(name, 0, 0, 0),
3647 HDA_CODEC_MUTE(name, 0, 0, 0),
3648 };
3649 static char *sfx[2] = { "Volume", "Switch" };
3650 int i, err;
3651
3652 for (i = 0; i < 2; i++) {
3653 struct snd_kcontrol *kctl;
David Henningsson983345e2011-02-15 19:57:09 +01003654 knew[i].private_value = HDA_COMPOSE_AMP_VAL(nid, 3, amp_idx,
3655 hda_dir);
Takashi Iwaif2e57312010-09-15 10:07:08 +02003656 knew[i].subdevice = HDA_SUBDEV_AMP_FLAG;
3657 knew[i].index = cidx;
3658 snprintf(name, sizeof(name), "%s%s %s", basename, dir, sfx[i]);
3659 kctl = snd_ctl_new1(&knew[i], codec);
3660 if (!kctl)
3661 return -ENOMEM;
3662 err = snd_hda_ctl_add(codec, nid, kctl);
3663 if (err < 0)
3664 return err;
3665 if (!(query_amp_caps(codec, nid, hda_dir) & AC_AMPCAP_MUTE))
3666 break;
3667 }
3668 return 0;
3669}
3670
David Henningsson983345e2011-02-15 19:57:09 +01003671#define cx_auto_add_volume(codec, str, dir, cidx, nid, hda_dir) \
3672 cx_auto_add_volume_idx(codec, str, dir, cidx, nid, hda_dir, 0)
3673
Takashi Iwaif2e57312010-09-15 10:07:08 +02003674#define cx_auto_add_pb_volume(codec, nid, str, idx) \
3675 cx_auto_add_volume(codec, str, " Playback", idx, nid, HDA_OUTPUT)
3676
3677static int cx_auto_build_output_controls(struct hda_codec *codec)
3678{
3679 struct conexant_spec *spec = codec->spec;
3680 int i, err;
3681 int num_line = 0, num_hp = 0, num_spk = 0;
Takashi Iwaiea734962011-01-17 11:29:34 +01003682 static const char * const texts[3] = { "Front", "Surround", "CLFE" };
Takashi Iwaif2e57312010-09-15 10:07:08 +02003683
3684 if (spec->dac_info_filled == 1)
3685 return cx_auto_add_pb_volume(codec, spec->dac_info[0].dac,
3686 "Master", 0);
3687 for (i = 0; i < spec->dac_info_filled; i++) {
3688 const char *label;
3689 int idx, type;
3690 if (!spec->dac_info[i].dac)
3691 continue;
3692 type = spec->dac_info[i].type;
3693 if (type == AUTO_PIN_LINE_OUT)
3694 type = spec->autocfg.line_out_type;
3695 switch (type) {
3696 case AUTO_PIN_LINE_OUT:
3697 default:
3698 label = texts[num_line++];
3699 idx = 0;
3700 break;
3701 case AUTO_PIN_HP_OUT:
3702 label = "Headphone";
3703 idx = num_hp++;
3704 break;
3705 case AUTO_PIN_SPEAKER_OUT:
3706 label = "Speaker";
3707 idx = num_spk++;
3708 break;
3709 }
3710 err = cx_auto_add_pb_volume(codec, spec->dac_info[i].dac,
3711 label, idx);
3712 if (err < 0)
3713 return err;
3714 }
3715 return 0;
3716}
3717
3718static int cx_auto_build_input_controls(struct hda_codec *codec)
3719{
3720 struct conexant_spec *spec = codec->spec;
3721 struct auto_pin_cfg *cfg = &spec->autocfg;
3722 static const char *prev_label;
David Henningsson983345e2011-02-15 19:57:09 +01003723 int i, err, cidx, conn_len;
3724 hda_nid_t conn[HDA_MAX_CONNECTIONS];
Takashi Iwaif2e57312010-09-15 10:07:08 +02003725
David Henningsson983345e2011-02-15 19:57:09 +01003726 int multi_adc_volume = 0; /* If the ADC nid has several input volumes */
3727 int adc_nid = spec->adc_nids[0];
3728
3729 conn_len = snd_hda_get_connections(codec, adc_nid, conn,
3730 HDA_MAX_CONNECTIONS);
3731 if (conn_len < 0)
3732 return conn_len;
3733
3734 multi_adc_volume = cfg->num_inputs > 1 && conn_len > 1;
3735 if (!multi_adc_volume) {
3736 err = cx_auto_add_volume(codec, "Capture", "", 0, adc_nid,
3737 HDA_INPUT);
3738 if (err < 0)
3739 return err;
3740 }
3741
Takashi Iwaif2e57312010-09-15 10:07:08 +02003742 prev_label = NULL;
3743 cidx = 0;
3744 for (i = 0; i < cfg->num_inputs; i++) {
3745 hda_nid_t nid = cfg->inputs[i].pin;
3746 const char *label;
David Henningsson983345e2011-02-15 19:57:09 +01003747 int j;
3748 int pin_amp = get_wcaps(codec, nid) & AC_WCAP_IN_AMP;
3749 if (!pin_amp && !multi_adc_volume)
Takashi Iwaif2e57312010-09-15 10:07:08 +02003750 continue;
David Henningsson983345e2011-02-15 19:57:09 +01003751
Takashi Iwaif2e57312010-09-15 10:07:08 +02003752 label = hda_get_autocfg_input_label(codec, cfg, i);
3753 if (label == prev_label)
3754 cidx++;
3755 else
3756 cidx = 0;
3757 prev_label = label;
David Henningsson983345e2011-02-15 19:57:09 +01003758
3759 if (pin_amp) {
3760 err = cx_auto_add_volume(codec, label, " Boost", cidx,
3761 nid, HDA_INPUT);
3762 if (err < 0)
3763 return err;
3764 }
3765
3766 if (!multi_adc_volume)
3767 continue;
3768 for (j = 0; j < conn_len; j++) {
3769 if (conn[j] == nid) {
3770 err = cx_auto_add_volume_idx(codec, label,
3771 " Capture", cidx, adc_nid, HDA_INPUT, j);
3772 if (err < 0)
3773 return err;
3774 break;
3775 }
3776 }
Takashi Iwaif2e57312010-09-15 10:07:08 +02003777 }
3778 return 0;
3779}
3780
3781static int cx_auto_build_controls(struct hda_codec *codec)
3782{
3783 int err;
3784
3785 err = cx_auto_build_output_controls(codec);
3786 if (err < 0)
3787 return err;
3788 err = cx_auto_build_input_controls(codec);
3789 if (err < 0)
3790 return err;
3791 return conexant_build_controls(codec);
3792}
3793
3794static struct hda_codec_ops cx_auto_patch_ops = {
3795 .build_controls = cx_auto_build_controls,
3796 .build_pcms = conexant_build_pcms,
3797 .init = cx_auto_init,
3798 .free = conexant_free,
3799 .unsol_event = cx_auto_unsol_event,
3800#ifdef CONFIG_SND_HDA_POWER_SAVE
3801 .suspend = conexant_suspend,
3802#endif
3803 .reboot_notify = snd_hda_shutup_pins,
3804};
3805
3806static int patch_conexant_auto(struct hda_codec *codec)
3807{
3808 struct conexant_spec *spec;
3809 int err;
3810
3811 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3812 if (!spec)
3813 return -ENOMEM;
3814 codec->spec = spec;
3815 spec->adc_nids = cx_auto_adc_nids;
3816 spec->num_adc_nids = ARRAY_SIZE(cx_auto_adc_nids);
3817 spec->capsrc_nids = spec->adc_nids;
3818 err = cx_auto_parse_auto_config(codec);
3819 if (err < 0) {
3820 kfree(codec->spec);
3821 codec->spec = NULL;
3822 return err;
3823 }
3824 codec->patch_ops = cx_auto_patch_ops;
3825 if (spec->beep_amp)
3826 snd_hda_attach_beep_device(codec, spec->beep_amp);
3827 return 0;
3828}
3829
3830/*
Takashi Iwai461e2c72008-01-25 11:35:17 +01003831 */
3832
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003833static struct hda_codec_preset snd_hda_preset_conexant[] = {
Tobin Davis82f30042007-02-13 12:45:44 +01003834 { .id = 0x14f15045, .name = "CX20549 (Venice)",
3835 .patch = patch_cxt5045 },
3836 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
3837 .patch = patch_cxt5047 },
Takashi Iwai461e2c72008-01-25 11:35:17 +01003838 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
3839 .patch = patch_cxt5051 },
Daniel Drake0fb67e92009-07-16 14:46:57 +01003840 { .id = 0x14f15066, .name = "CX20582 (Pebble)",
3841 .patch = patch_cxt5066 },
Einar Rünkaru95a618b2009-11-23 22:23:49 +02003842 { .id = 0x14f15067, .name = "CX20583 (Pebble HSF)",
3843 .patch = patch_cxt5066 },
Takashi Iwai850eab92010-08-09 13:44:27 +02003844 { .id = 0x14f15068, .name = "CX20584",
3845 .patch = patch_cxt5066 },
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02003846 { .id = 0x14f15069, .name = "CX20585",
3847 .patch = patch_cxt5066 },
David Henningsson6da8b512011-02-08 07:16:06 +01003848 { .id = 0x14f1506e, .name = "CX20590",
3849 .patch = patch_cxt5066 },
Takashi Iwaif2e57312010-09-15 10:07:08 +02003850 { .id = 0x14f15097, .name = "CX20631",
3851 .patch = patch_conexant_auto },
3852 { .id = 0x14f15098, .name = "CX20632",
3853 .patch = patch_conexant_auto },
3854 { .id = 0x14f150a1, .name = "CX20641",
3855 .patch = patch_conexant_auto },
3856 { .id = 0x14f150a2, .name = "CX20642",
3857 .patch = patch_conexant_auto },
3858 { .id = 0x14f150ab, .name = "CX20651",
3859 .patch = patch_conexant_auto },
3860 { .id = 0x14f150ac, .name = "CX20652",
3861 .patch = patch_conexant_auto },
3862 { .id = 0x14f150b8, .name = "CX20664",
3863 .patch = patch_conexant_auto },
3864 { .id = 0x14f150b9, .name = "CX20665",
3865 .patch = patch_conexant_auto },
Tobin Davisc9b443d2006-11-14 12:13:39 +01003866 {} /* terminator */
3867};
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003868
3869MODULE_ALIAS("snd-hda-codec-id:14f15045");
3870MODULE_ALIAS("snd-hda-codec-id:14f15047");
3871MODULE_ALIAS("snd-hda-codec-id:14f15051");
Daniel Drake0fb67e92009-07-16 14:46:57 +01003872MODULE_ALIAS("snd-hda-codec-id:14f15066");
Einar Rünkaru95a618b2009-11-23 22:23:49 +02003873MODULE_ALIAS("snd-hda-codec-id:14f15067");
Takashi Iwai850eab92010-08-09 13:44:27 +02003874MODULE_ALIAS("snd-hda-codec-id:14f15068");
Jens Taprogge7b2bfdb2010-04-14 23:42:04 +02003875MODULE_ALIAS("snd-hda-codec-id:14f15069");
David Henningsson6da8b512011-02-08 07:16:06 +01003876MODULE_ALIAS("snd-hda-codec-id:14f1506e");
Takashi Iwaif2e57312010-09-15 10:07:08 +02003877MODULE_ALIAS("snd-hda-codec-id:14f15097");
3878MODULE_ALIAS("snd-hda-codec-id:14f15098");
3879MODULE_ALIAS("snd-hda-codec-id:14f150a1");
3880MODULE_ALIAS("snd-hda-codec-id:14f150a2");
3881MODULE_ALIAS("snd-hda-codec-id:14f150ab");
3882MODULE_ALIAS("snd-hda-codec-id:14f150ac");
3883MODULE_ALIAS("snd-hda-codec-id:14f150b8");
3884MODULE_ALIAS("snd-hda-codec-id:14f150b9");
Takashi Iwai1289e9e2008-11-27 15:47:11 +01003885
3886MODULE_LICENSE("GPL");
3887MODULE_DESCRIPTION("Conexant HD-audio codec");
3888
3889static struct hda_codec_preset_list conexant_list = {
3890 .preset = snd_hda_preset_conexant,
3891 .owner = THIS_MODULE,
3892};
3893
3894static int __init patch_conexant_init(void)
3895{
3896 return snd_hda_add_codec_preset(&conexant_list);
3897}
3898
3899static void __exit patch_conexant_exit(void)
3900{
3901 snd_hda_delete_codec_preset(&conexant_list);
3902}
3903
3904module_init(patch_conexant_init)
3905module_exit(patch_conexant_exit)