ALSA: hda - Shut up pins at power-saving mode with Conexnat codecs
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / sound / pci / hda / patch_conexant.c
blobd6341f3fef01bfa0da87979b6c1accc44a04b4a6
1 /*
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"
32 #include "hda_beep.h"
34 #define CXT_PIN_DIR_IN 0x00
35 #define CXT_PIN_DIR_OUT 0x01
36 #define CXT_PIN_DIR_INOUT 0x02
37 #define CXT_PIN_DIR_IN_NOMICBIAS 0x03
38 #define CXT_PIN_DIR_INOUT_NOMICBIAS 0x04
40 #define CONEXANT_HP_EVENT 0x37
41 #define CONEXANT_MIC_EVENT 0x38
43 /* Conexant 5051 specific */
45 #define CXT5051_SPDIF_OUT 0x12
46 #define CXT5051_PORTB_EVENT 0x38
47 #define CXT5051_PORTC_EVENT 0x39
49 #define AUTO_MIC_PORTB (1 << 1)
50 #define AUTO_MIC_PORTC (1 << 2)
52 struct conexant_jack {
54 hda_nid_t nid;
55 int type;
56 struct snd_jack *jack;
60 struct conexant_spec {
62 struct snd_kcontrol_new *mixers[5];
63 int num_mixers;
64 hda_nid_t vmaster_nid;
66 const struct hda_verb *init_verbs[5]; /* initialization verbs
67 * don't forget NULL
68 * termination!
70 unsigned int num_init_verbs;
72 /* playback */
73 struct hda_multi_out multiout; /* playback set-up
74 * max_channels, dacs must be set
75 * dig_out_nid and hp_nid are optional
77 unsigned int cur_eapd;
78 unsigned int hp_present;
79 unsigned int auto_mic;
80 unsigned int need_dac_fix;
82 /* capture */
83 unsigned int num_adc_nids;
84 hda_nid_t *adc_nids;
85 hda_nid_t dig_in_nid; /* digital-in NID; optional */
87 unsigned int cur_adc_idx;
88 hda_nid_t cur_adc;
89 unsigned int cur_adc_stream_tag;
90 unsigned int cur_adc_format;
92 /* capture source */
93 const struct hda_input_mux *input_mux;
94 hda_nid_t *capsrc_nids;
95 unsigned int cur_mux[3];
97 /* channel model */
98 const struct hda_channel_mode *channel_mode;
99 int num_channel_mode;
101 /* PCM information */
102 struct hda_pcm pcm_rec[2]; /* used in build_pcms() */
104 unsigned int spdif_route;
106 /* jack detection */
107 struct snd_array jacks;
109 /* dynamic controls, init_verbs and input_mux */
110 struct auto_pin_cfg autocfg;
111 struct hda_input_mux private_imux;
112 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
114 unsigned int dell_automute;
115 unsigned int port_d_mode;
116 unsigned int dell_vostro:1;
117 unsigned int ideapad:1;
118 unsigned int thinkpad:1;
120 unsigned int ext_mic_present;
121 unsigned int recording;
122 void (*capture_prepare)(struct hda_codec *codec);
123 void (*capture_cleanup)(struct hda_codec *codec);
125 /* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors)
126 * through the microphone jack.
127 * When the user enables this through a mixer switch, both internal and
128 * external microphones are disabled. Gain is fixed at 0dB. In this mode,
129 * we also allow the bias to be configured through a separate mixer
130 * control. */
131 unsigned int dc_enable;
132 unsigned int dc_input_bias; /* offset into cxt5066_olpc_dc_bias */
133 unsigned int mic_boost; /* offset into cxt5066_analog_mic_boost */
135 unsigned int beep_amp;
138 static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo,
139 struct hda_codec *codec,
140 struct snd_pcm_substream *substream)
142 struct conexant_spec *spec = codec->spec;
143 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
144 hinfo);
147 static int conexant_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
148 struct hda_codec *codec,
149 unsigned int stream_tag,
150 unsigned int format,
151 struct snd_pcm_substream *substream)
153 struct conexant_spec *spec = codec->spec;
154 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
155 stream_tag,
156 format, substream);
159 static int conexant_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
160 struct hda_codec *codec,
161 struct snd_pcm_substream *substream)
163 struct conexant_spec *spec = codec->spec;
164 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
168 * Digital out
170 static int conexant_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
171 struct hda_codec *codec,
172 struct snd_pcm_substream *substream)
174 struct conexant_spec *spec = codec->spec;
175 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
178 static int conexant_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
179 struct hda_codec *codec,
180 struct snd_pcm_substream *substream)
182 struct conexant_spec *spec = codec->spec;
183 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
186 static int conexant_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
187 struct hda_codec *codec,
188 unsigned int stream_tag,
189 unsigned int format,
190 struct snd_pcm_substream *substream)
192 struct conexant_spec *spec = codec->spec;
193 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
194 stream_tag,
195 format, substream);
199 * Analog capture
201 static int conexant_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
202 struct hda_codec *codec,
203 unsigned int stream_tag,
204 unsigned int format,
205 struct snd_pcm_substream *substream)
207 struct conexant_spec *spec = codec->spec;
208 if (spec->capture_prepare)
209 spec->capture_prepare(codec);
210 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
211 stream_tag, 0, format);
212 return 0;
215 static int conexant_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
216 struct hda_codec *codec,
217 struct snd_pcm_substream *substream)
219 struct conexant_spec *spec = codec->spec;
220 snd_hda_codec_cleanup_stream(codec, spec->adc_nids[substream->number]);
221 if (spec->capture_cleanup)
222 spec->capture_cleanup(codec);
223 return 0;
228 static struct hda_pcm_stream conexant_pcm_analog_playback = {
229 .substreams = 1,
230 .channels_min = 2,
231 .channels_max = 2,
232 .nid = 0, /* fill later */
233 .ops = {
234 .open = conexant_playback_pcm_open,
235 .prepare = conexant_playback_pcm_prepare,
236 .cleanup = conexant_playback_pcm_cleanup
240 static struct hda_pcm_stream conexant_pcm_analog_capture = {
241 .substreams = 1,
242 .channels_min = 2,
243 .channels_max = 2,
244 .nid = 0, /* fill later */
245 .ops = {
246 .prepare = conexant_capture_pcm_prepare,
247 .cleanup = conexant_capture_pcm_cleanup
252 static struct hda_pcm_stream conexant_pcm_digital_playback = {
253 .substreams = 1,
254 .channels_min = 2,
255 .channels_max = 2,
256 .nid = 0, /* fill later */
257 .ops = {
258 .open = conexant_dig_playback_pcm_open,
259 .close = conexant_dig_playback_pcm_close,
260 .prepare = conexant_dig_playback_pcm_prepare
264 static struct hda_pcm_stream conexant_pcm_digital_capture = {
265 .substreams = 1,
266 .channels_min = 2,
267 .channels_max = 2,
268 /* NID is set in alc_build_pcms */
271 static int cx5051_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
272 struct hda_codec *codec,
273 unsigned int stream_tag,
274 unsigned int format,
275 struct snd_pcm_substream *substream)
277 struct conexant_spec *spec = codec->spec;
278 spec->cur_adc = spec->adc_nids[spec->cur_adc_idx];
279 spec->cur_adc_stream_tag = stream_tag;
280 spec->cur_adc_format = format;
281 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
282 return 0;
285 static int cx5051_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
286 struct hda_codec *codec,
287 struct snd_pcm_substream *substream)
289 struct conexant_spec *spec = codec->spec;
290 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
291 spec->cur_adc = 0;
292 return 0;
295 static struct hda_pcm_stream cx5051_pcm_analog_capture = {
296 .substreams = 1,
297 .channels_min = 2,
298 .channels_max = 2,
299 .nid = 0, /* fill later */
300 .ops = {
301 .prepare = cx5051_capture_pcm_prepare,
302 .cleanup = cx5051_capture_pcm_cleanup
306 static int conexant_build_pcms(struct hda_codec *codec)
308 struct conexant_spec *spec = codec->spec;
309 struct hda_pcm *info = spec->pcm_rec;
311 codec->num_pcms = 1;
312 codec->pcm_info = info;
314 info->name = "CONEXANT Analog";
315 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = conexant_pcm_analog_playback;
316 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max =
317 spec->multiout.max_channels;
318 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
319 spec->multiout.dac_nids[0];
320 if (codec->vendor_id == 0x14f15051)
321 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
322 cx5051_pcm_analog_capture;
323 else
324 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
325 conexant_pcm_analog_capture;
326 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adc_nids;
327 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
329 if (spec->multiout.dig_out_nid) {
330 info++;
331 codec->num_pcms++;
332 info->name = "Conexant Digital";
333 info->pcm_type = HDA_PCM_TYPE_SPDIF;
334 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
335 conexant_pcm_digital_playback;
336 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
337 spec->multiout.dig_out_nid;
338 if (spec->dig_in_nid) {
339 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
340 conexant_pcm_digital_capture;
341 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
342 spec->dig_in_nid;
346 return 0;
349 static int conexant_mux_enum_info(struct snd_kcontrol *kcontrol,
350 struct snd_ctl_elem_info *uinfo)
352 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
353 struct conexant_spec *spec = codec->spec;
355 return snd_hda_input_mux_info(spec->input_mux, uinfo);
358 static int conexant_mux_enum_get(struct snd_kcontrol *kcontrol,
359 struct snd_ctl_elem_value *ucontrol)
361 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
362 struct conexant_spec *spec = codec->spec;
363 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
365 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
366 return 0;
369 static int conexant_mux_enum_put(struct snd_kcontrol *kcontrol,
370 struct snd_ctl_elem_value *ucontrol)
372 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
373 struct conexant_spec *spec = codec->spec;
374 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
376 return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol,
377 spec->capsrc_nids[adc_idx],
378 &spec->cur_mux[adc_idx]);
381 #ifdef CONFIG_SND_HDA_INPUT_JACK
382 static void conexant_free_jack_priv(struct snd_jack *jack)
384 struct conexant_jack *jacks = jack->private_data;
385 jacks->nid = 0;
386 jacks->jack = NULL;
389 static int conexant_add_jack(struct hda_codec *codec,
390 hda_nid_t nid, int type)
392 struct conexant_spec *spec;
393 struct conexant_jack *jack;
394 const char *name;
395 int err;
397 spec = codec->spec;
398 snd_array_init(&spec->jacks, sizeof(*jack), 32);
399 jack = snd_array_new(&spec->jacks);
400 name = (type == SND_JACK_HEADPHONE) ? "Headphone" : "Mic" ;
402 if (!jack)
403 return -ENOMEM;
405 jack->nid = nid;
406 jack->type = type;
408 err = snd_jack_new(codec->bus->card, name, type, &jack->jack);
409 if (err < 0)
410 return err;
411 jack->jack->private_data = jack;
412 jack->jack->private_free = conexant_free_jack_priv;
413 return 0;
416 static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
418 struct conexant_spec *spec = codec->spec;
419 struct conexant_jack *jacks = spec->jacks.list;
421 if (jacks) {
422 int i;
423 for (i = 0; i < spec->jacks.used; i++) {
424 if (jacks->nid == nid) {
425 unsigned int present;
426 present = snd_hda_jack_detect(codec, nid);
428 present = (present) ? jacks->type : 0 ;
430 snd_jack_report(jacks->jack,
431 present);
433 jacks++;
438 static int conexant_init_jacks(struct hda_codec *codec)
440 struct conexant_spec *spec = codec->spec;
441 int i;
443 for (i = 0; i < spec->num_init_verbs; i++) {
444 const struct hda_verb *hv;
446 hv = spec->init_verbs[i];
447 while (hv->nid) {
448 int err = 0;
449 switch (hv->param ^ AC_USRSP_EN) {
450 case CONEXANT_HP_EVENT:
451 err = conexant_add_jack(codec, hv->nid,
452 SND_JACK_HEADPHONE);
453 conexant_report_jack(codec, hv->nid);
454 break;
455 case CXT5051_PORTC_EVENT:
456 case CONEXANT_MIC_EVENT:
457 err = conexant_add_jack(codec, hv->nid,
458 SND_JACK_MICROPHONE);
459 conexant_report_jack(codec, hv->nid);
460 break;
462 if (err < 0)
463 return err;
464 ++hv;
467 return 0;
470 #else
471 static inline void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid)
475 static inline int conexant_init_jacks(struct hda_codec *codec)
477 return 0;
479 #endif
481 static int conexant_init(struct hda_codec *codec)
483 struct conexant_spec *spec = codec->spec;
484 int i;
486 for (i = 0; i < spec->num_init_verbs; i++)
487 snd_hda_sequence_write(codec, spec->init_verbs[i]);
488 return 0;
491 static void conexant_free(struct hda_codec *codec)
493 #ifdef CONFIG_SND_HDA_INPUT_JACK
494 struct conexant_spec *spec = codec->spec;
495 if (spec->jacks.list) {
496 struct conexant_jack *jacks = spec->jacks.list;
497 int i;
498 for (i = 0; i < spec->jacks.used; i++, jacks++) {
499 if (jacks->jack)
500 snd_device_free(codec->bus->card, jacks->jack);
502 snd_array_free(&spec->jacks);
504 #endif
505 snd_hda_detach_beep_device(codec);
506 kfree(codec->spec);
509 static struct snd_kcontrol_new cxt_capture_mixers[] = {
511 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
512 .name = "Capture Source",
513 .info = conexant_mux_enum_info,
514 .get = conexant_mux_enum_get,
515 .put = conexant_mux_enum_put
520 #ifdef CONFIG_SND_HDA_INPUT_BEEP
521 /* additional beep mixers; the actual parameters are overwritten at build */
522 static struct snd_kcontrol_new cxt_beep_mixer[] = {
523 HDA_CODEC_VOLUME_MONO("Beep Playback Volume", 0, 1, 0, HDA_OUTPUT),
524 HDA_CODEC_MUTE_BEEP_MONO("Beep Playback Switch", 0, 1, 0, HDA_OUTPUT),
525 { } /* end */
527 #endif
529 static const char *slave_vols[] = {
530 "Headphone Playback Volume",
531 "Speaker Playback Volume",
532 NULL
535 static const char *slave_sws[] = {
536 "Headphone Playback Switch",
537 "Speaker Playback Switch",
538 NULL
541 static int conexant_build_controls(struct hda_codec *codec)
543 struct conexant_spec *spec = codec->spec;
544 unsigned int i;
545 int err;
547 for (i = 0; i < spec->num_mixers; i++) {
548 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
549 if (err < 0)
550 return err;
552 if (spec->multiout.dig_out_nid) {
553 err = snd_hda_create_spdif_out_ctls(codec,
554 spec->multiout.dig_out_nid);
555 if (err < 0)
556 return err;
557 err = snd_hda_create_spdif_share_sw(codec,
558 &spec->multiout);
559 if (err < 0)
560 return err;
561 spec->multiout.share_spdif = 1;
563 if (spec->dig_in_nid) {
564 err = snd_hda_create_spdif_in_ctls(codec,spec->dig_in_nid);
565 if (err < 0)
566 return err;
569 /* if we have no master control, let's create it */
570 if (spec->vmaster_nid &&
571 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
572 unsigned int vmaster_tlv[4];
573 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
574 HDA_OUTPUT, vmaster_tlv);
575 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
576 vmaster_tlv, slave_vols);
577 if (err < 0)
578 return err;
580 if (spec->vmaster_nid &&
581 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
582 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
583 NULL, slave_sws);
584 if (err < 0)
585 return err;
588 if (spec->input_mux) {
589 err = snd_hda_add_new_ctls(codec, cxt_capture_mixers);
590 if (err < 0)
591 return err;
594 #ifdef CONFIG_SND_HDA_INPUT_BEEP
595 /* create beep controls if needed */
596 if (spec->beep_amp) {
597 struct snd_kcontrol_new *knew;
598 for (knew = cxt_beep_mixer; knew->name; knew++) {
599 struct snd_kcontrol *kctl;
600 kctl = snd_ctl_new1(knew, codec);
601 if (!kctl)
602 return -ENOMEM;
603 kctl->private_value = spec->beep_amp;
604 err = snd_hda_ctl_add(codec, 0, kctl);
605 if (err < 0)
606 return err;
609 #endif
611 return 0;
614 #ifdef CONFIG_SND_HDA_POWER_SAVE
615 static int conexant_suspend(struct hda_codec *codec, pm_message_t state)
617 snd_hda_shutup_pins(codec);
618 return 0;
620 #endif
622 static struct hda_codec_ops conexant_patch_ops = {
623 .build_controls = conexant_build_controls,
624 .build_pcms = conexant_build_pcms,
625 .init = conexant_init,
626 .free = conexant_free,
627 #ifdef CONFIG_SND_HDA_POWER_SAVE
628 .suspend = conexant_suspend,
629 #endif
630 .reboot_notify = snd_hda_shutup_pins,
633 #ifdef CONFIG_SND_HDA_INPUT_BEEP
634 #define set_beep_amp(spec, nid, idx, dir) \
635 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir))
636 #else
637 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
638 #endif
641 * EAPD control
642 * the private value = nid | (invert << 8)
645 #define cxt_eapd_info snd_ctl_boolean_mono_info
647 static int cxt_eapd_get(struct snd_kcontrol *kcontrol,
648 struct snd_ctl_elem_value *ucontrol)
650 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
651 struct conexant_spec *spec = codec->spec;
652 int invert = (kcontrol->private_value >> 8) & 1;
653 if (invert)
654 ucontrol->value.integer.value[0] = !spec->cur_eapd;
655 else
656 ucontrol->value.integer.value[0] = spec->cur_eapd;
657 return 0;
661 static int cxt_eapd_put(struct snd_kcontrol *kcontrol,
662 struct snd_ctl_elem_value *ucontrol)
664 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
665 struct conexant_spec *spec = codec->spec;
666 int invert = (kcontrol->private_value >> 8) & 1;
667 hda_nid_t nid = kcontrol->private_value & 0xff;
668 unsigned int eapd;
670 eapd = !!ucontrol->value.integer.value[0];
671 if (invert)
672 eapd = !eapd;
673 if (eapd == spec->cur_eapd)
674 return 0;
676 spec->cur_eapd = eapd;
677 snd_hda_codec_write_cache(codec, nid,
678 0, AC_VERB_SET_EAPD_BTLENABLE,
679 eapd ? 0x02 : 0x00);
680 return 1;
683 /* controls for test mode */
684 #ifdef CONFIG_SND_DEBUG
686 #define CXT_EAPD_SWITCH(xname, nid, mask) \
687 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
688 .info = cxt_eapd_info, \
689 .get = cxt_eapd_get, \
690 .put = cxt_eapd_put, \
691 .private_value = nid | (mask<<16) }
695 static int conexant_ch_mode_info(struct snd_kcontrol *kcontrol,
696 struct snd_ctl_elem_info *uinfo)
698 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
699 struct conexant_spec *spec = codec->spec;
700 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
701 spec->num_channel_mode);
704 static int conexant_ch_mode_get(struct snd_kcontrol *kcontrol,
705 struct snd_ctl_elem_value *ucontrol)
707 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
708 struct conexant_spec *spec = codec->spec;
709 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
710 spec->num_channel_mode,
711 spec->multiout.max_channels);
714 static int conexant_ch_mode_put(struct snd_kcontrol *kcontrol,
715 struct snd_ctl_elem_value *ucontrol)
717 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
718 struct conexant_spec *spec = codec->spec;
719 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
720 spec->num_channel_mode,
721 &spec->multiout.max_channels);
722 if (err >= 0 && spec->need_dac_fix)
723 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
724 return err;
727 #define CXT_PIN_MODE(xname, nid, dir) \
728 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
729 .info = conexant_ch_mode_info, \
730 .get = conexant_ch_mode_get, \
731 .put = conexant_ch_mode_put, \
732 .private_value = nid | (dir<<16) }
734 #endif /* CONFIG_SND_DEBUG */
736 /* Conexant 5045 specific */
738 static hda_nid_t cxt5045_dac_nids[1] = { 0x19 };
739 static hda_nid_t cxt5045_adc_nids[1] = { 0x1a };
740 static hda_nid_t cxt5045_capsrc_nids[1] = { 0x1a };
741 #define CXT5045_SPDIF_OUT 0x18
743 static struct hda_channel_mode cxt5045_modes[1] = {
744 { 2, NULL },
747 static struct hda_input_mux cxt5045_capture_source = {
748 .num_items = 2,
749 .items = {
750 { "IntMic", 0x1 },
751 { "ExtMic", 0x2 },
755 static struct hda_input_mux cxt5045_capture_source_benq = {
756 .num_items = 5,
757 .items = {
758 { "IntMic", 0x1 },
759 { "ExtMic", 0x2 },
760 { "LineIn", 0x3 },
761 { "CD", 0x4 },
762 { "Mixer", 0x0 },
766 static struct hda_input_mux cxt5045_capture_source_hp530 = {
767 .num_items = 2,
768 .items = {
769 { "ExtMic", 0x1 },
770 { "IntMic", 0x2 },
774 /* turn on/off EAPD (+ mute HP) as a master switch */
775 static int cxt5045_hp_master_sw_put(struct snd_kcontrol *kcontrol,
776 struct snd_ctl_elem_value *ucontrol)
778 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
779 struct conexant_spec *spec = codec->spec;
780 unsigned int bits;
782 if (!cxt_eapd_put(kcontrol, ucontrol))
783 return 0;
785 /* toggle internal speakers mute depending of presence of
786 * the headphone jack
788 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
789 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
790 HDA_AMP_MUTE, bits);
792 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
793 snd_hda_codec_amp_stereo(codec, 0x11, HDA_OUTPUT, 0,
794 HDA_AMP_MUTE, bits);
795 return 1;
798 /* bind volumes of both NID 0x10 and 0x11 */
799 static struct hda_bind_ctls cxt5045_hp_bind_master_vol = {
800 .ops = &snd_hda_bind_vol,
801 .values = {
802 HDA_COMPOSE_AMP_VAL(0x10, 3, 0, HDA_OUTPUT),
803 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
808 /* toggle input of built-in and mic jack appropriately */
809 static void cxt5045_hp_automic(struct hda_codec *codec)
811 static struct hda_verb mic_jack_on[] = {
812 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
813 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
816 static struct hda_verb mic_jack_off[] = {
817 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
818 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
821 unsigned int present;
823 present = snd_hda_jack_detect(codec, 0x12);
824 if (present)
825 snd_hda_sequence_write(codec, mic_jack_on);
826 else
827 snd_hda_sequence_write(codec, mic_jack_off);
831 /* mute internal speaker if HP is plugged */
832 static void cxt5045_hp_automute(struct hda_codec *codec)
834 struct conexant_spec *spec = codec->spec;
835 unsigned int bits;
837 spec->hp_present = snd_hda_jack_detect(codec, 0x11);
839 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
840 snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0,
841 HDA_AMP_MUTE, bits);
844 /* unsolicited event for HP jack sensing */
845 static void cxt5045_hp_unsol_event(struct hda_codec *codec,
846 unsigned int res)
848 res >>= 26;
849 switch (res) {
850 case CONEXANT_HP_EVENT:
851 cxt5045_hp_automute(codec);
852 break;
853 case CONEXANT_MIC_EVENT:
854 cxt5045_hp_automic(codec);
855 break;
860 static struct snd_kcontrol_new cxt5045_mixers[] = {
861 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
862 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
863 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
864 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
865 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
866 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
867 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
868 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
869 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
870 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
871 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
873 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
874 .name = "Master Playback Switch",
875 .info = cxt_eapd_info,
876 .get = cxt_eapd_get,
877 .put = cxt5045_hp_master_sw_put,
878 .private_value = 0x10,
884 static struct snd_kcontrol_new cxt5045_benq_mixers[] = {
885 HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT),
886 HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT),
887 HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT),
888 HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT),
890 HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT),
891 HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT),
892 HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT),
893 HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT),
895 HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT),
896 HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT),
901 static struct snd_kcontrol_new cxt5045_mixers_hp530[] = {
902 HDA_CODEC_VOLUME("Int Mic Capture Volume", 0x1a, 0x02, HDA_INPUT),
903 HDA_CODEC_MUTE("Int Mic Capture Switch", 0x1a, 0x02, HDA_INPUT),
904 HDA_CODEC_VOLUME("Ext Mic Capture Volume", 0x1a, 0x01, HDA_INPUT),
905 HDA_CODEC_MUTE("Ext Mic Capture Switch", 0x1a, 0x01, HDA_INPUT),
906 HDA_CODEC_VOLUME("PCM Playback Volume", 0x17, 0x0, HDA_INPUT),
907 HDA_CODEC_MUTE("PCM Playback Switch", 0x17, 0x0, HDA_INPUT),
908 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x17, 0x2, HDA_INPUT),
909 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x17, 0x2, HDA_INPUT),
910 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x17, 0x1, HDA_INPUT),
911 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x17, 0x1, HDA_INPUT),
912 HDA_BIND_VOL("Master Playback Volume", &cxt5045_hp_bind_master_vol),
914 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
915 .name = "Master Playback Switch",
916 .info = cxt_eapd_info,
917 .get = cxt_eapd_get,
918 .put = cxt5045_hp_master_sw_put,
919 .private_value = 0x10,
925 static struct hda_verb cxt5045_init_verbs[] = {
926 /* Line in, Mic */
927 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
928 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
929 /* HP, Amp */
930 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
931 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
932 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
933 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
934 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
935 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
936 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
937 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
938 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
939 /* Record selector: Int mic */
940 {0x1a, AC_VERB_SET_CONNECT_SEL,0x1},
941 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
942 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
943 /* SPDIF route: PCM */
944 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
945 { 0x13, AC_VERB_SET_CONNECT_SEL, 0x0 },
946 /* EAPD */
947 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2 }, /* default on */
948 { } /* end */
951 static struct hda_verb cxt5045_benq_init_verbs[] = {
952 /* Int Mic, Mic */
953 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
954 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_80 },
955 /* Line In,HP, Amp */
956 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
957 {0x10, AC_VERB_SET_CONNECT_SEL, 0x1},
958 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
959 {0x11, AC_VERB_SET_CONNECT_SEL, 0x1},
960 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
961 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
962 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
963 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
964 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
965 /* Record selector: Int mic */
966 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x1},
967 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE,
968 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
969 /* SPDIF route: PCM */
970 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
971 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
972 /* EAPD */
973 {0x10, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
974 { } /* end */
977 static struct hda_verb cxt5045_hp_sense_init_verbs[] = {
978 /* pin sensing on HP jack */
979 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
980 { } /* end */
983 static struct hda_verb cxt5045_mic_sense_init_verbs[] = {
984 /* pin sensing on HP jack */
985 {0x12, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
986 { } /* end */
989 #ifdef CONFIG_SND_DEBUG
990 /* Test configuration for debugging, modelled after the ALC260 test
991 * configuration.
993 static struct hda_input_mux cxt5045_test_capture_source = {
994 .num_items = 5,
995 .items = {
996 { "MIXER", 0x0 },
997 { "MIC1 pin", 0x1 },
998 { "LINE1 pin", 0x2 },
999 { "HP-OUT pin", 0x3 },
1000 { "CD pin", 0x4 },
1004 static struct snd_kcontrol_new cxt5045_test_mixer[] = {
1006 /* Output controls */
1007 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x10, 0x0, HDA_OUTPUT),
1008 HDA_CODEC_MUTE("Speaker Playback Switch", 0x10, 0x0, HDA_OUTPUT),
1009 HDA_CODEC_VOLUME("Node 11 Playback Volume", 0x11, 0x0, HDA_OUTPUT),
1010 HDA_CODEC_MUTE("Node 11 Playback Switch", 0x11, 0x0, HDA_OUTPUT),
1011 HDA_CODEC_VOLUME("Node 12 Playback Volume", 0x12, 0x0, HDA_OUTPUT),
1012 HDA_CODEC_MUTE("Node 12 Playback Switch", 0x12, 0x0, HDA_OUTPUT),
1014 /* Modes for retasking pin widgets */
1015 CXT_PIN_MODE("HP-OUT pin mode", 0x11, CXT_PIN_DIR_INOUT),
1016 CXT_PIN_MODE("LINE1 pin mode", 0x12, CXT_PIN_DIR_INOUT),
1018 /* EAPD Switch Control */
1019 CXT_EAPD_SWITCH("External Amplifier", 0x10, 0x0),
1021 /* Loopback mixer controls */
1023 HDA_CODEC_VOLUME("Mixer-1 Volume", 0x17, 0x0, HDA_INPUT),
1024 HDA_CODEC_MUTE("Mixer-1 Switch", 0x17, 0x0, HDA_INPUT),
1025 HDA_CODEC_VOLUME("Mixer-2 Volume", 0x17, 0x1, HDA_INPUT),
1026 HDA_CODEC_MUTE("Mixer-2 Switch", 0x17, 0x1, HDA_INPUT),
1027 HDA_CODEC_VOLUME("Mixer-3 Volume", 0x17, 0x2, HDA_INPUT),
1028 HDA_CODEC_MUTE("Mixer-3 Switch", 0x17, 0x2, HDA_INPUT),
1029 HDA_CODEC_VOLUME("Mixer-4 Volume", 0x17, 0x3, HDA_INPUT),
1030 HDA_CODEC_MUTE("Mixer-4 Switch", 0x17, 0x3, HDA_INPUT),
1031 HDA_CODEC_VOLUME("Mixer-5 Volume", 0x17, 0x4, HDA_INPUT),
1032 HDA_CODEC_MUTE("Mixer-5 Switch", 0x17, 0x4, HDA_INPUT),
1034 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1035 .name = "Input Source",
1036 .info = conexant_mux_enum_info,
1037 .get = conexant_mux_enum_get,
1038 .put = conexant_mux_enum_put,
1040 /* Audio input controls */
1041 HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT),
1042 HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT),
1043 HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT),
1044 HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT),
1045 HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT),
1046 HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT),
1047 HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT),
1048 HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT),
1049 HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT),
1050 HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT),
1051 { } /* end */
1054 static struct hda_verb cxt5045_test_init_verbs[] = {
1055 /* Set connections */
1056 { 0x10, AC_VERB_SET_CONNECT_SEL, 0x0 },
1057 { 0x11, AC_VERB_SET_CONNECT_SEL, 0x0 },
1058 { 0x12, AC_VERB_SET_CONNECT_SEL, 0x0 },
1059 /* Enable retasking pins as output, initially without power amp */
1060 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1061 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1063 /* Disable digital (SPDIF) pins initially, but users can enable
1064 * them via a mixer switch. In the case of SPDIF-out, this initverb
1065 * payload also sets the generation to 0, output to be in "consumer"
1066 * PCM format, copyright asserted, no pre-emphasis and no validity
1067 * control.
1069 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1070 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1072 /* Start with output sum widgets muted and their output gains at min */
1073 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1074 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1076 /* Unmute retasking pin widget output buffers since the default
1077 * state appears to be output. As the pin mode is changed by the
1078 * user the pin mode control will take care of enabling the pin's
1079 * input/output buffers as needed.
1081 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1082 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1084 /* Mute capture amp left and right */
1085 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1087 /* Set ADC connection select to match default mixer setting (mic1
1088 * pin)
1090 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1091 {0x17, AC_VERB_SET_CONNECT_SEL, 0x00},
1093 /* Mute all inputs to mixer widget (even unconnected ones) */
1094 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* Mixer pin */
1095 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* Mic1 pin */
1096 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* Line pin */
1097 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* HP pin */
1098 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1102 #endif
1105 /* initialize jack-sensing, too */
1106 static int cxt5045_init(struct hda_codec *codec)
1108 conexant_init(codec);
1109 cxt5045_hp_automute(codec);
1110 return 0;
1114 enum {
1115 CXT5045_LAPTOP_HPSENSE,
1116 CXT5045_LAPTOP_MICSENSE,
1117 CXT5045_LAPTOP_HPMICSENSE,
1118 CXT5045_BENQ,
1119 CXT5045_LAPTOP_HP530,
1120 #ifdef CONFIG_SND_DEBUG
1121 CXT5045_TEST,
1122 #endif
1123 CXT5045_MODELS
1126 static const char *cxt5045_models[CXT5045_MODELS] = {
1127 [CXT5045_LAPTOP_HPSENSE] = "laptop-hpsense",
1128 [CXT5045_LAPTOP_MICSENSE] = "laptop-micsense",
1129 [CXT5045_LAPTOP_HPMICSENSE] = "laptop-hpmicsense",
1130 [CXT5045_BENQ] = "benq",
1131 [CXT5045_LAPTOP_HP530] = "laptop-hp530",
1132 #ifdef CONFIG_SND_DEBUG
1133 [CXT5045_TEST] = "test",
1134 #endif
1137 static struct snd_pci_quirk cxt5045_cfg_tbl[] = {
1138 SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530),
1139 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1140 CXT5045_LAPTOP_HPSENSE),
1141 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE),
1142 SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ),
1143 SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE),
1144 SND_PCI_QUIRK(0x1734, 0x10cb, "Fujitsu Si3515", CXT5045_LAPTOP_HPMICSENSE),
1145 SND_PCI_QUIRK(0x1734, 0x110e, "Fujitsu V5505",
1146 CXT5045_LAPTOP_HPMICSENSE),
1147 SND_PCI_QUIRK(0x1509, 0x1e40, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1148 SND_PCI_QUIRK(0x1509, 0x2f05, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1149 SND_PCI_QUIRK(0x1509, 0x2f06, "FIC", CXT5045_LAPTOP_HPMICSENSE),
1150 SND_PCI_QUIRK_MASK(0x1631, 0xff00, 0xc100, "Packard Bell",
1151 CXT5045_LAPTOP_HPMICSENSE),
1152 SND_PCI_QUIRK(0x8086, 0x2111, "Conexant Reference board", CXT5045_LAPTOP_HPSENSE),
1156 static int patch_cxt5045(struct hda_codec *codec)
1158 struct conexant_spec *spec;
1159 int board_config;
1161 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1162 if (!spec)
1163 return -ENOMEM;
1164 codec->spec = spec;
1165 codec->pin_amp_workaround = 1;
1167 spec->multiout.max_channels = 2;
1168 spec->multiout.num_dacs = ARRAY_SIZE(cxt5045_dac_nids);
1169 spec->multiout.dac_nids = cxt5045_dac_nids;
1170 spec->multiout.dig_out_nid = CXT5045_SPDIF_OUT;
1171 spec->num_adc_nids = 1;
1172 spec->adc_nids = cxt5045_adc_nids;
1173 spec->capsrc_nids = cxt5045_capsrc_nids;
1174 spec->input_mux = &cxt5045_capture_source;
1175 spec->num_mixers = 1;
1176 spec->mixers[0] = cxt5045_mixers;
1177 spec->num_init_verbs = 1;
1178 spec->init_verbs[0] = cxt5045_init_verbs;
1179 spec->spdif_route = 0;
1180 spec->num_channel_mode = ARRAY_SIZE(cxt5045_modes);
1181 spec->channel_mode = cxt5045_modes;
1183 set_beep_amp(spec, 0x16, 0, 1);
1185 codec->patch_ops = conexant_patch_ops;
1187 board_config = snd_hda_check_board_config(codec, CXT5045_MODELS,
1188 cxt5045_models,
1189 cxt5045_cfg_tbl);
1190 switch (board_config) {
1191 case CXT5045_LAPTOP_HPSENSE:
1192 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1193 spec->input_mux = &cxt5045_capture_source;
1194 spec->num_init_verbs = 2;
1195 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1196 spec->mixers[0] = cxt5045_mixers;
1197 codec->patch_ops.init = cxt5045_init;
1198 break;
1199 case CXT5045_LAPTOP_MICSENSE:
1200 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1201 spec->input_mux = &cxt5045_capture_source;
1202 spec->num_init_verbs = 2;
1203 spec->init_verbs[1] = cxt5045_mic_sense_init_verbs;
1204 spec->mixers[0] = cxt5045_mixers;
1205 codec->patch_ops.init = cxt5045_init;
1206 break;
1207 default:
1208 case CXT5045_LAPTOP_HPMICSENSE:
1209 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1210 spec->input_mux = &cxt5045_capture_source;
1211 spec->num_init_verbs = 3;
1212 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1213 spec->init_verbs[2] = cxt5045_mic_sense_init_verbs;
1214 spec->mixers[0] = cxt5045_mixers;
1215 codec->patch_ops.init = cxt5045_init;
1216 break;
1217 case CXT5045_BENQ:
1218 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1219 spec->input_mux = &cxt5045_capture_source_benq;
1220 spec->num_init_verbs = 1;
1221 spec->init_verbs[0] = cxt5045_benq_init_verbs;
1222 spec->mixers[0] = cxt5045_mixers;
1223 spec->mixers[1] = cxt5045_benq_mixers;
1224 spec->num_mixers = 2;
1225 codec->patch_ops.init = cxt5045_init;
1226 break;
1227 case CXT5045_LAPTOP_HP530:
1228 codec->patch_ops.unsol_event = cxt5045_hp_unsol_event;
1229 spec->input_mux = &cxt5045_capture_source_hp530;
1230 spec->num_init_verbs = 2;
1231 spec->init_verbs[1] = cxt5045_hp_sense_init_verbs;
1232 spec->mixers[0] = cxt5045_mixers_hp530;
1233 codec->patch_ops.init = cxt5045_init;
1234 break;
1235 #ifdef CONFIG_SND_DEBUG
1236 case CXT5045_TEST:
1237 spec->input_mux = &cxt5045_test_capture_source;
1238 spec->mixers[0] = cxt5045_test_mixer;
1239 spec->init_verbs[0] = cxt5045_test_init_verbs;
1240 break;
1242 #endif
1245 switch (codec->subsystem_id >> 16) {
1246 case 0x103c:
1247 case 0x1631:
1248 case 0x1734:
1249 case 0x17aa:
1250 /* HP, Packard Bell, Fujitsu-Siemens & Lenovo laptops have
1251 * really bad sound over 0dB on NID 0x17. Fix max PCM level to
1252 * 0 dB (originally it has 0x2b steps with 0dB offset 0x14)
1254 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT,
1255 (0x14 << AC_AMPCAP_OFFSET_SHIFT) |
1256 (0x14 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1257 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1258 (1 << AC_AMPCAP_MUTE_SHIFT));
1259 break;
1262 if (spec->beep_amp)
1263 snd_hda_attach_beep_device(codec, spec->beep_amp);
1265 return 0;
1269 /* Conexant 5047 specific */
1270 #define CXT5047_SPDIF_OUT 0x11
1272 static hda_nid_t cxt5047_dac_nids[1] = { 0x10 }; /* 0x1c */
1273 static hda_nid_t cxt5047_adc_nids[1] = { 0x12 };
1274 static hda_nid_t cxt5047_capsrc_nids[1] = { 0x1a };
1276 static struct hda_channel_mode cxt5047_modes[1] = {
1277 { 2, NULL },
1280 static struct hda_input_mux cxt5047_toshiba_capture_source = {
1281 .num_items = 2,
1282 .items = {
1283 { "ExtMic", 0x2 },
1284 { "Line-In", 0x1 },
1288 /* turn on/off EAPD (+ mute HP) as a master switch */
1289 static int cxt5047_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1290 struct snd_ctl_elem_value *ucontrol)
1292 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1293 struct conexant_spec *spec = codec->spec;
1294 unsigned int bits;
1296 if (!cxt_eapd_put(kcontrol, ucontrol))
1297 return 0;
1299 /* toggle internal speakers mute depending of presence of
1300 * the headphone jack
1302 bits = (!spec->hp_present && spec->cur_eapd) ? 0 : HDA_AMP_MUTE;
1303 /* NOTE: Conexat codec needs the index for *OUTPUT* amp of
1304 * pin widgets unlike other codecs. In this case, we need to
1305 * set index 0x01 for the volume from the mixer amp 0x19.
1307 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
1308 HDA_AMP_MUTE, bits);
1309 bits = spec->cur_eapd ? 0 : HDA_AMP_MUTE;
1310 snd_hda_codec_amp_stereo(codec, 0x13, HDA_OUTPUT, 0,
1311 HDA_AMP_MUTE, bits);
1312 return 1;
1315 /* mute internal speaker if HP is plugged */
1316 static void cxt5047_hp_automute(struct hda_codec *codec)
1318 struct conexant_spec *spec = codec->spec;
1319 unsigned int bits;
1321 spec->hp_present = snd_hda_jack_detect(codec, 0x13);
1323 bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0;
1324 /* See the note in cxt5047_hp_master_sw_put */
1325 snd_hda_codec_amp_stereo(codec, 0x1d, HDA_OUTPUT, 0x01,
1326 HDA_AMP_MUTE, bits);
1329 /* toggle input of built-in and mic jack appropriately */
1330 static void cxt5047_hp_automic(struct hda_codec *codec)
1332 static struct hda_verb mic_jack_on[] = {
1333 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1334 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1337 static struct hda_verb mic_jack_off[] = {
1338 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1339 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1342 unsigned int present;
1344 present = snd_hda_jack_detect(codec, 0x15);
1345 if (present)
1346 snd_hda_sequence_write(codec, mic_jack_on);
1347 else
1348 snd_hda_sequence_write(codec, mic_jack_off);
1351 /* unsolicited event for HP jack sensing */
1352 static void cxt5047_hp_unsol_event(struct hda_codec *codec,
1353 unsigned int res)
1355 switch (res >> 26) {
1356 case CONEXANT_HP_EVENT:
1357 cxt5047_hp_automute(codec);
1358 break;
1359 case CONEXANT_MIC_EVENT:
1360 cxt5047_hp_automic(codec);
1361 break;
1365 static struct snd_kcontrol_new cxt5047_base_mixers[] = {
1366 HDA_CODEC_VOLUME("Mic Playback Volume", 0x19, 0x02, HDA_INPUT),
1367 HDA_CODEC_MUTE("Mic Playback Switch", 0x19, 0x02, HDA_INPUT),
1368 HDA_CODEC_VOLUME("Mic Boost", 0x1a, 0x0, HDA_OUTPUT),
1369 HDA_CODEC_VOLUME("Capture Volume", 0x12, 0x03, HDA_INPUT),
1370 HDA_CODEC_MUTE("Capture Switch", 0x12, 0x03, HDA_INPUT),
1371 HDA_CODEC_VOLUME("PCM Volume", 0x10, 0x00, HDA_OUTPUT),
1372 HDA_CODEC_MUTE("PCM Switch", 0x10, 0x00, HDA_OUTPUT),
1374 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1375 .name = "Master Playback Switch",
1376 .info = cxt_eapd_info,
1377 .get = cxt_eapd_get,
1378 .put = cxt5047_hp_master_sw_put,
1379 .private_value = 0x13,
1385 static struct snd_kcontrol_new cxt5047_hp_spk_mixers[] = {
1386 /* See the note in cxt5047_hp_master_sw_put */
1387 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x01, HDA_OUTPUT),
1388 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1392 static struct snd_kcontrol_new cxt5047_hp_only_mixers[] = {
1393 HDA_CODEC_VOLUME("Master Playback Volume", 0x13, 0x00, HDA_OUTPUT),
1394 { } /* end */
1397 static struct hda_verb cxt5047_init_verbs[] = {
1398 /* Line in, Mic, Built-in Mic */
1399 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1400 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1401 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN|AC_PINCTL_VREF_50 },
1402 /* HP, Speaker */
1403 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1404 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0}, /* mixer(0x19) */
1405 {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, /* mixer(0x19) */
1406 /* Record selector: Mic */
1407 {0x12, AC_VERB_SET_CONNECT_SEL,0x03},
1408 {0x19, AC_VERB_SET_AMP_GAIN_MUTE,
1409 AC_AMP_SET_INPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x17},
1410 {0x1A, AC_VERB_SET_CONNECT_SEL,0x02},
1411 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1412 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x00},
1413 {0x1A, AC_VERB_SET_AMP_GAIN_MUTE,
1414 AC_AMP_SET_OUTPUT|AC_AMP_SET_RIGHT|AC_AMP_SET_LEFT|0x03},
1415 /* SPDIF route: PCM */
1416 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x0 },
1417 /* Enable unsolicited events */
1418 {0x13, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
1419 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
1420 { } /* end */
1423 /* configuration for Toshiba Laptops */
1424 static struct hda_verb cxt5047_toshiba_init_verbs[] = {
1425 {0x13, AC_VERB_SET_EAPD_BTLENABLE, 0x0}, /* default off */
1429 /* Test configuration for debugging, modelled after the ALC260 test
1430 * configuration.
1432 #ifdef CONFIG_SND_DEBUG
1433 static struct hda_input_mux cxt5047_test_capture_source = {
1434 .num_items = 4,
1435 .items = {
1436 { "LINE1 pin", 0x0 },
1437 { "MIC1 pin", 0x1 },
1438 { "MIC2 pin", 0x2 },
1439 { "CD pin", 0x3 },
1443 static struct snd_kcontrol_new cxt5047_test_mixer[] = {
1445 /* Output only controls */
1446 HDA_CODEC_VOLUME("OutAmp-1 Volume", 0x10, 0x0, HDA_OUTPUT),
1447 HDA_CODEC_MUTE("OutAmp-1 Switch", 0x10,0x0, HDA_OUTPUT),
1448 HDA_CODEC_VOLUME("OutAmp-2 Volume", 0x1c, 0x0, HDA_OUTPUT),
1449 HDA_CODEC_MUTE("OutAmp-2 Switch", 0x1c, 0x0, HDA_OUTPUT),
1450 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x1d, 0x0, HDA_OUTPUT),
1451 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1d, 0x0, HDA_OUTPUT),
1452 HDA_CODEC_VOLUME("HeadPhone Playback Volume", 0x13, 0x0, HDA_OUTPUT),
1453 HDA_CODEC_MUTE("HeadPhone Playback Switch", 0x13, 0x0, HDA_OUTPUT),
1454 HDA_CODEC_VOLUME("Line1-Out Playback Volume", 0x14, 0x0, HDA_OUTPUT),
1455 HDA_CODEC_MUTE("Line1-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1456 HDA_CODEC_VOLUME("Line2-Out Playback Volume", 0x15, 0x0, HDA_OUTPUT),
1457 HDA_CODEC_MUTE("Line2-Out Playback Switch", 0x15, 0x0, HDA_OUTPUT),
1459 /* Modes for retasking pin widgets */
1460 CXT_PIN_MODE("LINE1 pin mode", 0x14, CXT_PIN_DIR_INOUT),
1461 CXT_PIN_MODE("MIC1 pin mode", 0x15, CXT_PIN_DIR_INOUT),
1463 /* EAPD Switch Control */
1464 CXT_EAPD_SWITCH("External Amplifier", 0x13, 0x0),
1466 /* Loopback mixer controls */
1467 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x12, 0x01, HDA_INPUT),
1468 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x12, 0x01, HDA_INPUT),
1469 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x12, 0x02, HDA_INPUT),
1470 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x12, 0x02, HDA_INPUT),
1471 HDA_CODEC_VOLUME("LINE Playback Volume", 0x12, 0x0, HDA_INPUT),
1472 HDA_CODEC_MUTE("LINE Playback Switch", 0x12, 0x0, HDA_INPUT),
1473 HDA_CODEC_VOLUME("CD Playback Volume", 0x12, 0x04, HDA_INPUT),
1474 HDA_CODEC_MUTE("CD Playback Switch", 0x12, 0x04, HDA_INPUT),
1476 HDA_CODEC_VOLUME("Capture-1 Volume", 0x19, 0x0, HDA_INPUT),
1477 HDA_CODEC_MUTE("Capture-1 Switch", 0x19, 0x0, HDA_INPUT),
1478 HDA_CODEC_VOLUME("Capture-2 Volume", 0x19, 0x1, HDA_INPUT),
1479 HDA_CODEC_MUTE("Capture-2 Switch", 0x19, 0x1, HDA_INPUT),
1480 HDA_CODEC_VOLUME("Capture-3 Volume", 0x19, 0x2, HDA_INPUT),
1481 HDA_CODEC_MUTE("Capture-3 Switch", 0x19, 0x2, HDA_INPUT),
1482 HDA_CODEC_VOLUME("Capture-4 Volume", 0x19, 0x3, HDA_INPUT),
1483 HDA_CODEC_MUTE("Capture-4 Switch", 0x19, 0x3, HDA_INPUT),
1485 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1486 .name = "Input Source",
1487 .info = conexant_mux_enum_info,
1488 .get = conexant_mux_enum_get,
1489 .put = conexant_mux_enum_put,
1491 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT),
1493 { } /* end */
1496 static struct hda_verb cxt5047_test_init_verbs[] = {
1497 /* Enable retasking pins as output, initially without power amp */
1498 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1499 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1500 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1502 /* Disable digital (SPDIF) pins initially, but users can enable
1503 * them via a mixer switch. In the case of SPDIF-out, this initverb
1504 * payload also sets the generation to 0, output to be in "consumer"
1505 * PCM format, copyright asserted, no pre-emphasis and no validity
1506 * control.
1508 {0x18, AC_VERB_SET_DIGI_CONVERT_1, 0},
1510 /* Ensure mic1, mic2, line1 pin widgets take input from the
1511 * OUT1 sum bus when acting as an output.
1513 {0x1a, AC_VERB_SET_CONNECT_SEL, 0},
1514 {0x1b, AC_VERB_SET_CONNECT_SEL, 0},
1516 /* Start with output sum widgets muted and their output gains at min */
1517 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1518 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1520 /* Unmute retasking pin widget output buffers since the default
1521 * state appears to be output. As the pin mode is changed by the
1522 * user the pin mode control will take care of enabling the pin's
1523 * input/output buffers as needed.
1525 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1526 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1527 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1529 /* Mute capture amp left and right */
1530 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1532 /* Set ADC connection select to match default mixer setting (mic1
1533 * pin)
1535 {0x12, AC_VERB_SET_CONNECT_SEL, 0x00},
1537 /* Mute all inputs to mixer widget (even unconnected ones) */
1538 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
1539 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
1540 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
1541 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
1542 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
1543 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
1544 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
1545 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
1549 #endif
1552 /* initialize jack-sensing, too */
1553 static int cxt5047_hp_init(struct hda_codec *codec)
1555 conexant_init(codec);
1556 cxt5047_hp_automute(codec);
1557 return 0;
1561 enum {
1562 CXT5047_LAPTOP, /* Laptops w/o EAPD support */
1563 CXT5047_LAPTOP_HP, /* Some HP laptops */
1564 CXT5047_LAPTOP_EAPD, /* Laptops with EAPD support */
1565 #ifdef CONFIG_SND_DEBUG
1566 CXT5047_TEST,
1567 #endif
1568 CXT5047_MODELS
1571 static const char *cxt5047_models[CXT5047_MODELS] = {
1572 [CXT5047_LAPTOP] = "laptop",
1573 [CXT5047_LAPTOP_HP] = "laptop-hp",
1574 [CXT5047_LAPTOP_EAPD] = "laptop-eapd",
1575 #ifdef CONFIG_SND_DEBUG
1576 [CXT5047_TEST] = "test",
1577 #endif
1580 static struct snd_pci_quirk cxt5047_cfg_tbl[] = {
1581 SND_PCI_QUIRK(0x103c, 0x30a5, "HP DV5200T/DV8000T", CXT5047_LAPTOP_HP),
1582 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series",
1583 CXT5047_LAPTOP),
1584 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P100", CXT5047_LAPTOP_EAPD),
1588 static int patch_cxt5047(struct hda_codec *codec)
1590 struct conexant_spec *spec;
1591 int board_config;
1593 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1594 if (!spec)
1595 return -ENOMEM;
1596 codec->spec = spec;
1597 codec->pin_amp_workaround = 1;
1599 spec->multiout.max_channels = 2;
1600 spec->multiout.num_dacs = ARRAY_SIZE(cxt5047_dac_nids);
1601 spec->multiout.dac_nids = cxt5047_dac_nids;
1602 spec->multiout.dig_out_nid = CXT5047_SPDIF_OUT;
1603 spec->num_adc_nids = 1;
1604 spec->adc_nids = cxt5047_adc_nids;
1605 spec->capsrc_nids = cxt5047_capsrc_nids;
1606 spec->num_mixers = 1;
1607 spec->mixers[0] = cxt5047_base_mixers;
1608 spec->num_init_verbs = 1;
1609 spec->init_verbs[0] = cxt5047_init_verbs;
1610 spec->spdif_route = 0;
1611 spec->num_channel_mode = ARRAY_SIZE(cxt5047_modes),
1612 spec->channel_mode = cxt5047_modes,
1614 codec->patch_ops = conexant_patch_ops;
1616 board_config = snd_hda_check_board_config(codec, CXT5047_MODELS,
1617 cxt5047_models,
1618 cxt5047_cfg_tbl);
1619 switch (board_config) {
1620 case CXT5047_LAPTOP:
1621 spec->num_mixers = 2;
1622 spec->mixers[1] = cxt5047_hp_spk_mixers;
1623 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1624 break;
1625 case CXT5047_LAPTOP_HP:
1626 spec->num_mixers = 2;
1627 spec->mixers[1] = cxt5047_hp_only_mixers;
1628 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1629 codec->patch_ops.init = cxt5047_hp_init;
1630 break;
1631 case CXT5047_LAPTOP_EAPD:
1632 spec->input_mux = &cxt5047_toshiba_capture_source;
1633 spec->num_mixers = 2;
1634 spec->mixers[1] = cxt5047_hp_spk_mixers;
1635 spec->num_init_verbs = 2;
1636 spec->init_verbs[1] = cxt5047_toshiba_init_verbs;
1637 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1638 break;
1639 #ifdef CONFIG_SND_DEBUG
1640 case CXT5047_TEST:
1641 spec->input_mux = &cxt5047_test_capture_source;
1642 spec->mixers[0] = cxt5047_test_mixer;
1643 spec->init_verbs[0] = cxt5047_test_init_verbs;
1644 codec->patch_ops.unsol_event = cxt5047_hp_unsol_event;
1645 #endif
1647 spec->vmaster_nid = 0x13;
1649 switch (codec->subsystem_id >> 16) {
1650 case 0x103c:
1651 /* HP laptops have really bad sound over 0 dB on NID 0x10.
1652 * Fix max PCM level to 0 dB (originally it has 0x1e steps
1653 * with 0 dB offset 0x17)
1655 snd_hda_override_amp_caps(codec, 0x10, HDA_INPUT,
1656 (0x17 << AC_AMPCAP_OFFSET_SHIFT) |
1657 (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) |
1658 (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) |
1659 (1 << AC_AMPCAP_MUTE_SHIFT));
1660 break;
1663 return 0;
1666 /* Conexant 5051 specific */
1667 static hda_nid_t cxt5051_dac_nids[1] = { 0x10 };
1668 static hda_nid_t cxt5051_adc_nids[2] = { 0x14, 0x15 };
1670 static struct hda_channel_mode cxt5051_modes[1] = {
1671 { 2, NULL },
1674 static void cxt5051_update_speaker(struct hda_codec *codec)
1676 struct conexant_spec *spec = codec->spec;
1677 unsigned int pinctl;
1678 /* headphone pin */
1679 pinctl = (spec->hp_present && spec->cur_eapd) ? PIN_HP : 0;
1680 snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1681 pinctl);
1682 /* speaker pin */
1683 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
1684 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
1685 pinctl);
1686 /* on ideapad there is an aditional speaker (subwoofer) to mute */
1687 if (spec->ideapad)
1688 snd_hda_codec_write(codec, 0x1b, 0,
1689 AC_VERB_SET_PIN_WIDGET_CONTROL,
1690 pinctl);
1693 /* turn on/off EAPD (+ mute HP) as a master switch */
1694 static int cxt5051_hp_master_sw_put(struct snd_kcontrol *kcontrol,
1695 struct snd_ctl_elem_value *ucontrol)
1697 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1699 if (!cxt_eapd_put(kcontrol, ucontrol))
1700 return 0;
1701 cxt5051_update_speaker(codec);
1702 return 1;
1705 /* toggle input of built-in and mic jack appropriately */
1706 static void cxt5051_portb_automic(struct hda_codec *codec)
1708 struct conexant_spec *spec = codec->spec;
1709 unsigned int present;
1711 if (!(spec->auto_mic & AUTO_MIC_PORTB))
1712 return;
1713 present = snd_hda_jack_detect(codec, 0x17);
1714 snd_hda_codec_write(codec, 0x14, 0,
1715 AC_VERB_SET_CONNECT_SEL,
1716 present ? 0x01 : 0x00);
1719 /* switch the current ADC according to the jack state */
1720 static void cxt5051_portc_automic(struct hda_codec *codec)
1722 struct conexant_spec *spec = codec->spec;
1723 unsigned int present;
1724 hda_nid_t new_adc;
1726 if (!(spec->auto_mic & AUTO_MIC_PORTC))
1727 return;
1728 present = snd_hda_jack_detect(codec, 0x18);
1729 if (present)
1730 spec->cur_adc_idx = 1;
1731 else
1732 spec->cur_adc_idx = 0;
1733 new_adc = spec->adc_nids[spec->cur_adc_idx];
1734 if (spec->cur_adc && spec->cur_adc != new_adc) {
1735 /* stream is running, let's swap the current ADC */
1736 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
1737 spec->cur_adc = new_adc;
1738 snd_hda_codec_setup_stream(codec, new_adc,
1739 spec->cur_adc_stream_tag, 0,
1740 spec->cur_adc_format);
1744 /* mute internal speaker if HP is plugged */
1745 static void cxt5051_hp_automute(struct hda_codec *codec)
1747 struct conexant_spec *spec = codec->spec;
1749 spec->hp_present = snd_hda_jack_detect(codec, 0x16);
1750 cxt5051_update_speaker(codec);
1753 /* unsolicited event for HP jack sensing */
1754 static void cxt5051_hp_unsol_event(struct hda_codec *codec,
1755 unsigned int res)
1757 int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20;
1758 switch (res >> 26) {
1759 case CONEXANT_HP_EVENT:
1760 cxt5051_hp_automute(codec);
1761 break;
1762 case CXT5051_PORTB_EVENT:
1763 cxt5051_portb_automic(codec);
1764 break;
1765 case CXT5051_PORTC_EVENT:
1766 cxt5051_portc_automic(codec);
1767 break;
1769 conexant_report_jack(codec, nid);
1772 static struct snd_kcontrol_new cxt5051_playback_mixers[] = {
1773 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
1775 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1776 .name = "Master Playback Switch",
1777 .info = cxt_eapd_info,
1778 .get = cxt_eapd_get,
1779 .put = cxt5051_hp_master_sw_put,
1780 .private_value = 0x1a,
1785 static struct snd_kcontrol_new cxt5051_capture_mixers[] = {
1786 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1787 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1788 HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1789 HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1790 HDA_CODEC_VOLUME("Docking Mic Volume", 0x15, 0x00, HDA_INPUT),
1791 HDA_CODEC_MUTE("Docking Mic Switch", 0x15, 0x00, HDA_INPUT),
1795 static struct snd_kcontrol_new cxt5051_hp_mixers[] = {
1796 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1797 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1798 HDA_CODEC_VOLUME("External Mic Volume", 0x15, 0x00, HDA_INPUT),
1799 HDA_CODEC_MUTE("External Mic Switch", 0x15, 0x00, HDA_INPUT),
1803 static struct snd_kcontrol_new cxt5051_hp_dv6736_mixers[] = {
1804 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x00, HDA_INPUT),
1805 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x00, HDA_INPUT),
1809 static struct snd_kcontrol_new cxt5051_f700_mixers[] = {
1810 HDA_CODEC_VOLUME("Capture Volume", 0x14, 0x01, HDA_INPUT),
1811 HDA_CODEC_MUTE("Capture Switch", 0x14, 0x01, HDA_INPUT),
1815 static struct snd_kcontrol_new cxt5051_toshiba_mixers[] = {
1816 HDA_CODEC_VOLUME("Internal Mic Volume", 0x14, 0x00, HDA_INPUT),
1817 HDA_CODEC_MUTE("Internal Mic Switch", 0x14, 0x00, HDA_INPUT),
1818 HDA_CODEC_VOLUME("External Mic Volume", 0x14, 0x01, HDA_INPUT),
1819 HDA_CODEC_MUTE("External Mic Switch", 0x14, 0x01, HDA_INPUT),
1823 static struct hda_verb cxt5051_init_verbs[] = {
1824 /* Line in, Mic */
1825 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1826 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1827 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1828 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1829 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1830 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1831 /* SPK */
1832 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1833 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1834 /* HP, Amp */
1835 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1836 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1837 /* DAC1 */
1838 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1839 /* Record selector: Int mic */
1840 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1841 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1842 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1843 /* SPDIF route: PCM */
1844 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1845 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1846 /* EAPD */
1847 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1848 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1849 { } /* end */
1852 static struct hda_verb cxt5051_hp_dv6736_init_verbs[] = {
1853 /* Line in, Mic */
1854 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1855 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1856 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1857 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1858 /* SPK */
1859 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1860 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1861 /* HP, Amp */
1862 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1863 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1864 /* DAC1 */
1865 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1866 /* Record selector: Int mic */
1867 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1868 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1869 /* SPDIF route: PCM */
1870 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1871 /* EAPD */
1872 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1873 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1874 { } /* end */
1877 static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
1878 /* Line in, Mic */
1879 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1880 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1881 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1882 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1883 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1884 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1885 /* SPK */
1886 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1887 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1888 /* HP, Amp */
1889 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1890 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1891 /* Docking HP */
1892 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1893 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00},
1894 /* DAC1 */
1895 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1896 /* Record selector: Int mic */
1897 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1898 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1899 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x44},
1900 /* SPDIF route: PCM */
1901 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, /* needed for W500 Advanced Mini Dock 250410 */
1902 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1903 /* EAPD */
1904 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1905 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1906 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1907 { } /* end */
1910 static struct hda_verb cxt5051_f700_init_verbs[] = {
1911 /* Line in, Mic */
1912 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
1913 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1914 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1915 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
1916 /* SPK */
1917 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1918 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
1919 /* HP, Amp */
1920 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1921 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
1922 /* DAC1 */
1923 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1924 /* Record selector: Int mic */
1925 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x44},
1926 {0x14, AC_VERB_SET_CONNECT_SEL, 0x1},
1927 /* SPDIF route: PCM */
1928 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x0},
1929 /* EAPD */
1930 {0x1a, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
1931 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|CONEXANT_HP_EVENT},
1932 { } /* end */
1935 static void cxt5051_init_mic_port(struct hda_codec *codec, hda_nid_t nid,
1936 unsigned int event)
1938 snd_hda_codec_write(codec, nid, 0,
1939 AC_VERB_SET_UNSOLICITED_ENABLE,
1940 AC_USRSP_EN | event);
1941 #ifdef CONFIG_SND_HDA_INPUT_JACK
1942 conexant_add_jack(codec, nid, SND_JACK_MICROPHONE);
1943 conexant_report_jack(codec, nid);
1944 #endif
1947 static struct hda_verb cxt5051_ideapad_init_verbs[] = {
1948 /* Subwoofer */
1949 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1950 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1951 { } /* end */
1954 /* initialize jack-sensing, too */
1955 static int cxt5051_init(struct hda_codec *codec)
1957 struct conexant_spec *spec = codec->spec;
1959 conexant_init(codec);
1960 conexant_init_jacks(codec);
1962 if (spec->auto_mic & AUTO_MIC_PORTB)
1963 cxt5051_init_mic_port(codec, 0x17, CXT5051_PORTB_EVENT);
1964 if (spec->auto_mic & AUTO_MIC_PORTC)
1965 cxt5051_init_mic_port(codec, 0x18, CXT5051_PORTC_EVENT);
1967 if (codec->patch_ops.unsol_event) {
1968 cxt5051_hp_automute(codec);
1969 cxt5051_portb_automic(codec);
1970 cxt5051_portc_automic(codec);
1972 return 0;
1976 enum {
1977 CXT5051_LAPTOP, /* Laptops w/ EAPD support */
1978 CXT5051_HP, /* no docking */
1979 CXT5051_HP_DV6736, /* HP without mic switch */
1980 CXT5051_LENOVO_X200, /* Lenovo X200 laptop, also used for Advanced Mini Dock 250410 */
1981 CXT5051_F700, /* HP Compaq Presario F700 */
1982 CXT5051_TOSHIBA, /* Toshiba M300 & co */
1983 CXT5051_IDEAPAD, /* Lenovo IdeaPad Y430 */
1984 CXT5051_MODELS
1987 static const char *cxt5051_models[CXT5051_MODELS] = {
1988 [CXT5051_LAPTOP] = "laptop",
1989 [CXT5051_HP] = "hp",
1990 [CXT5051_HP_DV6736] = "hp-dv6736",
1991 [CXT5051_LENOVO_X200] = "lenovo-x200",
1992 [CXT5051_F700] = "hp-700",
1993 [CXT5051_TOSHIBA] = "toshiba",
1994 [CXT5051_IDEAPAD] = "ideapad",
1997 static struct snd_pci_quirk cxt5051_cfg_tbl[] = {
1998 SND_PCI_QUIRK(0x103c, 0x30cf, "HP DV6736", CXT5051_HP_DV6736),
1999 SND_PCI_QUIRK(0x103c, 0x360b, "Compaq Presario CQ60", CXT5051_HP),
2000 SND_PCI_QUIRK(0x103c, 0x30ea, "Compaq Presario F700", CXT5051_F700),
2001 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba M30x", CXT5051_TOSHIBA),
2002 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
2003 CXT5051_LAPTOP),
2004 SND_PCI_QUIRK(0x14f1, 0x5051, "HP Spartan 1.1", CXT5051_HP),
2005 SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT5051_LENOVO_X200),
2006 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo IdeaPad", CXT5051_IDEAPAD),
2010 static int patch_cxt5051(struct hda_codec *codec)
2012 struct conexant_spec *spec;
2013 int board_config;
2015 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
2016 if (!spec)
2017 return -ENOMEM;
2018 codec->spec = spec;
2019 codec->pin_amp_workaround = 1;
2021 codec->patch_ops = conexant_patch_ops;
2022 codec->patch_ops.init = cxt5051_init;
2024 spec->multiout.max_channels = 2;
2025 spec->multiout.num_dacs = ARRAY_SIZE(cxt5051_dac_nids);
2026 spec->multiout.dac_nids = cxt5051_dac_nids;
2027 spec->multiout.dig_out_nid = CXT5051_SPDIF_OUT;
2028 spec->num_adc_nids = 1; /* not 2; via auto-mic switch */
2029 spec->adc_nids = cxt5051_adc_nids;
2030 spec->num_mixers = 2;
2031 spec->mixers[0] = cxt5051_capture_mixers;
2032 spec->mixers[1] = cxt5051_playback_mixers;
2033 spec->num_init_verbs = 1;
2034 spec->init_verbs[0] = cxt5051_init_verbs;
2035 spec->spdif_route = 0;
2036 spec->num_channel_mode = ARRAY_SIZE(cxt5051_modes);
2037 spec->channel_mode = cxt5051_modes;
2038 spec->cur_adc = 0;
2039 spec->cur_adc_idx = 0;
2041 set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
2043 codec->patch_ops.unsol_event = cxt5051_hp_unsol_event;
2045 board_config = snd_hda_check_board_config(codec, CXT5051_MODELS,
2046 cxt5051_models,
2047 cxt5051_cfg_tbl);
2048 spec->auto_mic = AUTO_MIC_PORTB | AUTO_MIC_PORTC;
2049 switch (board_config) {
2050 case CXT5051_HP:
2051 spec->mixers[0] = cxt5051_hp_mixers;
2052 break;
2053 case CXT5051_HP_DV6736:
2054 spec->init_verbs[0] = cxt5051_hp_dv6736_init_verbs;
2055 spec->mixers[0] = cxt5051_hp_dv6736_mixers;
2056 spec->auto_mic = 0;
2057 break;
2058 case CXT5051_LENOVO_X200:
2059 spec->init_verbs[0] = cxt5051_lenovo_x200_init_verbs;
2060 break;
2061 case CXT5051_F700:
2062 spec->init_verbs[0] = cxt5051_f700_init_verbs;
2063 spec->mixers[0] = cxt5051_f700_mixers;
2064 spec->auto_mic = 0;
2065 break;
2066 case CXT5051_TOSHIBA:
2067 spec->mixers[0] = cxt5051_toshiba_mixers;
2068 spec->auto_mic = AUTO_MIC_PORTB;
2069 break;
2070 case CXT5051_IDEAPAD:
2071 spec->init_verbs[spec->num_init_verbs++] =
2072 cxt5051_ideapad_init_verbs;
2073 spec->ideapad = 1;
2074 break;
2077 if (spec->beep_amp)
2078 snd_hda_attach_beep_device(codec, spec->beep_amp);
2080 return 0;
2083 /* Conexant 5066 specific */
2085 static hda_nid_t cxt5066_dac_nids[1] = { 0x10 };
2086 static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 };
2087 static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 };
2088 #define CXT5066_SPDIF_OUT 0x21
2090 /* OLPC's microphone port is DC coupled for use with external sensors,
2091 * therefore we use a 50% mic bias in order to center the input signal with
2092 * the DC input range of the codec. */
2093 #define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50
2095 static struct hda_channel_mode cxt5066_modes[1] = {
2096 { 2, NULL },
2099 static void cxt5066_update_speaker(struct hda_codec *codec)
2101 struct conexant_spec *spec = codec->spec;
2102 unsigned int pinctl;
2104 snd_printdd("CXT5066: update speaker, hp_present=%d\n",
2105 spec->hp_present);
2107 /* Port A (HP) */
2108 pinctl = ((spec->hp_present & 1) && spec->cur_eapd) ? PIN_HP : 0;
2109 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2110 pinctl);
2112 /* Port D (HP/LO) */
2113 pinctl = ((spec->hp_present & 2) && spec->cur_eapd)
2114 ? spec->port_d_mode : 0;
2115 /* Mute if Port A is connected on Thinkpad */
2116 if (spec->thinkpad && (spec->hp_present & 1))
2117 pinctl = 0;
2118 snd_hda_codec_write(codec, 0x1c, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2119 pinctl);
2121 /* CLASS_D AMP */
2122 pinctl = (!spec->hp_present && spec->cur_eapd) ? PIN_OUT : 0;
2123 snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2124 pinctl);
2126 if (spec->dell_automute) {
2127 /* DELL AIO Port Rule: PortA > PortD > IntSpk */
2128 pinctl = (!(spec->hp_present & 1) && spec->cur_eapd)
2129 ? PIN_OUT : 0;
2130 snd_hda_codec_write(codec, 0x1c, 0,
2131 AC_VERB_SET_PIN_WIDGET_CONTROL, pinctl);
2135 /* turn on/off EAPD (+ mute HP) as a master switch */
2136 static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol,
2137 struct snd_ctl_elem_value *ucontrol)
2139 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2141 if (!cxt_eapd_put(kcontrol, ucontrol))
2142 return 0;
2144 cxt5066_update_speaker(codec);
2145 return 1;
2148 static const struct hda_input_mux cxt5066_olpc_dc_bias = {
2149 .num_items = 3,
2150 .items = {
2151 { "Off", PIN_IN },
2152 { "50%", PIN_VREF50 },
2153 { "80%", PIN_VREF80 },
2157 static int cxt5066_set_olpc_dc_bias(struct hda_codec *codec)
2159 struct conexant_spec *spec = codec->spec;
2160 /* Even though port F is the DC input, the bias is controlled on port B.
2161 * we also leave that port as an active input (but unselected) in DC mode
2162 * just in case that is necessary to make the bias setting take effect. */
2163 return snd_hda_codec_write_cache(codec, 0x1a, 0,
2164 AC_VERB_SET_PIN_WIDGET_CONTROL,
2165 cxt5066_olpc_dc_bias.items[spec->dc_input_bias].index);
2168 /* OLPC defers mic widget control until when capture is started because the
2169 * microphone LED comes on as soon as these settings are put in place. if we
2170 * did this before recording, it would give the false indication that recording
2171 * is happening when it is not. */
2172 static void cxt5066_olpc_select_mic(struct hda_codec *codec)
2174 struct conexant_spec *spec = codec->spec;
2175 if (!spec->recording)
2176 return;
2178 if (spec->dc_enable) {
2179 /* in DC mode we ignore presence detection and just use the jack
2180 * through our special DC port */
2181 const struct hda_verb enable_dc_mode[] = {
2182 /* disble internal mic, port C */
2183 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2185 /* enable DC capture, port F */
2186 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2190 snd_hda_sequence_write(codec, enable_dc_mode);
2191 /* port B input disabled (and bias set) through the following call */
2192 cxt5066_set_olpc_dc_bias(codec);
2193 return;
2196 /* disable DC (port F) */
2197 snd_hda_codec_write(codec, 0x1e, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
2199 /* external mic, port B */
2200 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2201 spec->ext_mic_present ? CXT5066_OLPC_EXT_MIC_BIAS : 0);
2203 /* internal mic, port C */
2204 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2205 spec->ext_mic_present ? 0 : PIN_VREF80);
2208 /* toggle input of built-in and mic jack appropriately */
2209 static void cxt5066_olpc_automic(struct hda_codec *codec)
2211 struct conexant_spec *spec = codec->spec;
2212 unsigned int present;
2214 if (spec->dc_enable) /* don't do presence detection in DC mode */
2215 return;
2217 present = snd_hda_codec_read(codec, 0x1a, 0,
2218 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2219 if (present)
2220 snd_printdd("CXT5066: external microphone detected\n");
2221 else
2222 snd_printdd("CXT5066: external microphone absent\n");
2224 snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_CONNECT_SEL,
2225 present ? 0 : 1);
2226 spec->ext_mic_present = !!present;
2228 cxt5066_olpc_select_mic(codec);
2231 /* toggle input of built-in digital mic and mic jack appropriately */
2232 static void cxt5066_vostro_automic(struct hda_codec *codec)
2234 unsigned int present;
2236 struct hda_verb ext_mic_present[] = {
2237 /* enable external mic, port B */
2238 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2240 /* switch to external mic input */
2241 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2242 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2244 /* disable internal digital mic */
2245 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2248 static struct hda_verb ext_mic_absent[] = {
2249 /* enable internal mic, port C */
2250 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2252 /* switch to internal mic input */
2253 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2255 /* disable external mic, port B */
2256 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2260 present = snd_hda_jack_detect(codec, 0x1a);
2261 if (present) {
2262 snd_printdd("CXT5066: external microphone detected\n");
2263 snd_hda_sequence_write(codec, ext_mic_present);
2264 } else {
2265 snd_printdd("CXT5066: external microphone absent\n");
2266 snd_hda_sequence_write(codec, ext_mic_absent);
2270 /* toggle input of built-in digital mic and mic jack appropriately */
2271 static void cxt5066_ideapad_automic(struct hda_codec *codec)
2273 unsigned int present;
2275 struct hda_verb ext_mic_present[] = {
2276 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2277 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2278 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2281 static struct hda_verb ext_mic_absent[] = {
2282 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2283 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2284 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2288 present = snd_hda_jack_detect(codec, 0x1b);
2289 if (present) {
2290 snd_printdd("CXT5066: external microphone detected\n");
2291 snd_hda_sequence_write(codec, ext_mic_present);
2292 } else {
2293 snd_printdd("CXT5066: external microphone absent\n");
2294 snd_hda_sequence_write(codec, ext_mic_absent);
2298 /* toggle input of built-in digital mic and mic jack appropriately
2299 order is: external mic -> dock mic -> interal mic */
2300 static void cxt5066_thinkpad_automic(struct hda_codec *codec)
2302 unsigned int ext_present, dock_present;
2304 static struct hda_verb ext_mic_present[] = {
2305 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2306 {0x17, AC_VERB_SET_CONNECT_SEL, 1},
2307 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2308 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2309 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2312 static struct hda_verb dock_mic_present[] = {
2313 {0x14, AC_VERB_SET_CONNECT_SEL, 0},
2314 {0x17, AC_VERB_SET_CONNECT_SEL, 0},
2315 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2316 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2317 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2320 static struct hda_verb ext_mic_absent[] = {
2321 {0x14, AC_VERB_SET_CONNECT_SEL, 2},
2322 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2323 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2324 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2328 ext_present = snd_hda_jack_detect(codec, 0x1b);
2329 dock_present = snd_hda_jack_detect(codec, 0x1a);
2330 if (ext_present) {
2331 snd_printdd("CXT5066: external microphone detected\n");
2332 snd_hda_sequence_write(codec, ext_mic_present);
2333 } else if (dock_present) {
2334 snd_printdd("CXT5066: dock microphone detected\n");
2335 snd_hda_sequence_write(codec, dock_mic_present);
2336 } else {
2337 snd_printdd("CXT5066: external microphone absent\n");
2338 snd_hda_sequence_write(codec, ext_mic_absent);
2342 /* mute internal speaker if HP is plugged */
2343 static void cxt5066_hp_automute(struct hda_codec *codec)
2345 struct conexant_spec *spec = codec->spec;
2346 unsigned int portA, portD;
2348 /* Port A */
2349 portA = snd_hda_jack_detect(codec, 0x19);
2351 /* Port D */
2352 portD = snd_hda_jack_detect(codec, 0x1c);
2354 spec->hp_present = !!(portA);
2355 spec->hp_present |= portD ? 2 : 0;
2356 snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n",
2357 portA, portD, spec->hp_present);
2358 cxt5066_update_speaker(codec);
2361 /* unsolicited event for jack sensing */
2362 static void cxt5066_olpc_unsol_event(struct hda_codec *codec, unsigned int res)
2364 struct conexant_spec *spec = codec->spec;
2365 snd_printdd("CXT5066: unsol event %x (%x)\n", res, res >> 26);
2366 switch (res >> 26) {
2367 case CONEXANT_HP_EVENT:
2368 cxt5066_hp_automute(codec);
2369 break;
2370 case CONEXANT_MIC_EVENT:
2371 /* ignore mic events in DC mode; we're always using the jack */
2372 if (!spec->dc_enable)
2373 cxt5066_olpc_automic(codec);
2374 break;
2378 /* unsolicited event for jack sensing */
2379 static void cxt5066_vostro_event(struct hda_codec *codec, unsigned int res)
2381 snd_printdd("CXT5066_vostro: unsol event %x (%x)\n", res, res >> 26);
2382 switch (res >> 26) {
2383 case CONEXANT_HP_EVENT:
2384 cxt5066_hp_automute(codec);
2385 break;
2386 case CONEXANT_MIC_EVENT:
2387 cxt5066_vostro_automic(codec);
2388 break;
2392 /* unsolicited event for jack sensing */
2393 static void cxt5066_ideapad_event(struct hda_codec *codec, unsigned int res)
2395 snd_printdd("CXT5066_ideapad: unsol event %x (%x)\n", res, res >> 26);
2396 switch (res >> 26) {
2397 case CONEXANT_HP_EVENT:
2398 cxt5066_hp_automute(codec);
2399 break;
2400 case CONEXANT_MIC_EVENT:
2401 cxt5066_ideapad_automic(codec);
2402 break;
2406 /* unsolicited event for jack sensing */
2407 static void cxt5066_thinkpad_event(struct hda_codec *codec, unsigned int res)
2409 snd_printdd("CXT5066_thinkpad: unsol event %x (%x)\n", res, res >> 26);
2410 switch (res >> 26) {
2411 case CONEXANT_HP_EVENT:
2412 cxt5066_hp_automute(codec);
2413 break;
2414 case CONEXANT_MIC_EVENT:
2415 cxt5066_thinkpad_automic(codec);
2416 break;
2420 static const struct hda_input_mux cxt5066_analog_mic_boost = {
2421 .num_items = 5,
2422 .items = {
2423 { "0dB", 0 },
2424 { "10dB", 1 },
2425 { "20dB", 2 },
2426 { "30dB", 3 },
2427 { "40dB", 4 },
2431 static void cxt5066_set_mic_boost(struct hda_codec *codec)
2433 struct conexant_spec *spec = codec->spec;
2434 snd_hda_codec_write_cache(codec, 0x17, 0,
2435 AC_VERB_SET_AMP_GAIN_MUTE,
2436 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_OUTPUT |
2437 cxt5066_analog_mic_boost.items[spec->mic_boost].index);
2438 if (spec->ideapad || spec->thinkpad) {
2439 /* adjust the internal mic as well...it is not through 0x17 */
2440 snd_hda_codec_write_cache(codec, 0x23, 0,
2441 AC_VERB_SET_AMP_GAIN_MUTE,
2442 AC_AMP_SET_RIGHT | AC_AMP_SET_LEFT | AC_AMP_SET_INPUT |
2443 cxt5066_analog_mic_boost.
2444 items[spec->mic_boost].index);
2448 static int cxt5066_mic_boost_mux_enum_info(struct snd_kcontrol *kcontrol,
2449 struct snd_ctl_elem_info *uinfo)
2451 return snd_hda_input_mux_info(&cxt5066_analog_mic_boost, uinfo);
2454 static int cxt5066_mic_boost_mux_enum_get(struct snd_kcontrol *kcontrol,
2455 struct snd_ctl_elem_value *ucontrol)
2457 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2458 struct conexant_spec *spec = codec->spec;
2459 ucontrol->value.enumerated.item[0] = spec->mic_boost;
2460 return 0;
2463 static int cxt5066_mic_boost_mux_enum_put(struct snd_kcontrol *kcontrol,
2464 struct snd_ctl_elem_value *ucontrol)
2466 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2467 struct conexant_spec *spec = codec->spec;
2468 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2469 unsigned int idx;
2470 idx = ucontrol->value.enumerated.item[0];
2471 if (idx >= imux->num_items)
2472 idx = imux->num_items - 1;
2474 spec->mic_boost = idx;
2475 if (!spec->dc_enable)
2476 cxt5066_set_mic_boost(codec);
2477 return 1;
2480 static void cxt5066_enable_dc(struct hda_codec *codec)
2482 const struct hda_verb enable_dc_mode[] = {
2483 /* disable gain */
2484 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2486 /* switch to DC input */
2487 {0x17, AC_VERB_SET_CONNECT_SEL, 3},
2491 /* configure as input source */
2492 snd_hda_sequence_write(codec, enable_dc_mode);
2493 cxt5066_olpc_select_mic(codec); /* also sets configured bias */
2496 static void cxt5066_disable_dc(struct hda_codec *codec)
2498 /* reconfigure input source */
2499 cxt5066_set_mic_boost(codec);
2500 /* automic also selects the right mic if we're recording */
2501 cxt5066_olpc_automic(codec);
2504 static int cxt5066_olpc_dc_get(struct snd_kcontrol *kcontrol,
2505 struct snd_ctl_elem_value *ucontrol)
2507 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2508 struct conexant_spec *spec = codec->spec;
2509 ucontrol->value.integer.value[0] = spec->dc_enable;
2510 return 0;
2513 static int cxt5066_olpc_dc_put(struct snd_kcontrol *kcontrol,
2514 struct snd_ctl_elem_value *ucontrol)
2516 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2517 struct conexant_spec *spec = codec->spec;
2518 int dc_enable = !!ucontrol->value.integer.value[0];
2520 if (dc_enable == spec->dc_enable)
2521 return 0;
2523 spec->dc_enable = dc_enable;
2524 if (dc_enable)
2525 cxt5066_enable_dc(codec);
2526 else
2527 cxt5066_disable_dc(codec);
2529 return 1;
2532 static int cxt5066_olpc_dc_bias_enum_info(struct snd_kcontrol *kcontrol,
2533 struct snd_ctl_elem_info *uinfo)
2535 return snd_hda_input_mux_info(&cxt5066_olpc_dc_bias, uinfo);
2538 static int cxt5066_olpc_dc_bias_enum_get(struct snd_kcontrol *kcontrol,
2539 struct snd_ctl_elem_value *ucontrol)
2541 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2542 struct conexant_spec *spec = codec->spec;
2543 ucontrol->value.enumerated.item[0] = spec->dc_input_bias;
2544 return 0;
2547 static int cxt5066_olpc_dc_bias_enum_put(struct snd_kcontrol *kcontrol,
2548 struct snd_ctl_elem_value *ucontrol)
2550 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2551 struct conexant_spec *spec = codec->spec;
2552 const struct hda_input_mux *imux = &cxt5066_analog_mic_boost;
2553 unsigned int idx;
2555 idx = ucontrol->value.enumerated.item[0];
2556 if (idx >= imux->num_items)
2557 idx = imux->num_items - 1;
2559 spec->dc_input_bias = idx;
2560 if (spec->dc_enable)
2561 cxt5066_set_olpc_dc_bias(codec);
2562 return 1;
2565 static void cxt5066_olpc_capture_prepare(struct hda_codec *codec)
2567 struct conexant_spec *spec = codec->spec;
2568 /* mark as recording and configure the microphone widget so that the
2569 * recording LED comes on. */
2570 spec->recording = 1;
2571 cxt5066_olpc_select_mic(codec);
2574 static void cxt5066_olpc_capture_cleanup(struct hda_codec *codec)
2576 struct conexant_spec *spec = codec->spec;
2577 const struct hda_verb disable_mics[] = {
2578 /* disable external mic, port B */
2579 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2581 /* disble internal mic, port C */
2582 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2584 /* disable DC capture, port F */
2585 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2589 snd_hda_sequence_write(codec, disable_mics);
2590 spec->recording = 0;
2593 static struct hda_input_mux cxt5066_capture_source = {
2594 .num_items = 4,
2595 .items = {
2596 { "Mic B", 0 },
2597 { "Mic C", 1 },
2598 { "Mic E", 2 },
2599 { "Mic F", 3 },
2603 static struct hda_bind_ctls cxt5066_bind_capture_vol_others = {
2604 .ops = &snd_hda_bind_vol,
2605 .values = {
2606 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2607 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2612 static struct hda_bind_ctls cxt5066_bind_capture_sw_others = {
2613 .ops = &snd_hda_bind_sw,
2614 .values = {
2615 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_INPUT),
2616 HDA_COMPOSE_AMP_VAL(0x14, 3, 2, HDA_INPUT),
2621 static struct snd_kcontrol_new cxt5066_mixer_master[] = {
2622 HDA_CODEC_VOLUME("Master Playback Volume", 0x10, 0x00, HDA_OUTPUT),
2626 static struct snd_kcontrol_new cxt5066_mixer_master_olpc[] = {
2628 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2629 .name = "Master Playback Volume",
2630 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE |
2631 SNDRV_CTL_ELEM_ACCESS_TLV_READ |
2632 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK,
2633 .subdevice = HDA_SUBDEV_AMP_FLAG,
2634 .info = snd_hda_mixer_amp_volume_info,
2635 .get = snd_hda_mixer_amp_volume_get,
2636 .put = snd_hda_mixer_amp_volume_put,
2637 .tlv = { .c = snd_hda_mixer_amp_tlv },
2638 /* offset by 28 volume steps to limit minimum gain to -46dB */
2639 .private_value =
2640 HDA_COMPOSE_AMP_VAL_OFS(0x10, 3, 0, HDA_OUTPUT, 28),
2645 static struct snd_kcontrol_new cxt5066_mixer_olpc_dc[] = {
2647 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2648 .name = "DC Mode Enable Switch",
2649 .info = snd_ctl_boolean_mono_info,
2650 .get = cxt5066_olpc_dc_get,
2651 .put = cxt5066_olpc_dc_put,
2654 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2655 .name = "DC Input Bias Enum",
2656 .info = cxt5066_olpc_dc_bias_enum_info,
2657 .get = cxt5066_olpc_dc_bias_enum_get,
2658 .put = cxt5066_olpc_dc_bias_enum_put,
2663 static struct snd_kcontrol_new cxt5066_mixers[] = {
2665 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2666 .name = "Master Playback Switch",
2667 .info = cxt_eapd_info,
2668 .get = cxt_eapd_get,
2669 .put = cxt5066_hp_master_sw_put,
2670 .private_value = 0x1d,
2674 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2675 .name = "Analog Mic Boost Capture Enum",
2676 .info = cxt5066_mic_boost_mux_enum_info,
2677 .get = cxt5066_mic_boost_mux_enum_get,
2678 .put = cxt5066_mic_boost_mux_enum_put,
2681 HDA_BIND_VOL("Capture Volume", &cxt5066_bind_capture_vol_others),
2682 HDA_BIND_SW("Capture Switch", &cxt5066_bind_capture_sw_others),
2686 static struct snd_kcontrol_new cxt5066_vostro_mixers[] = {
2688 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2689 .name = "Int Mic Boost Capture Enum",
2690 .info = cxt5066_mic_boost_mux_enum_info,
2691 .get = cxt5066_mic_boost_mux_enum_get,
2692 .put = cxt5066_mic_boost_mux_enum_put,
2693 .private_value = 0x23 | 0x100,
2698 static struct hda_verb cxt5066_init_verbs[] = {
2699 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2700 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2701 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2702 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2704 /* Speakers */
2705 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2706 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2708 /* HP, Amp */
2709 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2710 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2712 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2713 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2715 /* DAC1 */
2716 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2718 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2719 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2720 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2721 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2722 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2723 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2725 /* no digital microphone support yet */
2726 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2728 /* Audio input selector */
2729 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2731 /* SPDIF route: PCM */
2732 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2733 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2735 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2736 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2738 /* EAPD */
2739 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2741 /* not handling these yet */
2742 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2743 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2744 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2745 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2746 {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2747 {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2748 {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2749 {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, 0},
2750 { } /* end */
2753 static struct hda_verb cxt5066_init_verbs_olpc[] = {
2754 /* Port A: headphones */
2755 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2756 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2758 /* Port B: external microphone */
2759 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2761 /* Port C: internal microphone */
2762 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2764 /* Port D: unused */
2765 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2767 /* Port E: unused, but has primary EAPD */
2768 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2769 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2771 /* Port F: external DC input through microphone port */
2772 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2774 /* Port G: internal speakers */
2775 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2776 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2778 /* DAC1 */
2779 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2781 /* DAC2: unused */
2782 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2784 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2785 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2786 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2787 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2788 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2789 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2790 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2791 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2792 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2793 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2794 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2795 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2797 /* Disable digital microphone port */
2798 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2800 /* Audio input selectors */
2801 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2802 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2804 /* Disable SPDIF */
2805 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2806 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2808 /* enable unsolicited events for Port A and B */
2809 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2810 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2811 { } /* end */
2814 static struct hda_verb cxt5066_init_verbs_vostro[] = {
2815 /* Port A: headphones */
2816 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2817 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2819 /* Port B: external microphone */
2820 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2822 /* Port C: unused */
2823 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2825 /* Port D: unused */
2826 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2828 /* Port E: unused, but has primary EAPD */
2829 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2830 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2832 /* Port F: unused */
2833 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2835 /* Port G: internal speakers */
2836 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2837 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2839 /* DAC1 */
2840 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2842 /* DAC2: unused */
2843 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2845 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2846 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2847 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2848 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2849 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2850 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2851 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2852 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2853 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2854 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2855 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2856 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2858 /* Digital microphone port */
2859 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2861 /* Audio input selectors */
2862 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3},
2863 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
2865 /* Disable SPDIF */
2866 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2867 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2869 /* enable unsolicited events for Port A and B */
2870 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2871 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2872 { } /* end */
2875 static struct hda_verb cxt5066_init_verbs_ideapad[] = {
2876 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port B */
2877 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, /* Port C */
2878 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2879 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2881 /* Speakers */
2882 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2883 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2885 /* HP, Amp */
2886 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2887 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2889 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2890 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2892 /* DAC1 */
2893 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2895 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2896 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2897 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2898 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2899 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2900 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2901 {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */
2903 /* Audio input selector */
2904 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2905 {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */
2907 /* SPDIF route: PCM */
2908 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2909 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2911 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2912 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2914 /* internal microphone */
2915 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable int mic */
2917 /* EAPD */
2918 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2920 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2921 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2922 { } /* end */
2925 static struct hda_verb cxt5066_init_verbs_thinkpad[] = {
2926 {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port F */
2927 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* Port E */
2929 /* Port G: internal speakers */
2930 {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2931 {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2933 /* Port A: HP, Amp */
2934 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2935 {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2937 /* Port B: Mic Dock */
2938 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2940 /* Port C: Mic */
2941 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2943 /* Port D: HP Dock, Amp */
2944 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
2945 {0x1c, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */
2947 /* DAC1 */
2948 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2950 /* Node 14 connections: 0x17 0x18 0x23 0x24 0x27 */
2951 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x50},
2952 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2953 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2) | 0x50},
2954 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2955 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2956 {0x14, AC_VERB_SET_CONNECT_SEL, 2}, /* default to internal mic */
2958 /* Audio input selector */
2959 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x2},
2960 {0x17, AC_VERB_SET_CONNECT_SEL, 1}, /* route ext mic */
2962 /* SPDIF route: PCM */
2963 {0x20, AC_VERB_SET_CONNECT_SEL, 0x0},
2964 {0x22, AC_VERB_SET_CONNECT_SEL, 0x0},
2966 {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2967 {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2969 /* internal microphone */
2970 {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* enable int mic */
2972 /* EAPD */
2973 {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */
2975 /* enable unsolicited events for Port A, B, C and D */
2976 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2977 {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT},
2978 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2979 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT},
2980 { } /* end */
2983 static struct hda_verb cxt5066_init_verbs_portd_lo[] = {
2984 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2985 { } /* end */
2988 /* initialize jack-sensing, too */
2989 static int cxt5066_init(struct hda_codec *codec)
2991 struct conexant_spec *spec = codec->spec;
2993 snd_printdd("CXT5066: init\n");
2994 conexant_init(codec);
2995 if (codec->patch_ops.unsol_event) {
2996 cxt5066_hp_automute(codec);
2997 if (spec->dell_vostro)
2998 cxt5066_vostro_automic(codec);
2999 else if (spec->ideapad)
3000 cxt5066_ideapad_automic(codec);
3001 else if (spec->thinkpad)
3002 cxt5066_thinkpad_automic(codec);
3004 cxt5066_set_mic_boost(codec);
3005 return 0;
3008 static int cxt5066_olpc_init(struct hda_codec *codec)
3010 struct conexant_spec *spec = codec->spec;
3011 snd_printdd("CXT5066: init\n");
3012 conexant_init(codec);
3013 cxt5066_hp_automute(codec);
3014 if (!spec->dc_enable) {
3015 cxt5066_set_mic_boost(codec);
3016 cxt5066_olpc_automic(codec);
3017 } else {
3018 cxt5066_enable_dc(codec);
3020 return 0;
3023 enum {
3024 CXT5066_LAPTOP, /* Laptops w/ EAPD support */
3025 CXT5066_DELL_LAPTOP, /* Dell Laptop */
3026 CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */
3027 CXT5066_DELL_VOSTO, /* Dell Vostro 1015i */
3028 CXT5066_IDEAPAD, /* Lenovo IdeaPad U150 */
3029 CXT5066_THINKPAD, /* Lenovo ThinkPad T410s, others? */
3030 CXT5066_MODELS
3033 static const char *cxt5066_models[CXT5066_MODELS] = {
3034 [CXT5066_LAPTOP] = "laptop",
3035 [CXT5066_DELL_LAPTOP] = "dell-laptop",
3036 [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5",
3037 [CXT5066_DELL_VOSTO] = "dell-vostro",
3038 [CXT5066_IDEAPAD] = "ideapad",
3039 [CXT5066_THINKPAD] = "thinkpad",
3042 static struct snd_pci_quirk cxt5066_cfg_tbl[] = {
3043 SND_PCI_QUIRK(0x14f1, 0x0101, "Conexant Reference board",
3044 CXT5066_LAPTOP),
3045 SND_PCI_QUIRK(0x1028, 0x02f5, "Dell",
3046 CXT5066_DELL_LAPTOP),
3047 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5),
3048 SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTO),
3049 SND_PCI_QUIRK(0x1028, 0x0408, "Dell Inspiron One 19T", CXT5066_IDEAPAD),
3050 SND_PCI_QUIRK(0x1179, 0xff50, "Toshiba Satellite P500-PSPGSC-01800T", CXT5066_OLPC_XO_1_5),
3051 SND_PCI_QUIRK(0x1179, 0xffe0, "Toshiba Satellite Pro T130-15F", CXT5066_OLPC_XO_1_5),
3052 SND_PCI_QUIRK(0x17aa, 0x21b2, "Thinkpad X100e", CXT5066_IDEAPAD),
3053 SND_PCI_QUIRK(0x17aa, 0x21b3, "Thinkpad Edge 13 (197)", CXT5066_IDEAPAD),
3054 SND_PCI_QUIRK(0x17aa, 0x21b4, "Thinkpad Edge", CXT5066_IDEAPAD),
3055 SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo Thinkpad", CXT5066_THINKPAD),
3056 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo G series", CXT5066_IDEAPAD),
3057 SND_PCI_QUIRK(0x17aa, 0x3938, "Lenovo G series (AMD)", CXT5066_IDEAPAD),
3058 SND_PCI_QUIRK(0x17aa, 0x3a0d, "ideapad", CXT5066_IDEAPAD),
3062 static int patch_cxt5066(struct hda_codec *codec)
3064 struct conexant_spec *spec;
3065 int board_config;
3067 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3068 if (!spec)
3069 return -ENOMEM;
3070 codec->spec = spec;
3072 codec->patch_ops = conexant_patch_ops;
3073 codec->patch_ops.init = conexant_init;
3075 spec->dell_automute = 0;
3076 spec->multiout.max_channels = 2;
3077 spec->multiout.num_dacs = ARRAY_SIZE(cxt5066_dac_nids);
3078 spec->multiout.dac_nids = cxt5066_dac_nids;
3079 spec->multiout.dig_out_nid = CXT5066_SPDIF_OUT;
3080 spec->num_adc_nids = 1;
3081 spec->adc_nids = cxt5066_adc_nids;
3082 spec->capsrc_nids = cxt5066_capsrc_nids;
3083 spec->input_mux = &cxt5066_capture_source;
3085 spec->port_d_mode = PIN_HP;
3087 spec->num_init_verbs = 1;
3088 spec->init_verbs[0] = cxt5066_init_verbs;
3089 spec->num_channel_mode = ARRAY_SIZE(cxt5066_modes);
3090 spec->channel_mode = cxt5066_modes;
3091 spec->cur_adc = 0;
3092 spec->cur_adc_idx = 0;
3094 set_beep_amp(spec, 0x13, 0, HDA_OUTPUT);
3096 board_config = snd_hda_check_board_config(codec, CXT5066_MODELS,
3097 cxt5066_models, cxt5066_cfg_tbl);
3098 switch (board_config) {
3099 default:
3100 case CXT5066_LAPTOP:
3101 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3102 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3103 break;
3104 case CXT5066_DELL_LAPTOP:
3105 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3106 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3108 spec->port_d_mode = PIN_OUT;
3109 spec->init_verbs[spec->num_init_verbs] = cxt5066_init_verbs_portd_lo;
3110 spec->num_init_verbs++;
3111 spec->dell_automute = 1;
3112 break;
3113 case CXT5066_OLPC_XO_1_5:
3114 codec->patch_ops.init = cxt5066_olpc_init;
3115 codec->patch_ops.unsol_event = cxt5066_olpc_unsol_event;
3116 spec->init_verbs[0] = cxt5066_init_verbs_olpc;
3117 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
3118 spec->mixers[spec->num_mixers++] = cxt5066_mixer_olpc_dc;
3119 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3120 spec->port_d_mode = 0;
3121 spec->mic_boost = 3; /* default 30dB gain */
3123 /* no S/PDIF out */
3124 spec->multiout.dig_out_nid = 0;
3126 /* input source automatically selected */
3127 spec->input_mux = NULL;
3129 /* our capture hooks which allow us to turn on the microphone LED
3130 * at the right time */
3131 spec->capture_prepare = cxt5066_olpc_capture_prepare;
3132 spec->capture_cleanup = cxt5066_olpc_capture_cleanup;
3133 break;
3134 case CXT5066_DELL_VOSTO:
3135 codec->patch_ops.init = cxt5066_init;
3136 codec->patch_ops.unsol_event = cxt5066_vostro_event;
3137 spec->init_verbs[0] = cxt5066_init_verbs_vostro;
3138 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc;
3139 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3140 spec->mixers[spec->num_mixers++] = cxt5066_vostro_mixers;
3141 spec->port_d_mode = 0;
3142 spec->dell_vostro = 1;
3143 spec->mic_boost = 3; /* default 30dB gain */
3145 /* no S/PDIF out */
3146 spec->multiout.dig_out_nid = 0;
3148 /* input source automatically selected */
3149 spec->input_mux = NULL;
3150 break;
3151 case CXT5066_IDEAPAD:
3152 codec->patch_ops.init = cxt5066_init;
3153 codec->patch_ops.unsol_event = cxt5066_ideapad_event;
3154 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3155 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3156 spec->init_verbs[0] = cxt5066_init_verbs_ideapad;
3157 spec->port_d_mode = 0;
3158 spec->ideapad = 1;
3159 spec->mic_boost = 2; /* default 20dB gain */
3161 /* no S/PDIF out */
3162 spec->multiout.dig_out_nid = 0;
3164 /* input source automatically selected */
3165 spec->input_mux = NULL;
3166 break;
3167 case CXT5066_THINKPAD:
3168 codec->patch_ops.init = cxt5066_init;
3169 codec->patch_ops.unsol_event = cxt5066_thinkpad_event;
3170 spec->mixers[spec->num_mixers++] = cxt5066_mixer_master;
3171 spec->mixers[spec->num_mixers++] = cxt5066_mixers;
3172 spec->init_verbs[0] = cxt5066_init_verbs_thinkpad;
3173 spec->thinkpad = 1;
3174 spec->port_d_mode = PIN_OUT;
3175 spec->mic_boost = 2; /* default 20dB gain */
3177 /* no S/PDIF out */
3178 spec->multiout.dig_out_nid = 0;
3180 /* input source automatically selected */
3181 spec->input_mux = NULL;
3182 break;
3185 if (spec->beep_amp)
3186 snd_hda_attach_beep_device(codec, spec->beep_amp);
3188 return 0;
3194 static struct hda_codec_preset snd_hda_preset_conexant[] = {
3195 { .id = 0x14f15045, .name = "CX20549 (Venice)",
3196 .patch = patch_cxt5045 },
3197 { .id = 0x14f15047, .name = "CX20551 (Waikiki)",
3198 .patch = patch_cxt5047 },
3199 { .id = 0x14f15051, .name = "CX20561 (Hermosa)",
3200 .patch = patch_cxt5051 },
3201 { .id = 0x14f15066, .name = "CX20582 (Pebble)",
3202 .patch = patch_cxt5066 },
3203 { .id = 0x14f15067, .name = "CX20583 (Pebble HSF)",
3204 .patch = patch_cxt5066 },
3205 { .id = 0x14f15069, .name = "CX20585",
3206 .patch = patch_cxt5066 },
3207 {} /* terminator */
3210 MODULE_ALIAS("snd-hda-codec-id:14f15045");
3211 MODULE_ALIAS("snd-hda-codec-id:14f15047");
3212 MODULE_ALIAS("snd-hda-codec-id:14f15051");
3213 MODULE_ALIAS("snd-hda-codec-id:14f15066");
3214 MODULE_ALIAS("snd-hda-codec-id:14f15067");
3215 MODULE_ALIAS("snd-hda-codec-id:14f15069");
3217 MODULE_LICENSE("GPL");
3218 MODULE_DESCRIPTION("Conexant HD-audio codec");
3220 static struct hda_codec_preset_list conexant_list = {
3221 .preset = snd_hda_preset_conexant,
3222 .owner = THIS_MODULE,
3225 static int __init patch_conexant_init(void)
3227 return snd_hda_add_codec_preset(&conexant_list);
3230 static void __exit patch_conexant_exit(void)
3232 snd_hda_delete_codec_preset(&conexant_list);
3235 module_init(patch_conexant_init)
3236 module_exit(patch_conexant_exit)