OSDN Git Service

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