ALSA: HDA: Pin fixup for Zotac Z68 motherboard
[deliverable/linux.git] / sound / pci / hda / patch_conexant.c
CommitLineData
c9b443d4
TD
1/*
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
c9b443d4
TD
23#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/slab.h>
26#include <linux/pci.h>
da155d5b 27#include <linux/module.h>
c9b443d4 28#include <sound/core.h>
bc7a166d
UD
29#include <sound/jack.h>
30
c9b443d4
TD
31#include "hda_codec.h"
32#include "hda_local.h"
23d30f28 33#include "hda_auto_parser.h"
c0f8faf0 34#include "hda_beep.h"
1835a0f9 35#include "hda_jack.h"
c9b443d4
TD
36
37#define CXT_PIN_DIR_IN 0x00
38#define CXT_PIN_DIR_OUT 0x01
39#define CXT_PIN_DIR_INOUT 0x02
40#define CXT_PIN_DIR_IN_NOMICBIAS 0x03
41#define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
42
43#define CONEXANT_HP_EVENT 0x37
44#define CONEXANT_MIC_EVENT 0x38
03697e2a 45#define CONEXANT_LINE_EVENT 0x39
c9b443d4 46
bc7a166d
UD
47/* Conexant 5051 specific */
48
ecda0cff 49#define CXT5051_SPDIF_OUT 0x12
bc7a166d
UD
50#define CXT5051_PORTB_EVENT 0x38
51#define CXT5051_PORTC_EVENT 0x39
c9b443d4 52
faddaa5d
TI
53#define AUTO_MIC_PORTB (1 << 1)
54#define AUTO_MIC_PORTC (1 << 2)
c9b443d4 55
f2e5731d
TI
56struct pin_dac_pair {
57 hda_nid_t pin;
58 hda_nid_t dac;
59 int type;
60};
61
47ad1f4e
TI
62struct imux_info {
63 hda_nid_t pin; /* input pin NID */
64 hda_nid_t adc; /* connected ADC NID */
65 hda_nid_t boost; /* optional boost volume NID */
66 int index; /* corresponding to autocfg.input */
67};
68
c9b443d4 69struct conexant_spec {
23d30f28 70 struct hda_gen_spec gen;
c9b443d4 71
34cbe3a6 72 const struct snd_kcontrol_new *mixers[5];
c9b443d4 73 int num_mixers;
dd5746a8 74 hda_nid_t vmaster_nid;
d2f344b5 75 struct hda_vmaster_mute_hook vmaster_mute;
f29735cb 76 bool vmaster_mute_led;
c9b443d4
TD
77
78 const struct hda_verb *init_verbs[5]; /* initialization verbs
79 * don't forget NULL
80 * termination!
81 */
82 unsigned int num_init_verbs;
83
84 /* playback */
85 struct hda_multi_out multiout; /* playback set-up
86 * max_channels, dacs must be set
87 * dig_out_nid and hp_nid are optional
88 */
89 unsigned int cur_eapd;
82f30040 90 unsigned int hp_present;
03697e2a 91 unsigned int line_present;
faddaa5d 92 unsigned int auto_mic;
f6100bb4 93 int auto_mic_ext; /* imux_pins[] index for ext mic */
43c1b2e9
TI
94 int auto_mic_dock; /* imux_pins[] index for dock mic */
95 int auto_mic_int; /* imux_pins[] index for int mic */
c9b443d4 96 unsigned int need_dac_fix;
f6a2491c 97 hda_nid_t slave_dig_outs[2];
c9b443d4
TD
98
99 /* capture */
100 unsigned int num_adc_nids;
34cbe3a6 101 const hda_nid_t *adc_nids;
c9b443d4
TD
102 hda_nid_t dig_in_nid; /* digital-in NID; optional */
103
461e2c78
TI
104 unsigned int cur_adc_idx;
105 hda_nid_t cur_adc;
106 unsigned int cur_adc_stream_tag;
107 unsigned int cur_adc_format;
108
6764bcef
TI
109 const struct hda_pcm_stream *capture_stream;
110
c9b443d4
TD
111 /* capture source */
112 const struct hda_input_mux *input_mux;
34cbe3a6 113 const hda_nid_t *capsrc_nids;
c9b443d4
TD
114 unsigned int cur_mux[3];
115
116 /* channel model */
117 const struct hda_channel_mode *channel_mode;
118 int num_channel_mode;
119
120 /* PCM information */
121 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
122
c9b443d4
TD
123 unsigned int spdif_route;
124
125 /* dynamic controls, init_verbs and input_mux */
126 struct auto_pin_cfg autocfg;
c9b443d4 127 struct hda_input_mux private_imux;
47ad1f4e 128 struct imux_info imux_info[HDA_MAX_NUM_INPUTS];
22ce5f74 129 hda_nid_t private_adc_nids[HDA_MAX_NUM_INPUTS];
41923e44 130 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
f2e5731d
TI
131 struct pin_dac_pair dac_info[8];
132 int dac_info_filled;
c9b443d4 133
0fb67e98 134 unsigned int port_d_mode;
f2e5731d 135 unsigned int auto_mute:1; /* used in auto-parser */
03697e2a
TI
136 unsigned int detect_line:1; /* Line-out detection enabled */
137 unsigned int automute_lines:1; /* automute line-out as well */
138 unsigned int automute_hp_lo:1; /* both HP and LO available */
f2e5731d 139 unsigned int dell_automute:1;
cfd3d8dc
GA
140 unsigned int dell_vostro:1;
141 unsigned int ideapad:1;
7b2bfdbc 142 unsigned int thinkpad:1;
048e78a5 143 unsigned int hp_laptop:1;
a1d6906e 144 unsigned int asus:1;
254f2968 145 unsigned int pin_eapd_ctrls:1;
18dcd304 146 unsigned int fixup_stereo_dmic:1;
75f8991d 147
6764bcef
TI
148 unsigned int adc_switching:1;
149
75f8991d
DD
150 unsigned int ext_mic_present;
151 unsigned int recording;
152 void (*capture_prepare)(struct hda_codec *codec);
153 void (*capture_cleanup)(struct hda_codec *codec);
c4cfe66c
DD
154
155 /* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors)
156 * through the microphone jack.
157 * When the user enables this through a mixer switch, both internal and
158 * external microphones are disabled. Gain is fixed at 0dB. In this mode,
159 * we also allow the bias to be configured through a separate mixer
160 * control. */
161 unsigned int dc_enable;
162 unsigned int dc_input_bias; /* offset into cxt5066_olpc_dc_bias */
163 unsigned int mic_boost; /* offset into cxt5066_analog_mic_boost */
3507e2a8
TI
164
165 unsigned int beep_amp;
19110595
TI
166
167 /* extra EAPD pins */
168 unsigned int num_eapds;
169 hda_nid_t eapds[4];
c9b443d4
TD
170};
171
172static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
173 struct hda_codec *codec,
174 struct snd_pcm_substream *substream)
175{
176 struct conexant_spec *spec = codec->spec;
9a08160b
TI
177 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
178 hinfo);
c9b443d4
TD
179}
180
181static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
182 struct hda_codec *codec,
183 unsigned int stream_tag,
184 unsigned int format,
185 struct snd_pcm_substream *substream)
186{
187 struct conexant_spec *spec = codec->spec;
188 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
189 stream_tag,
190 format, substream);
191}
192
193static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
194 struct hda_codec *codec,
195 struct snd_pcm_substream *substream)
196{
197 struct conexant_spec *spec = codec->spec;
198 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
199}
200
201/*
202 * Digital out
203 */
204static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
205 struct hda_codec *codec,
206 struct snd_pcm_substream *substream)
207{
208 struct conexant_spec *spec = codec->spec;
209 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
210}
211
212static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
213 struct hda_codec *codec,
214 struct snd_pcm_substream *substream)
215{
216 struct conexant_spec *spec = codec->spec;
217 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
218}
219
6b97eb45
TI
220static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
221 struct hda_codec *codec,
222 unsigned int stream_tag,
223 unsigned int format,
224 struct snd_pcm_substream *substream)
225{
226 struct conexant_spec *spec = codec->spec;
227 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
228 stream_tag,
229 format, substream);
230}
231
c9b443d4
TD
232/*
233 * Analog capture
234 */
235static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
236 struct hda_codec *codec,
237 unsigned int stream_tag,
238 unsigned int format,
239 struct snd_pcm_substream *substream)
240{
241 struct conexant_spec *spec = codec->spec;
75f8991d
DD
242 if (spec->capture_prepare)
243 spec->capture_prepare(codec);
c9b443d4
TD
244 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
245 stream_tag, 0, format);
246 return 0;
247}
248
249static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
250 struct hda_codec *codec,
251 struct snd_pcm_substream *substream)
252{
253 struct conexant_spec *spec = codec->spec;
888afa15 254 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
75f8991d
DD
255 if (spec->capture_cleanup)
256 spec->capture_cleanup(codec);
c9b443d4
TD
257 return 0;
258}
259
260
261
34cbe3a6 262static const struct hda_pcm_stream conexant_pcm_analog_playback = {
c9b443d4
TD
263 .substreams = 1,
264 .channels_min = 2,
265 .channels_max = 2,
266 .nid = 0, /* fill later */
267 .ops = {
268 .open = conexant_playback_pcm_open,
269 .prepare = conexant_playback_pcm_prepare,
270 .cleanup = conexant_playback_pcm_cleanup
271 },
272};
273
34cbe3a6 274static const struct hda_pcm_stream conexant_pcm_analog_capture = {
c9b443d4
TD
275 .substreams = 1,
276 .channels_min = 2,
277 .channels_max = 2,
278 .nid = 0, /* fill later */
279 .ops = {
280 .prepare = conexant_capture_pcm_prepare,
281 .cleanup = conexant_capture_pcm_cleanup
282 },
283};
284
285
34cbe3a6 286static const struct hda_pcm_stream conexant_pcm_digital_playback = {
c9b443d4
TD
287 .substreams = 1,
288 .channels_min = 2,
289 .channels_max = 2,
290 .nid = 0, /* fill later */
291 .ops = {
292 .open = conexant_dig_playback_pcm_open,
6b97eb45
TI
293 .close = conexant_dig_playback_pcm_close,
294 .prepare = conexant_dig_playback_pcm_prepare
c9b443d4
TD
295 },
296};
297
34cbe3a6 298static const struct hda_pcm_stream conexant_pcm_digital_capture = {
c9b443d4
TD
299 .substreams = 1,
300 .channels_min = 2,
301 .channels_max = 2,
302 /* NID is set in alc_build_pcms */
303};
304
461e2c78
TI
305static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
306 struct hda_codec *codec,
307 unsigned int stream_tag,
308 unsigned int format,
309 struct snd_pcm_substream *substream)
310{
311 struct conexant_spec *spec = codec->spec;
312 spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
313 spec->cur_adc_stream_tag = stream_tag;
314 spec->cur_adc_format = format;
315 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
316 return 0;
317}
318
319static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
320 struct hda_codec *codec,
321 struct snd_pcm_substream *substream)
322{
323 struct conexant_spec *spec = codec->spec;
888afa15 324 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
461e2c78
TI
325 spec->cur_adc = 0;
326 return 0;
327}
328
34cbe3a6 329static const struct hda_pcm_stream cx5051_pcm_analog_capture = {
461e2c78
TI
330 .substreams = 1,
331 .channels_min = 2,
332 .channels_max = 2,
333 .nid = 0, /* fill later */
334 .ops = {
335 .prepare = cx5051_capture_pcm_prepare,
336 .cleanup = cx5051_capture_pcm_cleanup
337 },
338};
339
c9b443d4
TD
340static int conexant_build_pcms(struct hda_codec *codec)
341{
342 struct conexant_spec *spec = codec->spec;
343 struct hda_pcm *info = spec->pcm_rec;
344
345 codec->num_pcms = 1;
346 codec->pcm_info = info;
347
348 info->name = "CONEXANT Analog";
349 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
350 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
351 spec->multiout.max_channels;
352 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
353 spec->multiout.dac_nids[0];
6764bcef
TI
354 if (spec->capture_stream)
355 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *spec->capture_stream;
356 else {
357 if (codec->vendor_id == 0x14f15051)
358 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
359 cx5051_pcm_analog_capture;
360 else {
361 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
362 conexant_pcm_analog_capture;
363 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
364 spec->num_adc_nids;
365 }
366 }
c9b443d4
TD
367 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
368
369 if (spec->multiout.dig_out_nid) {
370 info++;
371 codec->num_pcms++;
372 info->name = "Conexant Digital";
7ba72ba1 373 info->pcm_type = HDA_PCM_TYPE_SPDIF;
c9b443d4
TD
374 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
375 conexant_pcm_digital_playback;
376 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
377 spec->multiout.dig_out_nid;
378 if (spec->dig_in_nid) {
379 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
380 conexant_pcm_digital_capture;
381 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
382 spec->dig_in_nid;
383 }
f6a2491c
AR
384 if (spec->slave_dig_outs[0])
385 codec->slave_dig_outs = spec->slave_dig_outs;
c9b443d4
TD
386 }
387
388 return 0;
389}
390
391static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
392 struct snd_ctl_elem_info *uinfo)
393{
394 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
395 struct conexant_spec *spec = codec->spec;
396
397 return snd_hda_input_mux_info(spec->input_mux, uinfo);
398}
399
400static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
401 struct snd_ctl_elem_value *ucontrol)
402{
403 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
404 struct conexant_spec *spec = codec->spec;
405 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
406
407 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
408 return 0;
409}
410
411static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
412 struct snd_ctl_elem_value *ucontrol)
413{
414 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
415 struct conexant_spec *spec = codec->spec;
416 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
417
418 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
419 spec->capsrc_nids[adc_idx],
420 &spec->cur_mux[adc_idx]);
421}
422
4d7fbdbc
TI
423static void conexant_set_power(struct hda_codec *codec, hda_nid_t fg,
424 unsigned int power_state)
425{
426 if (power_state == AC_PWRST_D3)
427 msleep(100);
428 snd_hda_codec_read(codec, fg, 0, AC_VERB_SET_POWER_STATE,
429 power_state);
430 /* partial workaround for "azx_get_response timeout" */
431 if (power_state == AC_PWRST_D0)
432 msleep(10);
433 snd_hda_codec_set_power_to_all(codec, fg, power_state, true);
434}
435
c9b443d4
TD
436static int conexant_init(struct hda_codec *codec)
437{
438 struct conexant_spec *spec = codec->spec;
439 int i;
440
441 for (i = 0; i < spec->num_init_verbs; i++)
442 snd_hda_sequence_write(codec, spec->init_verbs[i]);
443 return 0;
444}
445
446static void conexant_free(struct hda_codec *codec)
447{
c0f8faf0 448 snd_hda_detach_beep_device(codec);
c9b443d4
TD
449 kfree(codec->spec);
450}
451
34cbe3a6 452static const struct snd_kcontrol_new cxt_capture_mixers[] = {
b880c74a
TI
453 {
454 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
455 .name = "Capture Source",
456 .info = conexant_mux_enum_info,
457 .get = conexant_mux_enum_get,
458 .put = conexant_mux_enum_put
459 },
460 {}
461};
462
3507e2a8
TI
463#ifdef CONFIG_SND_HDA_INPUT_BEEP
464/* additional beep mixers; the actual parameters are overwritten at build */
34cbe3a6 465static const struct snd_kcontrol_new cxt_beep_mixer[] = {
3507e2a8
TI
466 HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0, 1, 0, HDA_OUTPUT),
467 HDA_CODEC_MUTE_BEEP_MONO("Beep Playback Switch", 0, 1, 0, HDA_OUTPUT),
468 { } /* end */
469};
470#endif
471
9322ca54
TI
472static const char * const slave_pfxs[] = {
473 "Headphone", "Speaker", "Front", "Surround", "CLFE",
dd5746a8
TI
474 NULL
475};
476
c9b443d4
TD
477static int conexant_build_controls(struct hda_codec *codec)
478{
479 struct conexant_spec *spec = codec->spec;
480 unsigned int i;
481 int err;
482
483 for (i = 0; i < spec->num_mixers; i++) {
484 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
485 if (err < 0)
486 return err;
487 }
488 if (spec->multiout.dig_out_nid) {
489 err = snd_hda_create_spdif_out_ctls(codec,
74b654c9 490 spec->multiout.dig_out_nid,
c9b443d4
TD
491 spec->multiout.dig_out_nid);
492 if (err < 0)
493 return err;
9a08160b
TI
494 err = snd_hda_create_spdif_share_sw(codec,
495 &spec->multiout);
496 if (err < 0)
497 return err;
498 spec->multiout.share_spdif = 1;
c9b443d4
TD
499 }
500 if (spec->dig_in_nid) {
501 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
502 if (err < 0)
503 return err;
504 }
dd5746a8
TI
505
506 /* if we have no master control, let's create it */
507 if (spec->vmaster_nid &&
508 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
509 unsigned int vmaster_tlv[4];
510 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
511 HDA_OUTPUT, vmaster_tlv);
512 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
9322ca54
TI
513 vmaster_tlv, slave_pfxs,
514 "Playback Volume");
dd5746a8
TI
515 if (err < 0)
516 return err;
517 }
518 if (spec->vmaster_nid &&
519 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
527c73ba
TI
520 err = __snd_hda_add_vmaster(codec, "Master Playback Switch",
521 NULL, slave_pfxs,
522 "Playback Switch", true,
d2f344b5 523 &spec->vmaster_mute.sw_kctl);
dd5746a8
TI
524 if (err < 0)
525 return err;
526 }
527
b880c74a
TI
528 if (spec->input_mux) {
529 err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
530 if (err < 0)
531 return err;
532 }
533
3507e2a8
TI
534#ifdef CONFIG_SND_HDA_INPUT_BEEP
535 /* create beep controls if needed */
536 if (spec->beep_amp) {
34cbe3a6 537 const struct snd_kcontrol_new *knew;
3507e2a8
TI
538 for (knew = cxt_beep_mixer; knew->name; knew++) {
539 struct snd_kcontrol *kctl;
540 kctl = snd_ctl_new1(knew, codec);
541 if (!kctl)
542 return -ENOMEM;
543 kctl->private_value = spec->beep_amp;
544 err = snd_hda_ctl_add(codec, 0, kctl);
545 if (err < 0)
546 return err;
547 }
548 }
549#endif
550
c9b443d4
TD
551 return 0;
552}
553
697c373e
TI
554#ifdef CONFIG_SND_HDA_POWER_SAVE
555static int conexant_suspend(struct hda_codec *codec, pm_message_t state)
556{
557 snd_hda_shutup_pins(codec);
558 return 0;
559}
560#endif
561
34cbe3a6 562static const struct hda_codec_ops conexant_patch_ops = {
c9b443d4
TD
563 .build_controls = conexant_build_controls,
564 .build_pcms = conexant_build_pcms,
565 .init = conexant_init,
566 .free = conexant_free,
4d7fbdbc 567 .set_power_state = conexant_set_power,
697c373e
TI
568#ifdef CONFIG_SND_HDA_POWER_SAVE
569 .suspend = conexant_suspend,
570#endif
571 .reboot_notify = snd_hda_shutup_pins,
c9b443d4
TD
572};
573
3507e2a8
TI
574#ifdef CONFIG_SND_HDA_INPUT_BEEP
575#define set_beep_amp(spec, nid, idx, dir) \
576 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir))
577#else
578#define set_beep_amp(spec, nid, idx, dir) /* NOP */
579#endif
580
6764bcef 581static int patch_conexant_auto(struct hda_codec *codec);
c9b443d4
TD
582/*
583 * EAPD control
584 * the private value = nid | (invert << 8)
585 */
586
a5ce8890 587#define cxt_eapd_info snd_ctl_boolean_mono_info
c9b443d4 588
82f30040 589static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
c9b443d4
TD
590 struct snd_ctl_elem_value *ucontrol)
591{
592 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
593 struct conexant_spec *spec = codec->spec;
594 int invert = (kcontrol->private_value >> 8) & 1;
595 if (invert)
596 ucontrol->value.integer.value[0] = !spec->cur_eapd;
597 else
598 ucontrol->value.integer.value[0] = spec->cur_eapd;
599 return 0;
82f30040 600
c9b443d4
TD
601}
602
82f30040 603static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
c9b443d4
TD
604 struct snd_ctl_elem_value *ucontrol)
605{
606 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
607 struct conexant_spec *spec = codec->spec;
608 int invert = (kcontrol->private_value >> 8) & 1;
609 hda_nid_t nid = kcontrol->private_value & 0xff;
610 unsigned int eapd;
82f30040 611
68ea7b2f 612 eapd = !!ucontrol->value.integer.value[0];
c9b443d4
TD
613 if (invert)
614 eapd = !eapd;
82beb8fd 615 if (eapd == spec->cur_eapd)
c9b443d4 616 return 0;
82f30040 617
c9b443d4 618 spec->cur_eapd = eapd;
82beb8fd
TI
619 snd_hda_codec_write_cache(codec, nid,
620 0, AC_VERB_SET_EAPD_BTLENABLE,
621 eapd ? 0x02 : 0x00);
c9b443d4
TD
622 return 1;
623}
624
86d72bdf
TI
625/* controls for test mode */
626#ifdef CONFIG_SND_DEBUG
627
82f30040
TD
628#define CXT_EAPD_SWITCH(xname, nid, mask) \
629 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
630 .info = cxt_eapd_info, \
631 .get = cxt_eapd_get, \
632 .put = cxt_eapd_put, \
633 .private_value = nid | (mask<<16) }
634
635
636
c9b443d4
TD
637static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
638 struct snd_ctl_elem_info *uinfo)
639{
640 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
641 struct conexant_spec *spec = codec->spec;
642 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
643 spec->num_channel_mode);
644}
645
646static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
647 struct snd_ctl_elem_value *ucontrol)
648{
649 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
650 struct conexant_spec *spec = codec->spec;
651 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
652 spec->num_channel_mode,
653 spec->multiout.max_channels);
654}
655
656static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
657 struct snd_ctl_elem_value *ucontrol)
658{
659 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
660 struct conexant_spec *spec = codec->spec;
661 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
662 spec->num_channel_mode,
663 &spec->multiout.max_channels);
664 if (err >= 0 && spec->need_dac_fix)
665 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
666 return err;
667}
668
669#define CXT_PIN_MODE(xname, nid, dir) \
670 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
671 .info = conexant_ch_mode_info, \
672 .get = conexant_ch_mode_get, \
673 .put = conexant_ch_mode_put, \
674 .private_value = nid | (dir<<16) }
675
86d72bdf
TI
676#endif /* CONFIG_SND_DEBUG */
677
c9b443d4
TD
678/* Conexant 5045 specific */
679
34cbe3a6
TI
680static const hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
681static const hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
682static const hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
cbef9789 683#define CXT5045_SPDIF_OUT 0x18
c9b443d4 684
34cbe3a6 685static const struct hda_channel_mode cxt5045_modes[1] = {
5cd57529
TD
686 { 2, NULL },
687};
c9b443d4 688
34cbe3a6 689static const struct hda_input_mux cxt5045_capture_source = {
c9b443d4
TD
690 .num_items = 2,
691 .items = {
3edbbb9e
MK
692 { "Internal Mic", 0x1 },
693 { "Mic", 0x2 },
c9b443d4
TD
694 }
695};
696
34cbe3a6 697static const struct hda_input_mux cxt5045_capture_source_benq = {
e6e03dae 698 .num_items = 4,
5218c892 699 .items = {
3edbbb9e
MK
700 { "Internal Mic", 0x1 },
701 { "Mic", 0x2 },
702 { "Line", 0x3 },
703 { "Mixer", 0x0 },
5218c892
JZ
704 }
705};
706
34cbe3a6 707static const struct hda_input_mux cxt5045_capture_source_hp530 = {
2de3c232
J
708 .num_items = 2,
709 .items = {
3edbbb9e
MK
710 { "Mic", 0x1 },
711 { "Internal Mic", 0x2 },
2de3c232
J
712 }
713};
714
c9b443d4
TD
715/* turn on/off EAPD (+ mute HP) as a master switch */
716static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
717 struct snd_ctl_elem_value *ucontrol)
718{
719 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
720 struct conexant_spec *spec = codec->spec;
82f30040 721 unsigned int bits;
c9b443d4 722
82f30040 723 if (!cxt_eapd_put(kcontrol, ucontrol))
c9b443d4
TD
724 return 0;
725
82f30040
TD
726 /* toggle internal speakers mute depending of presence of
727 * the headphone jack
728 */
47fd830a
TI
729 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
730 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
731 HDA_AMP_MUTE, bits);
7f29673b 732
47fd830a
TI
733 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
734 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
735 HDA_AMP_MUTE, bits);
c9b443d4
TD
736 return 1;
737}
738
739/* bind volumes of both NID 0x10 and 0x11 */
34cbe3a6 740static const struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
cca3b371
TI
741 .ops = &snd_hda_bind_vol,
742 .values = {
743 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
744 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
745 0
746 },
747};
c9b443d4 748
7f29673b
TD
749/* toggle input of built-in and mic jack appropriately */
750static void cxt5045_hp_automic(struct hda_codec *codec)
751{
34cbe3a6 752 static const struct hda_verb mic_jack_on[] = {
7f29673b
TD
753 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
754 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
755 {}
756 };
34cbe3a6 757 static const struct hda_verb mic_jack_off[] = {
7f29673b
TD
758 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
759 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
760 {}
761 };
762 unsigned int present;
763
d56757ab 764 present = snd_hda_jack_detect(codec, 0x12);
7f29673b
TD
765 if (present)
766 snd_hda_sequence_write(codec, mic_jack_on);
767 else
768 snd_hda_sequence_write(codec, mic_jack_off);
769}
770
c9b443d4
TD
771
772/* mute internal speaker if HP is plugged */
773static void cxt5045_hp_automute(struct hda_codec *codec)
774{
82f30040 775 struct conexant_spec *spec = codec->spec;
dd87da1c 776 unsigned int bits;
c9b443d4 777
d56757ab 778 spec->hp_present = snd_hda_jack_detect(codec, 0x11);
dd87da1c 779
47fd830a
TI
780 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
781 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
782 HDA_AMP_MUTE, bits);
c9b443d4
TD
783}
784
785/* unsolicited event for HP jack sensing */
786static void cxt5045_hp_unsol_event(struct hda_codec *codec,
787 unsigned int res)
788{
789 res >>= 26;
790 switch (res) {
791 case CONEXANT_HP_EVENT:
792 cxt5045_hp_automute(codec);
793 break;
7f29673b
TD
794 case CONEXANT_MIC_EVENT:
795 cxt5045_hp_automic(codec);
796 break;
797
c9b443d4
TD
798 }
799}
800
34cbe3a6 801static const struct snd_kcontrol_new cxt5045_mixers[] = {
cbf2d28e
MK
802 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x00, HDA_INPUT),
803 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT),
c8229c38
TI
804 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
805 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
28c4edb7
DH
806 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
807 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
8607f7c4
DH
808 HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
809 HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
cca3b371 810 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
c9b443d4
TD
811 {
812 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
813 .name = "Master Playback Switch",
82f30040
TD
814 .info = cxt_eapd_info,
815 .get = cxt_eapd_get,
c9b443d4 816 .put = cxt5045_hp_master_sw_put,
82f30040 817 .private_value = 0x10,
c9b443d4
TD
818 },
819
820 {}
821};
822
34cbe3a6 823static const struct snd_kcontrol_new cxt5045_benq_mixers[] = {
3edbbb9e
MK
824 HDA_CODEC_VOLUME("Line Playback Volume", 0x17, 0x3, HDA_INPUT),
825 HDA_CODEC_MUTE("Line Playback Switch", 0x17, 0x3, HDA_INPUT),
22e14130 826
5218c892
JZ
827 {}
828};
829
34cbe3a6 830static const struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
cbf2d28e
MK
831 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x00, HDA_INPUT),
832 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT),
2de3c232
J
833 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
834 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
28c4edb7
DH
835 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
836 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
8607f7c4
DH
837 HDA_CODEC_VOLUME("Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
838 HDA_CODEC_MUTE("Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
2de3c232
J
839 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
34cbe3a6 852static const struct hda_verb cxt5045_init_verbs[] = {
c9b443d4 853 /* Line in, Mic */
4090dffb 854 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
7f29673b 855 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
c9b443d4 856 /* HP, Amp */
c8229c38
TI
857 {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)},
28c4edb7 866 /* Record selector: Internal mic */
7f29673b 867 {0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
82f30040 868 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
c9b443d4
TD
869 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
870 /* SPDIF route: PCM */
cbef9789 871 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
c9b443d4 872 { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
c9b443d4 873 /* EAPD */
82f30040 874 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
c9b443d4
TD
875 { } /* end */
876};
877
34cbe3a6 878static const struct hda_verb cxt5045_benq_init_verbs[] = {
28c4edb7 879 /* Internal Mic, Mic */
5218c892
JZ
880 {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)},
28c4edb7 892 /* Record selector: Internal mic */
5218c892
JZ
893 {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 */
cbef9789 897 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5218c892
JZ
898 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
899 /* EAPD */
900 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
901 { } /* end */
902};
7f29673b 903
34cbe3a6 904static const struct hda_verb cxt5045_hp_sense_init_verbs[] = {
7f29673b
TD
905 /* pin sensing on HP jack */
906 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
d3091fad 907 { } /* end */
7f29673b
TD
908};
909
34cbe3a6 910static const struct hda_verb cxt5045_mic_sense_init_verbs[] = {
7f29673b
TD
911 /* pin sensing on HP jack */
912 {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
d3091fad 913 { } /* end */
7f29673b
TD
914};
915
c9b443d4
TD
916#ifdef CONFIG_SND_DEBUG
917/* Test configuration for debugging, modelled after the ALC260 test
918 * configuration.
919 */
34cbe3a6 920static const struct hda_input_mux cxt5045_test_capture_source = {
c9b443d4
TD
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
34cbe3a6 931static const struct snd_kcontrol_new cxt5045_test_mixer[] = {
c9b443d4
TD
932
933 /* Output controls */
c9b443d4
TD
934 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
935 HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
250f3274
MK
936 HDA_CODEC_VOLUME("HP-OUT Playback Volume", 0x11, 0x0, HDA_OUTPUT),
937 HDA_CODEC_MUTE("HP-OUT Playback Switch", 0x11, 0x0, HDA_OUTPUT),
938 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
939 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
c9b443d4
TD
940
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
82f30040
TD
945 /* EAPD Switch Control */
946 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
947
c9b443d4 948 /* Loopback mixer controls */
7f29673b 949
250f3274
MK
950 HDA_CODEC_VOLUME("PCM Volume", 0x17, 0x0, HDA_INPUT),
951 HDA_CODEC_MUTE("PCM Switch", 0x17, 0x0, HDA_INPUT),
952 HDA_CODEC_VOLUME("MIC1 pin Volume", 0x17, 0x1, HDA_INPUT),
953 HDA_CODEC_MUTE("MIC1 pin Switch", 0x17, 0x1, HDA_INPUT),
954 HDA_CODEC_VOLUME("LINE1 pin Volume", 0x17, 0x2, HDA_INPUT),
955 HDA_CODEC_MUTE("LINE1 pin Switch", 0x17, 0x2, HDA_INPUT),
956 HDA_CODEC_VOLUME("HP-OUT pin Volume", 0x17, 0x3, HDA_INPUT),
957 HDA_CODEC_MUTE("HP-OUT pin Switch", 0x17, 0x3, HDA_INPUT),
958 HDA_CODEC_VOLUME("CD pin Volume", 0x17, 0x4, HDA_INPUT),
959 HDA_CODEC_MUTE("CD pin Switch", 0x17, 0x4, HDA_INPUT),
c9b443d4
TD
960 {
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 },
fb3409e7 967 /* Audio input controls */
cbf2d28e
MK
968 HDA_CODEC_VOLUME("Capture Volume", 0x1a, 0x0, HDA_INPUT),
969 HDA_CODEC_MUTE("Capture Switch", 0x1a, 0x0, HDA_INPUT),
c9b443d4
TD
970 { } /* end */
971};
972
34cbe3a6 973static const struct hda_verb cxt5045_test_init_verbs[] = {
7f29673b
TD
974 /* Set connections */
975 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
976 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
977 { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
c9b443d4
TD
978 /* Enable retasking pins as output, initially without power amp */
979 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7f29673b 980 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
c9b443d4
TD
981
982 /* Disable digital (SPDIF) pins initially, but users can enable
983 * them via a mixer switch. In the case of SPDIF-out, this initverb
984 * payload also sets the generation to 0, output to be in "consumer"
985 * PCM format, copyright asserted, no pre-emphasis and no validity
986 * control.
987 */
cbef9789
TI
988 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
989 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
c9b443d4 990
c9b443d4
TD
991 /* Unmute retasking pin widget output buffers since the default
992 * state appears to be output. As the pin mode is changed by the
993 * user the pin mode control will take care of enabling the pin's
994 * input/output buffers as needed.
995 */
996 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
997 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
998
999 /* Mute capture amp left and right */
1000 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1001
1002 /* Set ADC connection select to match default mixer setting (mic1
1003 * pin)
1004 */
250f3274
MK
1005 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01},
1006 {0x17, AC_VERB_SET_CONNECT_SEL, 0x01},
c9b443d4
TD
1007
1008 /* Mute all inputs to mixer widget (even unconnected ones) */
250f3274 1009 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer */
c9b443d4
TD
1010 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1011 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1012 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1013 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1014
1015 { }
1016};
1017#endif
1018
1019
1020/* initialize jack-sensing, too */
1021static int cxt5045_init(struct hda_codec *codec)
1022{
1023 conexant_init(codec);
1024 cxt5045_hp_automute(codec);
1025 return 0;
1026}
1027
1028
1029enum {
15908c36
MB
1030 CXT5045_LAPTOP_HPSENSE,
1031 CXT5045_LAPTOP_MICSENSE,
1032 CXT5045_LAPTOP_HPMICSENSE,
5218c892 1033 CXT5045_BENQ,
2de3c232 1034 CXT5045_LAPTOP_HP530,
c9b443d4
TD
1035#ifdef CONFIG_SND_DEBUG
1036 CXT5045_TEST,
1037#endif
1f8458a2 1038 CXT5045_AUTO,
f5fcc13c 1039 CXT5045_MODELS
c9b443d4
TD
1040};
1041
ea734963 1042static const char * const cxt5045_models[CXT5045_MODELS] = {
15908c36
MB
1043 [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense",
1044 [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense",
1045 [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense",
1046 [CXT5045_BENQ] = "benq",
2de3c232 1047 [CXT5045_LAPTOP_HP530] = "laptop-hp530",
c9b443d4 1048#ifdef CONFIG_SND_DEBUG
f5fcc13c 1049 [CXT5045_TEST] = "test",
c9b443d4 1050#endif
1f8458a2 1051 [CXT5045_AUTO] = "auto",
f5fcc13c
TI
1052};
1053
34cbe3a6 1054static const struct snd_pci_quirk cxt5045_cfg_tbl[] = {
2de3c232 1055 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
6a9dccd6 1056 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
5218c892 1057 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
15908c36
MB
1058 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
1059 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
9e464154
TI
1060 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
1061 CXT5045_LAPTOP_HPMICSENSE),
15908c36
MB
1062 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1063 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1064 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
dea0a509
TI
1065 SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1066 CXT5045_LAPTOP_HPMICSENSE),
15908c36 1067 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
c9b443d4
TD
1068 {}
1069};
1070
1071static int patch_cxt5045(struct hda_codec *codec)
1072{
1073 struct conexant_spec *spec;
1074 int board_config;
1075
1f8458a2
TI
1076 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1077 cxt5045_models,
1078 cxt5045_cfg_tbl);
1079 if (board_config < 0)
c82693db 1080 board_config = CXT5045_AUTO; /* model=auto as default */
1f8458a2
TI
1081 if (board_config == CXT5045_AUTO)
1082 return patch_conexant_auto(codec);
1083
c9b443d4
TD
1084 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1085 if (!spec)
1086 return -ENOMEM;
c9b443d4 1087 codec->spec = spec;
4f32456e 1088 codec->single_adc_amp = 1;
c9b443d4
TD
1089
1090 spec->multiout.max_channels = 2;
1091 spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1092 spec->multiout.dac_nids = cxt5045_dac_nids;
1093 spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1094 spec->num_adc_nids = 1;
1095 spec->adc_nids = cxt5045_adc_nids;
1096 spec->capsrc_nids = cxt5045_capsrc_nids;
1097 spec->input_mux = &cxt5045_capture_source;
1098 spec->num_mixers = 1;
1099 spec->mixers[0] = cxt5045_mixers;
1100 spec->num_init_verbs = 1;
1101 spec->init_verbs[0] = cxt5045_init_verbs;
1102 spec->spdif_route = 0;
3507e2a8
TI
1103 spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes);
1104 spec->channel_mode = cxt5045_modes;
5cd57529 1105
3507e2a8 1106 set_beep_amp(spec, 0x16, 0, 1);
c9b443d4
TD
1107
1108 codec->patch_ops = conexant_patch_ops;
c9b443d4 1109
c9b443d4 1110 switch (board_config) {
15908c36 1111 case CXT5045_LAPTOP_HPSENSE:
7f29673b
TD
1112 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1113 spec->input_mux = &cxt5045_capture_source;
1114 spec->num_init_verbs = 2;
1115 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1116 spec->mixers[0] = cxt5045_mixers;
1117 codec->patch_ops.init = cxt5045_init;
1118 break;
15908c36 1119 case CXT5045_LAPTOP_MICSENSE:
86376df6 1120 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
c9b443d4
TD
1121 spec->input_mux = &cxt5045_capture_source;
1122 spec->num_init_verbs = 2;
7f29673b 1123 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
c9b443d4
TD
1124 spec->mixers[0] = cxt5045_mixers;
1125 codec->patch_ops.init = cxt5045_init;
1126 break;
15908c36
MB
1127 default:
1128 case CXT5045_LAPTOP_HPMICSENSE:
1129 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1130 spec->input_mux = &cxt5045_capture_source;
1131 spec->num_init_verbs = 3;
1132 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1133 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
1134 spec->mixers[0] = cxt5045_mixers;
1135 codec->patch_ops.init = cxt5045_init;
1136 break;
5218c892
JZ
1137 case CXT5045_BENQ:
1138 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1139 spec->input_mux = &cxt5045_capture_source_benq;
1140 spec->num_init_verbs = 1;
1141 spec->init_verbs[0] = cxt5045_benq_init_verbs;
1142 spec->mixers[0] = cxt5045_mixers;
1143 spec->mixers[1] = cxt5045_benq_mixers;
1144 spec->num_mixers = 2;
1145 codec->patch_ops.init = cxt5045_init;
1146 break;
2de3c232
J
1147 case CXT5045_LAPTOP_HP530:
1148 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1149 spec->input_mux = &cxt5045_capture_source_hp530;
1150 spec->num_init_verbs = 2;
1151 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1152 spec->mixers[0] = cxt5045_mixers_hp530;
1153 codec->patch_ops.init = cxt5045_init;
1154 break;
c9b443d4
TD
1155#ifdef CONFIG_SND_DEBUG
1156 case CXT5045_TEST:
1157 spec->input_mux = &cxt5045_test_capture_source;
1158 spec->mixers[0] = cxt5045_test_mixer;
1159 spec->init_verbs[0] = cxt5045_test_init_verbs;
15908c36
MB
1160 break;
1161
c9b443d4
TD
1162#endif
1163 }
48ecb7e8 1164
031005f7
TI
1165 switch (codec->subsystem_id >> 16) {
1166 case 0x103c:
8f0f5ff6 1167 case 0x1631:
0b587fc4 1168 case 0x1734:
0ebf9e36
DC
1169 case 0x17aa:
1170 /* HP, Packard Bell, Fujitsu-Siemens & Lenovo laptops have
1171 * really bad sound over 0dB on NID 0x17. Fix max PCM level to
1172 * 0 dB (originally it has 0x2b steps with 0dB offset 0x14)
031005f7
TI
1173 */
1174 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1175 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1176 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1177 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1178 (1 << AC_AMPCAP_MUTE_SHIFT));
1179 break;
1180 }
48ecb7e8 1181
3507e2a8
TI
1182 if (spec->beep_amp)
1183 snd_hda_attach_beep_device(codec, spec->beep_amp);
1184
c9b443d4
TD
1185 return 0;
1186}
1187
1188
1189/* Conexant 5047 specific */
82f30040 1190#define CXT5047_SPDIF_OUT 0x11
c9b443d4 1191
34cbe3a6
TI
1192static const hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
1193static const hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1194static const hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
c9b443d4 1195
34cbe3a6 1196static const struct hda_channel_mode cxt5047_modes[1] = {
5cd57529
TD
1197 { 2, NULL },
1198};
c9b443d4 1199
34cbe3a6 1200static const struct hda_input_mux cxt5047_toshiba_capture_source = {
82f30040
TD
1201 .num_items = 2,
1202 .items = {
1203 { "ExtMic", 0x2 },
1204 { "Line-In", 0x1 },
c9b443d4
TD
1205 }
1206};
1207
1208/* turn on/off EAPD (+ mute HP) as a master switch */
1209static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1210 struct snd_ctl_elem_value *ucontrol)
1211{
1212 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1213 struct conexant_spec *spec = codec->spec;
82f30040 1214 unsigned int bits;
c9b443d4 1215
82f30040 1216 if (!cxt_eapd_put(kcontrol, ucontrol))
c9b443d4
TD
1217 return 0;
1218
82f30040
TD
1219 /* toggle internal speakers mute depending of presence of
1220 * the headphone jack
1221 */
47fd830a 1222 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
3b7523fc
TI
1223 /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1224 * pin widgets unlike other codecs. In this case, we need to
1225 * set index 0x01 for the volume from the mixer amp 0x19.
1226 */
5d75bc55 1227 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
47fd830a
TI
1228 HDA_AMP_MUTE, bits);
1229 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1230 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1231 HDA_AMP_MUTE, bits);
c9b443d4
TD
1232 return 1;
1233}
1234
c9b443d4
TD
1235/* mute internal speaker if HP is plugged */
1236static void cxt5047_hp_automute(struct hda_codec *codec)
1237{
82f30040 1238 struct conexant_spec *spec = codec->spec;
dd87da1c 1239 unsigned int bits;
c9b443d4 1240
d56757ab 1241 spec->hp_present = snd_hda_jack_detect(codec, 0x13);
dd87da1c 1242
47fd830a 1243 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
3b7523fc 1244 /* See the note in cxt5047_hp_master_sw_put */
5d75bc55 1245 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
47fd830a 1246 HDA_AMP_MUTE, bits);
c9b443d4
TD
1247}
1248
1249/* toggle input of built-in and mic jack appropriately */
1250static void cxt5047_hp_automic(struct hda_codec *codec)
1251{
34cbe3a6 1252 static const struct hda_verb mic_jack_on[] = {
9f113e0e
MB
1253 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1254 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
c9b443d4
TD
1255 {}
1256 };
34cbe3a6 1257 static const struct hda_verb mic_jack_off[] = {
9f113e0e
MB
1258 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1259 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
c9b443d4
TD
1260 {}
1261 };
1262 unsigned int present;
1263
d56757ab 1264 present = snd_hda_jack_detect(codec, 0x15);
c9b443d4
TD
1265 if (present)
1266 snd_hda_sequence_write(codec, mic_jack_on);
1267 else
1268 snd_hda_sequence_write(codec, mic_jack_off);
1269}
1270
1271/* unsolicited event for HP jack sensing */
1272static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1273 unsigned int res)
1274{
9f113e0e 1275 switch (res >> 26) {
c9b443d4
TD
1276 case CONEXANT_HP_EVENT:
1277 cxt5047_hp_automute(codec);
1278 break;
1279 case CONEXANT_MIC_EVENT:
1280 cxt5047_hp_automic(codec);
1281 break;
1282 }
1283}
1284
34cbe3a6 1285static const struct snd_kcontrol_new cxt5047_base_mixers[] = {
df481e41
TI
1286 HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1287 HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
5f99f86a 1288 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
c9b443d4
TD
1289 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1290 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1291 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1292 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
82f30040
TD
1293 {
1294 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1295 .name = "Master Playback Switch",
1296 .info = cxt_eapd_info,
1297 .get = cxt_eapd_get,
c9b443d4
TD
1298 .put = cxt5047_hp_master_sw_put,
1299 .private_value = 0x13,
1300 },
1301
1302 {}
1303};
1304
34cbe3a6 1305static const struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
3b7523fc 1306 /* See the note in cxt5047_hp_master_sw_put */
5d75bc55 1307 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
df481e41
TI
1308 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1309 {}
1310};
1311
34cbe3a6 1312static const struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
c9b443d4 1313 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
c9b443d4
TD
1314 { } /* end */
1315};
1316
34cbe3a6 1317static const struct hda_verb cxt5047_init_verbs[] = {
c9b443d4
TD
1318 /* Line in, Mic, Built-in Mic */
1319 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1320 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1321 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
7f29673b 1322 /* HP, Speaker */
b7589ceb 1323 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
5b3a7440
TI
1324 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
1325 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
7f29673b 1326 /* Record selector: Mic */
c9b443d4
TD
1327 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1328 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1329 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
7f29673b
TD
1330 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
1331 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1332 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1333 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1334 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
c9b443d4
TD
1335 /* SPDIF route: PCM */
1336 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
82f30040
TD
1337 /* Enable unsolicited events */
1338 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1339 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
c9b443d4
TD
1340 { } /* end */
1341};
1342
1343/* configuration for Toshiba Laptops */
34cbe3a6 1344static const struct hda_verb cxt5047_toshiba_init_verbs[] = {
3b628867 1345 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
c9b443d4
TD
1346 {}
1347};
1348
1349/* Test configuration for debugging, modelled after the ALC260 test
1350 * configuration.
1351 */
1352#ifdef CONFIG_SND_DEBUG
34cbe3a6 1353static const struct hda_input_mux cxt5047_test_capture_source = {
82f30040 1354 .num_items = 4,
c9b443d4 1355 .items = {
82f30040
TD
1356 { "LINE1 pin", 0x0 },
1357 { "MIC1 pin", 0x1 },
1358 { "MIC2 pin", 0x2 },
1359 { "CD pin", 0x3 },
c9b443d4
TD
1360 },
1361};
1362
34cbe3a6 1363static const struct snd_kcontrol_new cxt5047_test_mixer[] = {
c9b443d4
TD
1364
1365 /* Output only controls */
82f30040
TD
1366 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1367 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1368 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1369 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
c9b443d4
TD
1370 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1371 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1372 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1373 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
82f30040
TD
1374 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1375 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1376 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1377 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
c9b443d4
TD
1378
1379 /* Modes for retasking pin widgets */
1380 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1381 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1382
82f30040
TD
1383 /* EAPD Switch Control */
1384 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
c9b443d4 1385
82f30040
TD
1386 /* Loopback mixer controls */
1387 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1388 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1389 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1390 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1391 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1392 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1393 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1394 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
1395
1396 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1397 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1398 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1399 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1400 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1401 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1402 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1403 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
c9b443d4
TD
1404 {
1405 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1406 .name = "Input Source",
1407 .info = conexant_mux_enum_info,
1408 .get = conexant_mux_enum_get,
1409 .put = conexant_mux_enum_put,
1410 },
854206b0 1411 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
9f113e0e 1412
c9b443d4
TD
1413 { } /* end */
1414};
1415
34cbe3a6 1416static const struct hda_verb cxt5047_test_init_verbs[] = {
c9b443d4
TD
1417 /* Enable retasking pins as output, initially without power amp */
1418 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1419 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1420 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1421
1422 /* Disable digital (SPDIF) pins initially, but users can enable
1423 * them via a mixer switch. In the case of SPDIF-out, this initverb
1424 * payload also sets the generation to 0, output to be in "consumer"
1425 * PCM format, copyright asserted, no pre-emphasis and no validity
1426 * control.
1427 */
1428 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1429
1430 /* Ensure mic1, mic2, line1 pin widgets take input from the
1431 * OUT1 sum bus when acting as an output.
1432 */
1433 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1434 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1435
1436 /* Start with output sum widgets muted and their output gains at min */
1437 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1438 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1439
1440 /* Unmute retasking pin widget output buffers since the default
1441 * state appears to be output. As the pin mode is changed by the
1442 * user the pin mode control will take care of enabling the pin's
1443 * input/output buffers as needed.
1444 */
1445 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1446 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1447 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1448
1449 /* Mute capture amp left and right */
1450 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1451
1452 /* Set ADC connection select to match default mixer setting (mic1
1453 * pin)
1454 */
1455 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1456
1457 /* Mute all inputs to mixer widget (even unconnected ones) */
1458 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1459 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1460 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1461 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1462 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1463 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1464 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1465 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1466
1467 { }
1468};
1469#endif
1470
1471
1472/* initialize jack-sensing, too */
1473static int cxt5047_hp_init(struct hda_codec *codec)
1474{
1475 conexant_init(codec);
1476 cxt5047_hp_automute(codec);
c9b443d4
TD
1477 return 0;
1478}
1479
1480
1481enum {
f5fcc13c
TI
1482 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1483 CXT5047_LAPTOP_HP, /* Some HP laptops */
1484 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
c9b443d4
TD
1485#ifdef CONFIG_SND_DEBUG
1486 CXT5047_TEST,
1487#endif
fa5dadcb 1488 CXT5047_AUTO,
f5fcc13c 1489 CXT5047_MODELS
c9b443d4
TD
1490};
1491
ea734963 1492static const char * const cxt5047_models[CXT5047_MODELS] = {
f5fcc13c
TI
1493 [CXT5047_LAPTOP] = "laptop",
1494 [CXT5047_LAPTOP_HP] = "laptop-hp",
1495 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
c9b443d4 1496#ifdef CONFIG_SND_DEBUG
f5fcc13c 1497 [CXT5047_TEST] = "test",
c9b443d4 1498#endif
fa5dadcb 1499 [CXT5047_AUTO] = "auto",
f5fcc13c
TI
1500};
1501
34cbe3a6 1502static const struct snd_pci_quirk cxt5047_cfg_tbl[] = {
ac3e3741 1503 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
dea0a509
TI
1504 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1505 CXT5047_LAPTOP),
f5fcc13c 1506 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
c9b443d4
TD
1507 {}
1508};
1509
1510static int patch_cxt5047(struct hda_codec *codec)
1511{
1512 struct conexant_spec *spec;
1513 int board_config;
1514
fa5dadcb
TI
1515 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1516 cxt5047_models,
1517 cxt5047_cfg_tbl);
fa5dadcb 1518 if (board_config < 0)
c82693db 1519 board_config = CXT5047_AUTO; /* model=auto as default */
fa5dadcb
TI
1520 if (board_config == CXT5047_AUTO)
1521 return patch_conexant_auto(codec);
1522
c9b443d4
TD
1523 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1524 if (!spec)
1525 return -ENOMEM;
c9b443d4 1526 codec->spec = spec;
9421f954 1527 codec->pin_amp_workaround = 1;
c9b443d4
TD
1528
1529 spec->multiout.max_channels = 2;
1530 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1531 spec->multiout.dac_nids = cxt5047_dac_nids;
1532 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1533 spec->num_adc_nids = 1;
1534 spec->adc_nids = cxt5047_adc_nids;
1535 spec->capsrc_nids = cxt5047_capsrc_nids;
c9b443d4 1536 spec->num_mixers = 1;
df481e41 1537 spec->mixers[0] = cxt5047_base_mixers;
c9b443d4
TD
1538 spec->num_init_verbs = 1;
1539 spec->init_verbs[0] = cxt5047_init_verbs;
1540 spec->spdif_route = 0;
5cd57529
TD
1541 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1542 spec->channel_mode = cxt5047_modes,
c9b443d4
TD
1543
1544 codec->patch_ops = conexant_patch_ops;
c9b443d4 1545
c9b443d4
TD
1546 switch (board_config) {
1547 case CXT5047_LAPTOP:
df481e41
TI
1548 spec->num_mixers = 2;
1549 spec->mixers[1] = cxt5047_hp_spk_mixers;
1550 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
c9b443d4
TD
1551 break;
1552 case CXT5047_LAPTOP_HP:
df481e41
TI
1553 spec->num_mixers = 2;
1554 spec->mixers[1] = cxt5047_hp_only_mixers;
fb3409e7 1555 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
c9b443d4
TD
1556 codec->patch_ops.init = cxt5047_hp_init;
1557 break;
1558 case CXT5047_LAPTOP_EAPD:
82f30040 1559 spec->input_mux = &cxt5047_toshiba_capture_source;
df481e41
TI
1560 spec->num_mixers = 2;
1561 spec->mixers[1] = cxt5047_hp_spk_mixers;
c9b443d4
TD
1562 spec->num_init_verbs = 2;
1563 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
fb3409e7 1564 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
c9b443d4
TD
1565 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;
fb3409e7 1571 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
c9b443d4
TD
1572#endif
1573 }
dd5746a8 1574 spec->vmaster_nid = 0x13;
025f206c
DC
1575
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
c9b443d4
TD
1590 return 0;
1591}
1592
461e2c78 1593/* Conexant 5051 specific */
34cbe3a6
TI
1594static const hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1595static const hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
461e2c78 1596
34cbe3a6 1597static const struct hda_channel_mode cxt5051_modes[1] = {
461e2c78
TI
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;
23d2df5b
TI
1605 /* headphone pin */
1606 pinctl = (spec->hp_present && spec->cur_eapd) ? PIN_HP : 0;
cdd03ced 1607 snd_hda_set_pin_ctl(codec, 0x16, pinctl);
23d2df5b 1608 /* speaker pin */
461e2c78 1609 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
cdd03ced 1610 snd_hda_set_pin_ctl(codec, 0x1a, pinctl);
a80581d0 1611 /* on ideapad there is an additional speaker (subwoofer) to mute */
f7154de2 1612 if (spec->ideapad)
cdd03ced 1613 snd_hda_set_pin_ctl(codec, 0x1b, pinctl);
461e2c78
TI
1614}
1615
1616/* turn on/off EAPD (+ mute HP) as a master switch */
1617static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1618 struct snd_ctl_elem_value *ucontrol)
1619{
1620 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1621
1622 if (!cxt_eapd_put(kcontrol, ucontrol))
1623 return 0;
1624 cxt5051_update_speaker(codec);
1625 return 1;
1626}
1627
1628/* toggle input of built-in and mic jack appropriately */
1629static void cxt5051_portb_automic(struct hda_codec *codec)
1630{
79d7d533 1631 struct conexant_spec *spec = codec->spec;
461e2c78
TI
1632 unsigned int present;
1633
faddaa5d 1634 if (!(spec->auto_mic & AUTO_MIC_PORTB))
79d7d533 1635 return;
d56757ab 1636 present = snd_hda_jack_detect(codec, 0x17);
461e2c78
TI
1637 snd_hda_codec_write(codec, 0x14, 0,
1638 AC_VERB_SET_CONNECT_SEL,
1639 present ? 0x01 : 0x00);
1640}
1641
1642/* switch the current ADC according to the jack state */
1643static void cxt5051_portc_automic(struct hda_codec *codec)
1644{
1645 struct conexant_spec *spec = codec->spec;
1646 unsigned int present;
1647 hda_nid_t new_adc;
1648
faddaa5d 1649 if (!(spec->auto_mic & AUTO_MIC_PORTC))
79d7d533 1650 return;
d56757ab 1651 present = snd_hda_jack_detect(codec, 0x18);
461e2c78
TI
1652 if (present)
1653 spec->cur_adc_idx = 1;
1654 else
1655 spec->cur_adc_idx = 0;
1656 new_adc = spec->adc_nids[spec->cur_adc_idx];
1657 if (spec->cur_adc && spec->cur_adc != new_adc) {
1658 /* stream is running, let's swap the current ADC */
f0cea797 1659 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
461e2c78
TI
1660 spec->cur_adc = new_adc;
1661 snd_hda_codec_setup_stream(codec, new_adc,
1662 spec->cur_adc_stream_tag, 0,
1663 spec->cur_adc_format);
1664 }
1665}
1666
1667/* mute internal speaker if HP is plugged */
1668static void cxt5051_hp_automute(struct hda_codec *codec)
1669{
1670 struct conexant_spec *spec = codec->spec;
1671
d56757ab 1672 spec->hp_present = snd_hda_jack_detect(codec, 0x16);
461e2c78
TI
1673 cxt5051_update_speaker(codec);
1674}
1675
1676/* unsolicited event for HP jack sensing */
1677static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1678 unsigned int res)
1679{
1680 switch (res >> 26) {
1681 case CONEXANT_HP_EVENT:
1682 cxt5051_hp_automute(codec);
1683 break;
1684 case CXT5051_PORTB_EVENT:
1685 cxt5051_portb_automic(codec);
1686 break;
1687 case CXT5051_PORTC_EVENT:
1688 cxt5051_portc_automic(codec);
1689 break;
1690 }
1691}
1692
34cbe3a6 1693static const struct snd_kcontrol_new cxt5051_playback_mixers[] = {
461e2c78
TI
1694 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1695 {
1696 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1697 .name = "Master Playback Switch",
1698 .info = cxt_eapd_info,
1699 .get = cxt_eapd_get,
1700 .put = cxt5051_hp_master_sw_put,
1701 .private_value = 0x1a,
1702 },
2c7a3fb3
TI
1703 {}
1704};
461e2c78 1705
34cbe3a6 1706static const struct snd_kcontrol_new cxt5051_capture_mixers[] = {
2c7a3fb3
TI
1707 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1708 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
8607f7c4
DH
1709 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT),
1710 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT),
2c7a3fb3
TI
1711 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1712 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
461e2c78
TI
1713 {}
1714};
1715
34cbe3a6 1716static const struct snd_kcontrol_new cxt5051_hp_mixers[] = {
461e2c78
TI
1717 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1718 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
8607f7c4
DH
1719 HDA_CODEC_VOLUME("Mic Volume", 0x15, 0x00, HDA_INPUT),
1720 HDA_CODEC_MUTE("Mic Switch", 0x15, 0x00, HDA_INPUT),
461e2c78
TI
1721 {}
1722};
1723
34cbe3a6 1724static const struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
4e4ac600
TI
1725 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x00, HDA_INPUT),
1726 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x00, HDA_INPUT),
79d7d533
TI
1727 {}
1728};
1729
34cbe3a6 1730static const struct snd_kcontrol_new cxt5051_f700_mixers[] = {
5f6c3de6
TI
1731 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x01, HDA_INPUT),
1732 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x01, HDA_INPUT),
cd9d95a5
KP
1733 {}
1734};
1735
34cbe3a6 1736static const struct snd_kcontrol_new cxt5051_toshiba_mixers[] = {
faddaa5d
TI
1737 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1738 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
8607f7c4
DH
1739 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x01, HDA_INPUT),
1740 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x01, HDA_INPUT),
faddaa5d
TI
1741 {}
1742};
1743
34cbe3a6 1744static const struct hda_verb cxt5051_init_verbs[] = {
461e2c78
TI
1745 /* Line in, Mic */
1746 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1747 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1748 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1749 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1750 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1751 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1752 /* SPK */
1753 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1754 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1755 /* HP, Amp */
1756 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1757 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1758 /* DAC1 */
1759 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
28c4edb7 1760 /* Record selector: Internal mic */
461e2c78
TI
1761 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1762 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1763 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1764 /* SPDIF route: PCM */
1965c441 1765 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
461e2c78
TI
1766 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1767 /* EAPD */
1768 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1769 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
461e2c78
TI
1770 { } /* end */
1771};
1772
34cbe3a6 1773static const struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
79d7d533
TI
1774 /* Line in, Mic */
1775 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1776 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1777 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1778 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1779 /* SPK */
1780 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1781 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1782 /* HP, Amp */
1783 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1784 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1785 /* DAC1 */
1786 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
28c4edb7 1787 /* Record selector: Internal mic */
79d7d533
TI
1788 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1789 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1790 /* SPDIF route: PCM */
1791 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1792 /* EAPD */
1793 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1794 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
79d7d533
TI
1795 { } /* end */
1796};
1797
34cbe3a6 1798static const struct hda_verb cxt5051_f700_init_verbs[] = {
cd9d95a5 1799 /* Line in, Mic */
30ed7ed1 1800 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
cd9d95a5
KP
1801 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1802 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1803 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1804 /* SPK */
1805 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1806 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1807 /* HP, Amp */
1808 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1809 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1810 /* DAC1 */
1811 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
28c4edb7 1812 /* Record selector: Internal mic */
cd9d95a5
KP
1813 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1814 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1815 /* SPDIF route: PCM */
1816 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1817 /* EAPD */
1818 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1819 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
cd9d95a5
KP
1820 { } /* end */
1821};
1822
6953e552
TI
1823static void cxt5051_init_mic_port(struct hda_codec *codec, hda_nid_t nid,
1824 unsigned int event)
1825{
1826 snd_hda_codec_write(codec, nid, 0,
1827 AC_VERB_SET_UNSOLICITED_ENABLE,
1828 AC_USRSP_EN | event);
6953e552
TI
1829}
1830
34cbe3a6 1831static const struct hda_verb cxt5051_ideapad_init_verbs[] = {
f7154de2
HRK
1832 /* Subwoofer */
1833 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1834 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1835 { } /* end */
1836};
1837
461e2c78
TI
1838/* initialize jack-sensing, too */
1839static int cxt5051_init(struct hda_codec *codec)
1840{
6953e552
TI
1841 struct conexant_spec *spec = codec->spec;
1842
461e2c78 1843 conexant_init(codec);
6953e552
TI
1844
1845 if (spec->auto_mic & AUTO_MIC_PORTB)
1846 cxt5051_init_mic_port(codec, 0x17, CXT5051_PORTB_EVENT);
1847 if (spec->auto_mic & AUTO_MIC_PORTC)
1848 cxt5051_init_mic_port(codec, 0x18, CXT5051_PORTC_EVENT);
1849
461e2c78
TI
1850 if (codec->patch_ops.unsol_event) {
1851 cxt5051_hp_automute(codec);
1852 cxt5051_portb_automic(codec);
1853 cxt5051_portc_automic(codec);
1854 }
1855 return 0;
1856}
1857
1858
1859enum {
1860 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1861 CXT5051_HP, /* no docking */
79d7d533 1862 CXT5051_HP_DV6736, /* HP without mic switch */
cd9d95a5 1863 CXT5051_F700, /* HP Compaq Presario F700 */
faddaa5d 1864 CXT5051_TOSHIBA, /* Toshiba M300 & co */
f7154de2 1865 CXT5051_IDEAPAD, /* Lenovo IdeaPad Y430 */
6764bcef 1866 CXT5051_AUTO, /* auto-parser */
461e2c78
TI
1867 CXT5051_MODELS
1868};
1869
ea734963 1870static const char *const cxt5051_models[CXT5051_MODELS] = {
461e2c78
TI
1871 [CXT5051_LAPTOP] = "laptop",
1872 [CXT5051_HP] = "hp",
79d7d533 1873 [CXT5051_HP_DV6736] = "hp-dv6736",
5f6c3de6 1874 [CXT5051_F700] = "hp-700",
faddaa5d 1875 [CXT5051_TOSHIBA] = "toshiba",
f7154de2 1876 [CXT5051_IDEAPAD] = "ideapad",
6764bcef 1877 [CXT5051_AUTO] = "auto",
461e2c78
TI
1878};
1879
34cbe3a6 1880static const struct snd_pci_quirk cxt5051_cfg_tbl[] = {
79d7d533 1881 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
1812e67c 1882 SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
5f6c3de6 1883 SND_PCI_QUIRK(0x103c, 0x30ea, "Compaq Presario F700", CXT5051_F700),
faddaa5d 1884 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba M30x", CXT5051_TOSHIBA),
461e2c78
TI
1885 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1886 CXT5051_LAPTOP),
1887 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
f7154de2 1888 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo IdeaPad", CXT5051_IDEAPAD),
461e2c78
TI
1889 {}
1890};
1891
1892static int patch_cxt5051(struct hda_codec *codec)
1893{
1894 struct conexant_spec *spec;
1895 int board_config;
1896
6764bcef
TI
1897 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1898 cxt5051_models,
1899 cxt5051_cfg_tbl);
1900 if (board_config < 0)
c82693db 1901 board_config = CXT5051_AUTO; /* model=auto as default */
1f8458a2 1902 if (board_config == CXT5051_AUTO)
6764bcef 1903 return patch_conexant_auto(codec);
6764bcef 1904
461e2c78
TI
1905 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1906 if (!spec)
1907 return -ENOMEM;
461e2c78 1908 codec->spec = spec;
9421f954 1909 codec->pin_amp_workaround = 1;
461e2c78
TI
1910
1911 codec->patch_ops = conexant_patch_ops;
1912 codec->patch_ops.init = cxt5051_init;
1913
1914 spec->multiout.max_channels = 2;
1915 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1916 spec->multiout.dac_nids = cxt5051_dac_nids;
1917 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1918 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1919 spec->adc_nids = cxt5051_adc_nids;
2c7a3fb3
TI
1920 spec->num_mixers = 2;
1921 spec->mixers[0] = cxt5051_capture_mixers;
1922 spec->mixers[1] = cxt5051_playback_mixers;
461e2c78
TI
1923 spec->num_init_verbs = 1;
1924 spec->init_verbs[0] = cxt5051_init_verbs;
1925 spec->spdif_route = 0;
1926 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1927 spec->channel_mode = cxt5051_modes;
1928 spec->cur_adc = 0;
1929 spec->cur_adc_idx = 0;
1930
3507e2a8
TI
1931 set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
1932
79d7d533
TI
1933 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1934
faddaa5d 1935 spec->auto_mic = AUTO_MIC_PORTB | AUTO_MIC_PORTC;
461e2c78
TI
1936 switch (board_config) {
1937 case CXT5051_HP:
461e2c78
TI
1938 spec->mixers[0] = cxt5051_hp_mixers;
1939 break;
79d7d533
TI
1940 case CXT5051_HP_DV6736:
1941 spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
1942 spec->mixers[0] = cxt5051_hp_dv6736_mixers;
faddaa5d 1943 spec->auto_mic = 0;
79d7d533 1944 break;
cd9d95a5
KP
1945 case CXT5051_F700:
1946 spec->init_verbs[0] = cxt5051_f700_init_verbs;
1947 spec->mixers[0] = cxt5051_f700_mixers;
faddaa5d
TI
1948 spec->auto_mic = 0;
1949 break;
1950 case CXT5051_TOSHIBA:
1951 spec->mixers[0] = cxt5051_toshiba_mixers;
1952 spec->auto_mic = AUTO_MIC_PORTB;
cd9d95a5 1953 break;
f7154de2
HRK
1954 case CXT5051_IDEAPAD:
1955 spec->init_verbs[spec->num_init_verbs++] =
1956 cxt5051_ideapad_init_verbs;
1957 spec->ideapad = 1;
1958 break;
461e2c78
TI
1959 }
1960
3507e2a8
TI
1961 if (spec->beep_amp)
1962 snd_hda_attach_beep_device(codec, spec->beep_amp);
1963
461e2c78
TI
1964 return 0;
1965}
1966
0fb67e98
DD
1967/* Conexant 5066 specific */
1968
34cbe3a6
TI
1969static const hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
1970static const hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
1971static const hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
1972static const hda_nid_t cxt5066_digout_pin_nids[2] = { 0x20, 0x22 };
0fb67e98 1973
dbaccc0c
DD
1974/* OLPC's microphone port is DC coupled for use with external sensors,
1975 * therefore we use a 50% mic bias in order to center the input signal with
1976 * the DC input range of the codec. */
1977#define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
1978
34cbe3a6 1979static const struct hda_channel_mode cxt5066_modes[1] = {
0fb67e98
DD
1980 { 2, NULL },
1981};
1982
a3de8ab8
TI
1983#define HP_PRESENT_PORT_A (1 << 0)
1984#define HP_PRESENT_PORT_D (1 << 1)
1985#define hp_port_a_present(spec) ((spec)->hp_present & HP_PRESENT_PORT_A)
1986#define hp_port_d_present(spec) ((spec)->hp_present & HP_PRESENT_PORT_D)
1987
0fb67e98
DD
1988static void cxt5066_update_speaker(struct hda_codec *codec)
1989{
1990 struct conexant_spec *spec = codec->spec;
1991 unsigned int pinctl;
1992
3a253445
JB
1993 snd_printdd("CXT5066: update speaker, hp_present=%d, cur_eapd=%d\n",
1994 spec->hp_present, spec->cur_eapd);
0fb67e98
DD
1995
1996 /* Port A (HP) */
a3de8ab8 1997 pinctl = (hp_port_a_present(spec) && spec->cur_eapd) ? PIN_HP : 0;
cdd03ced 1998 snd_hda_set_pin_ctl(codec, 0x19, pinctl);
0fb67e98
DD
1999
2000 /* Port D (HP/LO) */
a3de8ab8
TI
2001 pinctl = spec->cur_eapd ? spec->port_d_mode : 0;
2002 if (spec->dell_automute || spec->thinkpad) {
2003 /* Mute if Port A is connected */
2004 if (hp_port_a_present(spec))
3a253445
JB
2005 pinctl = 0;
2006 } else {
a3de8ab8
TI
2007 /* Thinkpad/Dell doesn't give pin-D status */
2008 if (!hp_port_d_present(spec))
2009 pinctl = 0;
3a253445 2010 }
cdd03ced 2011 snd_hda_set_pin_ctl(codec, 0x1c, pinctl);
0fb67e98
DD
2012
2013 /* CLASS_D AMP */
2014 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
cdd03ced 2015 snd_hda_set_pin_ctl(codec, 0x1f, pinctl);
0fb67e98
DD
2016}
2017
2018/* turn on/off EAPD (+ mute HP) as a master switch */
2019static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
2020 struct snd_ctl_elem_value *ucontrol)
2021{
2022 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2023
2024 if (!cxt_eapd_put(kcontrol, ucontrol))
2025 return 0;
2026
2027 cxt5066_update_speaker(codec);
2028 return 1;
2029}
2030
c4cfe66c
DD
2031static const struct hda_input_mux cxt5066_olpc_dc_bias = {
2032 .num_items = 3,
2033 .items = {
2034 { "Off", PIN_IN },
2035 { "50%", PIN_VREF50 },
2036 { "80%", PIN_VREF80 },
2037 },
2038};
2039
2040static int cxt5066_set_olpc_dc_bias(struct hda_codec *codec)
2041{
2042 struct conexant_spec *spec = codec->spec;
2043 /* Even though port F is the DC input, the bias is controlled on port B.
2044 * we also leave that port as an active input (but unselected) in DC mode
2045 * just in case that is necessary to make the bias setting take effect. */
cdd03ced 2046 return snd_hda_set_pin_ctl_cache(codec, 0x1a,
c4cfe66c
DD
2047 cxt5066_olpc_dc_bias.items[spec->dc_input_bias].index);
2048}
2049
75f8991d
DD
2050/* OLPC defers mic widget control until when capture is started because the
2051 * microphone LED comes on as soon as these settings are put in place. if we
2052 * did this before recording, it would give the false indication that recording
2053 * is happening when it is not. */
2054static void cxt5066_olpc_select_mic(struct hda_codec *codec)
0fb67e98 2055{
dbaccc0c 2056 struct conexant_spec *spec = codec->spec;
75f8991d
DD
2057 if (!spec->recording)
2058 return;
0fb67e98 2059
c4cfe66c
DD
2060 if (spec->dc_enable) {
2061 /* in DC mode we ignore presence detection and just use the jack
2062 * through our special DC port */
2063 const struct hda_verb enable_dc_mode[] = {
2064 /* disble internal mic, port C */
2065 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2066
2067 /* enable DC capture, port F */
2068 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2069 {},
2070 };
2071
2072 snd_hda_sequence_write(codec, enable_dc_mode);
2073 /* port B input disabled (and bias set) through the following call */
2074 cxt5066_set_olpc_dc_bias(codec);
2075 return;
2076 }
2077
2078 /* disable DC (port F) */
cdd03ced 2079 snd_hda_set_pin_ctl(codec, 0x1e, 0);
c4cfe66c 2080
75f8991d 2081 /* external mic, port B */
cdd03ced 2082 snd_hda_set_pin_ctl(codec, 0x1a,
75f8991d 2083 spec->ext_mic_present ? CXT5066_OLPC_EXT_MIC_BIAS : 0);
0fb67e98 2084
75f8991d 2085 /* internal mic, port C */
cdd03ced 2086 snd_hda_set_pin_ctl(codec, 0x1b,
75f8991d
DD
2087 spec->ext_mic_present ? 0 : PIN_VREF80);
2088}
0fb67e98 2089
75f8991d
DD
2090/* toggle input of built-in and mic jack appropriately */
2091static void cxt5066_olpc_automic(struct hda_codec *codec)
2092{
2093 struct conexant_spec *spec = codec->spec;
0fb67e98
DD
2094 unsigned int present;
2095
c4cfe66c
DD
2096 if (spec->dc_enable) /* don't do presence detection in DC mode */
2097 return;
2098
75f8991d
DD
2099 present = snd_hda_codec_read(codec, 0x1a, 0,
2100 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2101 if (present)
0fb67e98 2102 snd_printdd("CXT5066: external microphone detected\n");
75f8991d 2103 else
0fb67e98 2104 snd_printdd("CXT5066: external microphone absent\n");
75f8991d
DD
2105
2106 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2107 present ? 0 : 1);
2108 spec->ext_mic_present = !!present;
2109
2110 cxt5066_olpc_select_mic(codec);
0fb67e98
DD
2111}
2112
95a618bd
ER
2113/* toggle input of built-in digital mic and mic jack appropriately */
2114static void cxt5066_vostro_automic(struct hda_codec *codec)
2115{
95a618bd
ER
2116 unsigned int present;
2117
2118 struct hda_verb ext_mic_present[] = {
2119 /* enable external mic, port B */
75f8991d 2120 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
95a618bd
ER
2121
2122 /* switch to external mic input */
2123 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2124 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2125
2126 /* disable internal digital mic */
2127 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2128 {}
2129 };
34cbe3a6 2130 static const struct hda_verb ext_mic_absent[] = {
95a618bd
ER
2131 /* enable internal mic, port C */
2132 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2133
2134 /* switch to internal mic input */
2135 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2136
2137 /* disable external mic, port B */
2138 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2139 {}
2140 };
2141
2142 present = snd_hda_jack_detect(codec, 0x1a);
2143 if (present) {
2144 snd_printdd("CXT5066: external microphone detected\n");
2145 snd_hda_sequence_write(codec, ext_mic_present);
2146 } else {
2147 snd_printdd("CXT5066: external microphone absent\n");
2148 snd_hda_sequence_write(codec, ext_mic_absent);
2149 }
2150}
2151
cfd3d8dc
GA
2152/* toggle input of built-in digital mic and mic jack appropriately */
2153static void cxt5066_ideapad_automic(struct hda_codec *codec)
2154{
2155 unsigned int present;
2156
2157 struct hda_verb ext_mic_present[] = {
2158 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2159 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2160 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2161 {}
2162 };
34cbe3a6 2163 static const struct hda_verb ext_mic_absent[] = {
cfd3d8dc
GA
2164 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2165 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2166 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2167 {}
2168 };
2169
2170 present = snd_hda_jack_detect(codec, 0x1b);
2171 if (present) {
2172 snd_printdd("CXT5066: external microphone detected\n");
2173 snd_hda_sequence_write(codec, ext_mic_present);
2174 } else {
2175 snd_printdd("CXT5066: external microphone absent\n");
2176 snd_hda_sequence_write(codec, ext_mic_absent);
2177 }
2178}
2179
a1d6906e
DH
2180
2181/* toggle input of built-in digital mic and mic jack appropriately */
2182static void cxt5066_asus_automic(struct hda_codec *codec)
2183{
2184 unsigned int present;
2185
2186 present = snd_hda_jack_detect(codec, 0x1b);
2187 snd_printdd("CXT5066: external microphone present=%d\n", present);
2188 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2189 present ? 1 : 0);
2190}
2191
2192
048e78a5
DH
2193/* toggle input of built-in digital mic and mic jack appropriately */
2194static void cxt5066_hp_laptop_automic(struct hda_codec *codec)
2195{
2196 unsigned int present;
2197
2198 present = snd_hda_jack_detect(codec, 0x1b);
2199 snd_printdd("CXT5066: external microphone present=%d\n", present);
2200 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2201 present ? 1 : 3);
2202}
2203
2204
7b2bfdbc
JT
2205/* toggle input of built-in digital mic and mic jack appropriately
2206 order is: external mic -> dock mic -> interal mic */
2207static void cxt5066_thinkpad_automic(struct hda_codec *codec)
2208{
2209 unsigned int ext_present, dock_present;
2210
34cbe3a6 2211 static const struct hda_verb ext_mic_present[] = {
7b2bfdbc
JT
2212 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2213 {0x17, AC_VERB_SET_CONNECT_SEL, 1},
2214 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2215 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2216 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2217 {}
2218 };
34cbe3a6 2219 static const struct hda_verb dock_mic_present[] = {
7b2bfdbc
JT
2220 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2221 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2222 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2223 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2224 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2225 {}
2226 };
34cbe3a6 2227 static const struct hda_verb ext_mic_absent[] = {
7b2bfdbc
JT
2228 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2229 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2230 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2231 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2232 {}
2233 };
2234
2235 ext_present = snd_hda_jack_detect(codec, 0x1b);
2236 dock_present = snd_hda_jack_detect(codec, 0x1a);
2237 if (ext_present) {
2238 snd_printdd("CXT5066: external microphone detected\n");
2239 snd_hda_sequence_write(codec, ext_mic_present);
2240 } else if (dock_present) {
2241 snd_printdd("CXT5066: dock microphone detected\n");
2242 snd_hda_sequence_write(codec, dock_mic_present);
2243 } else {
2244 snd_printdd("CXT5066: external microphone absent\n");
2245 snd_hda_sequence_write(codec, ext_mic_absent);
2246 }
2247}
2248
0fb67e98
DD
2249/* mute internal speaker if HP is plugged */
2250static void cxt5066_hp_automute(struct hda_codec *codec)
2251{
2252 struct conexant_spec *spec = codec->spec;
2253 unsigned int portA, portD;
2254
2255 /* Port A */
d56757ab 2256 portA = snd_hda_jack_detect(codec, 0x19);
0fb67e98
DD
2257
2258 /* Port D */
d56757ab 2259 portD = snd_hda_jack_detect(codec, 0x1c);
0fb67e98 2260
a3de8ab8
TI
2261 spec->hp_present = portA ? HP_PRESENT_PORT_A : 0;
2262 spec->hp_present |= portD ? HP_PRESENT_PORT_D : 0;
0fb67e98
DD
2263 snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2264 portA, portD, spec->hp_present);
2265 cxt5066_update_speaker(codec);
2266}
2267
02b6b5b6
DH
2268/* Dispatch the right mic autoswitch function */
2269static void cxt5066_automic(struct hda_codec *codec)
0fb67e98 2270{
c4cfe66c 2271 struct conexant_spec *spec = codec->spec;
0fb67e98 2272
02b6b5b6 2273 if (spec->dell_vostro)
95a618bd 2274 cxt5066_vostro_automic(codec);
02b6b5b6 2275 else if (spec->ideapad)
cfd3d8dc 2276 cxt5066_ideapad_automic(codec);
02b6b5b6
DH
2277 else if (spec->thinkpad)
2278 cxt5066_thinkpad_automic(codec);
2279 else if (spec->hp_laptop)
2280 cxt5066_hp_laptop_automic(codec);
a1d6906e
DH
2281 else if (spec->asus)
2282 cxt5066_asus_automic(codec);
cfd3d8dc
GA
2283}
2284
048e78a5 2285/* unsolicited event for jack sensing */
02b6b5b6 2286static void cxt5066_olpc_unsol_event(struct hda_codec *codec, unsigned int res)
048e78a5 2287{
02b6b5b6
DH
2288 struct conexant_spec *spec = codec->spec;
2289 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
048e78a5
DH
2290 switch (res >> 26) {
2291 case CONEXANT_HP_EVENT:
2292 cxt5066_hp_automute(codec);
2293 break;
2294 case CONEXANT_MIC_EVENT:
02b6b5b6
DH
2295 /* ignore mic events in DC mode; we're always using the jack */
2296 if (!spec->dc_enable)
2297 cxt5066_olpc_automic(codec);
048e78a5
DH
2298 break;
2299 }
2300}
2301
7b2bfdbc 2302/* unsolicited event for jack sensing */
02b6b5b6 2303static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res)
7b2bfdbc 2304{
02b6b5b6 2305 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
7b2bfdbc
JT
2306 switch (res >> 26) {
2307 case CONEXANT_HP_EVENT:
2308 cxt5066_hp_automute(codec);
2309 break;
2310 case CONEXANT_MIC_EVENT:
02b6b5b6 2311 cxt5066_automic(codec);
7b2bfdbc
JT
2312 break;
2313 }
2314}
2315
02b6b5b6 2316
0fb67e98
DD
2317static const struct hda_input_mux cxt5066_analog_mic_boost = {
2318 .num_items = 5,
2319 .items = {
2320 { "0dB", 0 },
2321 { "10dB", 1 },
2322 { "20dB", 2 },
2323 { "30dB", 3 },
2324 { "40dB", 4 },
2325 },
2326};
2327
cfd3d8dc 2328static void cxt5066_set_mic_boost(struct hda_codec *codec)
c4cfe66c
DD
2329{
2330 struct conexant_spec *spec = codec->spec;
cfd3d8dc 2331 snd_hda_codec_write_cache(codec, 0x17, 0,
c4cfe66c
DD
2332 AC_VERB_SET_AMP_GAIN_MUTE,
2333 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2334 cxt5066_analog_mic_boost.items[spec->mic_boost].index);
7b2bfdbc 2335 if (spec->ideapad || spec->thinkpad) {
cfd3d8dc
GA
2336 /* adjust the internal mic as well...it is not through 0x17 */
2337 snd_hda_codec_write_cache(codec, 0x23, 0,
2338 AC_VERB_SET_AMP_GAIN_MUTE,
2339 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_INPUT |
2340 cxt5066_analog_mic_boost.
2341 items[spec->mic_boost].index);
2342 }
c4cfe66c
DD
2343}
2344
0fb67e98
DD
2345static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
2346 struct snd_ctl_elem_info *uinfo)
2347{
2348 return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
2349}
2350
2351static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
2352 struct snd_ctl_elem_value *ucontrol)
2353{
2354 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
c4cfe66c
DD
2355 struct conexant_spec *spec = codec->spec;
2356 ucontrol->value.enumerated.item[0] = spec->mic_boost;
0fb67e98
DD
2357 return 0;
2358}
2359
2360static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
2361 struct snd_ctl_elem_value *ucontrol)
2362{
2363 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
c4cfe66c 2364 struct conexant_spec *spec = codec->spec;
0fb67e98
DD
2365 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2366 unsigned int idx;
c4cfe66c
DD
2367 idx = ucontrol->value.enumerated.item[0];
2368 if (idx >= imux->num_items)
2369 idx = imux->num_items - 1;
2370
2371 spec->mic_boost = idx;
2372 if (!spec->dc_enable)
2373 cxt5066_set_mic_boost(codec);
2374 return 1;
2375}
2376
2377static void cxt5066_enable_dc(struct hda_codec *codec)
2378{
2379 const struct hda_verb enable_dc_mode[] = {
2380 /* disable gain */
2381 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2382
2383 /* switch to DC input */
2384 {0x17, AC_VERB_SET_CONNECT_SEL, 3},
2385 {}
2386 };
2387
2388 /* configure as input source */
2389 snd_hda_sequence_write(codec, enable_dc_mode);
2390 cxt5066_olpc_select_mic(codec); /* also sets configured bias */
2391}
2392
2393static void cxt5066_disable_dc(struct hda_codec *codec)
2394{
2395 /* reconfigure input source */
2396 cxt5066_set_mic_boost(codec);
2397 /* automic also selects the right mic if we're recording */
2398 cxt5066_olpc_automic(codec);
2399}
2400
2401static int cxt5066_olpc_dc_get(struct snd_kcontrol *kcontrol,
2402 struct snd_ctl_elem_value *ucontrol)
2403{
2404 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2405 struct conexant_spec *spec = codec->spec;
2406 ucontrol->value.integer.value[0] = spec->dc_enable;
2407 return 0;
2408}
0fb67e98 2409
c4cfe66c
DD
2410static int cxt5066_olpc_dc_put(struct snd_kcontrol *kcontrol,
2411 struct snd_ctl_elem_value *ucontrol)
2412{
2413 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2414 struct conexant_spec *spec = codec->spec;
2415 int dc_enable = !!ucontrol->value.integer.value[0];
2416
2417 if (dc_enable == spec->dc_enable)
0fb67e98 2418 return 0;
c4cfe66c
DD
2419
2420 spec->dc_enable = dc_enable;
2421 if (dc_enable)
2422 cxt5066_enable_dc(codec);
2423 else
2424 cxt5066_disable_dc(codec);
2425
2426 return 1;
2427}
2428
2429static int cxt5066_olpc_dc_bias_enum_info(struct snd_kcontrol *kcontrol,
2430 struct snd_ctl_elem_info *uinfo)
2431{
2432 return snd_hda_input_mux_info(&cxt5066_olpc_dc_bias, uinfo);
2433}
2434
2435static int cxt5066_olpc_dc_bias_enum_get(struct snd_kcontrol *kcontrol,
2436 struct snd_ctl_elem_value *ucontrol)
2437{
2438 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2439 struct conexant_spec *spec = codec->spec;
2440 ucontrol->value.enumerated.item[0] = spec->dc_input_bias;
2441 return 0;
2442}
2443
2444static int cxt5066_olpc_dc_bias_enum_put(struct snd_kcontrol *kcontrol,
2445 struct snd_ctl_elem_value *ucontrol)
2446{
2447 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2448 struct conexant_spec *spec = codec->spec;
2449 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2450 unsigned int idx;
2451
0fb67e98
DD
2452 idx = ucontrol->value.enumerated.item[0];
2453 if (idx >= imux->num_items)
2454 idx = imux->num_items - 1;
2455
c4cfe66c
DD
2456 spec->dc_input_bias = idx;
2457 if (spec->dc_enable)
2458 cxt5066_set_olpc_dc_bias(codec);
0fb67e98
DD
2459 return 1;
2460}
2461
75f8991d
DD
2462static void cxt5066_olpc_capture_prepare(struct hda_codec *codec)
2463{
2464 struct conexant_spec *spec = codec->spec;
2465 /* mark as recording and configure the microphone widget so that the
2466 * recording LED comes on. */
2467 spec->recording = 1;
2468 cxt5066_olpc_select_mic(codec);
2469}
2470
2471static void cxt5066_olpc_capture_cleanup(struct hda_codec *codec)
2472{
2473 struct conexant_spec *spec = codec->spec;
2474 const struct hda_verb disable_mics[] = {
2475 /* disable external mic, port B */
2476 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2477
2478 /* disble internal mic, port C */
2479 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
c4cfe66c
DD
2480
2481 /* disable DC capture, port F */
2482 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
75f8991d
DD
2483 {},
2484 };
2485
2486 snd_hda_sequence_write(codec, disable_mics);
2487 spec->recording = 0;
2488}
2489
f6a2491c 2490static void conexant_check_dig_outs(struct hda_codec *codec,
34cbe3a6 2491 const hda_nid_t *dig_pins,
f6a2491c
AR
2492 int num_pins)
2493{
2494 struct conexant_spec *spec = codec->spec;
2495 hda_nid_t *nid_loc = &spec->multiout.dig_out_nid;
2496 int i;
2497
2498 for (i = 0; i < num_pins; i++, dig_pins++) {
2499 unsigned int cfg = snd_hda_codec_get_pincfg(codec, *dig_pins);
2500 if (get_defcfg_connect(cfg) == AC_JACK_PORT_NONE)
2501 continue;
2502 if (snd_hda_get_connections(codec, *dig_pins, nid_loc, 1) != 1)
2503 continue;
2504 if (spec->slave_dig_outs[0])
2505 nid_loc++;
2506 else
2507 nid_loc = spec->slave_dig_outs;
2508 }
2509}
2510
34cbe3a6 2511static const struct hda_input_mux cxt5066_capture_source = {
0fb67e98
DD
2512 .num_items = 4,
2513 .items = {
2514 { "Mic B", 0 },
2515 { "Mic C", 1 },
2516 { "Mic E", 2 },
2517 { "Mic F", 3 },
2518 },
2519};
2520
34cbe3a6 2521static const struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
0fb67e98
DD
2522 .ops = &snd_hda_bind_vol,
2523 .values = {
2524 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2525 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2526 0
2527 },
2528};
2529
34cbe3a6 2530static const struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
0fb67e98
DD
2531 .ops = &snd_hda_bind_sw,
2532 .values = {
2533 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2534 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2535 0
2536 },
2537};
2538
34cbe3a6 2539static const struct snd_kcontrol_new cxt5066_mixer_master[] = {
0fb67e98
DD
2540 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
2541 {}
2542};
2543
34cbe3a6 2544static const struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
0fb67e98
DD
2545 {
2546 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2547 .name = "Master Playback Volume",
2548 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
2549 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2550 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
5e26dfd0 2551 .subdevice = HDA_SUBDEV_AMP_FLAG,
0fb67e98
DD
2552 .info = snd_hda_mixer_amp_volume_info,
2553 .get = snd_hda_mixer_amp_volume_get,
2554 .put = snd_hda_mixer_amp_volume_put,
2555 .tlv = { .c = snd_hda_mixer_amp_tlv },
2556 /* offset by 28 volume steps to limit minimum gain to -46dB */
2557 .private_value =
2558 HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
2559 },
2560 {}
2561};
2562
34cbe3a6 2563static const struct snd_kcontrol_new cxt5066_mixer_olpc_dc[] = {
c4cfe66c
DD
2564 {
2565 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2566 .name = "DC Mode Enable Switch",
2567 .info = snd_ctl_boolean_mono_info,
2568 .get = cxt5066_olpc_dc_get,
2569 .put = cxt5066_olpc_dc_put,
2570 },
2571 {
2572 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2573 .name = "DC Input Bias Enum",
2574 .info = cxt5066_olpc_dc_bias_enum_info,
2575 .get = cxt5066_olpc_dc_bias_enum_get,
2576 .put = cxt5066_olpc_dc_bias_enum_put,
2577 },
2578 {}
2579};
2580
34cbe3a6 2581static const struct snd_kcontrol_new cxt5066_mixers[] = {
0fb67e98
DD
2582 {
2583 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2584 .name = "Master Playback Switch",
2585 .info = cxt_eapd_info,
2586 .get = cxt_eapd_get,
2587 .put = cxt5066_hp_master_sw_put,
2588 .private_value = 0x1d,
2589 },
2590
2591 {
2592 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
c4cfe66c 2593 .name = "Analog Mic Boost Capture Enum",
0fb67e98
DD
2594 .info = cxt5066_mic_boost_mux_enum_info,
2595 .get = cxt5066_mic_boost_mux_enum_get,
2596 .put = cxt5066_mic_boost_mux_enum_put,
2597 },
2598
2599 HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
2600 HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
2601 {}
2602};
2603
34cbe3a6 2604static const struct snd_kcontrol_new cxt5066_vostro_mixers[] = {
254bba6a
ER
2605 {
2606 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
28c4edb7 2607 .name = "Internal Mic Boost Capture Enum",
254bba6a
ER
2608 .info = cxt5066_mic_boost_mux_enum_info,
2609 .get = cxt5066_mic_boost_mux_enum_get,
2610 .put = cxt5066_mic_boost_mux_enum_put,
2611 .private_value = 0x23 | 0x100,
2612 },
2613 {}
2614};
2615
34cbe3a6 2616static const struct hda_verb cxt5066_init_verbs[] = {
0fb67e98
DD
2617 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2618 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2619 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2620 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2621
2622 /* Speakers */
2623 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2624 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2625
2626 /* HP, Amp */
2627 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2628 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2629
2630 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2631 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2632
2633 /* DAC1 */
2634 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2635
2636 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2637 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2638 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2639 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2640 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2641 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2642
2643 /* no digital microphone support yet */
2644 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2645
2646 /* Audio input selector */
2647 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2648
2649 /* SPDIF route: PCM */
2650 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2651 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2652
2653 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2654 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2655
2656 /* EAPD */
2657 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2658
2659 /* not handling these yet */
2660 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2661 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2662 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2663 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2664 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2665 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2666 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2667 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2668 { } /* end */
2669};
2670
34cbe3a6 2671static const struct hda_verb cxt5066_init_verbs_olpc[] = {
0fb67e98
DD
2672 /* Port A: headphones */
2673 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2674 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2675
2676 /* Port B: external microphone */
75f8991d 2677 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
0fb67e98
DD
2678
2679 /* Port C: internal microphone */
75f8991d 2680 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
0fb67e98
DD
2681
2682 /* Port D: unused */
2683 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2684
2685 /* Port E: unused, but has primary EAPD */
2686 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2687 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2688
c4cfe66c 2689 /* Port F: external DC input through microphone port */
0fb67e98
DD
2690 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2691
2692 /* Port G: internal speakers */
2693 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2694 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2695
2696 /* DAC1 */
2697 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2698
2699 /* DAC2: unused */
2700 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2701
2702 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2703 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2704 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2705 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2706 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2707 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2708 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2709 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2710 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2711 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2712 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2713 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2714
2715 /* Disable digital microphone port */
2716 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2717
2718 /* Audio input selectors */
2719 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2720 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2721
2722 /* Disable SPDIF */
2723 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2724 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2725
2726 /* enable unsolicited events for Port A and B */
2727 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2728 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2729 { } /* end */
2730};
2731
34cbe3a6 2732static const struct hda_verb cxt5066_init_verbs_vostro[] = {
95a618bd
ER
2733 /* Port A: headphones */
2734 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2735 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2736
2737 /* Port B: external microphone */
2738 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2739
2740 /* Port C: unused */
2741 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2742
2743 /* Port D: unused */
2744 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2745
2746 /* Port E: unused, but has primary EAPD */
2747 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2748 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2749
2750 /* Port F: unused */
2751 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2752
2753 /* Port G: internal speakers */
2754 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2755 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2756
2757 /* DAC1 */
2758 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2759
2760 /* DAC2: unused */
2761 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2762
2763 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2764 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2765 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2766 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2767 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2768 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2769 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2770 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2771 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2772 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2773 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2774 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2775
2776 /* Digital microphone port */
2777 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2778
2779 /* Audio input selectors */
2780 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2781 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2782
2783 /* Disable SPDIF */
2784 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2785 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2786
2787 /* enable unsolicited events for Port A and B */
2788 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2789 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2790 { } /* end */
2791};
2792
34cbe3a6 2793static const struct hda_verb cxt5066_init_verbs_ideapad[] = {
cfd3d8dc
GA
2794 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2795 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2796 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2797 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2798
2799 /* Speakers */
2800 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2801 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2802
2803 /* HP, Amp */
2804 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2805 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2806
2807 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2808 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2809
2810 /* DAC1 */
2811 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2812
2813 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2814 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2815 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2816 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2817 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2818 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2819 {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */
2820
2821 /* Audio input selector */
2822 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2823 {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */
2824
2825 /* SPDIF route: PCM */
2826 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2827 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2828
2829 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2830 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2831
2832 /* internal microphone */
28c4edb7 2833 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable internal mic */
cfd3d8dc
GA
2834
2835 /* EAPD */
2836 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2837
2838 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2839 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2840 { } /* end */
2841};
2842
34cbe3a6 2843static const struct hda_verb cxt5066_init_verbs_thinkpad[] = {
7b2bfdbc
JT
2844 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2845 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2846
2847 /* Port G: internal speakers */
2848 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2849 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2850
2851 /* Port A: HP, Amp */
2852 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2853 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2854
2855 /* Port B: Mic Dock */
2856 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2857
2858 /* Port C: Mic */
2859 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2860
2861 /* Port D: HP Dock, Amp */
2862 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2863 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2864
2865 /* DAC1 */
2866 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2867
2868 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2869 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2870 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2871 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2872 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2873 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2874 {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */
2875
2876 /* Audio input selector */
2877 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2878 {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */
2879
2880 /* SPDIF route: PCM */
2881 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2882 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2883
2884 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2885 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2886
2887 /* internal microphone */
28c4edb7 2888 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable internal mic */
7b2bfdbc
JT
2889
2890 /* EAPD */
2891 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2892
2893 /* enable unsolicited events for Port A, B, C and D */
2894 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2895 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2896 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2897 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2898 { } /* end */
2899};
2900
34cbe3a6 2901static const struct hda_verb cxt5066_init_verbs_portd_lo[] = {
0fb67e98
DD
2902 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2903 { } /* end */
2904};
2905
048e78a5 2906
34cbe3a6 2907static const struct hda_verb cxt5066_init_verbs_hp_laptop[] = {
048e78a5
DH
2908 {0x14, AC_VERB_SET_CONNECT_SEL, 0x0},
2909 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2910 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2911 { } /* end */
2912};
2913
0fb67e98
DD
2914/* initialize jack-sensing, too */
2915static int cxt5066_init(struct hda_codec *codec)
2916{
2917 snd_printdd("CXT5066: init\n");
2918 conexant_init(codec);
2919 if (codec->patch_ops.unsol_event) {
2920 cxt5066_hp_automute(codec);
02b6b5b6 2921 cxt5066_automic(codec);
0fb67e98 2922 }
c4cfe66c 2923 cxt5066_set_mic_boost(codec);
0fb67e98
DD
2924 return 0;
2925}
2926
75f8991d
DD
2927static int cxt5066_olpc_init(struct hda_codec *codec)
2928{
c4cfe66c 2929 struct conexant_spec *spec = codec->spec;
75f8991d
DD
2930 snd_printdd("CXT5066: init\n");
2931 conexant_init(codec);
2932 cxt5066_hp_automute(codec);
c4cfe66c
DD
2933 if (!spec->dc_enable) {
2934 cxt5066_set_mic_boost(codec);
2935 cxt5066_olpc_automic(codec);
2936 } else {
2937 cxt5066_enable_dc(codec);
2938 }
75f8991d
DD
2939 return 0;
2940}
2941
0fb67e98 2942enum {
7b2bfdbc 2943 CXT5066_LAPTOP, /* Laptops w/ EAPD support */
0fb67e98
DD
2944 CXT5066_DELL_LAPTOP, /* Dell Laptop */
2945 CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */
1feba3b7 2946 CXT5066_DELL_VOSTRO, /* Dell Vostro 1015i */
cfd3d8dc 2947 CXT5066_IDEAPAD, /* Lenovo IdeaPad U150 */
7b2bfdbc 2948 CXT5066_THINKPAD, /* Lenovo ThinkPad T410s, others? */
a1d6906e 2949 CXT5066_ASUS, /* Asus K52JU, Lenovo G560 - Int mic at 0x1a and Ext mic at 0x1b */
048e78a5 2950 CXT5066_HP_LAPTOP, /* HP Laptop */
fea4a4f9 2951 CXT5066_AUTO, /* BIOS auto-parser */
0fb67e98
DD
2952 CXT5066_MODELS
2953};
2954
ea734963 2955static const char * const cxt5066_models[CXT5066_MODELS] = {
7b2bfdbc 2956 [CXT5066_LAPTOP] = "laptop",
0fb67e98
DD
2957 [CXT5066_DELL_LAPTOP] = "dell-laptop",
2958 [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5",
1feba3b7 2959 [CXT5066_DELL_VOSTRO] = "dell-vostro",
cfd3d8dc 2960 [CXT5066_IDEAPAD] = "ideapad",
7b2bfdbc 2961 [CXT5066_THINKPAD] = "thinkpad",
a1d6906e 2962 [CXT5066_ASUS] = "asus",
048e78a5 2963 [CXT5066_HP_LAPTOP] = "hp-laptop",
fea4a4f9 2964 [CXT5066_AUTO] = "auto",
0fb67e98
DD
2965};
2966
34cbe3a6 2967static const struct snd_pci_quirk cxt5066_cfg_tbl[] = {
9966db22 2968 SND_PCI_QUIRK(0x1025, 0x054c, "Acer Aspire 3830TG", CXT5066_AUTO),
00cd0bb7 2969 SND_PCI_QUIRK_MASK(0x1025, 0xff00, 0x0400, "Acer", CXT5066_IDEAPAD),
1feba3b7 2970 SND_PCI_QUIRK(0x1028, 0x02d8, "Dell Vostro", CXT5066_DELL_VOSTRO),
8a96b1e0 2971 SND_PCI_QUIRK(0x1028, 0x02f5, "Dell Vostro 320", CXT5066_IDEAPAD),
ca6cd851 2972 SND_PCI_QUIRK(0x1028, 0x0401, "Dell Vostro 1014", CXT5066_DELL_VOSTRO),
1feba3b7 2973 SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTRO),
231f50bc 2974 SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD),
ebbd224c
DH
2975 SND_PCI_QUIRK(0x1028, 0x050f, "Dell Inspiron", CXT5066_IDEAPAD),
2976 SND_PCI_QUIRK(0x1028, 0x0510, "Dell Vostro", CXT5066_IDEAPAD),
048e78a5 2977 SND_PCI_QUIRK(0x103c, 0x360b, "HP G60", CXT5066_HP_LAPTOP),
f6a2491c 2978 SND_PCI_QUIRK(0x1043, 0x13f3, "Asus A52J", CXT5066_ASUS),
a1d6906e 2979 SND_PCI_QUIRK(0x1043, 0x1643, "Asus K52JU", CXT5066_ASUS),
f6a2491c 2980 SND_PCI_QUIRK(0x1043, 0x1993, "Asus U50F", CXT5066_ASUS),
2ca9cac9 2981 SND_PCI_QUIRK(0x1179, 0xff1e, "Toshiba Satellite C650D", CXT5066_IDEAPAD),
c5366681 2982 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba Satellite P500-PSPGSC-01800T", CXT5066_OLPC_XO_1_5),
5637edb2
DH
2983 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
2984 CXT5066_LAPTOP),
2985 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
4d155641 2986 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400s", CXT5066_THINKPAD),
ef61d4e6 2987 SND_PCI_QUIRK(0x17aa, 0x21c5, "Thinkpad Edge 13", CXT5066_THINKPAD),
19593875 2988 SND_PCI_QUIRK(0x17aa, 0x21c6, "Thinkpad Edge 13", CXT5066_ASUS),
29c5fbbc 2989 SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo T510", CXT5066_AUTO),
ca201c09 2990 SND_PCI_QUIRK(0x17aa, 0x21cf, "Lenovo T520 & W520", CXT5066_AUTO),
84012657 2991 SND_PCI_QUIRK(0x17aa, 0x21da, "Lenovo X220", CXT5066_THINKPAD),
b2cb1292 2992 SND_PCI_QUIRK(0x17aa, 0x21db, "Lenovo X220-tablet", CXT5066_THINKPAD),
d2859fd4 2993 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo U350", CXT5066_ASUS),
a1d6906e 2994 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G560", CXT5066_ASUS),
af4ccf4f 2995 SND_PCI_QUIRK(0x17aa, 0x3938, "Lenovo G565", CXT5066_AUTO),
7ab1fc0a 2996 SND_PCI_QUIRK(0x1b0a, 0x2092, "CyberpowerPC Gamer Xplorer N57001", CXT5066_AUTO),
0fb67e98
DD
2997 {}
2998};
2999
3000static int patch_cxt5066(struct hda_codec *codec)
3001{
3002 struct conexant_spec *spec;
3003 int board_config;
3004
fea4a4f9
TI
3005 board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
3006 cxt5066_models, cxt5066_cfg_tbl);
fea4a4f9 3007 if (board_config < 0)
c82693db 3008 board_config = CXT5066_AUTO; /* model=auto as default */
fea4a4f9
TI
3009 if (board_config == CXT5066_AUTO)
3010 return patch_conexant_auto(codec);
3011
0fb67e98
DD
3012 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3013 if (!spec)
3014 return -ENOMEM;
3015 codec->spec = spec;
3016
3017 codec->patch_ops = conexant_patch_ops;
75f8991d 3018 codec->patch_ops.init = conexant_init;
0fb67e98
DD
3019
3020 spec->dell_automute = 0;
3021 spec->multiout.max_channels = 2;
3022 spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
3023 spec->multiout.dac_nids = cxt5066_dac_nids;
f6a2491c
AR
3024 conexant_check_dig_outs(codec, cxt5066_digout_pin_nids,
3025 ARRAY_SIZE(cxt5066_digout_pin_nids));
0fb67e98
DD
3026 spec->num_adc_nids = 1;
3027 spec->adc_nids = cxt5066_adc_nids;
3028 spec->capsrc_nids = cxt5066_capsrc_nids;
3029 spec->input_mux = &cxt5066_capture_source;
3030
3031 spec->port_d_mode = PIN_HP;
3032
3033 spec->num_init_verbs = 1;
3034 spec->init_verbs[0] = cxt5066_init_verbs;
3035 spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
3036 spec->channel_mode = cxt5066_modes;
3037 spec->cur_adc = 0;
3038 spec->cur_adc_idx = 0;
3039
3507e2a8
TI
3040 set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
3041
0fb67e98
DD
3042 switch (board_config) {
3043 default:
3044 case CXT5066_LAPTOP:
3045 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3046 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3047 break;
3048 case CXT5066_DELL_LAPTOP:
3049 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3050 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3051
3052 spec->port_d_mode = PIN_OUT;
3053 spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
3054 spec->num_init_verbs++;
3055 spec->dell_automute = 1;
3056 break;
a1d6906e 3057 case CXT5066_ASUS:
048e78a5
DH
3058 case CXT5066_HP_LAPTOP:
3059 codec->patch_ops.init = cxt5066_init;
02b6b5b6 3060 codec->patch_ops.unsol_event = cxt5066_unsol_event;
048e78a5
DH
3061 spec->init_verbs[spec->num_init_verbs] =
3062 cxt5066_init_verbs_hp_laptop;
3063 spec->num_init_verbs++;
a1d6906e
DH
3064 spec->hp_laptop = board_config == CXT5066_HP_LAPTOP;
3065 spec->asus = board_config == CXT5066_ASUS;
048e78a5
DH
3066 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3067 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3068 /* no S/PDIF out */
f6a2491c
AR
3069 if (board_config == CXT5066_HP_LAPTOP)
3070 spec->multiout.dig_out_nid = 0;
048e78a5
DH
3071 /* input source automatically selected */
3072 spec->input_mux = NULL;
3073 spec->port_d_mode = 0;
3074 spec->mic_boost = 3; /* default 30dB gain */
3075 break;
3076
0fb67e98 3077 case CXT5066_OLPC_XO_1_5:
75f8991d
DD
3078 codec->patch_ops.init = cxt5066_olpc_init;
3079 codec->patch_ops.unsol_event = cxt5066_olpc_unsol_event;
0fb67e98
DD
3080 spec->init_verbs[0] = cxt5066_init_verbs_olpc;
3081 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
c4cfe66c 3082 spec->mixers[spec->num_mixers++] = cxt5066_mixer_olpc_dc;
0fb67e98
DD
3083 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3084 spec->port_d_mode = 0;
c4cfe66c 3085 spec->mic_boost = 3; /* default 30dB gain */
0fb67e98
DD
3086
3087 /* no S/PDIF out */
3088 spec->multiout.dig_out_nid = 0;
3089
95a618bd
ER
3090 /* input source automatically selected */
3091 spec->input_mux = NULL;
75f8991d
DD
3092
3093 /* our capture hooks which allow us to turn on the microphone LED
3094 * at the right time */
3095 spec->capture_prepare = cxt5066_olpc_capture_prepare;
3096 spec->capture_cleanup = cxt5066_olpc_capture_cleanup;
95a618bd 3097 break;
1feba3b7 3098 case CXT5066_DELL_VOSTRO:
75f8991d 3099 codec->patch_ops.init = cxt5066_init;
02b6b5b6 3100 codec->patch_ops.unsol_event = cxt5066_unsol_event;
95a618bd
ER
3101 spec->init_verbs[0] = cxt5066_init_verbs_vostro;
3102 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
3103 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
254bba6a 3104 spec->mixers[spec->num_mixers++] = cxt5066_vostro_mixers;
95a618bd 3105 spec->port_d_mode = 0;
254bba6a 3106 spec->dell_vostro = 1;
c4cfe66c 3107 spec->mic_boost = 3; /* default 30dB gain */
95a618bd
ER
3108
3109 /* no S/PDIF out */
3110 spec->multiout.dig_out_nid = 0;
3111
cfd3d8dc
GA
3112 /* input source automatically selected */
3113 spec->input_mux = NULL;
3114 break;
3115 case CXT5066_IDEAPAD:
3116 codec->patch_ops.init = cxt5066_init;
02b6b5b6 3117 codec->patch_ops.unsol_event = cxt5066_unsol_event;
cfd3d8dc
GA
3118 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3119 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3120 spec->init_verbs[0] = cxt5066_init_verbs_ideapad;
3121 spec->port_d_mode = 0;
3122 spec->ideapad = 1;
3123 spec->mic_boost = 2; /* default 20dB gain */
3124
3125 /* no S/PDIF out */
3126 spec->multiout.dig_out_nid = 0;
3127
7b2bfdbc
JT
3128 /* input source automatically selected */
3129 spec->input_mux = NULL;
3130 break;
3131 case CXT5066_THINKPAD:
3132 codec->patch_ops.init = cxt5066_init;
02b6b5b6 3133 codec->patch_ops.unsol_event = cxt5066_unsol_event;
7b2bfdbc
JT
3134 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3135 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3136 spec->init_verbs[0] = cxt5066_init_verbs_thinkpad;
3137 spec->thinkpad = 1;
3138 spec->port_d_mode = PIN_OUT;
3139 spec->mic_boost = 2; /* default 20dB gain */
3140
3141 /* no S/PDIF out */
3142 spec->multiout.dig_out_nid = 0;
3143
0fb67e98
DD
3144 /* input source automatically selected */
3145 spec->input_mux = NULL;
3146 break;
3147 }
3148
3507e2a8
TI
3149 if (spec->beep_amp)
3150 snd_hda_attach_beep_device(codec, spec->beep_amp);
3151
0fb67e98
DD
3152 return 0;
3153}
461e2c78 3154
f2e5731d
TI
3155/*
3156 * Automatic parser for CX20641 & co
3157 */
3158
6764bcef
TI
3159static int cx_auto_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
3160 struct hda_codec *codec,
3161 unsigned int stream_tag,
3162 unsigned int format,
3163 struct snd_pcm_substream *substream)
3164{
3165 struct conexant_spec *spec = codec->spec;
47ad1f4e 3166 hda_nid_t adc = spec->imux_info[spec->cur_mux[0]].adc;
6764bcef
TI
3167 if (spec->adc_switching) {
3168 spec->cur_adc = adc;
3169 spec->cur_adc_stream_tag = stream_tag;
3170 spec->cur_adc_format = format;
3171 }
3172 snd_hda_codec_setup_stream(codec, adc, stream_tag, 0, format);
3173 return 0;
3174}
3175
3176static int cx_auto_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
3177 struct hda_codec *codec,
3178 struct snd_pcm_substream *substream)
3179{
3180 struct conexant_spec *spec = codec->spec;
3181 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
3182 spec->cur_adc = 0;
3183 return 0;
3184}
3185
3186static const struct hda_pcm_stream cx_auto_pcm_analog_capture = {
3187 .substreams = 1,
3188 .channels_min = 2,
3189 .channels_max = 2,
3190 .nid = 0, /* fill later */
3191 .ops = {
3192 .prepare = cx_auto_capture_pcm_prepare,
3193 .cleanup = cx_auto_capture_pcm_cleanup
3194 },
3195};
3196
34cbe3a6 3197static const hda_nid_t cx_auto_adc_nids[] = { 0x14 };
f2e5731d 3198
8d087c76
TI
3199#define get_connection_index(codec, mux, nid)\
3200 snd_hda_get_conn_index(codec, mux, nid, 0)
f2e5731d
TI
3201
3202/* get an unassigned DAC from the given list.
3203 * Return the nid if found and reduce the DAC list, or return zero if
3204 * not found
3205 */
3206static hda_nid_t get_unassigned_dac(struct hda_codec *codec, hda_nid_t pin,
3207 hda_nid_t *dacs, int *num_dacs)
3208{
3209 int i, nums = *num_dacs;
3210 hda_nid_t ret = 0;
3211
3212 for (i = 0; i < nums; i++) {
3213 if (get_connection_index(codec, pin, dacs[i]) >= 0) {
3214 ret = dacs[i];
3215 break;
3216 }
3217 }
3218 if (!ret)
3219 return 0;
3220 if (--nums > 0)
3221 memmove(dacs, dacs + 1, nums * sizeof(hda_nid_t));
3222 *num_dacs = nums;
3223 return ret;
3224}
3225
3226#define MAX_AUTO_DACS 5
3227
1f015f5f
TI
3228#define DAC_SLAVE_FLAG 0x8000 /* filled dac is a slave */
3229
f2e5731d
TI
3230/* fill analog DAC list from the widget tree */
3231static int fill_cx_auto_dacs(struct hda_codec *codec, hda_nid_t *dacs)
3232{
3233 hda_nid_t nid, end_nid;
3234 int nums = 0;
3235
3236 end_nid = codec->start_nid + codec->num_nodes;
3237 for (nid = codec->start_nid; nid < end_nid; nid++) {
3238 unsigned int wcaps = get_wcaps(codec, nid);
3239 unsigned int type = get_wcaps_type(wcaps);
3240 if (type == AC_WID_AUD_OUT && !(wcaps & AC_WCAP_DIGITAL)) {
3241 dacs[nums++] = nid;
3242 if (nums >= MAX_AUTO_DACS)
3243 break;
3244 }
3245 }
3246 return nums;
3247}
3248
3249/* fill pin_dac_pair list from the pin and dac list */
3250static int fill_dacs_for_pins(struct hda_codec *codec, hda_nid_t *pins,
3251 int num_pins, hda_nid_t *dacs, int *rest,
468c5458
DH
3252 struct pin_dac_pair *filled, int nums,
3253 int type)
f2e5731d 3254{
468c5458 3255 int i, start = nums;
f2e5731d 3256
468c5458 3257 for (i = 0; i < num_pins; i++, nums++) {
f2e5731d
TI
3258 filled[nums].pin = pins[i];
3259 filled[nums].type = type;
3260 filled[nums].dac = get_unassigned_dac(codec, pins[i], dacs, rest);
468c5458
DH
3261 if (filled[nums].dac)
3262 continue;
3263 if (filled[start].dac && get_connection_index(codec, pins[i], filled[start].dac) >= 0) {
3264 filled[nums].dac = filled[start].dac | DAC_SLAVE_FLAG;
3265 continue;
3266 }
3267 if (filled[0].dac && get_connection_index(codec, pins[i], filled[0].dac) >= 0) {
1f015f5f 3268 filled[nums].dac = filled[0].dac | DAC_SLAVE_FLAG;
468c5458
DH
3269 continue;
3270 }
3271 snd_printdd("Failed to find a DAC for pin 0x%x", pins[i]);
f2e5731d
TI
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,
468c5458
DH
3287 dacs, &rest, spec->dac_info, 0,
3288 AUTO_PIN_LINE_OUT);
3289 nums = fill_dacs_for_pins(codec, cfg->hp_pins, cfg->hp_outs,
3290 dacs, &rest, spec->dac_info, nums,
3291 AUTO_PIN_HP_OUT);
3292 nums = fill_dacs_for_pins(codec, cfg->speaker_pins, cfg->speaker_outs,
3293 dacs, &rest, spec->dac_info, nums,
3294 AUTO_PIN_SPEAKER_OUT);
f2e5731d
TI
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;
1f015f5f 3299 if (!dac || (dac & DAC_SLAVE_FLAG))
f2e5731d
TI
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;
89724958 3321 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
f2e5731d 3322
03697e2a
TI
3323 for (i = 0; i < cfg->hp_outs; i++) {
3324 if (is_jack_detectable(codec, cfg->hp_pins[i])) {
3325 spec->auto_mute = 1;
3326 break;
3327 }
3328 }
e2df82ff
TI
3329 if (spec->auto_mute &&
3330 cfg->line_out_pins[0] &&
3331 cfg->line_out_type != AUTO_PIN_SPEAKER_OUT &&
03697e2a
TI
3332 cfg->line_out_pins[0] != cfg->hp_pins[0] &&
3333 cfg->line_out_pins[0] != cfg->speaker_pins[0]) {
3334 for (i = 0; i < cfg->line_outs; i++) {
3335 if (is_jack_detectable(codec, cfg->line_out_pins[i])) {
3336 spec->detect_line = 1;
3337 break;
3338 }
3339 }
3340 spec->automute_lines = spec->detect_line;
3341 }
3342
f2e5731d
TI
3343 spec->vmaster_nid = spec->private_dac_nids[0];
3344}
3345
da339866
TI
3346static void cx_auto_turn_eapd(struct hda_codec *codec, int num_pins,
3347 hda_nid_t *pins, bool on);
3348
03697e2a
TI
3349static void do_automute(struct hda_codec *codec, int num_pins,
3350 hda_nid_t *pins, bool on)
3351{
254f2968 3352 struct conexant_spec *spec = codec->spec;
03697e2a
TI
3353 int i;
3354 for (i = 0; i < num_pins; i++)
cdd03ced 3355 snd_hda_set_pin_ctl(codec, pins[i], on ? PIN_OUT : 0);
254f2968
TI
3356 if (spec->pin_eapd_ctrls)
3357 cx_auto_turn_eapd(codec, num_pins, pins, on);
03697e2a
TI
3358}
3359
3360static int detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
3361{
3362 int i, present = 0;
3363
3364 for (i = 0; i < num_pins; i++) {
3365 hda_nid_t nid = pins[i];
3366 if (!nid || !is_jack_detectable(codec, nid))
3367 break;
03697e2a
TI
3368 present |= snd_hda_jack_detect(codec, nid);
3369 }
3370 return present;
3371}
3372
f2e5731d 3373/* auto-mute/unmute speaker and line outs according to headphone jack */
03697e2a
TI
3374static void cx_auto_update_speakers(struct hda_codec *codec)
3375{
3376 struct conexant_spec *spec = codec->spec;
3377 struct auto_pin_cfg *cfg = &spec->autocfg;
e2df82ff 3378 int on = 1;
03697e2a 3379
e2df82ff 3380 /* turn on HP EAPD when HP jacks are present */
254f2968
TI
3381 if (spec->pin_eapd_ctrls) {
3382 if (spec->auto_mute)
3383 on = spec->hp_present;
3384 cx_auto_turn_eapd(codec, cfg->hp_outs, cfg->hp_pins, on);
3385 }
3386
e2df82ff
TI
3387 /* mute speakers in auto-mode if HP or LO jacks are plugged */
3388 if (spec->auto_mute)
3389 on = !(spec->hp_present ||
3390 (spec->detect_line && spec->line_present));
3391 do_automute(codec, cfg->speaker_outs, cfg->speaker_pins, on);
03697e2a
TI
3392
3393 /* toggle line-out mutes if needed, too */
3394 /* if LO is a copy of either HP or Speaker, don't need to handle it */
3395 if (cfg->line_out_pins[0] == cfg->hp_pins[0] ||
3396 cfg->line_out_pins[0] == cfg->speaker_pins[0])
3397 return;
e2df82ff
TI
3398 if (spec->auto_mute) {
3399 /* mute LO in auto-mode when HP jack is present */
3400 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT ||
3401 spec->automute_lines)
3402 on = !spec->hp_present;
3403 else
3404 on = 1;
3405 }
3406 do_automute(codec, cfg->line_outs, cfg->line_out_pins, on);
03697e2a
TI
3407}
3408
f2e5731d
TI
3409static void cx_auto_hp_automute(struct hda_codec *codec)
3410{
3411 struct conexant_spec *spec = codec->spec;
3412 struct auto_pin_cfg *cfg = &spec->autocfg;
f2e5731d
TI
3413
3414 if (!spec->auto_mute)
3415 return;
03697e2a
TI
3416 spec->hp_present = detect_jacks(codec, cfg->hp_outs, cfg->hp_pins);
3417 cx_auto_update_speakers(codec);
3418}
3419
3420static void cx_auto_line_automute(struct hda_codec *codec)
3421{
3422 struct conexant_spec *spec = codec->spec;
3423 struct auto_pin_cfg *cfg = &spec->autocfg;
3424
3425 if (!spec->auto_mute || !spec->detect_line)
3426 return;
3427 spec->line_present = detect_jacks(codec, cfg->line_outs,
3428 cfg->line_out_pins);
3429 cx_auto_update_speakers(codec);
3430}
3431
3432static int cx_automute_mode_info(struct snd_kcontrol *kcontrol,
3433 struct snd_ctl_elem_info *uinfo)
3434{
3435 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3436 struct conexant_spec *spec = codec->spec;
3437 static const char * const texts2[] = {
3438 "Disabled", "Enabled"
3439 };
3440 static const char * const texts3[] = {
e49a3434 3441 "Disabled", "Speaker Only", "Line Out+Speaker"
03697e2a
TI
3442 };
3443 const char * const *texts;
3444
3445 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3446 uinfo->count = 1;
3447 if (spec->automute_hp_lo) {
3448 uinfo->value.enumerated.items = 3;
3449 texts = texts3;
3450 } else {
3451 uinfo->value.enumerated.items = 2;
3452 texts = texts2;
f2e5731d 3453 }
03697e2a
TI
3454 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
3455 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
3456 strcpy(uinfo->value.enumerated.name,
3457 texts[uinfo->value.enumerated.item]);
3458 return 0;
3459}
3460
3461static int cx_automute_mode_get(struct snd_kcontrol *kcontrol,
3462 struct snd_ctl_elem_value *ucontrol)
3463{
3464 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3465 struct conexant_spec *spec = codec->spec;
3466 unsigned int val;
3467 if (!spec->auto_mute)
3468 val = 0;
3469 else if (!spec->automute_lines)
3470 val = 1;
3471 else
3472 val = 2;
3473 ucontrol->value.enumerated.item[0] = val;
3474 return 0;
3475}
3476
3477static int cx_automute_mode_put(struct snd_kcontrol *kcontrol,
3478 struct snd_ctl_elem_value *ucontrol)
3479{
3480 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3481 struct conexant_spec *spec = codec->spec;
3482
3483 switch (ucontrol->value.enumerated.item[0]) {
3484 case 0:
3485 if (!spec->auto_mute)
3486 return 0;
3487 spec->auto_mute = 0;
3488 break;
3489 case 1:
3490 if (spec->auto_mute && !spec->automute_lines)
3491 return 0;
3492 spec->auto_mute = 1;
3493 spec->automute_lines = 0;
3494 break;
3495 case 2:
3496 if (!spec->automute_hp_lo)
3497 return -EINVAL;
3498 if (spec->auto_mute && spec->automute_lines)
3499 return 0;
3500 spec->auto_mute = 1;
3501 spec->automute_lines = 1;
3502 break;
3503 default:
3504 return -EINVAL;
f2e5731d 3505 }
03697e2a
TI
3506 cx_auto_update_speakers(codec);
3507 return 1;
f2e5731d
TI
3508}
3509
03697e2a
TI
3510static const struct snd_kcontrol_new cx_automute_mode_enum[] = {
3511 {
3512 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3513 .name = "Auto-Mute Mode",
3514 .info = cx_automute_mode_info,
3515 .get = cx_automute_mode_get,
3516 .put = cx_automute_mode_put,
3517 },
3518 { }
3519};
3520
6764bcef
TI
3521static int cx_auto_mux_enum_info(struct snd_kcontrol *kcontrol,
3522 struct snd_ctl_elem_info *uinfo)
3523{
3524 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3525 struct conexant_spec *spec = codec->spec;
3526
3527 return snd_hda_input_mux_info(&spec->private_imux, uinfo);
3528}
3529
3530static int cx_auto_mux_enum_get(struct snd_kcontrol *kcontrol,
3531 struct snd_ctl_elem_value *ucontrol)
3532{
3533 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3534 struct conexant_spec *spec = codec->spec;
3535
3536 ucontrol->value.enumerated.item[0] = spec->cur_mux[0];
3537 return 0;
3538}
3539
5c9887e0
TI
3540/* look for the route the given pin from mux and return the index;
3541 * if do_select is set, actually select the route.
3542 */
3543static int __select_input_connection(struct hda_codec *codec, hda_nid_t mux,
cf27f29a
TI
3544 hda_nid_t pin, hda_nid_t *srcp,
3545 bool do_select, int depth)
5c9887e0
TI
3546{
3547 hda_nid_t conn[HDA_MAX_NUM_INPUTS];
3548 int i, nums;
3549
cf27f29a
TI
3550 switch (get_wcaps_type(get_wcaps(codec, mux))) {
3551 case AC_WID_AUD_IN:
3552 case AC_WID_AUD_SEL:
3553 case AC_WID_AUD_MIX:
3554 break;
3555 default:
3556 return -1;
3557 }
3558
5c9887e0
TI
3559 nums = snd_hda_get_connections(codec, mux, conn, ARRAY_SIZE(conn));
3560 for (i = 0; i < nums; i++)
3561 if (conn[i] == pin) {
3562 if (do_select)
3563 snd_hda_codec_write(codec, mux, 0,
3564 AC_VERB_SET_CONNECT_SEL, i);
cf27f29a
TI
3565 if (srcp)
3566 *srcp = mux;
5c9887e0
TI
3567 return i;
3568 }
3569 depth++;
3570 if (depth == 2)
3571 return -1;
3572 for (i = 0; i < nums; i++) {
cf27f29a 3573 int ret = __select_input_connection(codec, conn[i], pin, srcp,
5c9887e0
TI
3574 do_select, depth);
3575 if (ret >= 0) {
3576 if (do_select)
3577 snd_hda_codec_write(codec, mux, 0,
3578 AC_VERB_SET_CONNECT_SEL, i);
cf27f29a 3579 return i;
5c9887e0
TI
3580 }
3581 }
3582 return -1;
3583}
3584
3585static void select_input_connection(struct hda_codec *codec, hda_nid_t mux,
3586 hda_nid_t pin)
3587{
cf27f29a 3588 __select_input_connection(codec, mux, pin, NULL, true, 0);
5c9887e0
TI
3589}
3590
3591static int get_input_connection(struct hda_codec *codec, hda_nid_t mux,
3592 hda_nid_t pin)
3593{
cf27f29a 3594 return __select_input_connection(codec, mux, pin, NULL, false, 0);
5c9887e0
TI
3595}
3596
6764bcef
TI
3597static int cx_auto_mux_enum_update(struct hda_codec *codec,
3598 const struct hda_input_mux *imux,
3599 unsigned int idx)
3600{
3601 struct conexant_spec *spec = codec->spec;
3602 hda_nid_t adc;
313d2c06 3603 int changed = 1;
6764bcef
TI
3604
3605 if (!imux->num_items)
3606 return 0;
3607 if (idx >= imux->num_items)
3608 idx = imux->num_items - 1;
3609 if (spec->cur_mux[0] == idx)
313d2c06 3610 changed = 0;
47ad1f4e
TI
3611 adc = spec->imux_info[idx].adc;
3612 select_input_connection(codec, spec->imux_info[idx].adc,
3613 spec->imux_info[idx].pin);
6764bcef
TI
3614 if (spec->cur_adc && spec->cur_adc != adc) {
3615 /* stream is running, let's swap the current ADC */
3616 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
3617 spec->cur_adc = adc;
3618 snd_hda_codec_setup_stream(codec, adc,
3619 spec->cur_adc_stream_tag, 0,
3620 spec->cur_adc_format);
3621 }
3622 spec->cur_mux[0] = idx;
313d2c06 3623 return changed;
6764bcef
TI
3624}
3625
3626static int cx_auto_mux_enum_put(struct snd_kcontrol *kcontrol,
3627 struct snd_ctl_elem_value *ucontrol)
3628{
3629 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3630 struct conexant_spec *spec = codec->spec;
3631
3632 return cx_auto_mux_enum_update(codec, &spec->private_imux,
3633 ucontrol->value.enumerated.item[0]);
3634}
3635
3636static const struct snd_kcontrol_new cx_auto_capture_mixers[] = {
3637 {
3638 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3639 .name = "Capture Source",
3640 .info = cx_auto_mux_enum_info,
3641 .get = cx_auto_mux_enum_get,
3642 .put = cx_auto_mux_enum_put
3643 },
3644 {}
3645};
3646
43c1b2e9
TI
3647static bool select_automic(struct hda_codec *codec, int idx, bool detect)
3648{
3649 struct conexant_spec *spec = codec->spec;
3650 if (idx < 0)
3651 return false;
3652 if (detect && !snd_hda_jack_detect(codec, spec->imux_info[idx].pin))
3653 return false;
3654 cx_auto_mux_enum_update(codec, &spec->private_imux, idx);
3655 return true;
3656}
3657
f2e5731d
TI
3658/* automatic switch internal and external mic */
3659static void cx_auto_automic(struct hda_codec *codec)
3660{
3661 struct conexant_spec *spec = codec->spec;
f2e5731d
TI
3662
3663 if (!spec->auto_mic)
3664 return;
43c1b2e9
TI
3665 if (!select_automic(codec, spec->auto_mic_ext, true))
3666 if (!select_automic(codec, spec->auto_mic_dock, true))
3667 select_automic(codec, spec->auto_mic_int, false);
f2e5731d
TI
3668}
3669
3670static void cx_auto_unsol_event(struct hda_codec *codec, unsigned int res)
3671{
3a93897e 3672 switch (snd_hda_jack_get_action(codec, res >> 26)) {
f2e5731d
TI
3673 case CONEXANT_HP_EVENT:
3674 cx_auto_hp_automute(codec);
03697e2a
TI
3675 break;
3676 case CONEXANT_LINE_EVENT:
3677 cx_auto_line_automute(codec);
f2e5731d
TI
3678 break;
3679 case CONEXANT_MIC_EVENT:
3680 cx_auto_automic(codec);
f2e5731d
TI
3681 break;
3682 }
01a61e12 3683 snd_hda_jack_report_sync(codec);
f2e5731d
TI
3684}
3685
f2e5731d 3686/* check whether the pin config is suitable for auto-mic switching;
43c1b2e9
TI
3687 * auto-mic is enabled only when one int-mic and one ext- and/or
3688 * one dock-mic exist
f2e5731d
TI
3689 */
3690static void cx_auto_check_auto_mic(struct hda_codec *codec)
3691{
3692 struct conexant_spec *spec = codec->spec;
43c1b2e9
TI
3693 int pset[INPUT_PIN_ATTR_NORMAL + 1];
3694 int i;
f2e5731d 3695
506a4196 3696 for (i = 0; i < ARRAY_SIZE(pset); i++)
43c1b2e9
TI
3697 pset[i] = -1;
3698 for (i = 0; i < spec->private_imux.num_items; i++) {
3699 hda_nid_t pin = spec->imux_info[i].pin;
3700 unsigned int def_conf = snd_hda_codec_get_pincfg(codec, pin);
b55fcb50 3701 int type, attr;
43c1b2e9
TI
3702 attr = snd_hda_get_input_pin_attr(def_conf);
3703 if (attr == INPUT_PIN_ATTR_UNUSED)
b55fcb50 3704 return; /* invalid entry */
43c1b2e9
TI
3705 if (attr > INPUT_PIN_ATTR_NORMAL)
3706 attr = INPUT_PIN_ATTR_NORMAL;
3707 if (attr != INPUT_PIN_ATTR_INT &&
3708 !is_jack_detectable(codec, pin))
b55fcb50
TI
3709 return; /* non-detectable pin */
3710 type = get_defcfg_device(def_conf);
3711 if (type != AC_JACK_MIC_IN &&
3712 (attr != INPUT_PIN_ATTR_DOCK || type != AC_JACK_LINE_IN))
3713 return; /* no valid input type */
43c1b2e9
TI
3714 if (pset[attr] >= 0)
3715 return; /* already occupied */
3716 pset[attr] = i;
f2e5731d 3717 }
43c1b2e9
TI
3718 if (pset[INPUT_PIN_ATTR_INT] < 0 ||
3719 (pset[INPUT_PIN_ATTR_NORMAL] < 0 && pset[INPUT_PIN_ATTR_DOCK]))
3720 return; /* no input to switch*/
3721 spec->auto_mic = 1;
3722 spec->auto_mic_ext = pset[INPUT_PIN_ATTR_NORMAL];
3723 spec->auto_mic_dock = pset[INPUT_PIN_ATTR_DOCK];
3724 spec->auto_mic_int = pset[INPUT_PIN_ATTR_INT];
f2e5731d
TI
3725}
3726
3727static void cx_auto_parse_input(struct hda_codec *codec)
3728{
3729 struct conexant_spec *spec = codec->spec;
3730 struct auto_pin_cfg *cfg = &spec->autocfg;
3731 struct hda_input_mux *imux;
6764bcef 3732 int i, j;
f2e5731d
TI
3733
3734 imux = &spec->private_imux;
3735 for (i = 0; i < cfg->num_inputs; i++) {
6764bcef
TI
3736 for (j = 0; j < spec->num_adc_nids; j++) {
3737 hda_nid_t adc = spec->adc_nids[j];
5c9887e0
TI
3738 int idx = get_input_connection(codec, adc,
3739 cfg->inputs[i].pin);
6764bcef
TI
3740 if (idx >= 0) {
3741 const char *label;
3742 label = hda_get_autocfg_input_label(codec, cfg, i);
47ad1f4e
TI
3743 spec->imux_info[imux->num_items].index = i;
3744 spec->imux_info[imux->num_items].boost = 0;
3745 spec->imux_info[imux->num_items].adc = adc;
3746 spec->imux_info[imux->num_items].pin =
f6100bb4 3747 cfg->inputs[i].pin;
6764bcef 3748 snd_hda_add_imux_item(imux, label, idx, NULL);
6764bcef
TI
3749 break;
3750 }
f2e5731d
TI
3751 }
3752 }
43c1b2e9 3753 if (imux->num_items >= 2 && cfg->num_inputs == imux->num_items)
f2e5731d 3754 cx_auto_check_auto_mic(codec);
76755359 3755 if (imux->num_items > 1) {
6764bcef 3756 for (i = 1; i < imux->num_items; i++) {
47ad1f4e 3757 if (spec->imux_info[i].adc != spec->imux_info[0].adc) {
6764bcef
TI
3758 spec->adc_switching = 1;
3759 break;
3760 }
3761 }
3762 }
f2e5731d
TI
3763}
3764
3765/* get digital-input audio widget corresponding to the given pin */
3766static hda_nid_t cx_auto_get_dig_in(struct hda_codec *codec, hda_nid_t pin)
3767{
3768 hda_nid_t nid, end_nid;
3769
3770 end_nid = codec->start_nid + codec->num_nodes;
3771 for (nid = codec->start_nid; nid < end_nid; nid++) {
3772 unsigned int wcaps = get_wcaps(codec, nid);
3773 unsigned int type = get_wcaps_type(wcaps);
3774 if (type == AC_WID_AUD_IN && (wcaps & AC_WCAP_DIGITAL)) {
3775 if (get_connection_index(codec, nid, pin) >= 0)
3776 return nid;
3777 }
3778 }
3779 return 0;
3780}
3781
3782static void cx_auto_parse_digital(struct hda_codec *codec)
3783{
3784 struct conexant_spec *spec = codec->spec;
3785 struct auto_pin_cfg *cfg = &spec->autocfg;
3786 hda_nid_t nid;
3787
3788 if (cfg->dig_outs &&
3789 snd_hda_get_connections(codec, cfg->dig_out_pins[0], &nid, 1) == 1)
3790 spec->multiout.dig_out_nid = nid;
3791 if (cfg->dig_in_pin)
3792 spec->dig_in_nid = cx_auto_get_dig_in(codec, cfg->dig_in_pin);
3793}
3794
3795#ifdef CONFIG_SND_HDA_INPUT_BEEP
3796static void cx_auto_parse_beep(struct hda_codec *codec)
3797{
3798 struct conexant_spec *spec = codec->spec;
3799 hda_nid_t nid, end_nid;
3800
3801 end_nid = codec->start_nid + codec->num_nodes;
3802 for (nid = codec->start_nid; nid < end_nid; nid++)
3803 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_BEEP) {
3804 set_beep_amp(spec, nid, 0, HDA_OUTPUT);
3805 break;
3806 }
3807}
3808#else
3809#define cx_auto_parse_beep(codec)
3810#endif
3811
254f2968 3812/* parse EAPDs */
19110595
TI
3813static void cx_auto_parse_eapd(struct hda_codec *codec)
3814{
3815 struct conexant_spec *spec = codec->spec;
19110595
TI
3816 hda_nid_t nid, end_nid;
3817
3818 end_nid = codec->start_nid + codec->num_nodes;
3819 for (nid = codec->start_nid; nid < end_nid; nid++) {
3820 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
3821 continue;
3822 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD))
3823 continue;
19110595
TI
3824 spec->eapds[spec->num_eapds++] = nid;
3825 if (spec->num_eapds >= ARRAY_SIZE(spec->eapds))
3826 break;
3827 }
254f2968
TI
3828
3829 /* NOTE: below is a wild guess; if we have more than two EAPDs,
3830 * it's a new chip, where EAPDs are supposed to be associated to
3831 * pins, and we can control EAPD per pin.
3832 * OTOH, if only one or two EAPDs are found, it's an old chip,
3833 * thus it might control over all pins.
3834 */
3835 spec->pin_eapd_ctrls = spec->num_eapds > 2;
19110595
TI
3836}
3837
f2e5731d
TI
3838static int cx_auto_parse_auto_config(struct hda_codec *codec)
3839{
3840 struct conexant_spec *spec = codec->spec;
3841 int err;
3842
3843 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL);
3844 if (err < 0)
3845 return err;
3846
3847 cx_auto_parse_output(codec);
3848 cx_auto_parse_input(codec);
3849 cx_auto_parse_digital(codec);
3850 cx_auto_parse_beep(codec);
19110595 3851 cx_auto_parse_eapd(codec);
f2e5731d
TI
3852 return 0;
3853}
3854
da339866
TI
3855static void cx_auto_turn_eapd(struct hda_codec *codec, int num_pins,
3856 hda_nid_t *pins, bool on)
f2e5731d
TI
3857{
3858 int i;
3859 for (i = 0; i < num_pins; i++) {
3860 if (snd_hda_query_pin_caps(codec, pins[i]) & AC_PINCAP_EAPD)
3861 snd_hda_codec_write(codec, pins[i], 0,
da339866
TI
3862 AC_VERB_SET_EAPD_BTLENABLE,
3863 on ? 0x02 : 0);
f2e5731d
TI
3864 }
3865}
3866
3867static void select_connection(struct hda_codec *codec, hda_nid_t pin,
3868 hda_nid_t src)
3869{
3870 int idx = get_connection_index(codec, pin, src);
3871 if (idx >= 0)
3872 snd_hda_codec_write(codec, pin, 0,
3873 AC_VERB_SET_CONNECT_SEL, idx);
3874}
3875
1f8458a2
TI
3876static void mute_outputs(struct hda_codec *codec, int num_nids,
3877 const hda_nid_t *nids)
f2e5731d 3878{
0ad1b5b6 3879 int i, val;
f2e5731d 3880
1f8458a2
TI
3881 for (i = 0; i < num_nids; i++) {
3882 hda_nid_t nid = nids[i];
3883 if (!(get_wcaps(codec, nid) & AC_WCAP_OUT_AMP))
3884 continue;
0ad1b5b6
TI
3885 if (query_amp_caps(codec, nid, HDA_OUTPUT) & AC_AMPCAP_MUTE)
3886 val = AMP_OUT_MUTE;
3887 else
3888 val = AMP_OUT_ZERO;
3889 snd_hda_codec_write(codec, nid, 0,
3890 AC_VERB_SET_AMP_GAIN_MUTE, val);
3891 }
1f8458a2 3892}
f2e5731d 3893
03697e2a 3894static void enable_unsol_pins(struct hda_codec *codec, int num_pins,
3a93897e 3895 hda_nid_t *pins, unsigned int action)
03697e2a
TI
3896{
3897 int i;
3898 for (i = 0; i < num_pins; i++)
3a93897e 3899 snd_hda_jack_detect_enable(codec, pins[i], action);
03697e2a
TI
3900}
3901
07cafff2
TI
3902static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
3903{
3904 int i;
3905 for (i = 0; i < nums; i++)
3906 if (list[i] == nid)
3907 return true;
3908 return false;
3909}
3910
3911/* is the given NID found in any of autocfg items? */
3912static bool found_in_autocfg(struct auto_pin_cfg *cfg, hda_nid_t nid)
3913{
3914 int i;
3915
3916 if (found_in_nid_list(nid, cfg->line_out_pins, cfg->line_outs) ||
3917 found_in_nid_list(nid, cfg->hp_pins, cfg->hp_outs) ||
3918 found_in_nid_list(nid, cfg->speaker_pins, cfg->speaker_outs) ||
3919 found_in_nid_list(nid, cfg->dig_out_pins, cfg->dig_outs))
3920 return true;
3921 for (i = 0; i < cfg->num_inputs; i++)
3922 if (cfg->inputs[i].pin == nid)
3923 return true;
3924 if (cfg->dig_in_pin == nid)
3925 return true;
3926 return false;
3927}
3928
3929/* clear unsol-event tags on unused pins; Conexant codecs seem to leave
3930 * invalid unsol tags by some reason
3931 */
3932static void clear_unsol_on_unused_pins(struct hda_codec *codec)
3933{
3934 struct conexant_spec *spec = codec->spec;
3935 struct auto_pin_cfg *cfg = &spec->autocfg;
3936 int i;
3937
3938 for (i = 0; i < codec->init_pins.used; i++) {
3939 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
3940 if (!found_in_autocfg(cfg, pin->nid))
3941 snd_hda_codec_write(codec, pin->nid, 0,
3942 AC_VERB_SET_UNSOLICITED_ENABLE, 0);
3943 }
3944}
3945
527c73ba
TI
3946/* turn on/off EAPD according to Master switch */
3947static void cx_auto_vmaster_hook(void *private_data, int enabled)
3948{
3949 struct hda_codec *codec = private_data;
3950 struct conexant_spec *spec = codec->spec;
3951
3952 if (enabled && spec->pin_eapd_ctrls) {
3953 cx_auto_update_speakers(codec);
3954 return;
3955 }
3956 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, enabled);
3957}
3958
1f8458a2
TI
3959static void cx_auto_init_output(struct hda_codec *codec)
3960{
3961 struct conexant_spec *spec = codec->spec;
3962 struct auto_pin_cfg *cfg = &spec->autocfg;
3963 hda_nid_t nid;
3964 int i;
3965
3966 mute_outputs(codec, spec->multiout.num_dacs, spec->multiout.dac_nids);
ca3649de
TI
3967 for (i = 0; i < cfg->hp_outs; i++) {
3968 unsigned int val = PIN_OUT;
3969 if (snd_hda_query_pin_caps(codec, cfg->hp_pins[i]) &
3970 AC_PINCAP_HP_DRV)
3971 val |= AC_PINCTL_HP_EN;
cdd03ced 3972 snd_hda_set_pin_ctl(codec, cfg->hp_pins[i], val);
ca3649de 3973 }
1f8458a2
TI
3974 mute_outputs(codec, cfg->hp_outs, cfg->hp_pins);
3975 mute_outputs(codec, cfg->line_outs, cfg->line_out_pins);
3976 mute_outputs(codec, cfg->speaker_outs, cfg->speaker_pins);
f2e5731d
TI
3977 for (i = 0; i < spec->dac_info_filled; i++) {
3978 nid = spec->dac_info[i].dac;
3979 if (!nid)
3980 nid = spec->multiout.dac_nids[0];
1f015f5f
TI
3981 else if (nid & DAC_SLAVE_FLAG)
3982 nid &= ~DAC_SLAVE_FLAG;
f2e5731d
TI
3983 select_connection(codec, spec->dac_info[i].pin, nid);
3984 }
03697e2a
TI
3985 if (spec->auto_mute) {
3986 enable_unsol_pins(codec, cfg->hp_outs, cfg->hp_pins,
3987 CONEXANT_HP_EVENT);
3988 spec->hp_present = detect_jacks(codec, cfg->hp_outs,
3989 cfg->hp_pins);
3990 if (spec->detect_line) {
3991 enable_unsol_pins(codec, cfg->line_outs,
3992 cfg->line_out_pins,
3993 CONEXANT_LINE_EVENT);
3994 spec->line_present =
3995 detect_jacks(codec, cfg->line_outs,
3996 cfg->line_out_pins);
3997 }
3998 }
3999 cx_auto_update_speakers(codec);
254f2968
TI
4000 /* turn on all EAPDs if no individual EAPD control is available */
4001 if (!spec->pin_eapd_ctrls)
4002 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, true);
07cafff2 4003 clear_unsol_on_unused_pins(codec);
f2e5731d
TI
4004}
4005
4006static void cx_auto_init_input(struct hda_codec *codec)
4007{
4008 struct conexant_spec *spec = codec->spec;
4009 struct auto_pin_cfg *cfg = &spec->autocfg;
0ad1b5b6 4010 int i, val;
f2e5731d 4011
0ad1b5b6
TI
4012 for (i = 0; i < spec->num_adc_nids; i++) {
4013 hda_nid_t nid = spec->adc_nids[i];
1f8458a2
TI
4014 if (!(get_wcaps(codec, nid) & AC_WCAP_IN_AMP))
4015 continue;
0ad1b5b6
TI
4016 if (query_amp_caps(codec, nid, HDA_INPUT) & AC_AMPCAP_MUTE)
4017 val = AMP_IN_MUTE(0);
4018 else
4019 val = AMP_IN_UNMUTE(0);
4020 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4021 val);
4022 }
f2e5731d
TI
4023
4024 for (i = 0; i < cfg->num_inputs; i++) {
4740860b
TI
4025 hda_nid_t pin = cfg->inputs[i].pin;
4026 unsigned int type = PIN_IN;
f2e5731d 4027 if (cfg->inputs[i].type == AUTO_PIN_MIC)
4740860b
TI
4028 type |= snd_hda_get_default_vref(codec, pin);
4029 snd_hda_set_pin_ctl(codec, pin, type);
f2e5731d
TI
4030 }
4031
4032 if (spec->auto_mic) {
43c1b2e9 4033 if (spec->auto_mic_ext >= 0) {
1835a0f9
TI
4034 snd_hda_jack_detect_enable(codec,
4035 cfg->inputs[spec->auto_mic_ext].pin,
4036 CONEXANT_MIC_EVENT);
43c1b2e9
TI
4037 }
4038 if (spec->auto_mic_dock >= 0) {
1835a0f9
TI
4039 snd_hda_jack_detect_enable(codec,
4040 cfg->inputs[spec->auto_mic_dock].pin,
4041 CONEXANT_MIC_EVENT);
43c1b2e9 4042 }
f2e5731d
TI
4043 cx_auto_automic(codec);
4044 } else {
47ad1f4e
TI
4045 select_input_connection(codec, spec->imux_info[0].adc,
4046 spec->imux_info[0].pin);
f2e5731d
TI
4047 }
4048}
4049
4050static void cx_auto_init_digital(struct hda_codec *codec)
4051{
4052 struct conexant_spec *spec = codec->spec;
4053 struct auto_pin_cfg *cfg = &spec->autocfg;
4054
4055 if (spec->multiout.dig_out_nid)
cdd03ced 4056 snd_hda_set_pin_ctl(codec, cfg->dig_out_pins[0], PIN_OUT);
f2e5731d 4057 if (spec->dig_in_nid)
cdd03ced 4058 snd_hda_set_pin_ctl(codec, cfg->dig_in_pin, PIN_IN);
f2e5731d
TI
4059}
4060
4061static int cx_auto_init(struct hda_codec *codec)
4062{
527c73ba 4063 struct conexant_spec *spec = codec->spec;
f2e5731d
TI
4064 /*snd_hda_sequence_write(codec, cx_auto_init_verbs);*/
4065 cx_auto_init_output(codec);
4066 cx_auto_init_input(codec);
4067 cx_auto_init_digital(codec);
01a61e12 4068 snd_hda_jack_report_sync(codec);
d2f344b5 4069 snd_hda_sync_vmaster_hook(&spec->vmaster_mute);
f2e5731d
TI
4070 return 0;
4071}
4072
983345e5 4073static int cx_auto_add_volume_idx(struct hda_codec *codec, const char *basename,
f2e5731d 4074 const char *dir, int cidx,
18dcd304 4075 hda_nid_t nid, int hda_dir, int amp_idx, int chs)
f2e5731d 4076{
18dcd304 4077 static char name[44];
f2e5731d
TI
4078 static struct snd_kcontrol_new knew[] = {
4079 HDA_CODEC_VOLUME(name, 0, 0, 0),
4080 HDA_CODEC_MUTE(name, 0, 0, 0),
4081 };
34cbe3a6 4082 static const char * const sfx[2] = { "Volume", "Switch" };
f2e5731d
TI
4083 int i, err;
4084
4085 for (i = 0; i < 2; i++) {
4086 struct snd_kcontrol *kctl;
18dcd304 4087 knew[i].private_value = HDA_COMPOSE_AMP_VAL(nid, chs, amp_idx,
983345e5 4088 hda_dir);
f2e5731d
TI
4089 knew[i].subdevice = HDA_SUBDEV_AMP_FLAG;
4090 knew[i].index = cidx;
4091 snprintf(name, sizeof(name), "%s%s %s", basename, dir, sfx[i]);
4092 kctl = snd_ctl_new1(&knew[i], codec);
4093 if (!kctl)
4094 return -ENOMEM;
4095 err = snd_hda_ctl_add(codec, nid, kctl);
4096 if (err < 0)
4097 return err;
3868137e
TI
4098 if (!(query_amp_caps(codec, nid, hda_dir) &
4099 (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)))
f2e5731d
TI
4100 break;
4101 }
4102 return 0;
4103}
4104
983345e5 4105#define cx_auto_add_volume(codec, str, dir, cidx, nid, hda_dir) \
18dcd304 4106 cx_auto_add_volume_idx(codec, str, dir, cidx, nid, hda_dir, 0, 3)
983345e5 4107
f2e5731d
TI
4108#define cx_auto_add_pb_volume(codec, nid, str, idx) \
4109 cx_auto_add_volume(codec, str, " Playback", idx, nid, HDA_OUTPUT)
4110
1f8458a2
TI
4111static int try_add_pb_volume(struct hda_codec *codec, hda_nid_t dac,
4112 hda_nid_t pin, const char *name, int idx)
4113{
4114 unsigned int caps;
468c5458
DH
4115 if (dac && !(dac & DAC_SLAVE_FLAG)) {
4116 caps = query_amp_caps(codec, dac, HDA_OUTPUT);
4117 if (caps & AC_AMPCAP_NUM_STEPS)
4118 return cx_auto_add_pb_volume(codec, dac, name, idx);
4119 }
1f8458a2
TI
4120 caps = query_amp_caps(codec, pin, HDA_OUTPUT);
4121 if (caps & AC_AMPCAP_NUM_STEPS)
4122 return cx_auto_add_pb_volume(codec, pin, name, idx);
4123 return 0;
4124}
4125
f2e5731d
TI
4126static int cx_auto_build_output_controls(struct hda_codec *codec)
4127{
4128 struct conexant_spec *spec = codec->spec;
4129 int i, err;
4130 int num_line = 0, num_hp = 0, num_spk = 0;
ea734963 4131 static const char * const texts[3] = { "Front", "Surround", "CLFE" };
f2e5731d
TI
4132
4133 if (spec->dac_info_filled == 1)
1f8458a2
TI
4134 return try_add_pb_volume(codec, spec->dac_info[0].dac,
4135 spec->dac_info[0].pin,
4136 "Master", 0);
4137
f2e5731d
TI
4138 for (i = 0; i < spec->dac_info_filled; i++) {
4139 const char *label;
4140 int idx, type;
1f015f5f 4141 hda_nid_t dac = spec->dac_info[i].dac;
f2e5731d
TI
4142 type = spec->dac_info[i].type;
4143 if (type == AUTO_PIN_LINE_OUT)
4144 type = spec->autocfg.line_out_type;
4145 switch (type) {
4146 case AUTO_PIN_LINE_OUT:
4147 default:
4148 label = texts[num_line++];
4149 idx = 0;
4150 break;
4151 case AUTO_PIN_HP_OUT:
4152 label = "Headphone";
4153 idx = num_hp++;
4154 break;
4155 case AUTO_PIN_SPEAKER_OUT:
4156 label = "Speaker";
4157 idx = num_spk++;
4158 break;
4159 }
1f015f5f 4160 err = try_add_pb_volume(codec, dac,
1f8458a2
TI
4161 spec->dac_info[i].pin,
4162 label, idx);
f2e5731d
TI
4163 if (err < 0)
4164 return err;
4165 }
03697e2a
TI
4166
4167 if (spec->auto_mute) {
4168 err = snd_hda_add_new_ctls(codec, cx_automute_mode_enum);
4169 if (err < 0)
4170 return err;
4171 }
4172
f2e5731d
TI
4173 return 0;
4174}
4175
18dcd304
DH
4176/* Returns zero if this is a normal stereo channel, and non-zero if it should
4177 be split in two independent channels.
4178 dest_label must be at least 44 characters. */
4179static int cx_auto_get_rightch_label(struct hda_codec *codec, const char *label,
4180 char *dest_label, int nid)
4181{
4182 struct conexant_spec *spec = codec->spec;
4183 int i;
4184
4185 if (!spec->fixup_stereo_dmic)
4186 return 0;
4187
4188 for (i = 0; i < AUTO_CFG_MAX_INS; i++) {
4189 int def_conf;
4190 if (spec->autocfg.inputs[i].pin != nid)
4191 continue;
4192
4193 if (spec->autocfg.inputs[i].type != AUTO_PIN_MIC)
4194 return 0;
4195 def_conf = snd_hda_codec_get_pincfg(codec, nid);
4196 if (snd_hda_get_input_pin_attr(def_conf) != INPUT_PIN_ATTR_INT)
4197 return 0;
4198
4199 /* Finally found the inverted internal mic! */
4200 snprintf(dest_label, 44, "Inverted %s", label);
4201 return 1;
4202 }
4203 return 0;
4204}
4205
6764bcef
TI
4206static int cx_auto_add_capture_volume(struct hda_codec *codec, hda_nid_t nid,
4207 const char *label, const char *pfx,
4208 int cidx)
4209{
4210 struct conexant_spec *spec = codec->spec;
4211 int i;
4212
4213 for (i = 0; i < spec->num_adc_nids; i++) {
18dcd304 4214 char rightch_label[44];
6764bcef 4215 hda_nid_t adc_nid = spec->adc_nids[i];
5c9887e0 4216 int idx = get_input_connection(codec, adc_nid, nid);
6764bcef
TI
4217 if (idx < 0)
4218 continue;
4f32456e 4219 if (codec->single_adc_amp)
6b452142 4220 idx = 0;
18dcd304
DH
4221
4222 if (cx_auto_get_rightch_label(codec, label, rightch_label, nid)) {
4223 /* Make two independent kcontrols for left and right */
4224 int err = cx_auto_add_volume_idx(codec, label, pfx,
4225 cidx, adc_nid, HDA_INPUT, idx, 1);
4226 if (err < 0)
4227 return err;
4228 return cx_auto_add_volume_idx(codec, rightch_label, pfx,
4229 cidx, adc_nid, HDA_INPUT, idx, 2);
4230 }
6764bcef 4231 return cx_auto_add_volume_idx(codec, label, pfx,
18dcd304 4232 cidx, adc_nid, HDA_INPUT, idx, 3);
6764bcef
TI
4233 }
4234 return 0;
4235}
4236
cf27f29a
TI
4237static int cx_auto_add_boost_volume(struct hda_codec *codec, int idx,
4238 const char *label, int cidx)
4239{
4240 struct conexant_spec *spec = codec->spec;
4241 hda_nid_t mux, nid;
f9759301 4242 int i, con;
cf27f29a 4243
47ad1f4e 4244 nid = spec->imux_info[idx].pin;
18dcd304
DH
4245 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
4246 char rightch_label[44];
4247 if (cx_auto_get_rightch_label(codec, label, rightch_label, nid)) {
4248 int err = cx_auto_add_volume_idx(codec, label, " Boost",
4249 cidx, nid, HDA_INPUT, 0, 1);
4250 if (err < 0)
4251 return err;
4252 return cx_auto_add_volume_idx(codec, rightch_label, " Boost",
4253 cidx, nid, HDA_INPUT, 0, 2);
4254 }
cf27f29a
TI
4255 return cx_auto_add_volume(codec, label, " Boost", cidx,
4256 nid, HDA_INPUT);
18dcd304 4257 }
47ad1f4e
TI
4258 con = __select_input_connection(codec, spec->imux_info[idx].adc, nid,
4259 &mux, false, 0);
cf27f29a
TI
4260 if (con < 0)
4261 return 0;
f9759301 4262 for (i = 0; i < idx; i++) {
47ad1f4e 4263 if (spec->imux_info[i].boost == mux)
f9759301
TI
4264 return 0; /* already present */
4265 }
4266
4267 if (get_wcaps(codec, mux) & AC_WCAP_OUT_AMP) {
47ad1f4e 4268 spec->imux_info[idx].boost = mux;
cf27f29a
TI
4269 return cx_auto_add_volume(codec, label, " Boost", 0,
4270 mux, HDA_OUTPUT);
f9759301 4271 }
cf27f29a
TI
4272 return 0;
4273}
4274
f2e5731d
TI
4275static int cx_auto_build_input_controls(struct hda_codec *codec)
4276{
4277 struct conexant_spec *spec = codec->spec;
cf27f29a
TI
4278 struct hda_input_mux *imux = &spec->private_imux;
4279 const char *prev_label;
4280 int input_conn[HDA_MAX_NUM_INPUTS];
6b452142 4281 int i, j, err, cidx;
cf27f29a
TI
4282 int multi_connection;
4283
6b452142
TI
4284 if (!imux->num_items)
4285 return 0;
4286
cf27f29a
TI
4287 multi_connection = 0;
4288 for (i = 0; i < imux->num_items; i++) {
47ad1f4e
TI
4289 cidx = get_input_connection(codec, spec->imux_info[i].adc,
4290 spec->imux_info[i].pin);
6b452142
TI
4291 if (cidx < 0)
4292 continue;
4293 input_conn[i] = spec->imux_info[i].adc;
4f32456e 4294 if (!codec->single_adc_amp)
6b452142 4295 input_conn[i] |= cidx << 8;
cf27f29a
TI
4296 if (i > 0 && input_conn[i] != input_conn[0])
4297 multi_connection = 1;
4298 }
f2e5731d 4299
f2e5731d
TI
4300 prev_label = NULL;
4301 cidx = 0;
cf27f29a 4302 for (i = 0; i < imux->num_items; i++) {
47ad1f4e 4303 hda_nid_t nid = spec->imux_info[i].pin;
f2e5731d 4304 const char *label;
983345e5 4305
cf27f29a 4306 label = hda_get_autocfg_input_label(codec, &spec->autocfg,
47ad1f4e 4307 spec->imux_info[i].index);
f2e5731d
TI
4308 if (label == prev_label)
4309 cidx++;
4310 else
4311 cidx = 0;
4312 prev_label = label;
983345e5 4313
cf27f29a
TI
4314 err = cx_auto_add_boost_volume(codec, i, label, cidx);
4315 if (err < 0)
4316 return err;
983345e5 4317
cf27f29a 4318 if (!multi_connection) {
f9759301
TI
4319 if (i > 0)
4320 continue;
6764bcef
TI
4321 err = cx_auto_add_capture_volume(codec, nid,
4322 "Capture", "", cidx);
4323 } else {
6b452142
TI
4324 bool dup_found = false;
4325 for (j = 0; j < i; j++) {
4326 if (input_conn[j] == input_conn[i]) {
4327 dup_found = true;
4328 break;
4329 }
4330 }
4331 if (dup_found)
4332 continue;
6764bcef
TI
4333 err = cx_auto_add_capture_volume(codec, nid,
4334 label, " Capture", cidx);
983345e5 4335 }
6764bcef
TI
4336 if (err < 0)
4337 return err;
4338 }
4339
4340 if (spec->private_imux.num_items > 1 && !spec->auto_mic) {
4341 err = snd_hda_add_new_ctls(codec, cx_auto_capture_mixers);
4342 if (err < 0)
4343 return err;
f2e5731d 4344 }
6764bcef 4345
f2e5731d
TI
4346 return 0;
4347}
4348
4349static int cx_auto_build_controls(struct hda_codec *codec)
4350{
31ef2257 4351 struct conexant_spec *spec = codec->spec;
f2e5731d
TI
4352 int err;
4353
4354 err = cx_auto_build_output_controls(codec);
4355 if (err < 0)
4356 return err;
4357 err = cx_auto_build_input_controls(codec);
4358 if (err < 0)
4359 return err;
31ef2257
TI
4360 err = conexant_build_controls(codec);
4361 if (err < 0)
4362 return err;
4363 err = snd_hda_jack_add_kctls(codec, &spec->autocfg);
4364 if (err < 0)
4365 return err;
f29735cb
TI
4366 if (spec->vmaster_mute.sw_kctl) {
4367 spec->vmaster_mute.hook = cx_auto_vmaster_hook;
4368 err = snd_hda_add_vmaster_hook(codec, &spec->vmaster_mute,
4369 spec->vmaster_mute_led);
d2f344b5
TI
4370 if (err < 0)
4371 return err;
527c73ba 4372 }
31ef2257 4373 return 0;
f2e5731d
TI
4374}
4375
22ce5f74
TI
4376static int cx_auto_search_adcs(struct hda_codec *codec)
4377{
4378 struct conexant_spec *spec = codec->spec;
4379 hda_nid_t nid, end_nid;
4380
4381 end_nid = codec->start_nid + codec->num_nodes;
4382 for (nid = codec->start_nid; nid < end_nid; nid++) {
4383 unsigned int caps = get_wcaps(codec, nid);
4384 if (get_wcaps_type(caps) != AC_WID_AUD_IN)
4385 continue;
4386 if (caps & AC_WCAP_DIGITAL)
4387 continue;
4388 if (snd_BUG_ON(spec->num_adc_nids >=
4389 ARRAY_SIZE(spec->private_adc_nids)))
4390 break;
4391 spec->private_adc_nids[spec->num_adc_nids++] = nid;
4392 }
4393 spec->adc_nids = spec->private_adc_nids;
4394 return 0;
4395}
4396
34cbe3a6 4397static const struct hda_codec_ops cx_auto_patch_ops = {
f2e5731d
TI
4398 .build_controls = cx_auto_build_controls,
4399 .build_pcms = conexant_build_pcms,
4400 .init = cx_auto_init,
4401 .free = conexant_free,
4402 .unsol_event = cx_auto_unsol_event,
4403#ifdef CONFIG_SND_HDA_POWER_SAVE
4404 .suspend = conexant_suspend,
4405#endif
4406 .reboot_notify = snd_hda_shutup_pins,
4407};
4408
e92d4b08
TI
4409/*
4410 * pin fix-up
4411 */
18dcd304
DH
4412enum {
4413 CXT_PINCFG_LENOVO_X200,
d3980110 4414 CXT_PINCFG_LENOVO_TP410,
18dcd304
DH
4415 CXT_FIXUP_STEREO_DMIC,
4416};
4417
23d30f28
TI
4418static void cxt_fixup_stereo_dmic(struct hda_codec *codec,
4419 const struct hda_fixup *fix, int action)
e92d4b08 4420{
18dcd304 4421 struct conexant_spec *spec = codec->spec;
23d30f28 4422 spec->fixup_stereo_dmic = 1;
e92d4b08
TI
4423}
4424
d70f3632 4425/* ThinkPad X200 & co with cxt5051 */
23d30f28 4426static const struct hda_pintbl cxt_pincfg_lenovo_x200[] = {
e92d4b08
TI
4427 { 0x16, 0x042140ff }, /* HP (seq# overridden) */
4428 { 0x17, 0x21a11000 }, /* dock-mic */
4429 { 0x19, 0x2121103f }, /* dock-HP */
3e93f5ef 4430 { 0x1c, 0x21440100 }, /* dock SPDIF out */
e92d4b08
TI
4431 {}
4432};
4433
d70f3632 4434/* ThinkPad 410/420/510/520, X201 & co with cxt5066 */
23d30f28 4435static const struct hda_pintbl cxt_pincfg_lenovo_tp410[] = {
d70f3632
TI
4436 { 0x19, 0x042110ff }, /* HP (seq# overridden) */
4437 { 0x1a, 0x21a190f0 }, /* dock-mic */
4438 { 0x1c, 0x212140ff }, /* dock-HP */
4439 {}
4440};
4441
23d30f28
TI
4442static const struct hda_fixup cxt_fixups[] = {
4443 [CXT_PINCFG_LENOVO_X200] = {
4444 .type = HDA_FIXUP_PINS,
4445 .v.pins = cxt_pincfg_lenovo_x200,
4446 },
4447 [CXT_PINCFG_LENOVO_TP410] = {
4448 .type = HDA_FIXUP_PINS,
4449 .v.pins = cxt_pincfg_lenovo_tp410,
4450 },
4451 [CXT_FIXUP_STEREO_DMIC] = {
4452 .type = HDA_FIXUP_FUNC,
4453 .v.func = cxt_fixup_stereo_dmic,
4454 },
e92d4b08
TI
4455};
4456
d70f3632 4457static const struct snd_pci_quirk cxt5051_fixups[] = {
e92d4b08
TI
4458 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT_PINCFG_LENOVO_X200),
4459 {}
4460};
4461
d70f3632
TI
4462static const struct snd_pci_quirk cxt5066_fixups[] = {
4463 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400", CXT_PINCFG_LENOVO_TP410),
4464 SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo T410", CXT_PINCFG_LENOVO_TP410),
4465 SND_PCI_QUIRK(0x17aa, 0x215f, "Lenovo T510", CXT_PINCFG_LENOVO_TP410),
4466 SND_PCI_QUIRK(0x17aa, 0x21ce, "Lenovo T420", CXT_PINCFG_LENOVO_TP410),
4467 SND_PCI_QUIRK(0x17aa, 0x21cf, "Lenovo T520", CXT_PINCFG_LENOVO_TP410),
18dcd304 4468 SND_PCI_QUIRK(0x17aa, 0x3975, "Lenovo U300s", CXT_FIXUP_STEREO_DMIC),
e92d4b08
TI
4469 {}
4470};
4471
3868137e
TI
4472/* add "fake" mute amp-caps to DACs on cx5051 so that mixer mute switches
4473 * can be created (bko#42825)
4474 */
4475static void add_cx5051_fake_mutes(struct hda_codec *codec)
4476{
4477 static hda_nid_t out_nids[] = {
4478 0x10, 0x11, 0
4479 };
4480 hda_nid_t *p;
4481
4482 for (p = out_nids; *p; p++)
4483 snd_hda_override_amp_caps(codec, *p, HDA_OUTPUT,
4484 AC_AMPCAP_MIN_MUTE |
4485 query_amp_caps(codec, *p, HDA_OUTPUT));
4486}
4487
f2e5731d
TI
4488static int patch_conexant_auto(struct hda_codec *codec)
4489{
4490 struct conexant_spec *spec;
4491 int err;
4492
1f8458a2
TI
4493 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4494 codec->chip_name);
4495
f2e5731d
TI
4496 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4497 if (!spec)
4498 return -ENOMEM;
4499 codec->spec = spec;
e92d4b08 4500
6b452142
TI
4501 switch (codec->vendor_id) {
4502 case 0x14f15045:
4f32456e 4503 codec->single_adc_amp = 1;
6b452142 4504 break;
3868137e
TI
4505 case 0x14f15051:
4506 add_cx5051_fake_mutes(codec);
51969d62 4507 codec->pin_amp_workaround = 1;
23d30f28 4508 snd_hda_pick_fixup(codec, NULL, cxt5051_fixups, cxt_fixups);
3868137e 4509 break;
51969d62
MK
4510 default:
4511 codec->pin_amp_workaround = 1;
23d30f28
TI
4512 snd_hda_pick_fixup(codec, NULL, cxt5066_fixups, cxt_fixups);
4513 break;
6b452142
TI
4514 }
4515
23d30f28
TI
4516 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4517
f29735cb
TI
4518 /* Show mute-led control only on HP laptops
4519 * This is a sort of white-list: on HP laptops, EAPD corresponds
4520 * only to the mute-LED without actualy amp function. Meanwhile,
4521 * others may use EAPD really as an amp switch, so it might be
4522 * not good to expose it blindly.
527c73ba 4523 */
f29735cb
TI
4524 switch (codec->subsystem_id >> 16) {
4525 case 0x103c:
4526 spec->vmaster_mute_led = 1;
4527 break;
4528 }
527c73ba 4529
22ce5f74
TI
4530 err = cx_auto_search_adcs(codec);
4531 if (err < 0)
4532 return err;
f2e5731d
TI
4533 err = cx_auto_parse_auto_config(codec);
4534 if (err < 0) {
4535 kfree(codec->spec);
4536 codec->spec = NULL;
4537 return err;
4538 }
6764bcef 4539 spec->capture_stream = &cx_auto_pcm_analog_capture;
f2e5731d
TI
4540 codec->patch_ops = cx_auto_patch_ops;
4541 if (spec->beep_amp)
4542 snd_hda_attach_beep_device(codec, spec->beep_amp);
4f2864a4
TI
4543
4544 /* Some laptops with Conexant chips show stalls in S3 resume,
4545 * which falls into the single-cmd mode.
4546 * Better to make reset, then.
4547 */
4548 if (!codec->bus->sync_write) {
4549 snd_printd("hda_codec: "
4550 "Enable sync_write for stable communication\n");
4551 codec->bus->sync_write = 1;
4552 codec->bus->allow_bus_reset = 1;
4553 }
4554
f2e5731d
TI
4555 return 0;
4556}
4557
461e2c78
TI
4558/*
4559 */
4560
34cbe3a6 4561static const struct hda_codec_preset snd_hda_preset_conexant[] = {
82f30040
TD
4562 { .id = 0x14f15045, .name = "CX20549 (Venice)",
4563 .patch = patch_cxt5045 },
4564 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
4565 .patch = patch_cxt5047 },
461e2c78
TI
4566 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
4567 .patch = patch_cxt5051 },
0fb67e98
DD
4568 { .id = 0x14f15066, .name = "CX20582 (Pebble)",
4569 .patch = patch_cxt5066 },
95a618bd
ER
4570 { .id = 0x14f15067, .name = "CX20583 (Pebble HSF)",
4571 .patch = patch_cxt5066 },
850eab9d
TI
4572 { .id = 0x14f15068, .name = "CX20584",
4573 .patch = patch_cxt5066 },
7b2bfdbc
JT
4574 { .id = 0x14f15069, .name = "CX20585",
4575 .patch = patch_cxt5066 },
f0ca89b0
DH
4576 { .id = 0x14f1506c, .name = "CX20588",
4577 .patch = patch_cxt5066 },
6da8b516
DH
4578 { .id = 0x14f1506e, .name = "CX20590",
4579 .patch = patch_cxt5066 },
f2e5731d
TI
4580 { .id = 0x14f15097, .name = "CX20631",
4581 .patch = patch_conexant_auto },
4582 { .id = 0x14f15098, .name = "CX20632",
4583 .patch = patch_conexant_auto },
4584 { .id = 0x14f150a1, .name = "CX20641",
4585 .patch = patch_conexant_auto },
4586 { .id = 0x14f150a2, .name = "CX20642",
4587 .patch = patch_conexant_auto },
4588 { .id = 0x14f150ab, .name = "CX20651",
4589 .patch = patch_conexant_auto },
4590 { .id = 0x14f150ac, .name = "CX20652",
4591 .patch = patch_conexant_auto },
4592 { .id = 0x14f150b8, .name = "CX20664",
4593 .patch = patch_conexant_auto },
4594 { .id = 0x14f150b9, .name = "CX20665",
4595 .patch = patch_conexant_auto },
2d825fd8
TI
4596 { .id = 0x14f1510f, .name = "CX20751/2",
4597 .patch = patch_conexant_auto },
4598 { .id = 0x14f15110, .name = "CX20751/2",
4599 .patch = patch_conexant_auto },
4600 { .id = 0x14f15111, .name = "CX20753/4",
4601 .patch = patch_conexant_auto },
c9b443d4
TD
4602 {} /* terminator */
4603};
1289e9e8
TI
4604
4605MODULE_ALIAS("snd-hda-codec-id:14f15045");
4606MODULE_ALIAS("snd-hda-codec-id:14f15047");
4607MODULE_ALIAS("snd-hda-codec-id:14f15051");
0fb67e98 4608MODULE_ALIAS("snd-hda-codec-id:14f15066");
95a618bd 4609MODULE_ALIAS("snd-hda-codec-id:14f15067");
850eab9d 4610MODULE_ALIAS("snd-hda-codec-id:14f15068");
7b2bfdbc 4611MODULE_ALIAS("snd-hda-codec-id:14f15069");
f0ca89b0 4612MODULE_ALIAS("snd-hda-codec-id:14f1506c");
6da8b516 4613MODULE_ALIAS("snd-hda-codec-id:14f1506e");
f2e5731d
TI
4614MODULE_ALIAS("snd-hda-codec-id:14f15097");
4615MODULE_ALIAS("snd-hda-codec-id:14f15098");
4616MODULE_ALIAS("snd-hda-codec-id:14f150a1");
4617MODULE_ALIAS("snd-hda-codec-id:14f150a2");
4618MODULE_ALIAS("snd-hda-codec-id:14f150ab");
4619MODULE_ALIAS("snd-hda-codec-id:14f150ac");
4620MODULE_ALIAS("snd-hda-codec-id:14f150b8");
4621MODULE_ALIAS("snd-hda-codec-id:14f150b9");
2d825fd8
TI
4622MODULE_ALIAS("snd-hda-codec-id:14f1510f");
4623MODULE_ALIAS("snd-hda-codec-id:14f15110");
4624MODULE_ALIAS("snd-hda-codec-id:14f15111");
1289e9e8
TI
4625
4626MODULE_LICENSE("GPL");
4627MODULE_DESCRIPTION("Conexant HD-audio codec");
4628
4629static struct hda_codec_preset_list conexant_list = {
4630 .preset = snd_hda_preset_conexant,
4631 .owner = THIS_MODULE,
4632};
4633
4634static int __init patch_conexant_init(void)
4635{
4636 return snd_hda_add_codec_preset(&conexant_list);
4637}
4638
4639static void __exit patch_conexant_exit(void)
4640{
4641 snd_hda_delete_codec_preset(&conexant_list);
4642}
4643
4644module_init(patch_conexant_init)
4645module_exit(patch_conexant_exit)
This page took 0.830014 seconds and 5 git commands to generate.