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 "hda_codec.h"
29 #include "hda_local.h"
30 #include "hda_patch.h"
32 #define CXT_PIN_DIR_IN 0x00
33 #define CXT_PIN_DIR_OUT 0x01
34 #define CXT_PIN_DIR_INOUT 0x02
35 #define CXT_PIN_DIR_IN_NOMICBIAS 0x03
36 #define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
38 #define CONEXANT_HP_EVENT 0x37
39 #define CONEXANT_MIC_EVENT 0x38
43 struct conexant_spec {
45 struct snd_kcontrol_new *mixers[5];
48 const struct hda_verb *init_verbs[5]; /* initialization verbs
52 unsigned int num_init_verbs;
55 struct hda_multi_out multiout; /* playback set-up
56 * max_channels, dacs must be set
57 * dig_out_nid and hp_nid are optional
59 unsigned int cur_eapd;
60 unsigned int hp_present;
61 unsigned int need_dac_fix;
64 unsigned int num_adc_nids;
66 hda_nid_t dig_in_nid; /* digital-in NID; optional */
68 unsigned int cur_adc_idx;
70 unsigned int cur_adc_stream_tag;
71 unsigned int cur_adc_format;
74 const struct hda_input_mux *input_mux;
75 hda_nid_t *capsrc_nids;
76 unsigned int cur_mux[3];
79 const struct hda_channel_mode *channel_mode;
83 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
85 struct mutex amp_mutex; /* PCM volume/mute control mutex */
86 unsigned int spdif_route;
88 /* dynamic controls, init_verbs and input_mux */
89 struct auto_pin_cfg autocfg;
90 unsigned int num_kctl_alloc, num_kctl_used;
91 struct snd_kcontrol_new *kctl_alloc;
92 struct hda_input_mux private_imux;
93 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
97 static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
98 struct hda_codec *codec,
99 struct snd_pcm_substream *substream)
101 struct conexant_spec *spec = codec->spec;
102 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
106 static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
107 struct hda_codec *codec,
108 unsigned int stream_tag,
110 struct snd_pcm_substream *substream)
112 struct conexant_spec *spec = codec->spec;
113 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
118 static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
119 struct hda_codec *codec,
120 struct snd_pcm_substream *substream)
122 struct conexant_spec *spec = codec->spec;
123 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
129 static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
130 struct hda_codec *codec,
131 struct snd_pcm_substream *substream)
133 struct conexant_spec *spec = codec->spec;
134 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
137 static int conexant_dig_playback_pcm_close(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_dig_close(codec, &spec->multiout);
145 static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
146 struct hda_codec *codec,
147 unsigned int stream_tag,
149 struct snd_pcm_substream *substream)
151 struct conexant_spec *spec = codec->spec;
152 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
160 static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
161 struct hda_codec *codec,
162 unsigned int stream_tag,
164 struct snd_pcm_substream *substream)
166 struct conexant_spec *spec = codec->spec;
167 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
168 stream_tag, 0, format);
172 static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
173 struct hda_codec *codec,
174 struct snd_pcm_substream *substream)
176 struct conexant_spec *spec = codec->spec;
177 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
183 static struct hda_pcm_stream conexant_pcm_analog_playback = {
187 .nid = 0, /* fill later */
189 .open = conexant_playback_pcm_open,
190 .prepare = conexant_playback_pcm_prepare,
191 .cleanup = conexant_playback_pcm_cleanup
195 static struct hda_pcm_stream conexant_pcm_analog_capture = {
199 .nid = 0, /* fill later */
201 .prepare = conexant_capture_pcm_prepare,
202 .cleanup = conexant_capture_pcm_cleanup
207 static struct hda_pcm_stream conexant_pcm_digital_playback = {
211 .nid = 0, /* fill later */
213 .open = conexant_dig_playback_pcm_open,
214 .close = conexant_dig_playback_pcm_close,
215 .prepare = conexant_dig_playback_pcm_prepare
219 static struct hda_pcm_stream conexant_pcm_digital_capture = {
223 /* NID is set in alc_build_pcms */
226 static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
227 struct hda_codec *codec,
228 unsigned int stream_tag,
230 struct snd_pcm_substream *substream)
232 struct conexant_spec *spec = codec->spec;
233 spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
234 spec->cur_adc_stream_tag = stream_tag;
235 spec->cur_adc_format = format;
236 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
240 static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
241 struct hda_codec *codec,
242 struct snd_pcm_substream *substream)
244 struct conexant_spec *spec = codec->spec;
245 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
250 static struct hda_pcm_stream cx5051_pcm_analog_capture = {
254 .nid = 0, /* fill later */
256 .prepare = cx5051_capture_pcm_prepare,
257 .cleanup = cx5051_capture_pcm_cleanup
261 static int conexant_build_pcms(struct hda_codec *codec)
263 struct conexant_spec *spec = codec->spec;
264 struct hda_pcm *info = spec->pcm_rec;
267 codec->pcm_info = info;
269 info->name = "CONEXANT Analog";
270 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
271 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
272 spec->multiout.max_channels;
273 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
274 spec->multiout.dac_nids[0];
275 if (codec->vendor_id == 0x14f15051)
276 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
277 cx5051_pcm_analog_capture;
279 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
280 conexant_pcm_analog_capture;
281 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
282 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
284 if (spec->multiout.dig_out_nid) {
287 info->name = "Conexant Digital";
288 info->pcm_type = HDA_PCM_TYPE_SPDIF;
289 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
290 conexant_pcm_digital_playback;
291 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
292 spec->multiout.dig_out_nid;
293 if (spec->dig_in_nid) {
294 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
295 conexant_pcm_digital_capture;
296 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
304 static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
305 struct snd_ctl_elem_info *uinfo)
307 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
308 struct conexant_spec *spec = codec->spec;
310 return snd_hda_input_mux_info(spec->input_mux, uinfo);
313 static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
314 struct snd_ctl_elem_value *ucontrol)
316 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
317 struct conexant_spec *spec = codec->spec;
318 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
320 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
324 static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
325 struct snd_ctl_elem_value *ucontrol)
327 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
328 struct conexant_spec *spec = codec->spec;
329 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
331 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
332 spec->capsrc_nids[adc_idx],
333 &spec->cur_mux[adc_idx]);
336 static int conexant_init(struct hda_codec *codec)
338 struct conexant_spec *spec = codec->spec;
341 for (i = 0; i < spec->num_init_verbs; i++)
342 snd_hda_sequence_write(codec, spec->init_verbs[i]);
346 static void conexant_free(struct hda_codec *codec)
348 struct conexant_spec *spec = codec->spec;
351 if (spec->kctl_alloc) {
352 for (i = 0; i < spec->num_kctl_used; i++)
353 kfree(spec->kctl_alloc[i].name);
354 kfree(spec->kctl_alloc);
360 static int conexant_build_controls(struct hda_codec *codec)
362 struct conexant_spec *spec = codec->spec;
366 for (i = 0; i < spec->num_mixers; i++) {
367 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
371 if (spec->multiout.dig_out_nid) {
372 err = snd_hda_create_spdif_out_ctls(codec,
373 spec->multiout.dig_out_nid);
376 err = snd_hda_create_spdif_share_sw(codec,
380 spec->multiout.share_spdif = 1;
382 if (spec->dig_in_nid) {
383 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
390 static struct hda_codec_ops conexant_patch_ops = {
391 .build_controls = conexant_build_controls,
392 .build_pcms = conexant_build_pcms,
393 .init = conexant_init,
394 .free = conexant_free,
399 * the private value = nid | (invert << 8)
402 #define cxt_eapd_info snd_ctl_boolean_mono_info
404 static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
405 struct snd_ctl_elem_value *ucontrol)
407 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
408 struct conexant_spec *spec = codec->spec;
409 int invert = (kcontrol->private_value >> 8) & 1;
411 ucontrol->value.integer.value[0] = !spec->cur_eapd;
413 ucontrol->value.integer.value[0] = spec->cur_eapd;
418 static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
419 struct snd_ctl_elem_value *ucontrol)
421 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
422 struct conexant_spec *spec = codec->spec;
423 int invert = (kcontrol->private_value >> 8) & 1;
424 hda_nid_t nid = kcontrol->private_value & 0xff;
427 eapd = !!ucontrol->value.integer.value[0];
430 if (eapd == spec->cur_eapd)
433 spec->cur_eapd = eapd;
434 snd_hda_codec_write_cache(codec, nid,
435 0, AC_VERB_SET_EAPD_BTLENABLE,
440 /* controls for test mode */
441 #ifdef CONFIG_SND_DEBUG
443 #define CXT_EAPD_SWITCH(xname, nid, mask) \
444 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
445 .info = cxt_eapd_info, \
446 .get = cxt_eapd_get, \
447 .put = cxt_eapd_put, \
448 .private_value = nid | (mask<<16) }
452 static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
453 struct snd_ctl_elem_info *uinfo)
455 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
456 struct conexant_spec *spec = codec->spec;
457 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
458 spec->num_channel_mode);
461 static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
462 struct snd_ctl_elem_value *ucontrol)
464 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
465 struct conexant_spec *spec = codec->spec;
466 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
467 spec->num_channel_mode,
468 spec->multiout.max_channels);
471 static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
472 struct snd_ctl_elem_value *ucontrol)
474 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
475 struct conexant_spec *spec = codec->spec;
476 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
477 spec->num_channel_mode,
478 &spec->multiout.max_channels);
479 if (err >= 0 && spec->need_dac_fix)
480 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
484 #define CXT_PIN_MODE(xname, nid, dir) \
485 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
486 .info = conexant_ch_mode_info, \
487 .get = conexant_ch_mode_get, \
488 .put = conexant_ch_mode_put, \
489 .private_value = nid | (dir<<16) }
491 #endif /* CONFIG_SND_DEBUG */
493 /* Conexant 5045 specific */
495 static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
496 static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
497 static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
498 #define CXT5045_SPDIF_OUT 0x18
500 static struct hda_channel_mode cxt5045_modes[1] = {
504 static struct hda_input_mux cxt5045_capture_source = {
512 static struct hda_input_mux cxt5045_capture_source_benq = {
521 static struct hda_input_mux cxt5045_capture_source_hp530 = {
529 /* turn on/off EAPD (+ mute HP) as a master switch */
530 static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
531 struct snd_ctl_elem_value *ucontrol)
533 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
534 struct conexant_spec *spec = codec->spec;
537 if (!cxt_eapd_put(kcontrol, ucontrol))
540 /* toggle internal speakers mute depending of presence of
543 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
544 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
547 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
548 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
553 /* bind volumes of both NID 0x10 and 0x11 */
554 static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
555 .ops = &snd_hda_bind_vol,
557 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
558 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
563 /* toggle input of built-in and mic jack appropriately */
564 static void cxt5045_hp_automic(struct hda_codec *codec)
566 static struct hda_verb mic_jack_on[] = {
567 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
568 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
571 static struct hda_verb mic_jack_off[] = {
572 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
573 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
576 unsigned int present;
578 present = snd_hda_codec_read(codec, 0x12, 0,
579 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
581 snd_hda_sequence_write(codec, mic_jack_on);
583 snd_hda_sequence_write(codec, mic_jack_off);
587 /* mute internal speaker if HP is plugged */
588 static void cxt5045_hp_automute(struct hda_codec *codec)
590 struct conexant_spec *spec = codec->spec;
593 spec->hp_present = snd_hda_codec_read(codec, 0x11, 0,
594 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
596 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
597 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
601 /* unsolicited event for HP jack sensing */
602 static void cxt5045_hp_unsol_event(struct hda_codec *codec,
607 case CONEXANT_HP_EVENT:
608 cxt5045_hp_automute(codec);
610 case CONEXANT_MIC_EVENT:
611 cxt5045_hp_automic(codec);
617 static struct snd_kcontrol_new cxt5045_mixers[] = {
619 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
620 .name = "Capture Source",
621 .info = conexant_mux_enum_info,
622 .get = conexant_mux_enum_get,
623 .put = conexant_mux_enum_put
625 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
626 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
627 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
628 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
629 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
630 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
631 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
632 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
633 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
634 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
635 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
637 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
638 .name = "Master Playback Switch",
639 .info = cxt_eapd_info,
641 .put = cxt5045_hp_master_sw_put,
642 .private_value = 0x10,
648 static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
649 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
650 HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
651 HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
652 HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
657 static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
659 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
660 .name = "Capture Source",
661 .info = conexant_mux_enum_info,
662 .get = conexant_mux_enum_get,
663 .put = conexant_mux_enum_put
665 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
666 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
667 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
668 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
669 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
670 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
671 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
672 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
673 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
674 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
675 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
677 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
678 .name = "Master Playback Switch",
679 .info = cxt_eapd_info,
681 .put = cxt5045_hp_master_sw_put,
682 .private_value = 0x10,
688 static struct hda_verb cxt5045_init_verbs[] = {
690 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
691 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
693 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
694 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
695 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
696 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
697 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
698 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
699 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
700 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
701 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
702 /* Record selector: Int mic */
703 {0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
704 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
705 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
706 /* SPDIF route: PCM */
707 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
708 { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
710 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
714 static struct hda_verb cxt5045_benq_init_verbs[] = {
716 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
717 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
718 /* Line In,HP, Amp */
719 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
720 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
721 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
722 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
723 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
724 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
725 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
726 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
727 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
728 /* Record selector: Int mic */
729 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
730 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
731 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
732 /* SPDIF route: PCM */
733 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
734 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
736 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
740 static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
741 /* pin sensing on HP jack */
742 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
746 static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
747 /* pin sensing on HP jack */
748 {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
752 #ifdef CONFIG_SND_DEBUG
753 /* Test configuration for debugging, modelled after the ALC260 test
756 static struct hda_input_mux cxt5045_test_capture_source = {
761 { "LINE1 pin", 0x2 },
762 { "HP-OUT pin", 0x3 },
767 static struct snd_kcontrol_new cxt5045_test_mixer[] = {
769 /* Output controls */
770 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
771 HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
772 HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
773 HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
774 HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
775 HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
777 /* Modes for retasking pin widgets */
778 CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
779 CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
781 /* EAPD Switch Control */
782 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
784 /* Loopback mixer controls */
786 HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
787 HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
788 HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
789 HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
790 HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
791 HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
792 HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
793 HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
794 HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
795 HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
797 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
798 .name = "Input Source",
799 .info = conexant_mux_enum_info,
800 .get = conexant_mux_enum_get,
801 .put = conexant_mux_enum_put,
803 /* Audio input controls */
804 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
805 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
806 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
807 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
808 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
809 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
810 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
811 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
812 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
813 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
817 static struct hda_verb cxt5045_test_init_verbs[] = {
818 /* Set connections */
819 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
820 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
821 { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
822 /* Enable retasking pins as output, initially without power amp */
823 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
824 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
826 /* Disable digital (SPDIF) pins initially, but users can enable
827 * them via a mixer switch. In the case of SPDIF-out, this initverb
828 * payload also sets the generation to 0, output to be in "consumer"
829 * PCM format, copyright asserted, no pre-emphasis and no validity
832 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
833 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
835 /* Start with output sum widgets muted and their output gains at min */
836 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
837 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
839 /* Unmute retasking pin widget output buffers since the default
840 * state appears to be output. As the pin mode is changed by the
841 * user the pin mode control will take care of enabling the pin's
842 * input/output buffers as needed.
844 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
845 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
847 /* Mute capture amp left and right */
848 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
850 /* Set ADC connection select to match default mixer setting (mic1
853 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
854 {0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
856 /* Mute all inputs to mixer widget (even unconnected ones) */
857 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
858 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
859 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
860 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
861 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
868 /* initialize jack-sensing, too */
869 static int cxt5045_init(struct hda_codec *codec)
871 conexant_init(codec);
872 cxt5045_hp_automute(codec);
878 CXT5045_LAPTOP_HPSENSE,
879 CXT5045_LAPTOP_MICSENSE,
880 CXT5045_LAPTOP_HPMICSENSE,
882 CXT5045_LAPTOP_HP530,
883 #ifdef CONFIG_SND_DEBUG
889 static const char *cxt5045_models[CXT5045_MODELS] = {
890 [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense",
891 [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense",
892 [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense",
893 [CXT5045_BENQ] = "benq",
894 [CXT5045_LAPTOP_HP530] = "laptop-hp530",
895 #ifdef CONFIG_SND_DEBUG
896 [CXT5045_TEST] = "test",
900 static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
901 SND_PCI_QUIRK(0x103c, 0x30a5, "HP", CXT5045_LAPTOP_HPSENSE),
902 SND_PCI_QUIRK(0x103c, 0x30b2, "HP DV Series", CXT5045_LAPTOP_HPSENSE),
903 SND_PCI_QUIRK(0x103c, 0x30b5, "HP DV2120", CXT5045_LAPTOP_HPSENSE),
904 SND_PCI_QUIRK(0x103c, 0x30b7, "HP DV6000Z", CXT5045_LAPTOP_HPSENSE),
905 SND_PCI_QUIRK(0x103c, 0x30bb, "HP DV8000", CXT5045_LAPTOP_HPSENSE),
906 SND_PCI_QUIRK(0x103c, 0x30cd, "HP DV Series", CXT5045_LAPTOP_HPSENSE),
907 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV9533EG", CXT5045_LAPTOP_HPSENSE),
908 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
909 SND_PCI_QUIRK(0x103c, 0x30d9, "HP Spartan", CXT5045_LAPTOP_HPSENSE),
910 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
911 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
912 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
913 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505", CXT5045_LAPTOP_HPSENSE),
914 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
915 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
916 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
917 SND_PCI_QUIRK(0x1631, 0xc106, "Packard Bell", CXT5045_LAPTOP_HPMICSENSE),
918 SND_PCI_QUIRK(0x1631, 0xc107, "Packard Bell", CXT5045_LAPTOP_HPMICSENSE),
919 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
923 static int patch_cxt5045(struct hda_codec *codec)
925 struct conexant_spec *spec;
928 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
931 mutex_init(&spec->amp_mutex);
934 spec->multiout.max_channels = 2;
935 spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
936 spec->multiout.dac_nids = cxt5045_dac_nids;
937 spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
938 spec->num_adc_nids = 1;
939 spec->adc_nids = cxt5045_adc_nids;
940 spec->capsrc_nids = cxt5045_capsrc_nids;
941 spec->input_mux = &cxt5045_capture_source;
942 spec->num_mixers = 1;
943 spec->mixers[0] = cxt5045_mixers;
944 spec->num_init_verbs = 1;
945 spec->init_verbs[0] = cxt5045_init_verbs;
946 spec->spdif_route = 0;
947 spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes),
948 spec->channel_mode = cxt5045_modes,
951 codec->patch_ops = conexant_patch_ops;
953 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
956 switch (board_config) {
957 case CXT5045_LAPTOP_HPSENSE:
958 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
959 spec->input_mux = &cxt5045_capture_source;
960 spec->num_init_verbs = 2;
961 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
962 spec->mixers[0] = cxt5045_mixers;
963 codec->patch_ops.init = cxt5045_init;
965 case CXT5045_LAPTOP_MICSENSE:
966 spec->input_mux = &cxt5045_capture_source;
967 spec->num_init_verbs = 2;
968 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
969 spec->mixers[0] = cxt5045_mixers;
970 codec->patch_ops.init = cxt5045_init;
973 case CXT5045_LAPTOP_HPMICSENSE:
974 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
975 spec->input_mux = &cxt5045_capture_source;
976 spec->num_init_verbs = 3;
977 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
978 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
979 spec->mixers[0] = cxt5045_mixers;
980 codec->patch_ops.init = cxt5045_init;
983 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
984 spec->input_mux = &cxt5045_capture_source_benq;
985 spec->num_init_verbs = 1;
986 spec->init_verbs[0] = cxt5045_benq_init_verbs;
987 spec->mixers[0] = cxt5045_mixers;
988 spec->mixers[1] = cxt5045_benq_mixers;
989 spec->num_mixers = 2;
990 codec->patch_ops.init = cxt5045_init;
992 case CXT5045_LAPTOP_HP530:
993 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
994 spec->input_mux = &cxt5045_capture_source_hp530;
995 spec->num_init_verbs = 2;
996 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
997 spec->mixers[0] = cxt5045_mixers_hp530;
998 codec->patch_ops.init = cxt5045_init;
1000 #ifdef CONFIG_SND_DEBUG
1002 spec->input_mux = &cxt5045_test_capture_source;
1003 spec->mixers[0] = cxt5045_test_mixer;
1004 spec->init_verbs[0] = cxt5045_test_init_verbs;
1011 * Fix max PCM level to 0 dB
1012 * (originall it has 0x2b steps with 0dB offset 0x14)
1014 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1015 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1016 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1017 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1018 (1 << AC_AMPCAP_MUTE_SHIFT));
1024 /* Conexant 5047 specific */
1025 #define CXT5047_SPDIF_OUT 0x11
1027 static hda_nid_t cxt5047_dac_nids[2] = { 0x10, 0x1c };
1028 static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1029 static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
1031 static struct hda_channel_mode cxt5047_modes[1] = {
1035 static struct hda_input_mux cxt5047_capture_source = {
1042 static struct hda_input_mux cxt5047_hp_capture_source = {
1049 static struct hda_input_mux cxt5047_toshiba_capture_source = {
1057 /* turn on/off EAPD (+ mute HP) as a master switch */
1058 static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1059 struct snd_ctl_elem_value *ucontrol)
1061 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1062 struct conexant_spec *spec = codec->spec;
1065 if (!cxt_eapd_put(kcontrol, ucontrol))
1068 /* toggle internal speakers mute depending of presence of
1069 * the headphone jack
1071 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
1072 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
1073 HDA_AMP_MUTE, bits);
1074 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1075 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1076 HDA_AMP_MUTE, bits);
1080 /* bind volumes of both NID 0x13 (Headphones) and 0x1d (Speakers) */
1081 static struct hda_bind_ctls cxt5047_bind_master_vol = {
1082 .ops = &snd_hda_bind_vol,
1084 HDA_COMPOSE_AMP_VAL(0x13, 3, 0, HDA_OUTPUT),
1085 HDA_COMPOSE_AMP_VAL(0x1d, 3, 0, HDA_OUTPUT),
1090 /* mute internal speaker if HP is plugged */
1091 static void cxt5047_hp_automute(struct hda_codec *codec)
1093 struct conexant_spec *spec = codec->spec;
1096 spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
1097 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1099 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
1100 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
1101 HDA_AMP_MUTE, bits);
1102 /* Mute/Unmute PCM 2 for good measure - some systems need this */
1103 snd_hda_codec_amp_stereo(codec, 0x1c, HDA_OUTPUT, 0,
1104 HDA_AMP_MUTE, bits);
1107 /* mute internal speaker if HP is plugged */
1108 static void cxt5047_hp2_automute(struct hda_codec *codec)
1110 struct conexant_spec *spec = codec->spec;
1113 spec->hp_present = snd_hda_codec_read(codec, 0x13, 0,
1114 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1116 bits = spec->hp_present ? HDA_AMP_MUTE : 0;
1117 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0,
1118 HDA_AMP_MUTE, bits);
1119 /* Mute/Unmute PCM 2 for good measure - some systems need this */
1120 snd_hda_codec_amp_stereo(codec, 0x1c, HDA_OUTPUT, 0,
1121 HDA_AMP_MUTE, bits);
1124 /* toggle input of built-in and mic jack appropriately */
1125 static void cxt5047_hp_automic(struct hda_codec *codec)
1127 static struct hda_verb mic_jack_on[] = {
1128 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1129 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1132 static struct hda_verb mic_jack_off[] = {
1133 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1134 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1137 unsigned int present;
1139 present = snd_hda_codec_read(codec, 0x15, 0,
1140 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1142 snd_hda_sequence_write(codec, mic_jack_on);
1144 snd_hda_sequence_write(codec, mic_jack_off);
1147 /* unsolicited event for HP jack sensing */
1148 static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1151 switch (res >> 26) {
1152 case CONEXANT_HP_EVENT:
1153 cxt5047_hp_automute(codec);
1155 case CONEXANT_MIC_EVENT:
1156 cxt5047_hp_automic(codec);
1161 /* unsolicited event for HP jack sensing - non-EAPD systems */
1162 static void cxt5047_hp2_unsol_event(struct hda_codec *codec,
1167 case CONEXANT_HP_EVENT:
1168 cxt5047_hp2_automute(codec);
1170 case CONEXANT_MIC_EVENT:
1171 cxt5047_hp_automic(codec);
1176 static struct snd_kcontrol_new cxt5047_mixers[] = {
1177 HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
1178 HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19, 0x02, HDA_INPUT),
1179 HDA_CODEC_VOLUME("Mic Gain Volume", 0x1a, 0x0, HDA_OUTPUT),
1180 HDA_CODEC_MUTE("Mic Gain Switch", 0x1a, 0x0, HDA_OUTPUT),
1181 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1182 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1183 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1184 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1185 HDA_CODEC_VOLUME("PCM-2 Volume", 0x1c, 0x00, HDA_OUTPUT),
1186 HDA_CODEC_MUTE("PCM-2 Switch", 0x1c, 0x00, HDA_OUTPUT),
1187 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x00, HDA_OUTPUT),
1188 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x00, HDA_OUTPUT),
1189 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1190 HDA_CODEC_MUTE("Headphone Playback Switch", 0x13, 0x00, HDA_OUTPUT),
1195 static struct snd_kcontrol_new cxt5047_toshiba_mixers[] = {
1197 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1198 .name = "Capture Source",
1199 .info = conexant_mux_enum_info,
1200 .get = conexant_mux_enum_get,
1201 .put = conexant_mux_enum_put
1203 HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
1204 HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19, 0x02, HDA_INPUT),
1205 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1206 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1207 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1208 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1209 HDA_BIND_VOL("Master Playback Volume", &cxt5047_bind_master_vol),
1211 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1212 .name = "Master Playback Switch",
1213 .info = cxt_eapd_info,
1214 .get = cxt_eapd_get,
1215 .put = cxt5047_hp_master_sw_put,
1216 .private_value = 0x13,
1222 static struct snd_kcontrol_new cxt5047_hp_mixers[] = {
1224 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1225 .name = "Capture Source",
1226 .info = conexant_mux_enum_info,
1227 .get = conexant_mux_enum_get,
1228 .put = conexant_mux_enum_put
1230 HDA_CODEC_VOLUME("Mic Bypass Capture Volume", 0x19, 0x02, HDA_INPUT),
1231 HDA_CODEC_MUTE("Mic Bypass Capture Switch", 0x19,0x02,HDA_INPUT),
1232 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1233 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1234 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1235 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1236 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1238 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1239 .name = "Master Playback Switch",
1240 .info = cxt_eapd_info,
1241 .get = cxt_eapd_get,
1242 .put = cxt5047_hp_master_sw_put,
1243 .private_value = 0x13,
1248 static struct hda_verb cxt5047_init_verbs[] = {
1249 /* Line in, Mic, Built-in Mic */
1250 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1251 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1252 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1254 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1255 {0x13, AC_VERB_SET_CONNECT_SEL,0x1},
1256 {0x1d, AC_VERB_SET_CONNECT_SEL,0x0},
1257 /* Record selector: Mic */
1258 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1259 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1260 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1261 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
1262 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1263 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1264 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1265 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
1266 /* SPDIF route: PCM */
1267 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
1268 /* Enable unsolicited events */
1269 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1270 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
1274 /* configuration for Toshiba Laptops */
1275 static struct hda_verb cxt5047_toshiba_init_verbs[] = {
1276 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0 }, /* default on */
1277 /* pin sensing on HP and Mic jacks */
1278 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1279 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
1280 /* Speaker routing */
1281 {0x1d, AC_VERB_SET_CONNECT_SEL,0x1},
1285 /* configuration for HP Laptops */
1286 static struct hda_verb cxt5047_hp_init_verbs[] = {
1287 /* pin sensing on HP jack */
1288 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1289 /* 0x13 is actually shared by both HP and speaker;
1290 * setting the connection to 0 (=0x19) makes the master volume control
1291 * working mysteriouslly...
1293 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1294 /* Record selector: Ext Mic */
1295 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1296 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1297 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1298 /* Speaker routing */
1299 {0x1d, AC_VERB_SET_CONNECT_SEL,0x1},
1303 /* Test configuration for debugging, modelled after the ALC260 test
1306 #ifdef CONFIG_SND_DEBUG
1307 static struct hda_input_mux cxt5047_test_capture_source = {
1310 { "LINE1 pin", 0x0 },
1311 { "MIC1 pin", 0x1 },
1312 { "MIC2 pin", 0x2 },
1317 static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1319 /* Output only controls */
1320 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1321 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1322 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1323 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
1324 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1325 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1326 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1327 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1328 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1329 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1330 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1331 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
1333 /* Modes for retasking pin widgets */
1334 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1335 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1337 /* EAPD Switch Control */
1338 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1340 /* Loopback mixer controls */
1341 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1342 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1343 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1344 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1345 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1346 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1347 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1348 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
1350 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1351 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1352 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1353 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1354 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1355 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1356 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1357 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
1359 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1360 .name = "Input Source",
1361 .info = conexant_mux_enum_info,
1362 .get = conexant_mux_enum_get,
1363 .put = conexant_mux_enum_put,
1365 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
1366 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
1367 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
1368 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
1369 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
1370 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
1371 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
1372 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
1373 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
1374 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
1379 static struct hda_verb cxt5047_test_init_verbs[] = {
1380 /* Enable retasking pins as output, initially without power amp */
1381 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1382 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1383 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1385 /* Disable digital (SPDIF) pins initially, but users can enable
1386 * them via a mixer switch. In the case of SPDIF-out, this initverb
1387 * payload also sets the generation to 0, output to be in "consumer"
1388 * PCM format, copyright asserted, no pre-emphasis and no validity
1391 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1393 /* Ensure mic1, mic2, line1 pin widgets take input from the
1394 * OUT1 sum bus when acting as an output.
1396 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1397 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1399 /* Start with output sum widgets muted and their output gains at min */
1400 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1401 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1403 /* Unmute retasking pin widget output buffers since the default
1404 * state appears to be output. As the pin mode is changed by the
1405 * user the pin mode control will take care of enabling the pin's
1406 * input/output buffers as needed.
1408 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1409 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1410 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1412 /* Mute capture amp left and right */
1413 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1415 /* Set ADC connection select to match default mixer setting (mic1
1418 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1420 /* Mute all inputs to mixer widget (even unconnected ones) */
1421 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1422 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1423 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1424 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1425 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1426 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1427 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1428 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1435 /* initialize jack-sensing, too */
1436 static int cxt5047_hp_init(struct hda_codec *codec)
1438 conexant_init(codec);
1439 cxt5047_hp_automute(codec);
1445 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1446 CXT5047_LAPTOP_HP, /* Some HP laptops */
1447 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
1448 #ifdef CONFIG_SND_DEBUG
1454 static const char *cxt5047_models[CXT5047_MODELS] = {
1455 [CXT5047_LAPTOP] = "laptop",
1456 [CXT5047_LAPTOP_HP] = "laptop-hp",
1457 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
1458 #ifdef CONFIG_SND_DEBUG
1459 [CXT5047_TEST] = "test",
1463 static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
1464 SND_PCI_QUIRK(0x103c, 0x30a0, "HP DV1000", CXT5047_LAPTOP),
1465 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
1466 SND_PCI_QUIRK(0x103c, 0x30b2, "HP DV2000T/DV3000T", CXT5047_LAPTOP),
1467 SND_PCI_QUIRK(0x103c, 0x30b5, "HP DV2000Z", CXT5047_LAPTOP),
1468 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
1472 static int patch_cxt5047(struct hda_codec *codec)
1474 struct conexant_spec *spec;
1477 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1480 mutex_init(&spec->amp_mutex);
1483 spec->multiout.max_channels = 2;
1484 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1485 spec->multiout.dac_nids = cxt5047_dac_nids;
1486 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1487 spec->num_adc_nids = 1;
1488 spec->adc_nids = cxt5047_adc_nids;
1489 spec->capsrc_nids = cxt5047_capsrc_nids;
1490 spec->input_mux = &cxt5047_capture_source;
1491 spec->num_mixers = 1;
1492 spec->mixers[0] = cxt5047_mixers;
1493 spec->num_init_verbs = 1;
1494 spec->init_verbs[0] = cxt5047_init_verbs;
1495 spec->spdif_route = 0;
1496 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1497 spec->channel_mode = cxt5047_modes,
1499 codec->patch_ops = conexant_patch_ops;
1501 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1504 switch (board_config) {
1505 case CXT5047_LAPTOP:
1506 codec->patch_ops.unsol_event = cxt5047_hp2_unsol_event;
1508 case CXT5047_LAPTOP_HP:
1509 spec->input_mux = &cxt5047_hp_capture_source;
1510 spec->num_init_verbs = 2;
1511 spec->init_verbs[1] = cxt5047_hp_init_verbs;
1512 spec->mixers[0] = cxt5047_hp_mixers;
1513 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1514 codec->patch_ops.init = cxt5047_hp_init;
1516 case CXT5047_LAPTOP_EAPD:
1517 spec->input_mux = &cxt5047_toshiba_capture_source;
1518 spec->num_init_verbs = 2;
1519 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
1520 spec->mixers[0] = cxt5047_toshiba_mixers;
1521 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1523 #ifdef CONFIG_SND_DEBUG
1525 spec->input_mux = &cxt5047_test_capture_source;
1526 spec->mixers[0] = cxt5047_test_mixer;
1527 spec->init_verbs[0] = cxt5047_test_init_verbs;
1528 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1534 /* Conexant 5051 specific */
1535 static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1536 static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
1537 #define CXT5051_SPDIF_OUT 0x1C
1538 #define CXT5051_PORTB_EVENT 0x38
1539 #define CXT5051_PORTC_EVENT 0x39
1541 static struct hda_channel_mode cxt5051_modes[1] = {
1545 static void cxt5051_update_speaker(struct hda_codec *codec)
1547 struct conexant_spec *spec = codec->spec;
1548 unsigned int pinctl;
1549 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1550 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1554 /* turn on/off EAPD (+ mute HP) as a master switch */
1555 static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1556 struct snd_ctl_elem_value *ucontrol)
1558 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1560 if (!cxt_eapd_put(kcontrol, ucontrol))
1562 cxt5051_update_speaker(codec);
1566 /* toggle input of built-in and mic jack appropriately */
1567 static void cxt5051_portb_automic(struct hda_codec *codec)
1569 unsigned int present;
1571 present = snd_hda_codec_read(codec, 0x17, 0,
1572 AC_VERB_GET_PIN_SENSE, 0) &
1573 AC_PINSENSE_PRESENCE;
1574 snd_hda_codec_write(codec, 0x14, 0,
1575 AC_VERB_SET_CONNECT_SEL,
1576 present ? 0x01 : 0x00);
1579 /* switch the current ADC according to the jack state */
1580 static void cxt5051_portc_automic(struct hda_codec *codec)
1582 struct conexant_spec *spec = codec->spec;
1583 unsigned int present;
1586 present = snd_hda_codec_read(codec, 0x18, 0,
1587 AC_VERB_GET_PIN_SENSE, 0) &
1588 AC_PINSENSE_PRESENCE;
1590 spec->cur_adc_idx = 1;
1592 spec->cur_adc_idx = 0;
1593 new_adc = spec->adc_nids[spec->cur_adc_idx];
1594 if (spec->cur_adc && spec->cur_adc != new_adc) {
1595 /* stream is running, let's swap the current ADC */
1596 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
1597 spec->cur_adc = new_adc;
1598 snd_hda_codec_setup_stream(codec, new_adc,
1599 spec->cur_adc_stream_tag, 0,
1600 spec->cur_adc_format);
1604 /* mute internal speaker if HP is plugged */
1605 static void cxt5051_hp_automute(struct hda_codec *codec)
1607 struct conexant_spec *spec = codec->spec;
1609 spec->hp_present = snd_hda_codec_read(codec, 0x16, 0,
1610 AC_VERB_GET_PIN_SENSE, 0) &
1611 AC_PINSENSE_PRESENCE;
1612 cxt5051_update_speaker(codec);
1615 /* unsolicited event for HP jack sensing */
1616 static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1619 switch (res >> 26) {
1620 case CONEXANT_HP_EVENT:
1621 cxt5051_hp_automute(codec);
1623 case CXT5051_PORTB_EVENT:
1624 cxt5051_portb_automic(codec);
1626 case CXT5051_PORTC_EVENT:
1627 cxt5051_portc_automic(codec);
1632 static struct snd_kcontrol_new cxt5051_mixers[] = {
1633 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1634 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1635 HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1636 HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1637 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1638 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1639 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1641 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1642 .name = "Master Playback Switch",
1643 .info = cxt_eapd_info,
1644 .get = cxt_eapd_get,
1645 .put = cxt5051_hp_master_sw_put,
1646 .private_value = 0x1a,
1652 static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1653 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1654 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1655 HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1656 HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1657 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1659 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1660 .name = "Master Playback Switch",
1661 .info = cxt_eapd_info,
1662 .get = cxt_eapd_get,
1663 .put = cxt5051_hp_master_sw_put,
1664 .private_value = 0x1a,
1670 static struct hda_verb cxt5051_init_verbs[] = {
1672 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1673 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1674 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1675 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1676 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1677 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1679 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1680 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1682 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1683 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1685 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1686 /* Record selector: Int mic */
1687 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1688 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1689 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1690 /* SPDIF route: PCM */
1691 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1693 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1694 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1695 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTB_EVENT},
1696 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CXT5051_PORTC_EVENT},
1700 /* initialize jack-sensing, too */
1701 static int cxt5051_init(struct hda_codec *codec)
1703 conexant_init(codec);
1704 if (codec->patch_ops.unsol_event) {
1705 cxt5051_hp_automute(codec);
1706 cxt5051_portb_automic(codec);
1707 cxt5051_portc_automic(codec);
1714 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1715 CXT5051_HP, /* no docking */
1719 static const char *cxt5051_models[CXT5051_MODELS] = {
1720 [CXT5051_LAPTOP] = "laptop",
1721 [CXT5051_HP] = "hp",
1724 static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
1725 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
1727 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
1731 static int patch_cxt5051(struct hda_codec *codec)
1733 struct conexant_spec *spec;
1736 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1739 mutex_init(&spec->amp_mutex);
1742 codec->patch_ops = conexant_patch_ops;
1743 codec->patch_ops.init = cxt5051_init;
1745 spec->multiout.max_channels = 2;
1746 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
1747 spec->multiout.dac_nids = cxt5051_dac_nids;
1748 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
1749 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
1750 spec->adc_nids = cxt5051_adc_nids;
1751 spec->num_mixers = 1;
1752 spec->mixers[0] = cxt5051_mixers;
1753 spec->num_init_verbs = 1;
1754 spec->init_verbs[0] = cxt5051_init_verbs;
1755 spec->spdif_route = 0;
1756 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
1757 spec->channel_mode = cxt5051_modes;
1759 spec->cur_adc_idx = 0;
1761 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
1764 switch (board_config) {
1766 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1767 spec->mixers[0] = cxt5051_hp_mixers;
1770 case CXT5051_LAPTOP:
1771 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
1782 struct hda_codec_preset snd_hda_preset_conexant[] = {
1783 { .id = 0x14f15045, .name = "CX20549 (Venice)",
1784 .patch = patch_cxt5045 },
1785 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
1786 .patch = patch_cxt5047 },
1787 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
1788 .patch = patch_cxt5051 },