2 * HD audio interface patch for Conexant HDA audio codec
4 * Copyright (c) 2006 Pototskiy Akex <alex.pototskiy@gmail.com>
5 * Takashi Iwai <tiwai@suse.de>
6 * Tobin Davis <tdavis@dsl-only.net>
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.
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.
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
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>
30 #include "hda_codec.h"
31 #include "hda_local.h"
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
39 #define CONEXANT_HP_EVENT 0x37
40 #define CONEXANT_MIC_EVENT 0x38
42 /* Conexant 5051 specific */
44 #define CXT5051_SPDIF_OUT 0x1C
45 #define CXT5051_PORTB_EVENT 0x38
46 #define CXT5051_PORTC_EVENT 0x39
49 struct conexant_jack {
53 struct snd_jack *jack;
57 struct conexant_spec {
59 struct snd_kcontrol_new *mixers[5];
61 hda_nid_t vmaster_nid;
63 const struct hda_verb *init_verbs[5]; /* initialization verbs
67 unsigned int num_init_verbs;
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
74 unsigned int cur_eapd;
75 unsigned int hp_present;
76 unsigned int no_auto_mic;
77 unsigned int need_dac_fix;
80 unsigned int num_adc_nids;
82 hda_nid_t dig_in_nid; /* digital-in NID; optional */
84 unsigned int cur_adc_idx;
86 unsigned int cur_adc_stream_tag;
87 unsigned int cur_adc_format;
90 const struct hda_input_mux *input_mux;
91 hda_nid_t *capsrc_nids;
92 unsigned int cur_mux[3];
95 const struct hda_channel_mode *channel_mode;
99 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
101 unsigned int spdif_route;
104 struct snd_array jacks;
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];
111 unsigned int dell_automute;
112 unsigned int port_d_mode;
113 unsigned char ext_mic_bias;
116 static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
117 struct hda_codec *codec,
118 struct snd_pcm_substream *substream)
120 struct conexant_spec *spec = codec->spec;
121 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
125 static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
126 struct hda_codec *codec,
127 unsigned int stream_tag,
129 struct snd_pcm_substream *substream)
131 struct conexant_spec *spec = codec->spec;
132 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
137 static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
138 struct hda_codec *codec,
139 struct snd_pcm_substream *substream)
141 struct conexant_spec *spec = codec->spec;
142 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
148 static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
149 struct hda_codec *codec,
150 struct snd_pcm_substream *substream)
152 struct conexant_spec *spec = codec->spec;
153 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
156 static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
157 struct hda_codec *codec,
158 struct snd_pcm_substream *substream)
160 struct conexant_spec *spec = codec->spec;
161 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
164 static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
165 struct hda_codec *codec,
166 unsigned int stream_tag,
168 struct snd_pcm_substream *substream)
170 struct conexant_spec *spec = codec->spec;
171 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
179 static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
180 struct hda_codec *codec,
181 unsigned int stream_tag,
183 struct snd_pcm_substream *substream)
185 struct conexant_spec *spec = codec->spec;
186 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
187 stream_tag, 0, format);
191 static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
192 struct hda_codec *codec,
193 struct snd_pcm_substream *substream)
195 struct conexant_spec *spec = codec->spec;
196 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
202 static struct hda_pcm_stream conexant_pcm_analog_playback = {
206 .nid = 0, /* fill later */
208 .open = conexant_playback_pcm_open,
209 .prepare = conexant_playback_pcm_prepare,
210 .cleanup = conexant_playback_pcm_cleanup
214 static struct hda_pcm_stream conexant_pcm_analog_capture = {
218 .nid = 0, /* fill later */
220 .prepare = conexant_capture_pcm_prepare,
221 .cleanup = conexant_capture_pcm_cleanup
226 static struct hda_pcm_stream conexant_pcm_digital_playback = {
230 .nid = 0, /* fill later */
232 .open = conexant_dig_playback_pcm_open,
233 .close = conexant_dig_playback_pcm_close,
234 .prepare = conexant_dig_playback_pcm_prepare
238 static struct hda_pcm_stream conexant_pcm_digital_capture = {
242 /* NID is set in alc_build_pcms */
245 static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
246 struct hda_codec *codec,
247 unsigned int stream_tag,
249 struct snd_pcm_substream *substream)
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);
259 static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
260 struct hda_codec *codec,
261 struct snd_pcm_substream *substream)
263 struct conexant_spec *spec = codec->spec;
264 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
269 static struct hda_pcm_stream cx5051_pcm_analog_capture = {
273 .nid = 0, /* fill later */
275 .prepare = cx5051_capture_pcm_prepare,
276 .cleanup = cx5051_capture_pcm_cleanup
280 static int conexant_build_pcms(struct hda_codec *codec)
282 struct conexant_spec *spec = codec->spec;
283 struct hda_pcm *info = spec->pcm_rec;
286 codec->pcm_info = info;
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;
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];
303 if (spec->multiout.dig_out_nid) {
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 =
323 static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
324 struct snd_ctl_elem_info *uinfo)
326 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
327 struct conexant_spec *spec = codec->spec;
329 return snd_hda_input_mux_info(spec->input_mux, uinfo);
332 static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
333 struct snd_ctl_elem_value *ucontrol)
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);
339 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
343 static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
344 struct snd_ctl_elem_value *ucontrol)
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);
350 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
351 spec->capsrc_nids[adc_idx],
352 &spec->cur_mux[adc_idx]);
355 #ifdef CONFIG_SND_HDA_INPUT_JACK
356 static void conexant_free_jack_priv(struct snd_jack *jack)
358 struct conexant_jack *jacks = jack->private_data;
363 static int conexant_add_jack(struct hda_codec *codec,
364 hda_nid_t nid, int type)
366 struct conexant_spec *spec;
367 struct conexant_jack *jack;
372 snd_array_init(&spec->jacks, sizeof(*jack), 32);
373 jack = snd_array_new(&spec->jacks);
374 name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ;
382 err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
385 jack->jack->private_data = jack;
386 jack->jack->private_free = conexant_free_jack_priv;
390 static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
392 struct conexant_spec *spec = codec->spec;
393 struct conexant_jack *jacks = spec->jacks.list;
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;
404 present = (present) ? jacks->type : 0 ;
406 snd_jack_report(jacks->jack,
414 static int conexant_init_jacks(struct hda_codec *codec)
416 struct conexant_spec *spec = codec->spec;
419 for (i = 0; i < spec->num_init_verbs; i++) {
420 const struct hda_verb *hv;
422 hv = spec->init_verbs[i];
425 switch (hv->param ^ AC_USRSP_EN) {
426 case CONEXANT_HP_EVENT:
427 err = conexant_add_jack(codec, hv->nid,
429 conexant_report_jack(codec, hv->nid);
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);
447 static inline void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
451 static inline int conexant_init_jacks(struct hda_codec *codec)
457 static int conexant_init(struct hda_codec *codec)
459 struct conexant_spec *spec = codec->spec;
462 for (i = 0; i < spec->num_init_verbs; i++)
463 snd_hda_sequence_write(codec, spec->init_verbs[i]);
467 static void conexant_free(struct hda_codec *codec)
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;
474 for (i = 0; i < spec->jacks.used; i++, jacks++) {
476 snd_device_free(codec->bus->card, jacks->jack);
478 snd_array_free(&spec->jacks);
484 static struct snd_kcontrol_new cxt_capture_mixers[] = {
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
495 static const char *slave_vols[] = {
496 "Headphone Playback Volume",
497 "Speaker Playback Volume",
501 static const char *slave_sws[] = {
502 "Headphone Playback Switch",
503 "Speaker Playback Switch",
507 static int conexant_build_controls(struct hda_codec *codec)
509 struct conexant_spec *spec = codec->spec;
513 for (i = 0; i < spec->num_mixers; i++) {
514 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
518 if (spec->multiout.dig_out_nid) {
519 err = snd_hda_create_spdif_out_ctls(codec,
520 spec->multiout.dig_out_nid);
523 err = snd_hda_create_spdif_share_sw(codec,
527 spec->multiout.share_spdif = 1;
529 if (spec->dig_in_nid) {
530 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
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);
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",
554 if (spec->input_mux) {
555 err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
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,
572 * the private value = nid | (invert << 8)
575 #define cxt_eapd_info snd_ctl_boolean_mono_info
577 static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
578 struct snd_ctl_elem_value *ucontrol)
580 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
581 struct conexant_spec *spec = codec->spec;
582 int invert = (kcontrol->private_value >> 8) & 1;
584 ucontrol->value.integer.value[0] = !spec->cur_eapd;
586 ucontrol->value.integer.value[0] = spec->cur_eapd;
591 static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
592 struct snd_ctl_elem_value *ucontrol)
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;
600 eapd = !!ucontrol->value.integer.value[0];
603 if (eapd == spec->cur_eapd)
606 spec->cur_eapd = eapd;
607 snd_hda_codec_write_cache(codec, nid,
608 0, AC_VERB_SET_EAPD_BTLENABLE,
613 /* controls for test mode */
614 #ifdef CONFIG_SND_DEBUG
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) }
625 static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
626 struct snd_ctl_elem_info *uinfo)
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);
634 static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
635 struct snd_ctl_elem_value *ucontrol)
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);
644 static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
645 struct snd_ctl_elem_value *ucontrol)
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;
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) }
664 #endif /* CONFIG_SND_DEBUG */
666 /* Conexant 5045 specific */
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
673 static struct hda_channel_mode cxt5045_modes[1] = {
677 static struct hda_input_mux cxt5045_capture_source = {
685 static struct hda_input_mux cxt5045_capture_source_benq = {
696 static struct hda_input_mux cxt5045_capture_source_hp530 = {
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)
708 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
709 struct conexant_spec *spec = codec->spec;
712 if (!cxt_eapd_put(kcontrol, ucontrol))
715 /* toggle internal speakers mute depending of presence of
718 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
719 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
722 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
723 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
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,
732 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
733 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
738 /* toggle input of built-in and mic jack appropriately */
739 static void cxt5045_hp_automic(struct hda_codec *codec)
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},
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},
751 unsigned int present;
753 present = snd_hda_codec_read(codec, 0x12, 0,
754 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
756 snd_hda_sequence_write(codec, mic_jack_on);
758 snd_hda_sequence_write(codec, mic_jack_off);
762 /* mute internal speaker if HP is plugged */
763 static void cxt5045_hp_automute(struct hda_codec *codec)
765 struct conexant_spec *spec = codec->spec;
768 spec->hp_present = snd_hda_codec_read(codec, 0x11, 0,
769 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
771 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
772 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
776 /* unsolicited event for HP jack sensing */
777 static void cxt5045_hp_unsol_event(struct hda_codec *codec,
782 case CONEXANT_HP_EVENT:
783 cxt5045_hp_automute(codec);
785 case CONEXANT_MIC_EVENT:
786 cxt5045_hp_automic(codec);
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),
805 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
806 .name = "Master Playback Switch",
807 .info = cxt_eapd_info,
809 .put = cxt5045_hp_master_sw_put,
810 .private_value = 0x10,
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),
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),
827 HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT),
828 HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT),
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),
846 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
847 .name = "Master Playback Switch",
848 .info = cxt_eapd_info,
850 .put = cxt5045_hp_master_sw_put,
851 .private_value = 0x10,
857 static struct hda_verb cxt5045_init_verbs[] = {
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 },
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 },
879 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
883 static struct hda_verb cxt5045_benq_init_verbs[] = {
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},
905 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
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},
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},
921 #ifdef CONFIG_SND_DEBUG
922 /* Test configuration for debugging, modelled after the ALC260 test
925 static struct hda_input_mux cxt5045_test_capture_source = {
930 { "LINE1 pin", 0x2 },
931 { "HP-OUT pin", 0x3 },
936 static struct snd_kcontrol_new cxt5045_test_mixer[] = {
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),
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),
950 /* EAPD Switch Control */
951 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
953 /* Loopback mixer controls */
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),
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,
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),
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},
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
1001 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1002 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
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)},
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.
1013 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1014 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1016 /* Mute capture amp left and right */
1017 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1019 /* Set ADC connection select to match default mixer setting (mic1
1022 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1023 {0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
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 */
1037 /* initialize jack-sensing, too */
1038 static int cxt5045_init(struct hda_codec *codec)
1040 conexant_init(codec);
1041 cxt5045_hp_automute(codec);
1047 CXT5045_LAPTOP_HPSENSE,
1048 CXT5045_LAPTOP_MICSENSE,
1049 CXT5045_LAPTOP_HPMICSENSE,
1051 CXT5045_LAPTOP_HP530,
1052 #ifdef CONFIG_SND_DEBUG
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",
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),
1088 static int patch_cxt5045(struct hda_codec *codec)
1090 struct conexant_spec *spec;
1093 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1097 codec->pin_amp_workaround = 1;
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,
1116 codec->patch_ops = conexant_patch_ops;
1118 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
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;
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;
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;
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;
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;
1166 #ifdef CONFIG_SND_DEBUG
1168 spec->input_mux = &cxt5045_test_capture_source;
1169 spec->mixers[0] = cxt5045_test_mixer;
1170 spec->init_verbs[0] = cxt5045_test_init_verbs;
1176 switch (codec->subsystem_id >> 16) {
1178 /* HP laptop has a really bad sound over 0dB on NID 0x17.
1179 * Fix max PCM level to 0 dB
1180 * (originall it has 0x2b steps with 0dB offset 0x14)
1182 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1183 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1184 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1185 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1186 (1 << AC_AMPCAP_MUTE_SHIFT));
1194 /* Conexant 5047 specific */
1195 #define CXT5047_SPDIF_OUT 0x11
1197 static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
1198 static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1199 static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
1201 static struct hda_channel_mode cxt5047_modes[1] = {
1205 static struct hda_input_mux cxt5047_toshiba_capture_source = {
1213 /* turn on/off EAPD (+ mute HP) as a master switch */
1214 static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1215 struct snd_ctl_elem_value *ucontrol)
1217 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1218 struct conexant_spec *spec = codec->spec;
1221 if (!cxt_eapd_put(kcontrol, ucontrol))
1224 /* toggle internal speakers mute depending of presence of
1225 * the headphone jack
1227 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
1228 /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1229 * pin widgets unlike other codecs. In this case, we need to
1230 * set index 0x01 for the volume from the mixer amp 0x19.
1232 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
1233 HDA_AMP_MUTE, bits);
1234 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1235 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1236 HDA_AMP_MUTE, bits);
1240 /* mute internal speaker if HP is plugged */
1241 static void cxt5047_hp_automute(struct hda_codec *codec)
1243 struct conexant_spec *spec = codec->spec;
1246 spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
1247 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1249 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
1250 /* See the note in cxt5047_hp_master_sw_put */
1251 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
1252 HDA_AMP_MUTE, bits);
1255 /* toggle input of built-in and mic jack appropriately */
1256 static void cxt5047_hp_automic(struct hda_codec *codec)
1258 static struct hda_verb mic_jack_on[] = {
1259 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1260 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1263 static struct hda_verb mic_jack_off[] = {
1264 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1265 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1268 unsigned int present;
1270 present = snd_hda_codec_read(codec, 0x15, 0,
1271 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1273 snd_hda_sequence_write(codec, mic_jack_on);
1275 snd_hda_sequence_write(codec, mic_jack_off);
1278 /* unsolicited event for HP jack sensing */
1279 static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1282 switch (res >> 26) {
1283 case CONEXANT_HP_EVENT:
1284 cxt5047_hp_automute(codec);
1286 case CONEXANT_MIC_EVENT:
1287 cxt5047_hp_automic(codec);
1292 static struct snd_kcontrol_new cxt5047_base_mixers[] = {
1293 HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1294 HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
1295 HDA_CODEC_VOLUME("Mic Boost", 0x1a, 0x0, HDA_OUTPUT),
1296 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1297 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1298 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1299 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1301 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1302 .name = "Master Playback Switch",
1303 .info = cxt_eapd_info,
1304 .get = cxt_eapd_get,
1305 .put = cxt5047_hp_master_sw_put,
1306 .private_value = 0x13,
1312 static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
1313 /* See the note in cxt5047_hp_master_sw_put */
1314 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
1315 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1319 static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
1320 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1324 static struct hda_verb cxt5047_init_verbs[] = {
1325 /* Line in, Mic, Built-in Mic */
1326 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1327 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1328 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1330 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1331 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
1332 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
1333 /* Record selector: Mic */
1334 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1335 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1336 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1337 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
1338 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1339 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1340 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1341 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
1342 /* SPDIF route: PCM */
1343 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
1344 /* Enable unsolicited events */
1345 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1346 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
1350 /* configuration for Toshiba Laptops */
1351 static struct hda_verb cxt5047_toshiba_init_verbs[] = {
1352 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
1356 /* Test configuration for debugging, modelled after the ALC260 test
1359 #ifdef CONFIG_SND_DEBUG
1360 static struct hda_input_mux cxt5047_test_capture_source = {
1363 { "LINE1 pin", 0x0 },
1364 { "MIC1 pin", 0x1 },
1365 { "MIC2 pin", 0x2 },
1370 static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1372 /* Output only controls */
1373 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1374 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1375 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1376 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
1377 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1378 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1379 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1380 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1381 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1382 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1383 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1384 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
1386 /* Modes for retasking pin widgets */
1387 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1388 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1390 /* EAPD Switch Control */
1391 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1393 /* Loopback mixer controls */
1394 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1395 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1396 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1397 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1398 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1399 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1400 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1401 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
1403 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1404 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1405 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1406 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1407 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1408 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1409 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1410 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
1412 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1413 .name = "Input Source",
1414 .info = conexant_mux_enum_info,
1415 .get = conexant_mux_enum_get,
1416 .put = conexant_mux_enum_put,
1418 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
1419 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
1420 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
1421 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
1422 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
1423 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
1424 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
1425 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
1426 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
1427 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
1432 static struct hda_verb cxt5047_test_init_verbs[] = {
1433 /* Enable retasking pins as output, initially without power amp */
1434 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1435 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1436 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1438 /* Disable digital (SPDIF) pins initially, but users can enable
1439 * them via a mixer switch. In the case of SPDIF-out, this initverb
1440 * payload also sets the generation to 0, output to be in "consumer"
1441 * PCM format, copyright asserted, no pre-emphasis and no validity
1444 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1446 /* Ensure mic1, mic2, line1 pin widgets take input from the
1447 * OUT1 sum bus when acting as an output.
1449 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1450 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1452 /* Start with output sum widgets muted and their output gains at min */
1453 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1454 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1456 /* Unmute retasking pin widget output buffers since the default
1457 * state appears to be output. As the pin mode is changed by the
1458 * user the pin mode control will take care of enabling the pin's
1459 * input/output buffers as needed.
1461 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1462 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1463 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1465 /* Mute capture amp left and right */
1466 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1468 /* Set ADC connection select to match default mixer setting (mic1
1471 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1473 /* Mute all inputs to mixer widget (even unconnected ones) */
1474 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1475 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1476 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1477 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1478 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1479 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1480 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1481 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1488 /* initialize jack-sensing, too */
1489 static int cxt5047_hp_init(struct hda_codec *codec)
1491 conexant_init(codec);
1492 cxt5047_hp_automute(codec);
1498 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1499 CXT5047_LAPTOP_HP, /* Some HP laptops */
1500 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
1501 #ifdef CONFIG_SND_DEBUG
1507 static const char *cxt5047_models[CXT5047_MODELS] = {
1508 [CXT5047_LAPTOP] = "laptop",
1509 [CXT5047_LAPTOP_HP] = "laptop-hp",
1510 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
1511 #ifdef CONFIG_SND_DEBUG
1512 [CXT5047_TEST] = "test",
1516 static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
1517 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
1518 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1520 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
1524 static int patch_cxt5047(struct hda_codec *codec)
1526 struct conexant_spec *spec;
1529 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1533 codec->pin_amp_workaround = 1;
1535 spec->multiout.max_channels = 2;
1536 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1537 spec->multiout.dac_nids = cxt5047_dac_nids;
1538 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1539 spec->num_adc_nids = 1;
1540 spec->adc_nids = cxt5047_adc_nids;
1541 spec->capsrc_nids = cxt5047_capsrc_nids;
1542 spec->num_mixers = 1;
1543 spec->mixers[0] = cxt5047_base_mixers;
1544 spec->num_init_verbs = 1;
1545 spec->init_verbs[0] = cxt5047_init_verbs;
1546 spec->spdif_route = 0;
1547 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1548 spec->channel_mode = cxt5047_modes,
1550 codec->patch_ops = conexant_patch_ops;
1552 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1555 switch (board_config) {
1556 case CXT5047_LAPTOP:
1557 spec->num_mixers = 2;
1558 spec->mixers[1] = cxt5047_hp_spk_mixers;
1559 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1561 case CXT5047_LAPTOP_HP:
1562 spec->num_mixers = 2;
1563 spec->mixers[1] = cxt5047_hp_only_mixers;
1564 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1565 codec->patch_ops.init = cxt5047_hp_init;
1567 case CXT5047_LAPTOP_EAPD:
1568 spec->input_mux = &cxt5047_toshiba_capture_source;
1569 spec->num_mixers = 2;
1570 spec->mixers[1] = cxt5047_hp_spk_mixers;
1571 spec->num_init_verbs = 2;
1572 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
1573 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1575 #ifdef CONFIG_SND_DEBUG
1577 spec->input_mux = &cxt5047_test_capture_source;
1578 spec->mixers[0] = cxt5047_test_mixer;
1579 spec->init_verbs[0] = cxt5047_test_init_verbs;
1580 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1583 spec->vmaster_nid = 0x13;
1587 /* Conexant 5051 specific */
1588 static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1589 static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
1591 static struct hda_channel_mode cxt5051_modes[1] = {
1595 static void cxt5051_update_speaker(struct hda_codec *codec)
1597 struct conexant_spec *spec = codec->spec;
1598 unsigned int pinctl;
1599 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1600 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1604 /* turn on/off EAPD (+ mute HP) as a master switch */
1605 static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1606 struct snd_ctl_elem_value *ucontrol)
1608 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1610 if (!cxt_eapd_put(kcontrol, ucontrol))
1612 cxt5051_update_speaker(codec);
1616 /* toggle input of built-in and mic jack appropriately */
1617 static void cxt5051_portb_automic(struct hda_codec *codec)
1619 struct conexant_spec *spec = codec->spec;
1620 unsigned int present;
1622 if (spec->no_auto_mic)
1624 present = snd_hda_codec_read(codec, 0x17, 0,
1625 AC_VERB_GET_PIN_SENSE, 0) &
1626 AC_PINSENSE_PRESENCE;
1627 snd_hda_codec_write(codec, 0x14, 0,
1628 AC_VERB_SET_CONNECT_SEL,
1629 present ? 0x01 : 0x00);
1632 /* switch the current ADC according to the jack state */
1633 static void cxt5051_portc_automic(struct hda_codec *codec)
1635 struct conexant_spec *spec = codec->spec;
1636 unsigned int present;
1639 if (spec->no_auto_mic)
1641 present = snd_hda_codec_read(codec, 0x18, 0,
1642 AC_VERB_GET_PIN_SENSE, 0) &
1643 AC_PINSENSE_PRESENCE;
1645 spec->cur_adc_idx = 1;
1647 spec->cur_adc_idx = 0;
1648 new_adc = spec->adc_nids[spec->cur_adc_idx];
1649 if (spec->cur_adc && spec->cur_adc != new_adc) {
1650 /* stream is running, let's swap the current ADC */
1651 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
1652 spec->cur_adc = new_adc;
1653 snd_hda_codec_setup_stream(codec, new_adc,
1654 spec->cur_adc_stream_tag, 0,
1655 spec->cur_adc_format);
1659 /* mute internal speaker if HP is plugged */
1660 static void cxt5051_hp_automute(struct hda_codec *codec)
1662 struct conexant_spec *spec = codec->spec;
1664 spec->hp_present = snd_hda_codec_read(codec, 0x16, 0,
1665 AC_VERB_GET_PIN_SENSE, 0) &
1666 AC_PINSENSE_PRESENCE;
1667 cxt5051_update_speaker(codec);
1670 /* unsolicited event for HP jack sensing */
1671 static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1674 int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
1675 switch (res >> 26) {
1676 case CONEXANT_HP_EVENT:
1677 cxt5051_hp_automute(codec);
1679 case CXT5051_PORTB_EVENT:
1680 cxt5051_portb_automic(codec);
1682 case CXT5051_PORTC_EVENT:
1683 cxt5051_portc_automic(codec);
1686 conexant_report_jack(codec, nid);
1689 static struct snd_kcontrol_new cxt5051_mixers[] = {
1690 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1691 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1692 HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1693 HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1694 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1695 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1696 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1698 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1699 .name = "Master Playback Switch",
1700 .info = cxt_eapd_info,
1701 .get = cxt_eapd_get,
1702 .put = cxt5051_hp_master_sw_put,
1703 .private_value = 0x1a,
1709 static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1710 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1711 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1712 HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1713 HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1714 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1716 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1717 .name = "Master Playback Switch",
1718 .info = cxt_eapd_info,
1719 .get = cxt_eapd_get,
1720 .put = cxt5051_hp_master_sw_put,
1721 .private_value = 0x1a,
1727 static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
1728 HDA_CODEC_VOLUME("Mic Volume", 0x14, 0x00, HDA_INPUT),
1729 HDA_CODEC_MUTE("Mic Switch", 0x14, 0x00, HDA_INPUT),
1730 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1732 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1733 .name = "Master Playback Switch",
1734 .info = cxt_eapd_info,
1735 .get = cxt_eapd_get,
1736 .put = cxt5051_hp_master_sw_put,
1737 .private_value = 0x1a,
1743 static struct hda_verb cxt5051_init_verbs[] = {
1745 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1746 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1747 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1748 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1749 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1750 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1752 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1753 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1755 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1756 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1758 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1759 /* Record selector: Int mic */
1760 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1761 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1762 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1763 /* SPDIF route: PCM */
1764 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1766 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1767 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1768 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1769 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1773 static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
1775 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1776 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1777 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1778 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1780 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1781 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1783 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1784 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1786 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1787 /* Record selector: Int mic */
1788 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1789 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1790 /* SPDIF route: PCM */
1791 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1793 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1794 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1795 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1799 static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
1801 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1802 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1803 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1804 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1805 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1806 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1808 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1809 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1811 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1812 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1814 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1815 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00},
1817 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1818 /* Record selector: Int mic */
1819 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1820 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1821 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1822 /* SPDIF route: PCM */
1823 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1825 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1826 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1827 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1828 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1829 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1833 /* initialize jack-sensing, too */
1834 static int cxt5051_init(struct hda_codec *codec)
1836 conexant_init(codec);
1837 conexant_init_jacks(codec);
1838 if (codec->patch_ops.unsol_event) {
1839 cxt5051_hp_automute(codec);
1840 cxt5051_portb_automic(codec);
1841 cxt5051_portc_automic(codec);
1848 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1849 CXT5051_HP, /* no docking */
1850 CXT5051_HP_DV6736, /* HP without mic switch */
1851 CXT5051_LENOVO_X200, /* Lenovo X200 laptop */
1855 static const char *cxt5051_models[CXT5051_MODELS] = {
1856 [CXT5051_LAPTOP] = "laptop",
1857 [CXT5051_HP] = "hp",
1858 [CXT5051_HP_DV6736] = "hp-dv6736",
1859 [CXT5051_LENOVO_X200] = "lenovo-x200",
1862 static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
1863 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
1864 SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
1865 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1867 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
1868 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200),
1872 static int patch_cxt5051(struct hda_codec *codec)
1874 struct conexant_spec *spec;
1877 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1881 codec->pin_amp_workaround = 1;
1883 codec->patch_ops = conexant_patch_ops;
1884 codec->patch_ops.init = cxt5051_init;
1886 spec->multiout.max_channels = 2;
1887 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1888 spec->multiout.dac_nids = cxt5051_dac_nids;
1889 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1890 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1891 spec->adc_nids = cxt5051_adc_nids;
1892 spec->num_mixers = 1;
1893 spec->mixers[0] = cxt5051_mixers;
1894 spec->num_init_verbs = 1;
1895 spec->init_verbs[0] = cxt5051_init_verbs;
1896 spec->spdif_route = 0;
1897 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1898 spec->channel_mode = cxt5051_modes;
1900 spec->cur_adc_idx = 0;
1902 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1904 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1907 switch (board_config) {
1909 spec->mixers[0] = cxt5051_hp_mixers;
1911 case CXT5051_HP_DV6736:
1912 spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
1913 spec->mixers[0] = cxt5051_hp_dv6736_mixers;
1914 spec->no_auto_mic = 1;
1916 case CXT5051_LENOVO_X200:
1917 spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs;
1924 /* Conexant 5066 specific */
1926 static hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
1927 static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
1928 static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
1929 #define CXT5066_SPDIF_OUT 0x21
1931 /* OLPC's microphone port is DC coupled for use with external sensors,
1932 * therefore we use a 50% mic bias in order to center the input signal with
1933 * the DC input range of the codec. */
1934 #define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
1936 static struct hda_channel_mode cxt5066_modes[1] = {
1940 static void cxt5066_update_speaker(struct hda_codec *codec)
1942 struct conexant_spec *spec = codec->spec;
1943 unsigned int pinctl;
1945 snd_printdd("CXT5066: update speaker, hp_present=%d\n",
1949 pinctl = ((spec->hp_present & 1) && spec->cur_eapd) ? PIN_HP : 0;
1950 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1953 /* Port D (HP/LO) */
1954 pinctl = ((spec->hp_present & 2) && spec->cur_eapd)
1955 ? spec->port_d_mode : 0;
1956 snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1960 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1961 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1964 if (spec->dell_automute) {
1965 /* DELL AIO Port Rule: PortA > PortD > IntSpk */
1966 pinctl = (!(spec->hp_present & 1) && spec->cur_eapd)
1968 snd_hda_codec_write(codec, 0x1c, 0,
1969 AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl);
1973 /* turn on/off EAPD (+ mute HP) as a master switch */
1974 static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1975 struct snd_ctl_elem_value *ucontrol)
1977 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1979 if (!cxt_eapd_put(kcontrol, ucontrol))
1982 cxt5066_update_speaker(codec);
1986 /* toggle input of built-in and mic jack appropriately */
1987 static void cxt5066_automic(struct hda_codec *codec)
1989 struct conexant_spec *spec = codec->spec;
1990 struct hda_verb ext_mic_present[] = {
1991 /* enable external mic, port B */
1992 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, spec->ext_mic_bias},
1994 /* switch to external mic input */
1995 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
1997 /* disable internal mic, port C */
1998 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2001 static struct hda_verb ext_mic_absent[] = {
2002 /* enable internal mic, port C */
2003 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2005 /* switch to internal mic input */
2006 {0x17, AC_VERB_SET_CONNECT_SEL, 1},
2008 /* disable external mic, port B */
2009 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2012 unsigned int present;
2014 present = snd_hda_codec_read(codec, 0x1a, 0,
2015 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2017 snd_printdd("CXT5066: external microphone detected\n");
2018 snd_hda_sequence_write(codec, ext_mic_present);
2020 snd_printdd("CXT5066: external microphone absent\n");
2021 snd_hda_sequence_write(codec, ext_mic_absent);
2025 /* mute internal speaker if HP is plugged */
2026 static void cxt5066_hp_automute(struct hda_codec *codec)
2028 struct conexant_spec *spec = codec->spec;
2029 unsigned int portA, portD;
2032 portA = snd_hda_codec_read(codec, 0x19, 0, AC_VERB_GET_PIN_SENSE, 0)
2033 & AC_PINSENSE_PRESENCE;
2036 portD = (snd_hda_codec_read(codec, 0x1c, 0, AC_VERB_GET_PIN_SENSE, 0)
2037 & AC_PINSENSE_PRESENCE) << 1;
2039 spec->hp_present = !!(portA | portD);
2040 snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2041 portA, portD, spec->hp_present);
2042 cxt5066_update_speaker(codec);
2045 /* unsolicited event for jack sensing */
2046 static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res)
2048 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
2049 switch (res >> 26) {
2050 case CONEXANT_HP_EVENT:
2051 cxt5066_hp_automute(codec);
2053 case CONEXANT_MIC_EVENT:
2054 cxt5066_automic(codec);
2059 static const struct hda_input_mux cxt5066_analog_mic_boost = {
2070 static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
2071 struct snd_ctl_elem_info *uinfo)
2073 return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
2076 static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
2077 struct snd_ctl_elem_value *ucontrol)
2079 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2082 val = snd_hda_codec_read(codec, 0x17, 0,
2083 AC_VERB_GET_AMP_GAIN_MUTE, AC_AMP_GET_OUTPUT);
2085 ucontrol->value.enumerated.item[0] = val & AC_AMP_GAIN;
2089 static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
2090 struct snd_ctl_elem_value *ucontrol)
2092 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2093 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2096 if (!imux->num_items)
2098 idx = ucontrol->value.enumerated.item[0];
2099 if (idx >= imux->num_items)
2100 idx = imux->num_items - 1;
2102 snd_hda_codec_write_cache(codec, 0x17, 0,
2103 AC_VERB_SET_AMP_GAIN_MUTE,
2104 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2105 imux->items[idx].index);
2110 static struct hda_input_mux cxt5066_capture_source = {
2120 static struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
2121 .ops = &snd_hda_bind_vol,
2123 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2124 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2129 static struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
2130 .ops = &snd_hda_bind_sw,
2132 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2133 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2138 static struct snd_kcontrol_new cxt5066_mixer_master[] = {
2139 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
2143 static struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
2145 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2146 .name = "Master Playback Volume",
2147 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
2148 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2149 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
2150 .info = snd_hda_mixer_amp_volume_info,
2151 .get = snd_hda_mixer_amp_volume_get,
2152 .put = snd_hda_mixer_amp_volume_put,
2153 .tlv = { .c = snd_hda_mixer_amp_tlv },
2154 /* offset by 28 volume steps to limit minimum gain to -46dB */
2156 HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
2161 static struct snd_kcontrol_new cxt5066_mixers[] = {
2163 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2164 .name = "Master Playback Switch",
2165 .info = cxt_eapd_info,
2166 .get = cxt_eapd_get,
2167 .put = cxt5066_hp_master_sw_put,
2168 .private_value = 0x1d,
2172 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2173 .name = "Analog Mic Boost Capture Enum",
2174 .info = cxt5066_mic_boost_mux_enum_info,
2175 .get = cxt5066_mic_boost_mux_enum_get,
2176 .put = cxt5066_mic_boost_mux_enum_put,
2179 HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
2180 HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
2184 static struct hda_verb cxt5066_init_verbs[] = {
2185 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2186 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2187 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2188 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2191 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2192 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2195 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2196 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2198 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2199 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2202 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2204 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2205 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2206 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2207 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2208 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2209 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2211 /* no digital microphone support yet */
2212 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2214 /* Audio input selector */
2215 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2217 /* SPDIF route: PCM */
2218 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2219 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2221 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2222 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2225 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2227 /* not handling these yet */
2228 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2229 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2230 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2231 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2232 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2233 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2234 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2235 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2239 static struct hda_verb cxt5066_init_verbs_olpc[] = {
2240 /* Port A: headphones */
2241 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2242 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2244 /* Port B: external microphone */
2245 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, CXT5066_OLPC_EXT_MIC_BIAS},
2247 /* Port C: internal microphone */
2248 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2250 /* Port D: unused */
2251 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2253 /* Port E: unused, but has primary EAPD */
2254 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2255 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2257 /* Port F: unused */
2258 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2260 /* Port G: internal speakers */
2261 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2262 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2265 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2268 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2270 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2271 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2272 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2273 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2274 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2275 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2276 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2277 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2278 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2279 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2280 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2281 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2283 /* Disable digital microphone port */
2284 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2286 /* Audio input selectors */
2287 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2288 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2291 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2292 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2294 /* enable unsolicited events for Port A and B */
2295 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2296 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2300 static struct hda_verb cxt5066_init_verbs_portd_lo[] = {
2301 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2305 /* initialize jack-sensing, too */
2306 static int cxt5066_init(struct hda_codec *codec)
2308 snd_printdd("CXT5066: init\n");
2309 conexant_init(codec);
2310 if (codec->patch_ops.unsol_event) {
2311 cxt5066_hp_automute(codec);
2312 cxt5066_automic(codec);
2318 CXT5066_LAPTOP, /* Laptops w/ EAPD support */
2319 CXT5066_DELL_LAPTOP, /* Dell Laptop */
2320 CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */
2324 static const char *cxt5066_models[CXT5066_MODELS] = {
2325 [CXT5066_LAPTOP] = "laptop",
2326 [CXT5066_DELL_LAPTOP] = "dell-laptop",
2327 [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5",
2330 static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
2331 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
2333 SND_PCI_QUIRK(0x1028, 0x02f5, "Dell",
2334 CXT5066_DELL_LAPTOP),
2335 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
2339 static int patch_cxt5066(struct hda_codec *codec)
2341 struct conexant_spec *spec;
2344 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2349 codec->patch_ops = conexant_patch_ops;
2350 codec->patch_ops.init = cxt5066_init;
2352 spec->dell_automute = 0;
2353 spec->multiout.max_channels = 2;
2354 spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
2355 spec->multiout.dac_nids = cxt5066_dac_nids;
2356 spec->multiout.dig_out_nid = CXT5066_SPDIF_OUT;
2357 spec->num_adc_nids = 1;
2358 spec->adc_nids = cxt5066_adc_nids;
2359 spec->capsrc_nids = cxt5066_capsrc_nids;
2360 spec->input_mux = &cxt5066_capture_source;
2362 spec->port_d_mode = PIN_HP;
2363 spec->ext_mic_bias = PIN_VREF80;
2365 spec->num_init_verbs = 1;
2366 spec->init_verbs[0] = cxt5066_init_verbs;
2367 spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
2368 spec->channel_mode = cxt5066_modes;
2370 spec->cur_adc_idx = 0;
2372 board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
2373 cxt5066_models, cxt5066_cfg_tbl);
2374 switch (board_config) {
2376 case CXT5066_LAPTOP:
2377 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
2378 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2380 case CXT5066_DELL_LAPTOP:
2381 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
2382 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2384 spec->port_d_mode = PIN_OUT;
2385 spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
2386 spec->num_init_verbs++;
2387 spec->dell_automute = 1;
2389 case CXT5066_OLPC_XO_1_5:
2390 codec->patch_ops.unsol_event = cxt5066_unsol_event;
2391 spec->init_verbs[0] = cxt5066_init_verbs_olpc;
2392 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
2393 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
2394 spec->port_d_mode = 0;
2395 spec->ext_mic_bias = CXT5066_OLPC_EXT_MIC_BIAS;
2398 spec->multiout.dig_out_nid = 0;
2400 /* input source automatically selected */
2401 spec->input_mux = NULL;
2411 static struct hda_codec_preset snd_hda_preset_conexant[] = {
2412 { .id = 0x14f15045, .name = "CX20549 (Venice)",
2413 .patch = patch_cxt5045 },
2414 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
2415 .patch = patch_cxt5047 },
2416 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
2417 .patch = patch_cxt5051 },
2418 { .id = 0x14f15066, .name = "CX20582 (Pebble)",
2419 .patch = patch_cxt5066 },
2423 MODULE_ALIAS("snd-hda-codec-id:14f15045");
2424 MODULE_ALIAS("snd-hda-codec-id:14f15047");
2425 MODULE_ALIAS("snd-hda-codec-id:14f15051");
2426 MODULE_ALIAS("snd-hda-codec-id:14f15066");
2428 MODULE_LICENSE("GPL");
2429 MODULE_DESCRIPTION("Conexant HD-audio codec");
2431 static struct hda_codec_preset_list conexant_list = {
2432 .preset = snd_hda_preset_conexant,
2433 .owner = THIS_MODULE,
2436 static int __init patch_conexant_init(void)
2438 return snd_hda_add_codec_preset(&conexant_list);
2441 static void __exit patch_conexant_exit(void)
2443 snd_hda_delete_codec_preset(&conexant_list);
2446 module_init(patch_conexant_init)
2447 module_exit(patch_conexant_exit)