]> git.karo-electronics.de Git - karo-tx-linux.git/blob - sound/pci/hda/patch_conexant.c
ALSA: hda: Use olpc-xo-1_5 quirk for Toshiba Satellite P500-PSPGSC-01800T
[karo-tx-linux.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
33 #define CXT_PIN_DIR_IN              0x00
34 #define CXT_PIN_DIR_OUT             0x01
35 #define CXT_PIN_DIR_INOUT           0x02
36 #define CXT_PIN_DIR_IN_NOMICBIAS    0x03
37 #define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
38
39 #define CONEXANT_HP_EVENT       0x37
40 #define CONEXANT_MIC_EVENT      0x38
41
42 /* Conexant 5051 specific */
43
44 #define CXT5051_SPDIF_OUT       0x1C
45 #define CXT5051_PORTB_EVENT     0x38
46 #define CXT5051_PORTC_EVENT     0x39
47
48
49 struct conexant_jack {
50
51         hda_nid_t nid;
52         int type;
53         struct snd_jack *jack;
54
55 };
56
57 struct conexant_spec {
58
59         struct snd_kcontrol_new *mixers[5];
60         int num_mixers;
61         hda_nid_t vmaster_nid;
62
63         const struct hda_verb *init_verbs[5];   /* initialization verbs
64                                                  * don't forget NULL
65                                                  * termination!
66                                                  */
67         unsigned int num_init_verbs;
68
69         /* playback */
70         struct hda_multi_out multiout;  /* playback set-up
71                                          * max_channels, dacs must be set
72                                          * dig_out_nid and hp_nid are optional
73                                          */
74         unsigned int cur_eapd;
75         unsigned int hp_present;
76         unsigned int no_auto_mic;
77         unsigned int need_dac_fix;
78
79         /* capture */
80         unsigned int num_adc_nids;
81         hda_nid_t *adc_nids;
82         hda_nid_t dig_in_nid;           /* digital-in NID; optional */
83
84         unsigned int cur_adc_idx;
85         hda_nid_t cur_adc;
86         unsigned int cur_adc_stream_tag;
87         unsigned int cur_adc_format;
88
89         /* capture source */
90         const struct hda_input_mux *input_mux;
91         hda_nid_t *capsrc_nids;
92         unsigned int cur_mux[3];
93
94         /* channel model */
95         const struct hda_channel_mode *channel_mode;
96         int num_channel_mode;
97
98         /* PCM information */
99         struct hda_pcm pcm_rec[2];      /* used in build_pcms() */
100
101         unsigned int spdif_route;
102
103         /* jack detection */
104         struct snd_array jacks;
105
106         /* dynamic controls, init_verbs and input_mux */
107         struct auto_pin_cfg autocfg;
108         struct hda_input_mux private_imux;
109         hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
110
111         unsigned int dell_automute;
112         unsigned int port_d_mode;
113         unsigned char ext_mic_bias;
114 };
115
116 static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
117                                       struct hda_codec *codec,
118                                       struct snd_pcm_substream *substream)
119 {
120         struct conexant_spec *spec = codec->spec;
121         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
122                                              hinfo);
123 }
124
125 static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
126                                          struct hda_codec *codec,
127                                          unsigned int stream_tag,
128                                          unsigned int format,
129                                          struct snd_pcm_substream *substream)
130 {
131         struct conexant_spec *spec = codec->spec;
132         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
133                                                 stream_tag,
134                                                 format, substream);
135 }
136
137 static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
138                                          struct hda_codec *codec,
139                                          struct snd_pcm_substream *substream)
140 {
141         struct conexant_spec *spec = codec->spec;
142         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
143 }
144
145 /*
146  * Digital out
147  */
148 static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
149                                           struct hda_codec *codec,
150                                           struct snd_pcm_substream *substream)
151 {
152         struct conexant_spec *spec = codec->spec;
153         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
154 }
155
156 static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
157                                          struct hda_codec *codec,
158                                          struct snd_pcm_substream *substream)
159 {
160         struct conexant_spec *spec = codec->spec;
161         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
162 }
163
164 static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
165                                          struct hda_codec *codec,
166                                          unsigned int stream_tag,
167                                          unsigned int format,
168                                          struct snd_pcm_substream *substream)
169 {
170         struct conexant_spec *spec = codec->spec;
171         return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
172                                              stream_tag,
173                                              format, substream);
174 }
175
176 /*
177  * Analog capture
178  */
179 static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
180                                       struct hda_codec *codec,
181                                       unsigned int stream_tag,
182                                       unsigned int format,
183                                       struct snd_pcm_substream *substream)
184 {
185         struct conexant_spec *spec = codec->spec;
186         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
187                                    stream_tag, 0, format);
188         return 0;
189 }
190
191 static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
192                                       struct hda_codec *codec,
193                                       struct snd_pcm_substream *substream)
194 {
195         struct conexant_spec *spec = codec->spec;
196         snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
197         return 0;
198 }
199
200
201
202 static struct hda_pcm_stream conexant_pcm_analog_playback = {
203         .substreams = 1,
204         .channels_min = 2,
205         .channels_max = 2,
206         .nid = 0, /* fill later */
207         .ops = {
208                 .open = conexant_playback_pcm_open,
209                 .prepare = conexant_playback_pcm_prepare,
210                 .cleanup = conexant_playback_pcm_cleanup
211         },
212 };
213
214 static struct hda_pcm_stream conexant_pcm_analog_capture = {
215         .substreams = 1,
216         .channels_min = 2,
217         .channels_max = 2,
218         .nid = 0, /* fill later */
219         .ops = {
220                 .prepare = conexant_capture_pcm_prepare,
221                 .cleanup = conexant_capture_pcm_cleanup
222         },
223 };
224
225
226 static struct hda_pcm_stream conexant_pcm_digital_playback = {
227         .substreams = 1,
228         .channels_min = 2,
229         .channels_max = 2,
230         .nid = 0, /* fill later */
231         .ops = {
232                 .open = conexant_dig_playback_pcm_open,
233                 .close = conexant_dig_playback_pcm_close,
234                 .prepare = conexant_dig_playback_pcm_prepare
235         },
236 };
237
238 static struct hda_pcm_stream conexant_pcm_digital_capture = {
239         .substreams = 1,
240         .channels_min = 2,
241         .channels_max = 2,
242         /* NID is set in alc_build_pcms */
243 };
244
245 static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
246                                       struct hda_codec *codec,
247                                       unsigned int stream_tag,
248                                       unsigned int format,
249                                       struct snd_pcm_substream *substream)
250 {
251         struct conexant_spec *spec = codec->spec;
252         spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
253         spec->cur_adc_stream_tag = stream_tag;
254         spec->cur_adc_format = format;
255         snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
256         return 0;
257 }
258
259 static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
260                                       struct hda_codec *codec,
261                                       struct snd_pcm_substream *substream)
262 {
263         struct conexant_spec *spec = codec->spec;
264         snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
265         spec->cur_adc = 0;
266         return 0;
267 }
268
269 static struct hda_pcm_stream cx5051_pcm_analog_capture = {
270         .substreams = 1,
271         .channels_min = 2,
272         .channels_max = 2,
273         .nid = 0, /* fill later */
274         .ops = {
275                 .prepare = cx5051_capture_pcm_prepare,
276                 .cleanup = cx5051_capture_pcm_cleanup
277         },
278 };
279
280 static int conexant_build_pcms(struct hda_codec *codec)
281 {
282         struct conexant_spec *spec = codec->spec;
283         struct hda_pcm *info = spec->pcm_rec;
284
285         codec->num_pcms = 1;
286         codec->pcm_info = info;
287
288         info->name = "CONEXANT Analog";
289         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
290         info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
291                 spec->multiout.max_channels;
292         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
293                 spec->multiout.dac_nids[0];
294         if (codec->vendor_id == 0x14f15051)
295                 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
296                         cx5051_pcm_analog_capture;
297         else
298                 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
299                         conexant_pcm_analog_capture;
300         info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
301         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
302
303         if (spec->multiout.dig_out_nid) {
304                 info++;
305                 codec->num_pcms++;
306                 info->name = "Conexant Digital";
307                 info->pcm_type = HDA_PCM_TYPE_SPDIF;
308                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
309                         conexant_pcm_digital_playback;
310                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
311                         spec->multiout.dig_out_nid;
312                 if (spec->dig_in_nid) {
313                         info->stream[SNDRV_PCM_STREAM_CAPTURE] =
314                                 conexant_pcm_digital_capture;
315                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
316                                 spec->dig_in_nid;
317                 }
318         }
319
320         return 0;
321 }
322
323 static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
324                                   struct snd_ctl_elem_info *uinfo)
325 {
326         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
327         struct conexant_spec *spec = codec->spec;
328
329         return snd_hda_input_mux_info(spec->input_mux, uinfo);
330 }
331
332 static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
333                                  struct snd_ctl_elem_value *ucontrol)
334 {
335         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
336         struct conexant_spec *spec = codec->spec;
337         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
338
339         ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
340         return 0;
341 }
342
343 static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
344                                  struct snd_ctl_elem_value *ucontrol)
345 {
346         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
347         struct conexant_spec *spec = codec->spec;
348         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
349
350         return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
351                                      spec->capsrc_nids[adc_idx],
352                                      &spec->cur_mux[adc_idx]);
353 }
354
355 #ifdef CONFIG_SND_HDA_INPUT_JACK
356 static void conexant_free_jack_priv(struct snd_jack *jack)
357 {
358         struct conexant_jack *jacks = jack->private_data;
359         jacks->nid = 0;
360         jacks->jack = NULL;
361 }
362
363 static int conexant_add_jack(struct hda_codec *codec,
364                 hda_nid_t nid, int type)
365 {
366         struct conexant_spec *spec;
367         struct conexant_jack *jack;
368         const char *name;
369         int err;
370
371         spec = codec->spec;
372         snd_array_init(&spec->jacks, sizeof(*jack), 32);
373         jack = snd_array_new(&spec->jacks);
374         name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ;
375
376         if (!jack)
377                 return -ENOMEM;
378
379         jack->nid = nid;
380         jack->type = type;
381
382         err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
383         if (err < 0)
384                 return err;
385         jack->jack->private_data = jack;
386         jack->jack->private_free = conexant_free_jack_priv;
387         return 0;
388 }
389
390 static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
391 {
392         struct conexant_spec *spec = codec->spec;
393         struct conexant_jack *jacks = spec->jacks.list;
394
395         if (jacks) {
396                 int i;
397                 for (i = 0; i < spec->jacks.used; i++) {
398                         if (jacks->nid == nid) {
399                                 unsigned int present;
400                                 present = snd_hda_codec_read(codec, nid, 0,
401                                                 AC_VERB_GET_PIN_SENSE, 0) &
402                                         AC_PINSENSE_PRESENCE;
403
404                                 present = (present) ? jacks->type : 0 ;
405
406                                 snd_jack_report(jacks->jack,
407                                                 present);
408                         }
409                         jacks++;
410                 }
411         }
412 }
413
414 static int conexant_init_jacks(struct hda_codec *codec)
415 {
416         struct conexant_spec *spec = codec->spec;
417         int i;
418
419         for (i = 0; i < spec->num_init_verbs; i++) {
420                 const struct hda_verb *hv;
421
422                 hv = spec->init_verbs[i];
423                 while (hv->nid) {
424                         int err = 0;
425                         switch (hv->param ^ AC_USRSP_EN) {
426                         case CONEXANT_HP_EVENT:
427                                 err = conexant_add_jack(codec, hv->nid,
428                                                 SND_JACK_HEADPHONE);
429                                 conexant_report_jack(codec, hv->nid);
430                                 break;
431                         case CXT5051_PORTC_EVENT:
432                         case CONEXANT_MIC_EVENT:
433                                 err = conexant_add_jack(codec, hv->nid,
434                                                 SND_JACK_MICROPHONE);
435                                 conexant_report_jack(codec, hv->nid);
436                                 break;
437                         }
438                         if (err < 0)
439                                 return err;
440                         ++hv;
441                 }
442         }
443         return 0;
444
445 }
446 #else
447 static inline void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
448 {
449 }
450
451 static inline int conexant_init_jacks(struct hda_codec *codec)
452 {
453         return 0;
454 }
455 #endif
456
457 static int conexant_init(struct hda_codec *codec)
458 {
459         struct conexant_spec *spec = codec->spec;
460         int i;
461
462         for (i = 0; i < spec->num_init_verbs; i++)
463                 snd_hda_sequence_write(codec, spec->init_verbs[i]);
464         return 0;
465 }
466
467 static void conexant_free(struct hda_codec *codec)
468 {
469 #ifdef CONFIG_SND_HDA_INPUT_JACK
470         struct conexant_spec *spec = codec->spec;
471         if (spec->jacks.list) {
472                 struct conexant_jack *jacks = spec->jacks.list;
473                 int i;
474                 for (i = 0; i < spec->jacks.used; i++, jacks++) {
475                         if (jacks->jack)
476                                 snd_device_free(codec->bus->card, jacks->jack);
477                 }
478                 snd_array_free(&spec->jacks);
479         }
480 #endif
481         kfree(codec->spec);
482 }
483
484 static struct snd_kcontrol_new cxt_capture_mixers[] = {
485         {
486                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
487                 .name = "Capture Source",
488                 .info = conexant_mux_enum_info,
489                 .get = conexant_mux_enum_get,
490                 .put = conexant_mux_enum_put
491         },
492         {}
493 };
494
495 static const char *slave_vols[] = {
496         "Headphone Playback Volume",
497         "Speaker Playback Volume",
498         NULL
499 };
500
501 static const char *slave_sws[] = {
502         "Headphone Playback Switch",
503         "Speaker Playback Switch",
504         NULL
505 };
506
507 static int conexant_build_controls(struct hda_codec *codec)
508 {
509         struct conexant_spec *spec = codec->spec;
510         unsigned int i;
511         int err;
512
513         for (i = 0; i < spec->num_mixers; i++) {
514                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
515                 if (err < 0)
516                         return err;
517         }
518         if (spec->multiout.dig_out_nid) {
519                 err = snd_hda_create_spdif_out_ctls(codec,
520                                                     spec->multiout.dig_out_nid);
521                 if (err < 0)
522                         return err;
523                 err = snd_hda_create_spdif_share_sw(codec,
524                                                     &spec->multiout);
525                 if (err < 0)
526                         return err;
527                 spec->multiout.share_spdif = 1;
528         } 
529         if (spec->dig_in_nid) {
530                 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
531                 if (err < 0)
532                         return err;
533         }
534
535         /* if we have no master control, let's create it */
536         if (spec->vmaster_nid &&
537             !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
538                 unsigned int vmaster_tlv[4];
539                 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
540                                         HDA_OUTPUT, vmaster_tlv);
541                 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
542                                           vmaster_tlv, slave_vols);
543                 if (err < 0)
544                         return err;
545         }
546         if (spec->vmaster_nid &&
547             !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
548                 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
549                                           NULL, slave_sws);
550                 if (err < 0)
551                         return err;
552         }
553
554         if (spec->input_mux) {
555                 err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
556                 if (err < 0)
557                         return err;
558         }
559
560         return 0;
561 }
562
563 static struct hda_codec_ops conexant_patch_ops = {
564         .build_controls = conexant_build_controls,
565         .build_pcms = conexant_build_pcms,
566         .init = conexant_init,
567         .free = conexant_free,
568 };
569
570 /*
571  * EAPD control
572  * the private value = nid | (invert << 8)
573  */
574
575 #define cxt_eapd_info           snd_ctl_boolean_mono_info
576
577 static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
578                              struct snd_ctl_elem_value *ucontrol)
579 {
580         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
581         struct conexant_spec *spec = codec->spec;
582         int invert = (kcontrol->private_value >> 8) & 1;
583         if (invert)
584                 ucontrol->value.integer.value[0] = !spec->cur_eapd;
585         else
586                 ucontrol->value.integer.value[0] = spec->cur_eapd;
587         return 0;
588
589 }
590
591 static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
592                              struct snd_ctl_elem_value *ucontrol)
593 {
594         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
595         struct conexant_spec *spec = codec->spec;
596         int invert = (kcontrol->private_value >> 8) & 1;
597         hda_nid_t nid = kcontrol->private_value & 0xff;
598         unsigned int eapd;
599
600         eapd = !!ucontrol->value.integer.value[0];
601         if (invert)
602                 eapd = !eapd;
603         if (eapd == spec->cur_eapd)
604                 return 0;
605         
606         spec->cur_eapd = eapd;
607         snd_hda_codec_write_cache(codec, nid,
608                                   0, AC_VERB_SET_EAPD_BTLENABLE,
609                                   eapd ? 0x02 : 0x00);
610         return 1;
611 }
612
613 /* controls for test mode */
614 #ifdef CONFIG_SND_DEBUG
615
616 #define CXT_EAPD_SWITCH(xname, nid, mask) \
617         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
618           .info = cxt_eapd_info, \
619           .get = cxt_eapd_get, \
620           .put = cxt_eapd_put, \
621           .private_value = nid | (mask<<16) }
622
623
624
625 static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
626                                  struct snd_ctl_elem_info *uinfo)
627 {
628         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
629         struct conexant_spec *spec = codec->spec;
630         return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
631                                     spec->num_channel_mode);
632 }
633
634 static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
635                                 struct snd_ctl_elem_value *ucontrol)
636 {
637         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
638         struct conexant_spec *spec = codec->spec;
639         return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
640                                    spec->num_channel_mode,
641                                    spec->multiout.max_channels);
642 }
643
644 static int conexant_ch_mode_put(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         int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
650                                       spec->num_channel_mode,
651                                       &spec->multiout.max_channels);
652         if (err >= 0 && spec->need_dac_fix)
653                 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
654         return err;
655 }
656
657 #define CXT_PIN_MODE(xname, nid, dir) \
658         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
659           .info = conexant_ch_mode_info, \
660           .get = conexant_ch_mode_get, \
661           .put = conexant_ch_mode_put, \
662           .private_value = nid | (dir<<16) }
663
664 #endif /* CONFIG_SND_DEBUG */
665
666 /* Conexant 5045 specific */
667
668 static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
669 static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
670 static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
671 #define CXT5045_SPDIF_OUT       0x18
672
673 static struct hda_channel_mode cxt5045_modes[1] = {
674         { 2, NULL },
675 };
676
677 static struct hda_input_mux cxt5045_capture_source = {
678         .num_items = 2,
679         .items = {
680                 { "IntMic", 0x1 },
681                 { "ExtMic", 0x2 },
682         }
683 };
684
685 static struct hda_input_mux cxt5045_capture_source_benq = {
686         .num_items = 5,
687         .items = {
688                 { "IntMic", 0x1 },
689                 { "ExtMic", 0x2 },
690                 { "LineIn", 0x3 },
691                 { "CD",     0x4 },
692                 { "Mixer",  0x0 },
693         }
694 };
695
696 static struct hda_input_mux cxt5045_capture_source_hp530 = {
697         .num_items = 2,
698         .items = {
699                 { "ExtMic", 0x1 },
700                 { "IntMic", 0x2 },
701         }
702 };
703
704 /* turn on/off EAPD (+ mute HP) as a master switch */
705 static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
706                                     struct snd_ctl_elem_value *ucontrol)
707 {
708         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
709         struct conexant_spec *spec = codec->spec;
710         unsigned int bits;
711
712         if (!cxt_eapd_put(kcontrol, ucontrol))
713                 return 0;
714
715         /* toggle internal speakers mute depending of presence of
716          * the headphone jack
717          */
718         bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
719         snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
720                                  HDA_AMP_MUTE, bits);
721
722         bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
723         snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
724                                  HDA_AMP_MUTE, bits);
725         return 1;
726 }
727
728 /* bind volumes of both NID 0x10 and 0x11 */
729 static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
730         .ops = &snd_hda_bind_vol,
731         .values = {
732                 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
733                 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
734                 0
735         },
736 };
737
738 /* toggle input of built-in and mic jack appropriately */
739 static void cxt5045_hp_automic(struct hda_codec *codec)
740 {
741         static struct hda_verb mic_jack_on[] = {
742                 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
743                 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
744                 {}
745         };
746         static struct hda_verb mic_jack_off[] = {
747                 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
748                 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
749                 {}
750         };
751         unsigned int present;
752
753         present = snd_hda_codec_read(codec, 0x12, 0,
754                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
755         if (present)
756                 snd_hda_sequence_write(codec, mic_jack_on);
757         else
758                 snd_hda_sequence_write(codec, mic_jack_off);
759 }
760
761
762 /* mute internal speaker if HP is plugged */
763 static void cxt5045_hp_automute(struct hda_codec *codec)
764 {
765         struct conexant_spec *spec = codec->spec;
766         unsigned int bits;
767
768         spec->hp_present = snd_hda_codec_read(codec, 0x11, 0,
769                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
770
771         bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; 
772         snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
773                                  HDA_AMP_MUTE, bits);
774 }
775
776 /* unsolicited event for HP jack sensing */
777 static void cxt5045_hp_unsol_event(struct hda_codec *codec,
778                                    unsigned int res)
779 {
780         res >>= 26;
781         switch (res) {
782         case CONEXANT_HP_EVENT:
783                 cxt5045_hp_automute(codec);
784                 break;
785         case CONEXANT_MIC_EVENT:
786                 cxt5045_hp_automic(codec);
787                 break;
788
789         }
790 }
791
792 static struct snd_kcontrol_new cxt5045_mixers[] = {
793         HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
794         HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
795         HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
796         HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
797         HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
798         HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
799         HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
800         HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
801         HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
802         HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
803         HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
804         {
805                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
806                 .name = "Master Playback Switch",
807                 .info = cxt_eapd_info,
808                 .get = cxt_eapd_get,
809                 .put = cxt5045_hp_master_sw_put,
810                 .private_value = 0x10,
811         },
812
813         {}
814 };
815
816 static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
817         HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT),
818         HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT),
819         HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT),
820         HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT),
821
822         HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
823         HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
824         HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
825         HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
826
827         HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT),
828         HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT),
829
830         {}
831 };
832
833 static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
834         HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
835         HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
836         HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
837         HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
838         HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
839         HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
840         HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
841         HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
842         HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
843         HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
844         HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
845         {
846                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
847                 .name = "Master Playback Switch",
848                 .info = cxt_eapd_info,
849                 .get = cxt_eapd_get,
850                 .put = cxt5045_hp_master_sw_put,
851                 .private_value = 0x10,
852         },
853
854         {}
855 };
856
857 static struct hda_verb cxt5045_init_verbs[] = {
858         /* Line in, Mic */
859         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
860         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
861         /* HP, Amp  */
862         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
863         {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
864         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
865         {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
866         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
867         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
868         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
869         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
870         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
871         /* Record selector: Int mic */
872         {0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
873         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
874          AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
875         /* SPDIF route: PCM */
876         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
877         { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
878         /* EAPD */
879         {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */ 
880         { } /* end */
881 };
882
883 static struct hda_verb cxt5045_benq_init_verbs[] = {
884         /* Int Mic, Mic */
885         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
886         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
887         /* Line In,HP, Amp  */
888         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
889         {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
890         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
891         {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
892         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
893         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
894         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
895         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
896         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
897         /* Record selector: Int mic */
898         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
899         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
900          AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
901         /* SPDIF route: PCM */
902         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
903         {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
904         /* EAPD */
905         {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
906         { } /* end */
907 };
908
909 static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
910         /* pin sensing on HP jack */
911         {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
912         { } /* end */
913 };
914
915 static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
916         /* pin sensing on HP jack */
917         {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
918         { } /* end */
919 };
920
921 #ifdef CONFIG_SND_DEBUG
922 /* Test configuration for debugging, modelled after the ALC260 test
923  * configuration.
924  */
925 static struct hda_input_mux cxt5045_test_capture_source = {
926         .num_items = 5,
927         .items = {
928                 { "MIXER", 0x0 },
929                 { "MIC1 pin", 0x1 },
930                 { "LINE1 pin", 0x2 },
931                 { "HP-OUT pin", 0x3 },
932                 { "CD pin", 0x4 },
933         },
934 };
935
936 static struct snd_kcontrol_new cxt5045_test_mixer[] = {
937
938         /* Output controls */
939         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
940         HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
941         HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
942         HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
943         HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
944         HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
945         
946         /* Modes for retasking pin widgets */
947         CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
948         CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
949
950         /* EAPD Switch Control */
951         CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
952
953         /* Loopback mixer controls */
954
955         HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
956         HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
957         HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
958         HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
959         HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
960         HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
961         HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
962         HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
963         HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
964         HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
965         {
966                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
967                 .name = "Input Source",
968                 .info = conexant_mux_enum_info,
969                 .get = conexant_mux_enum_get,
970                 .put = conexant_mux_enum_put,
971         },
972         /* Audio input controls */
973         HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
974         HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
975         HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
976         HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
977         HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
978         HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
979         HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
980         HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
981         HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
982         HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
983         { } /* end */
984 };
985
986 static struct hda_verb cxt5045_test_init_verbs[] = {
987         /* Set connections */
988         { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
989         { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
990         { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
991         /* Enable retasking pins as output, initially without power amp */
992         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
993         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
994
995         /* Disable digital (SPDIF) pins initially, but users can enable
996          * them via a mixer switch.  In the case of SPDIF-out, this initverb
997          * payload also sets the generation to 0, output to be in "consumer"
998          * PCM format, copyright asserted, no pre-emphasis and no validity
999          * control.
1000          */
1001         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1002         {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1003
1004         /* Start with output sum widgets muted and their output gains at min */
1005         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1006         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1007
1008         /* Unmute retasking pin widget output buffers since the default
1009          * state appears to be output.  As the pin mode is changed by the
1010          * user the pin mode control will take care of enabling the pin's
1011          * input/output buffers as needed.
1012          */
1013         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1014         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1015
1016         /* Mute capture amp left and right */
1017         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1018
1019         /* Set ADC connection select to match default mixer setting (mic1
1020          * pin)
1021          */
1022         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1023         {0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
1024
1025         /* Mute all inputs to mixer widget (even unconnected ones) */
1026         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
1027         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1028         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1029         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1030         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1031
1032         { }
1033 };
1034 #endif
1035
1036
1037 /* initialize jack-sensing, too */
1038 static int cxt5045_init(struct hda_codec *codec)
1039 {
1040         conexant_init(codec);
1041         cxt5045_hp_automute(codec);
1042         return 0;
1043 }
1044
1045
1046 enum {
1047         CXT5045_LAPTOP_HPSENSE,
1048         CXT5045_LAPTOP_MICSENSE,
1049         CXT5045_LAPTOP_HPMICSENSE,
1050         CXT5045_BENQ,
1051         CXT5045_LAPTOP_HP530,
1052 #ifdef CONFIG_SND_DEBUG
1053         CXT5045_TEST,
1054 #endif
1055         CXT5045_MODELS
1056 };
1057
1058 static const char *cxt5045_models[CXT5045_MODELS] = {
1059         [CXT5045_LAPTOP_HPSENSE]        = "laptop-hpsense",
1060         [CXT5045_LAPTOP_MICSENSE]       = "laptop-micsense",
1061         [CXT5045_LAPTOP_HPMICSENSE]     = "laptop-hpmicsense",
1062         [CXT5045_BENQ]                  = "benq",
1063         [CXT5045_LAPTOP_HP530]          = "laptop-hp530",
1064 #ifdef CONFIG_SND_DEBUG
1065         [CXT5045_TEST]          = "test",
1066 #endif
1067 };
1068
1069 static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
1070         SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
1071         SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1072                            CXT5045_LAPTOP_HPSENSE),
1073         SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
1074         SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
1075         SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
1076         SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
1077         SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
1078                       CXT5045_LAPTOP_HPMICSENSE),
1079         SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1080         SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1081         SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1082         SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1083                            CXT5045_LAPTOP_HPMICSENSE),
1084         SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
1085         {}
1086 };
1087
1088 static int patch_cxt5045(struct hda_codec *codec)
1089 {
1090         struct conexant_spec *spec;
1091         int board_config;
1092
1093         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1094         if (!spec)
1095                 return -ENOMEM;
1096         codec->spec = spec;
1097         codec->pin_amp_workaround = 1;
1098
1099         spec->multiout.max_channels = 2;
1100         spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1101         spec->multiout.dac_nids = cxt5045_dac_nids;
1102         spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1103         spec->num_adc_nids = 1;
1104         spec->adc_nids = cxt5045_adc_nids;
1105         spec->capsrc_nids = cxt5045_capsrc_nids;
1106         spec->input_mux = &cxt5045_capture_source;
1107         spec->num_mixers = 1;
1108         spec->mixers[0] = cxt5045_mixers;
1109         spec->num_init_verbs = 1;
1110         spec->init_verbs[0] = cxt5045_init_verbs;
1111         spec->spdif_route = 0;
1112         spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes),
1113         spec->channel_mode = cxt5045_modes,
1114
1115
1116         codec->patch_ops = conexant_patch_ops;
1117
1118         board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1119                                                   cxt5045_models,
1120                                                   cxt5045_cfg_tbl);
1121         switch (board_config) {
1122         case CXT5045_LAPTOP_HPSENSE:
1123                 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1124                 spec->input_mux = &cxt5045_capture_source;
1125                 spec->num_init_verbs = 2;
1126                 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1127                 spec->mixers[0] = cxt5045_mixers;
1128                 codec->patch_ops.init = cxt5045_init;
1129                 break;
1130         case CXT5045_LAPTOP_MICSENSE:
1131                 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1132                 spec->input_mux = &cxt5045_capture_source;
1133                 spec->num_init_verbs = 2;
1134                 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
1135                 spec->mixers[0] = cxt5045_mixers;
1136                 codec->patch_ops.init = cxt5045_init;
1137                 break;
1138         default:
1139         case CXT5045_LAPTOP_HPMICSENSE:
1140                 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1141                 spec->input_mux = &cxt5045_capture_source;
1142                 spec->num_init_verbs = 3;
1143                 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1144                 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
1145                 spec->mixers[0] = cxt5045_mixers;
1146                 codec->patch_ops.init = cxt5045_init;
1147                 break;
1148         case CXT5045_BENQ:
1149                 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1150                 spec->input_mux = &cxt5045_capture_source_benq;
1151                 spec->num_init_verbs = 1;
1152                 spec->init_verbs[0] = cxt5045_benq_init_verbs;
1153                 spec->mixers[0] = cxt5045_mixers;
1154                 spec->mixers[1] = cxt5045_benq_mixers;
1155                 spec->num_mixers = 2;
1156                 codec->patch_ops.init = cxt5045_init;
1157                 break;
1158         case CXT5045_LAPTOP_HP530:
1159                 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1160                 spec->input_mux = &cxt5045_capture_source_hp530;
1161                 spec->num_init_verbs = 2;
1162                 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1163                 spec->mixers[0] = cxt5045_mixers_hp530;
1164                 codec->patch_ops.init = cxt5045_init;
1165                 break;
1166 #ifdef CONFIG_SND_DEBUG
1167         case CXT5045_TEST:
1168                 spec->input_mux = &cxt5045_test_capture_source;
1169                 spec->mixers[0] = cxt5045_test_mixer;
1170                 spec->init_verbs[0] = cxt5045_test_init_verbs;
1171                 break;
1172                 
1173 #endif  
1174         }
1175
1176         switch (codec->subsystem_id >> 16) {
1177         case 0x103c:
1178         case 0x1631:
1179         case 0x1734:
1180                 /* HP, Packard Bell, & Fujitsu-Siemens laptops have really bad
1181                  * sound over 0dB on NID 0x17. Fix max PCM level to 0 dB
1182                  * (originally it has 0x2b steps with 0dB offset 0x14)
1183                  */
1184                 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1185                                           (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1186                                           (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1187                                           (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1188                                           (1 << AC_AMPCAP_MUTE_SHIFT));
1189                 break;
1190         }
1191
1192         return 0;
1193 }
1194
1195
1196 /* Conexant 5047 specific */
1197 #define CXT5047_SPDIF_OUT       0x11
1198
1199 static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
1200 static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1201 static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
1202
1203 static struct hda_channel_mode cxt5047_modes[1] = {
1204         { 2, NULL },
1205 };
1206
1207 static struct hda_input_mux cxt5047_toshiba_capture_source = {
1208         .num_items = 2,
1209         .items = {
1210                 { "ExtMic", 0x2 },
1211                 { "Line-In", 0x1 },
1212         }
1213 };
1214
1215 /* turn on/off EAPD (+ mute HP) as a master switch */
1216 static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1217                                     struct snd_ctl_elem_value *ucontrol)
1218 {
1219         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1220         struct conexant_spec *spec = codec->spec;
1221         unsigned int bits;
1222
1223         if (!cxt_eapd_put(kcontrol, ucontrol))
1224                 return 0;
1225
1226         /* toggle internal speakers mute depending of presence of
1227          * the headphone jack
1228          */
1229         bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
1230         /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1231          * pin widgets unlike other codecs.  In this case, we need to
1232          * set index 0x01 for the volume from the mixer amp 0x19.
1233          */
1234         snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
1235                                  HDA_AMP_MUTE, bits);
1236         bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1237         snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1238                                  HDA_AMP_MUTE, bits);
1239         return 1;
1240 }
1241
1242 /* mute internal speaker if HP is plugged */
1243 static void cxt5047_hp_automute(struct hda_codec *codec)
1244 {
1245         struct conexant_spec *spec = codec->spec;
1246         unsigned int bits;
1247
1248         spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
1249                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1250
1251         bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
1252         /* See the note in cxt5047_hp_master_sw_put */
1253         snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
1254                                  HDA_AMP_MUTE, bits);
1255 }
1256
1257 /* toggle input of built-in and mic jack appropriately */
1258 static void cxt5047_hp_automic(struct hda_codec *codec)
1259 {
1260         static struct hda_verb mic_jack_on[] = {
1261                 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1262                 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1263                 {}
1264         };
1265         static struct hda_verb mic_jack_off[] = {
1266                 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1267                 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1268                 {}
1269         };
1270         unsigned int present;
1271
1272         present = snd_hda_codec_read(codec, 0x15, 0,
1273                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1274         if (present)
1275                 snd_hda_sequence_write(codec, mic_jack_on);
1276         else
1277                 snd_hda_sequence_write(codec, mic_jack_off);
1278 }
1279
1280 /* unsolicited event for HP jack sensing */
1281 static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1282                                   unsigned int res)
1283 {
1284         switch (res >> 26) {
1285         case CONEXANT_HP_EVENT:
1286                 cxt5047_hp_automute(codec);
1287                 break;
1288         case CONEXANT_MIC_EVENT:
1289                 cxt5047_hp_automic(codec);
1290                 break;
1291         }
1292 }
1293
1294 static struct snd_kcontrol_new cxt5047_base_mixers[] = {
1295         HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1296         HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
1297         HDA_CODEC_VOLUME("Mic Boost", 0x1a, 0x0, HDA_OUTPUT),
1298         HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1299         HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1300         HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1301         HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1302         {
1303                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1304                 .name = "Master Playback Switch",
1305                 .info = cxt_eapd_info,
1306                 .get = cxt_eapd_get,
1307                 .put = cxt5047_hp_master_sw_put,
1308                 .private_value = 0x13,
1309         },
1310
1311         {}
1312 };
1313
1314 static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
1315         /* See the note in cxt5047_hp_master_sw_put */
1316         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
1317         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1318         {}
1319 };
1320
1321 static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
1322         HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1323         { } /* end */
1324 };
1325
1326 static struct hda_verb cxt5047_init_verbs[] = {
1327         /* Line in, Mic, Built-in Mic */
1328         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1329         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1330         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1331         /* HP, Speaker  */
1332         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1333         {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
1334         {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
1335         /* Record selector: Mic */
1336         {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1337         {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1338          AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1339         {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
1340         {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1341          AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1342         {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1343          AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
1344         /* SPDIF route: PCM */
1345         { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
1346         /* Enable unsolicited events */
1347         {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1348         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
1349         { } /* end */
1350 };
1351
1352 /* configuration for Toshiba Laptops */
1353 static struct hda_verb cxt5047_toshiba_init_verbs[] = {
1354         {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
1355         {}
1356 };
1357
1358 /* Test configuration for debugging, modelled after the ALC260 test
1359  * configuration.
1360  */
1361 #ifdef CONFIG_SND_DEBUG
1362 static struct hda_input_mux cxt5047_test_capture_source = {
1363         .num_items = 4,
1364         .items = {
1365                 { "LINE1 pin", 0x0 },
1366                 { "MIC1 pin", 0x1 },
1367                 { "MIC2 pin", 0x2 },
1368                 { "CD pin", 0x3 },
1369         },
1370 };
1371
1372 static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1373
1374         /* Output only controls */
1375         HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1376         HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1377         HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1378         HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
1379         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1380         HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1381         HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1382         HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1383         HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1384         HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1385         HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1386         HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
1387
1388         /* Modes for retasking pin widgets */
1389         CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1390         CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1391
1392         /* EAPD Switch Control */
1393         CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1394
1395         /* Loopback mixer controls */
1396         HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1397         HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1398         HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1399         HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1400         HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1401         HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1402         HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1403         HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
1404
1405         HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1406         HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1407         HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1408         HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1409         HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1410         HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1411         HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1412         HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
1413         {
1414                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1415                 .name = "Input Source",
1416                 .info = conexant_mux_enum_info,
1417                 .get = conexant_mux_enum_get,
1418                 .put = conexant_mux_enum_put,
1419         },
1420         HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
1421         HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
1422         HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
1423         HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
1424         HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
1425         HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
1426         HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
1427         HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
1428         HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
1429         HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
1430
1431         { } /* end */
1432 };
1433
1434 static struct hda_verb cxt5047_test_init_verbs[] = {
1435         /* Enable retasking pins as output, initially without power amp */
1436         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1437         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1438         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1439
1440         /* Disable digital (SPDIF) pins initially, but users can enable
1441          * them via a mixer switch.  In the case of SPDIF-out, this initverb
1442          * payload also sets the generation to 0, output to be in "consumer"
1443          * PCM format, copyright asserted, no pre-emphasis and no validity
1444          * control.
1445          */
1446         {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1447
1448         /* Ensure mic1, mic2, line1 pin widgets take input from the 
1449          * OUT1 sum bus when acting as an output.
1450          */
1451         {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1452         {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1453
1454         /* Start with output sum widgets muted and their output gains at min */
1455         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1456         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1457
1458         /* Unmute retasking pin widget output buffers since the default
1459          * state appears to be output.  As the pin mode is changed by the
1460          * user the pin mode control will take care of enabling the pin's
1461          * input/output buffers as needed.
1462          */
1463         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1464         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1465         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1466
1467         /* Mute capture amp left and right */
1468         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1469
1470         /* Set ADC connection select to match default mixer setting (mic1
1471          * pin)
1472          */
1473         {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1474
1475         /* Mute all inputs to mixer widget (even unconnected ones) */
1476         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1477         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1478         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1479         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1480         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1481         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1482         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1483         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1484
1485         { }
1486 };
1487 #endif
1488
1489
1490 /* initialize jack-sensing, too */
1491 static int cxt5047_hp_init(struct hda_codec *codec)
1492 {
1493         conexant_init(codec);
1494         cxt5047_hp_automute(codec);
1495         return 0;
1496 }
1497
1498
1499 enum {
1500         CXT5047_LAPTOP,         /* Laptops w/o EAPD support */
1501         CXT5047_LAPTOP_HP,      /* Some HP laptops */
1502         CXT5047_LAPTOP_EAPD,    /* Laptops with EAPD support */
1503 #ifdef CONFIG_SND_DEBUG
1504         CXT5047_TEST,
1505 #endif
1506         CXT5047_MODELS
1507 };
1508
1509 static const char *cxt5047_models[CXT5047_MODELS] = {
1510         [CXT5047_LAPTOP]        = "laptop",
1511         [CXT5047_LAPTOP_HP]     = "laptop-hp",
1512         [CXT5047_LAPTOP_EAPD]   = "laptop-eapd",
1513 #ifdef CONFIG_SND_DEBUG
1514         [CXT5047_TEST]          = "test",
1515 #endif
1516 };
1517
1518 static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
1519         SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
1520         SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1521                            CXT5047_LAPTOP),
1522         SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
1523         {}
1524 };
1525
1526 static int patch_cxt5047(struct hda_codec *codec)
1527 {
1528         struct conexant_spec *spec;
1529         int board_config;
1530
1531         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1532         if (!spec)
1533                 return -ENOMEM;
1534         codec->spec = spec;
1535         codec->pin_amp_workaround = 1;
1536
1537         spec->multiout.max_channels = 2;
1538         spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1539         spec->multiout.dac_nids = cxt5047_dac_nids;
1540         spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1541         spec->num_adc_nids = 1;
1542         spec->adc_nids = cxt5047_adc_nids;
1543         spec->capsrc_nids = cxt5047_capsrc_nids;
1544         spec->num_mixers = 1;
1545         spec->mixers[0] = cxt5047_base_mixers;
1546         spec->num_init_verbs = 1;
1547         spec->init_verbs[0] = cxt5047_init_verbs;
1548         spec->spdif_route = 0;
1549         spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1550         spec->channel_mode = cxt5047_modes,
1551
1552         codec->patch_ops = conexant_patch_ops;
1553
1554         board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1555                                                   cxt5047_models,
1556                                                   cxt5047_cfg_tbl);
1557         switch (board_config) {
1558         case CXT5047_LAPTOP:
1559                 spec->num_mixers = 2;
1560                 spec->mixers[1] = cxt5047_hp_spk_mixers;
1561                 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1562                 break;
1563         case CXT5047_LAPTOP_HP:
1564                 spec->num_mixers = 2;
1565                 spec->mixers[1] = cxt5047_hp_only_mixers;
1566                 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1567                 codec->patch_ops.init = cxt5047_hp_init;
1568                 break;
1569         case CXT5047_LAPTOP_EAPD:
1570                 spec->input_mux = &cxt5047_toshiba_capture_source;
1571                 spec->num_mixers = 2;
1572                 spec->mixers[1] = cxt5047_hp_spk_mixers;
1573                 spec->num_init_verbs = 2;
1574                 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
1575                 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1576                 break;
1577 #ifdef CONFIG_SND_DEBUG
1578         case CXT5047_TEST:
1579                 spec->input_mux = &cxt5047_test_capture_source;
1580                 spec->mixers[0] = cxt5047_test_mixer;
1581                 spec->init_verbs[0] = cxt5047_test_init_verbs;
1582                 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1583 #endif  
1584         }
1585         spec->vmaster_nid = 0x13;
1586
1587         switch (codec->subsystem_id >> 16) {
1588         case 0x103c:
1589                 /* HP laptops have really bad sound over 0 dB on NID 0x10.
1590                  * Fix max PCM level to 0 dB (originally it has 0x1e steps
1591                  * with 0 dB offset 0x17)
1592                  */
1593                 snd_hda_override_amp_caps(codec, 0x10, HDA_INPUT,
1594                                           (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
1595                                           (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1596                                           (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1597                                           (1 << AC_AMPCAP_MUTE_SHIFT));
1598                 break;
1599         }
1600
1601         return 0;
1602 }
1603
1604 /* Conexant 5051 specific */
1605 static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1606 static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
1607
1608 static struct hda_channel_mode cxt5051_modes[1] = {
1609         { 2, NULL },
1610 };
1611
1612 static void cxt5051_update_speaker(struct hda_codec *codec)
1613 {
1614         struct conexant_spec *spec = codec->spec;
1615         unsigned int pinctl;
1616         pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1617         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1618                             pinctl);
1619 }
1620
1621 /* turn on/off EAPD (+ mute HP) as a master switch */
1622 static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1623                                     struct snd_ctl_elem_value *ucontrol)
1624 {
1625         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1626
1627         if (!cxt_eapd_put(kcontrol, ucontrol))
1628                 return 0;
1629         cxt5051_update_speaker(codec);
1630         return 1;
1631 }
1632
1633 /* toggle input of built-in and mic jack appropriately */
1634 static void cxt5051_portb_automic(struct hda_codec *codec)
1635 {
1636         struct conexant_spec *spec = codec->spec;
1637         unsigned int present;
1638
1639         if (spec->no_auto_mic)
1640                 return;
1641         present = snd_hda_codec_read(codec, 0x17, 0,
1642                                      AC_VERB_GET_PIN_SENSE, 0) &
1643                 AC_PINSENSE_PRESENCE;
1644         snd_hda_codec_write(codec, 0x14, 0,
1645                             AC_VERB_SET_CONNECT_SEL,
1646                             present ? 0x01 : 0x00);
1647 }
1648
1649 /* switch the current ADC according to the jack state */
1650 static void cxt5051_portc_automic(struct hda_codec *codec)
1651 {
1652         struct conexant_spec *spec = codec->spec;
1653         unsigned int present;
1654         hda_nid_t new_adc;
1655
1656         if (spec->no_auto_mic)
1657                 return;
1658         present = snd_hda_codec_read(codec, 0x18, 0,
1659                                      AC_VERB_GET_PIN_SENSE, 0) &
1660                 AC_PINSENSE_PRESENCE;
1661         if (present)
1662                 spec->cur_adc_idx = 1;
1663         else
1664                 spec->cur_adc_idx = 0;
1665         new_adc = spec->adc_nids[spec->cur_adc_idx];
1666         if (spec->cur_adc && spec->cur_adc != new_adc) {
1667                 /* stream is running, let's swap the current ADC */
1668                 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
1669                 spec->cur_adc = new_adc;
1670                 snd_hda_codec_setup_stream(codec, new_adc,
1671                                            spec->cur_adc_stream_tag, 0,
1672                                            spec->cur_adc_format);
1673         }
1674 }
1675
1676 /* mute internal speaker if HP is plugged */
1677 static void cxt5051_hp_automute(struct hda_codec *codec)
1678 {
1679         struct conexant_spec *spec = codec->spec;
1680
1681         spec->hp_present = snd_hda_codec_read(codec, 0x16, 0,
1682                                      AC_VERB_GET_PIN_SENSE, 0) &
1683                 AC_PINSENSE_PRESENCE;
1684         cxt5051_update_speaker(codec);
1685 }
1686
1687 /* unsolicited event for HP jack sensing */
1688 static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1689                                    unsigned int res)
1690 {
1691         int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
1692         switch (res >> 26) {
1693         case CONEXANT_HP_EVENT:
1694                 cxt5051_hp_automute(codec);
1695                 break;
1696         case CXT5051_PORTB_EVENT:
1697                 cxt5051_portb_automic(codec);
1698                 break;
1699         case CXT5051_PORTC_EVENT:
1700                 cxt5051_portc_automic(codec);
1701                 break;
1702         }
1703         conexant_report_jack(codec, nid);
1704 }
1705
1706 static struct snd_kcontrol_new cxt5051_mixers[] = {
1707         HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1708         HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1709         HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1710         HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1711         HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1712         HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1713         HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1714         {
1715                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1716                 .name = "Master Playback Switch",
1717                 .info = cxt_eapd_info,
1718                 .get = cxt_eapd_get,
1719                 .put = cxt5051_hp_master_sw_put,
1720                 .private_value = 0x1a,
1721         },
1722
1723         {}
1724 };
1725
1726 static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1727         HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1728         HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1729         HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1730         HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1731         HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1732         {
1733                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1734                 .name = "Master Playback Switch",
1735                 .info = cxt_eapd_info,
1736                 .get = cxt_eapd_get,
1737                 .put = cxt5051_hp_master_sw_put,
1738                 .private_value = 0x1a,
1739         },
1740
1741         {}
1742 };
1743
1744 static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
1745         HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x00, HDA_INPUT),
1746         HDA_CODEC_MUTE("Mic Switch", 0x14, 0x00, HDA_INPUT),
1747         HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1748         {
1749                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1750                 .name = "Master Playback Switch",
1751                 .info = cxt_eapd_info,
1752                 .get = cxt_eapd_get,
1753                 .put = cxt5051_hp_master_sw_put,
1754                 .private_value = 0x1a,
1755         },
1756
1757         {}
1758 };
1759
1760 static struct hda_verb cxt5051_init_verbs[] = {
1761         /* Line in, Mic */
1762         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1763         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1764         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1765         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1766         {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1767         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1768         /* SPK  */
1769         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1770         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1771         /* HP, Amp  */
1772         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1773         {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1774         /* DAC1 */      
1775         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1776         /* Record selector: Int mic */
1777         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1778         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1779         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1780         /* SPDIF route: PCM */
1781         {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1782         /* EAPD */
1783         {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ 
1784         {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1785         {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1786         {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1787         { } /* end */
1788 };
1789
1790 static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
1791         /* Line in, Mic */
1792         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1793         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1794         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1795         {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1796         /* SPK  */
1797         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1798         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1799         /* HP, Amp  */
1800         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1801         {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1802         /* DAC1 */
1803         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1804         /* Record selector: Int mic */
1805         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1806         {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1807         /* SPDIF route: PCM */
1808         {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1809         /* EAPD */
1810         {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1811         {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1812         {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1813         { } /* end */
1814 };
1815
1816 static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
1817         /* Line in, Mic */
1818         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1819         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1820         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1821         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1822         {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1823         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1824         /* SPK  */
1825         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1826         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1827         /* HP, Amp  */
1828         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1829         {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1830         /* Docking HP */
1831         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1832         {0x19, AC_VERB_SET_CONNECT_SEL, 0x00},
1833         /* DAC1 */
1834         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1835         /* Record selector: Int mic */
1836         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1837         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1838         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1839         /* SPDIF route: PCM */
1840         {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1841         /* EAPD */
1842         {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1843         {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1844         {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1845         {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1846         {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1847         { } /* end */
1848 };
1849
1850 /* initialize jack-sensing, too */
1851 static int cxt5051_init(struct hda_codec *codec)
1852 {
1853         conexant_init(codec);
1854         conexant_init_jacks(codec);
1855         if (codec->patch_ops.unsol_event) {
1856                 cxt5051_hp_automute(codec);
1857                 cxt5051_portb_automic(codec);
1858                 cxt5051_portc_automic(codec);
1859         }
1860         return 0;
1861 }
1862
1863
1864 enum {
1865         CXT5051_LAPTOP,  /* Laptops w/ EAPD support */
1866         CXT5051_HP,     /* no docking */
1867         CXT5051_HP_DV6736,      /* HP without mic switch */
1868         CXT5051_LENOVO_X200,    /* Lenovo X200 laptop */
1869         CXT5051_MODELS
1870 };
1871
1872 static const char *cxt5051_models[CXT5051_MODELS] = {
1873         [CXT5051_LAPTOP]        = "laptop",
1874         [CXT5051_HP]            = "hp",
1875         [CXT5051_HP_DV6736]     = "hp-dv6736",
1876         [CXT5051_LENOVO_X200]   = "lenovo-x200",
1877 };
1878
1879 static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
1880         SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
1881         SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
1882         SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1883                       CXT5051_LAPTOP),
1884         SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
1885         SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200),
1886         {}
1887 };
1888
1889 static int patch_cxt5051(struct hda_codec *codec)
1890 {
1891         struct conexant_spec *spec;
1892         int board_config;
1893
1894         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1895         if (!spec)
1896                 return -ENOMEM;
1897         codec->spec = spec;
1898         codec->pin_amp_workaround = 1;
1899
1900         codec->patch_ops = conexant_patch_ops;
1901         codec->patch_ops.init = cxt5051_init;
1902
1903         spec->multiout.max_channels = 2;
1904         spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1905         spec->multiout.dac_nids = cxt5051_dac_nids;
1906         spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1907         spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1908         spec->adc_nids = cxt5051_adc_nids;
1909         spec->num_mixers = 1;
1910         spec->mixers[0] = cxt5051_mixers;
1911         spec->num_init_verbs = 1;
1912         spec->init_verbs[0] = cxt5051_init_verbs;
1913         spec->spdif_route = 0;
1914         spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1915         spec->channel_mode = cxt5051_modes;
1916         spec->cur_adc = 0;
1917         spec->cur_adc_idx = 0;
1918
1919         codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1920
1921         board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1922                                                   cxt5051_models,
1923                                                   cxt5051_cfg_tbl);
1924         switch (board_config) {
1925         case CXT5051_HP:
1926                 spec->mixers[0] = cxt5051_hp_mixers;
1927                 break;
1928         case CXT5051_HP_DV6736:
1929                 spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
1930                 spec->mixers[0] = cxt5051_hp_dv6736_mixers;
1931                 spec->no_auto_mic = 1;
1932                 break;
1933         case CXT5051_LENOVO_X200:
1934                 spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs;
1935                 break;
1936         }
1937
1938         return 0;
1939 }
1940
1941 /* Conexant 5066 specific */
1942
1943 static hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
1944 static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
1945 static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
1946 #define CXT5066_SPDIF_OUT       0x21
1947
1948 /* OLPC's microphone port is DC coupled for use with external sensors,
1949  * therefore we use a 50% mic bias in order to center the input signal with
1950  * the DC input range of the codec. */
1951 #define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
1952
1953 static struct hda_channel_mode cxt5066_modes[1] = {
1954         { 2, NULL },
1955 };
1956
1957 static void cxt5066_update_speaker(struct hda_codec *codec)
1958 {
1959         struct conexant_spec *spec = codec->spec;
1960         unsigned int pinctl;
1961
1962         snd_printdd("CXT5066: update speaker, hp_present=%d\n",
1963                 spec->hp_present);
1964
1965         /* Port A (HP) */
1966         pinctl = ((spec->hp_present & 1) && spec->cur_eapd) ? PIN_HP : 0;
1967         snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1968                         pinctl);
1969
1970         /* Port D (HP/LO) */
1971         pinctl = ((spec->hp_present & 2) && spec->cur_eapd)
1972                 ? spec->port_d_mode : 0;
1973         snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1974                         pinctl);
1975
1976         /* CLASS_D AMP */
1977         pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1978         snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1979                         pinctl);
1980
1981         if (spec->dell_automute) {
1982                 /* DELL AIO Port Rule: PortA > PortD > IntSpk */
1983                 pinctl = (!(spec->hp_present & 1) && spec->cur_eapd)
1984                         ? PIN_OUT : 0;
1985                 snd_hda_codec_write(codec, 0x1c, 0,
1986                         AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl);
1987         }
1988 }
1989
1990 /* turn on/off EAPD (+ mute HP) as a master switch */
1991 static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1992                                     struct snd_ctl_elem_value *ucontrol)
1993 {
1994         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1995
1996         if (!cxt_eapd_put(kcontrol, ucontrol))
1997                 return 0;
1998
1999         cxt5066_update_speaker(codec);
2000         return 1;
2001 }
2002
2003 /* toggle input of built-in and mic jack appropriately */
2004 static void cxt5066_automic(struct hda_codec *codec)
2005 {
2006         struct conexant_spec *spec = codec->spec;
2007         struct hda_verb ext_mic_present[] = {
2008                 /* enable external mic, port B */
2009                 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, spec->ext_mic_bias},
2010
2011                 /* switch to external mic input */
2012                 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2013
2014                 /* disable internal mic, port C */
2015                 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2016                 {}
2017         };
2018         static struct hda_verb ext_mic_absent[] = {
2019                 /* enable internal mic, port C */
2020                 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2021
2022                 /* switch to internal mic input */
2023                 {0x17, AC_VERB_SET_CONNECT_SEL, 1},
2024
2025                 /* disable external mic, port B */
2026                 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2027                 {}
2028         };
2029         unsigned int present;
2030
2031         present = snd_hda_codec_read(codec, 0x1a, 0,
2032                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2033         if (present) {
2034                 snd_printdd("CXT5066: external microphone detected\n");
2035                 snd_hda_sequence_write(codec, ext_mic_present);
2036         } else {
2037                 snd_printdd("CXT5066: external microphone absent\n");
2038                 snd_hda_sequence_write(codec, ext_mic_absent);
2039         }
2040 }
2041
2042 /* mute internal speaker if HP is plugged */
2043 static void cxt5066_hp_automute(struct hda_codec *codec)
2044 {
2045         struct conexant_spec *spec = codec->spec;
2046         unsigned int portA, portD;
2047
2048         /* Port A */
2049         portA = snd_hda_codec_read(codec, 0x19, 0, AC_VERB_GET_PIN_SENSE, 0)
2050                 & AC_PINSENSE_PRESENCE;
2051
2052         /* Port D */
2053         portD = (snd_hda_codec_read(codec, 0x1c, 0, AC_VERB_GET_PIN_SENSE, 0)
2054                 & AC_PINSENSE_PRESENCE) << 1;
2055
2056         spec->hp_present = !!(portA | portD);
2057         snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2058                 portA, portD, spec->hp_present);
2059         cxt5066_update_speaker(codec);
2060 }
2061
2062 /* unsolicited event for jack sensing */
2063 static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res)
2064 {
2065         snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
2066         switch (res >> 26) {
2067         case CONEXANT_HP_EVENT:
2068                 cxt5066_hp_automute(codec);
2069                 break;
2070         case CONEXANT_MIC_EVENT:
2071                 cxt5066_automic(codec);
2072                 break;
2073         }
2074 }
2075
2076 static const struct hda_input_mux cxt5066_analog_mic_boost = {
2077         .num_items = 5,
2078         .items = {
2079                 { "0dB",  0 },
2080                 { "10dB", 1 },
2081                 { "20dB", 2 },
2082                 { "30dB", 3 },
2083                 { "40dB", 4 },
2084         },
2085 };
2086
2087 static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
2088                                            struct snd_ctl_elem_info *uinfo)
2089 {
2090         return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
2091 }
2092
2093 static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
2094                                           struct snd_ctl_elem_value *ucontrol)
2095 {
2096         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2097         int val;
2098
2099         val = snd_hda_codec_read(codec, 0x17, 0,
2100                 AC_VERB_GET_AMP_GAIN_MUTE, AC_AMP_GET_OUTPUT);
2101
2102         ucontrol->value.enumerated.item[0] = val & AC_AMP_GAIN;
2103         return 0;
2104 }
2105
2106 static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
2107                                           struct snd_ctl_elem_value *ucontrol)
2108 {
2109         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2110         const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2111         unsigned int idx;
2112
2113         if (!imux->num_items)
2114                 return 0;
2115         idx = ucontrol->value.enumerated.item[0];
2116         if (idx >= imux->num_items)
2117                 idx = imux->num_items - 1;
2118
2119         snd_hda_codec_write_cache(codec, 0x17, 0,
2120                 AC_VERB_SET_AMP_GAIN_MUTE,
2121                 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2122                         imux->items[idx].index);
2123
2124         return 1;
2125 }
2126
2127 static struct hda_input_mux cxt5066_capture_source = {
2128         .num_items = 4,
2129         .items = {
2130                 { "Mic B", 0 },
2131                 { "Mic C", 1 },
2132                 { "Mic E", 2 },
2133                 { "Mic F", 3 },
2134         },
2135 };
2136
2137 static struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
2138         .ops = &snd_hda_bind_vol,
2139         .values = {
2140                 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2141                 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2142                 0
2143         },
2144 };
2145
2146 static struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
2147         .ops = &snd_hda_bind_sw,
2148         .values = {
2149                 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2150                 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2151                 0
2152         },
2153 };
2154
2155 static struct snd_kcontrol_new cxt5066_mixer_master[] = {
2156         HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
2157         {}
2158 };
2159
2160 static struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
2161         {
2162                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2163                 .name = "Master Playback Volume",
2164                 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
2165                                   SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2166                                   SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
2167                 .info = snd_hda_mixer_amp_volume_info,
2168                 .get = snd_hda_mixer_amp_volume_get,
2169                 .put = snd_hda_mixer_amp_volume_put,
2170                 .tlv = { .c = snd_hda_mixer_amp_tlv },
2171                 /* offset by 28 volume steps to limit minimum gain to -46dB */
2172                 .private_value =
2173                         HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
2174         },
2175         {}
2176 };
2177
2178 static struct snd_kcontrol_new cxt5066_mixers[] = {
2179         {
2180                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2181                 .name = "Master Playback Switch",
2182                 .info = cxt_eapd_info,
2183                 .get = cxt_eapd_get,
2184                 .put = cxt5066_hp_master_sw_put,
2185                 .private_value = 0x1d,
2186         },
2187
2188         {
2189                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2190                 .name = "Analog Mic Boost Capture Enum",
2191                 .info = cxt5066_mic_boost_mux_enum_info,
2192                 .get = cxt5066_mic_boost_mux_enum_get,
2193                 .put = cxt5066_mic_boost_mux_enum_put,
2194         },
2195
2196         HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
2197         HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
2198         {}
2199 };
2200
2201 static struct hda_verb cxt5066_init_verbs[] = {
2202         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2203         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2204         {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2205         {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2206
2207         /* Speakers  */
2208         {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2209         {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2210
2211         /* HP, Amp  */
2212         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2213         {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2214
2215         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2216         {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2217
2218         /* DAC1 */
2219         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2220
2221         /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2222         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2223         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2224         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2225         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2226         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2227
2228         /* no digital microphone support yet */
2229         {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2230
2231         /* Audio input selector */
2232         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2233
2234         /* SPDIF route: PCM */
2235         {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2236         {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2237
2238         {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2239         {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2240
2241         /* EAPD */
2242         {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2243
2244         /* not handling these yet */
2245         {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2246         {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2247         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2248         {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2249         {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2250         {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2251         {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2252         {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2253         { } /* end */
2254 };
2255
2256 static struct hda_verb cxt5066_init_verbs_olpc[] = {
2257         /* Port A: headphones */
2258         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2259         {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2260
2261         /* Port B: external microphone */
2262         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, CXT5066_OLPC_EXT_MIC_BIAS},
2263
2264         /* Port C: internal microphone */
2265         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2266
2267         /* Port D: unused */
2268         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2269
2270         /* Port E: unused, but has primary EAPD */
2271         {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2272         {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2273
2274         /* Port F: unused */
2275         {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2276
2277         /* Port G: internal speakers */
2278         {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2279         {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2280
2281         /* DAC1 */
2282         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2283
2284         /* DAC2: unused */
2285         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2286
2287         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2288         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2289         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2290         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2291         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2292         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2293         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2294         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2295         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2296         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2297         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2298         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2299
2300         /* Disable digital microphone port */
2301         {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2302
2303         /* Audio input selectors */
2304         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2305         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2306
2307         /* Disable SPDIF */
2308         {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2309         {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2310
2311         /* enable unsolicited events for Port A and B */
2312         {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2313         {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2314         { } /* end */
2315 };
2316
2317 static struct hda_verb cxt5066_init_verbs_portd_lo[] = {
2318         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2319         { } /* end */
2320 };
2321
2322 /* initialize jack-sensing, too */
2323 static int cxt5066_init(struct hda_codec *codec)
2324 {
2325         snd_printdd("CXT5066: init\n");
2326         conexant_init(codec);
2327         if (codec->patch_ops.unsol_event) {
2328                 cxt5066_hp_automute(codec);
2329                 cxt5066_automic(codec);
2330         }
2331         return 0;
2332 }
2333
2334 enum {
2335         CXT5066_LAPTOP,                 /* Laptops w/ EAPD support */
2336         CXT5066_DELL_LAPTOP,    /* Dell Laptop */
2337         CXT5066_OLPC_XO_1_5,    /* OLPC XO 1.5 */
2338         CXT5066_MODELS
2339 };
2340
2341 static const char *cxt5066_models[CXT5066_MODELS] = {
2342         [CXT5066_LAPTOP]                = "laptop",
2343         [CXT5066_DELL_LAPTOP]   = "dell-laptop",
2344         [CXT5066_OLPC_XO_1_5]   = "olpc-xo-1_5",
2345 };
2346
2347 static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
2348         SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
2349                       CXT5066_LAPTOP),
2350         SND_PCI_QUIRK(0x1028, 0x02f5, "Dell",
2351                       CXT5066_DELL_LAPTOP),
2352         SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
2353         SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba Satellite P500-PSPGSC-01800T", CXT5066_OLPC_XO_1_5),
2354         SND_PCI_QUIRK(0x1179, 0xffe0, "Toshiba Satellite Pro T130-15F", CXT5066_OLPC_XO_1_5),
2355         {}
2356 };
2357
2358 static int patch_cxt5066(struct hda_codec *codec)
2359 {
2360         struct conexant_spec *spec;
2361         int board_config;
2362
2363         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2364         if (!spec)
2365                 return -ENOMEM;
2366         codec->spec = spec;
2367
2368         codec->patch_ops = conexant_patch_ops;
2369         codec->patch_ops.init = cxt5066_init;
2370
2371         spec->dell_automute = 0;
2372         spec->multiout.max_channels = 2;
2373         spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
2374         spec->multiout.dac_nids = cxt5066_dac_nids;
2375         spec->multiout.dig_out_nid = CXT5066_SPDIF_OUT;
2376         spec->num_adc_nids = 1;
2377         spec->adc_nids = cxt5066_adc_nids;
2378         spec->capsrc_nids = cxt5066_capsrc_nids;
2379         spec->input_mux = &cxt5066_capture_source;
2380
2381         spec->port_d_mode = PIN_HP;
2382         spec->ext_mic_bias = PIN_VREF80;
2383
2384         spec->num_init_verbs = 1;
2385         spec->init_verbs[0] = cxt5066_init_verbs;
2386         spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
2387         spec->channel_mode = cxt5066_modes;
2388         spec->cur_adc = 0;
2389         spec->cur_adc_idx = 0;
2390
2391         board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
2392                                                   cxt5066_models, cxt5066_cfg_tbl);
2393         switch (board_config) {
2394         default:
2395         case CXT5066_LAPTOP:
2396                 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
2397                 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2398                 break;
2399         case CXT5066_DELL_LAPTOP:
2400                 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
2401                 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2402
2403                 spec->port_d_mode = PIN_OUT;
2404                 spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
2405                 spec->num_init_verbs++;
2406                 spec->dell_automute = 1;
2407                 break;
2408         case CXT5066_OLPC_XO_1_5:
2409                 codec->patch_ops.unsol_event = cxt5066_unsol_event;
2410                 spec->init_verbs[0] = cxt5066_init_verbs_olpc;
2411                 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
2412                 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2413                 spec->port_d_mode = 0;
2414                 spec->ext_mic_bias = CXT5066_OLPC_EXT_MIC_BIAS;
2415
2416                 /* no S/PDIF out */
2417                 spec->multiout.dig_out_nid = 0;
2418
2419                 /* input source automatically selected */
2420                 spec->input_mux = NULL;
2421                 break;
2422         }
2423
2424         return 0;
2425 }
2426
2427 /*
2428  */
2429
2430 static struct hda_codec_preset snd_hda_preset_conexant[] = {
2431         { .id = 0x14f15045, .name = "CX20549 (Venice)",
2432           .patch = patch_cxt5045 },
2433         { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
2434           .patch = patch_cxt5047 },
2435         { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
2436           .patch = patch_cxt5051 },
2437         { .id = 0x14f15066, .name = "CX20582 (Pebble)",
2438           .patch = patch_cxt5066 },
2439         {} /* terminator */
2440 };
2441
2442 MODULE_ALIAS("snd-hda-codec-id:14f15045");
2443 MODULE_ALIAS("snd-hda-codec-id:14f15047");
2444 MODULE_ALIAS("snd-hda-codec-id:14f15051");
2445 MODULE_ALIAS("snd-hda-codec-id:14f15066");
2446
2447 MODULE_LICENSE("GPL");
2448 MODULE_DESCRIPTION("Conexant HD-audio codec");
2449
2450 static struct hda_codec_preset_list conexant_list = {
2451         .preset = snd_hda_preset_conexant,
2452         .owner = THIS_MODULE,
2453 };
2454
2455 static int __init patch_conexant_init(void)
2456 {
2457         return snd_hda_add_codec_preset(&conexant_list);
2458 }
2459
2460 static void __exit patch_conexant_exit(void)
2461 {
2462         snd_hda_delete_codec_preset(&conexant_list);
2463 }
2464
2465 module_init(patch_conexant_init)
2466 module_exit(patch_conexant_exit)