Lines Matching +full:mic +full:- +full:int
1 // SPDX-License-Identifier: GPL-2.0-or-later
7 * Tobin Davis <tdavis@dsl-only.net>
28 unsigned int num_eapds;
33 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
38 unsigned int dc_input_bias; /* offset into olpc_xo_dc_bias */
41 int mute_led_polarity;
42 unsigned int gpio_led;
43 unsigned int gpio_mute_led_mask;
44 unsigned int gpio_mic_led_mask;
56 static int set_beep_amp(struct conexant_spec *spec, hda_nid_t nid,
57 int idx, int dir)
60 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir);
61 int i;
63 spec->gen.beep_nid = nid;
65 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
68 return -ENOMEM;
69 knew->private_value = beep_amp;
74 static int cx_auto_parse_beep(struct hda_codec *codec)
76 struct conexant_spec *spec = codec->spec;
95 struct conexant_spec *spec = codec->spec;
103 spec->eapds[spec->num_eapds++] = nid;
104 if (spec->num_eapds >= ARRAY_SIZE(spec->eapds))
114 if (spec->num_eapds > 2)
115 spec->dynamic_eapd = 1;
118 static void cx_auto_turn_eapd(struct hda_codec *codec, int num_pins,
121 int i;
131 static void cx_auto_vmaster_hook(void *private_data, int enabled)
134 struct conexant_spec *spec = codec->spec;
136 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, enabled);
140 static int cx_auto_vmaster_mute_led(struct led_classdev *led_cdev,
143 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
144 struct conexant_spec *spec = codec->spec;
146 snd_hda_codec_write(codec, spec->mute_led_eapd, 0,
154 struct conexant_spec *spec = codec->spec;
155 unsigned int mask = spec->gpio_mute_led_mask | spec->gpio_mic_led_mask;
163 spec->gpio_led);
169 unsigned int mic_present;
174 /* set OFF voltage for DFET from -1.2V to -0.8V, set headset micbias register
181 /* enable headset mic VREF */
184 /* disable headset mic VREF */
188 static int cx_init(struct hda_codec *codec)
190 struct conexant_spec *spec = codec->spec;
192 if (!spec->dynamic_eapd)
193 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, true);
198 if (spec->is_cx11880_sn6140)
206 struct conexant_spec *spec = codec->spec;
210 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, false);
221 unsigned int val;
222 unsigned int count = 0;
248 unsigned int mic_present;
252 * Check hp&mic tag to process headset plugin & plugout.
255 if (!(mic_present & AC_PINSENSE_PRESENCE)) /* mic plugout */
261 static int cx_suspend(struct hda_codec *codec)
268 * pin fix-up
311 const struct hda_fixup *fix, int action)
313 struct conexant_spec *spec = codec->spec;
314 spec->gen.inv_dmic_split = 1;
319 const struct hda_fixup *fix, int action)
331 const struct hda_fixup *fix, int action)
346 int i;
348 struct conexant_spec *spec = codec->spec;
349 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
351 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
353 for (i = 0; i < cfg->num_inputs; i++)
354 if (cfg->inputs[i].pin == mux_pin) {
355 mic_mode = !!cfg->inputs[i].is_headphone_mic;
360 snd_hda_codec_write_cache(codec, 0x1c, 0, 0x410, 0x7c); /* enable merged mode for analog int-mic */
361 spec->gen.hp_jack_present = false;
363 snd_hda_codec_write_cache(codec, 0x1c, 0, 0x410, 0x54); /* disable merged mode for analog int-mic */
364 spec->gen.hp_jack_present = snd_hda_jack_detect(codec, spec->gen.autocfg.hp_pins[0]);
378 const struct hda_fixup *fix, int action)
380 struct conexant_spec *spec = codec->spec;
384 spec->parse_flags |= HDA_PINCFG_HEADPHONE_MIC;
385 snd_hdac_regmap_add_vendor_verb(&codec->core, 0x410);
388 WARN_ON(spec->gen.cap_sync_hook);
389 spec->gen.cap_sync_hook = cxt_update_headset_mode_hook;
390 spec->gen.automute_hook = cxt_update_headset_mode;
399 const struct hda_fixup *fix, int action)
401 struct conexant_spec *spec = codec->spec;
405 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
412 /* OLPC XO-1.5 supports DC input mode (e.g. for use with analog sensors)
434 struct conexant_spec *spec = codec->spec;
435 int ch, val;
440 if (!spec->dc_enable)
449 struct conexant_spec *spec = codec->spec;
450 int cur_input, val;
453 cur_input = spec->gen.input_paths[0][spec->gen.cur_mux[0]];
455 /* Set up mic pins for port-B, C and F dynamically as the recording
458 if (!spec->dc_enable) {
461 snd_hda_activate_path(codec, spec->dc_mode_path, false, false);
463 /* update port B (ext mic) and C (int mic) */
464 /* OLPC defers mic widget control until when capture is
470 update_mic_pin(codec, 0x1a, spec->recording ?
472 update_mic_pin(codec, 0x1b, spec->recording ?
474 /* enable normal mic path */
479 /* disable normal mic path */
489 if (spec->recording)
490 val = olpc_xo_dc_bias.items[spec->dc_input_bias].index;
496 update_mic_pin(codec, 0x1e, spec->recording ? PIN_IN : 0);
497 snd_hda_activate_path(codec, spec->dc_mode_path, true, false);
505 struct conexant_spec *spec = codec->spec;
508 if (!spec->dc_enable)
511 if (spec->dc_enable)
519 int action)
521 struct conexant_spec *spec = codec->spec;
523 /* toggle spec->recording flag and update mic pins accordingly
528 spec->recording = 1;
532 spec->recording = 0;
538 static int olpc_xo_dc_mode_get(struct snd_kcontrol *kcontrol,
542 struct conexant_spec *spec = codec->spec;
543 ucontrol->value.integer.value[0] = spec->dc_enable;
547 static int olpc_xo_dc_mode_put(struct snd_kcontrol *kcontrol,
551 struct conexant_spec *spec = codec->spec;
552 int dc_enable = !!ucontrol->value.integer.value[0];
554 if (dc_enable == spec->dc_enable)
557 spec->dc_enable = dc_enable;
563 static int olpc_xo_dc_bias_enum_get(struct snd_kcontrol *kcontrol,
567 struct conexant_spec *spec = codec->spec;
568 ucontrol->value.enumerated.item[0] = spec->dc_input_bias;
572 static int olpc_xo_dc_bias_enum_info(struct snd_kcontrol *kcontrol,
578 static int olpc_xo_dc_bias_enum_put(struct snd_kcontrol *kcontrol,
582 struct conexant_spec *spec = codec->spec;
584 unsigned int idx;
586 idx = ucontrol->value.enumerated.item[0];
587 if (idx >= imux->num_items)
588 idx = imux->num_items - 1;
589 if (spec->dc_input_bias == idx)
592 spec->dc_input_bias = idx;
593 if (spec->dc_enable)
616 /* overriding mic boost put callback; update mic boost volume only when
619 static int olpc_xo_mic_boost_put(struct snd_kcontrol *kcontrol,
623 struct conexant_spec *spec = codec->spec;
624 int ret = snd_hda_mixer_amp_volume_put(kcontrol, ucontrol);
625 if (ret > 0 && spec->dc_enable)
631 const struct hda_fixup *fix, int action)
633 struct conexant_spec *spec = codec->spec;
635 int i;
640 spec->gen.mic_autoswitch_hook = olpc_xo_automic;
641 spec->gen.pcm_capture_hook = olpc_xo_capture_hook;
642 spec->dc_mode_path = snd_hda_add_new_path(codec, 0x1e, 0x14, 0);
647 * therefore we use a 50% mic bias in order to center the input signal
652 /* override mic boost control */
653 snd_array_for_each(&spec->gen.kctls, i, kctl) {
654 if (!strcmp(kctl->name, "Mic Boost Volume")) {
655 kctl->put = olpc_xo_mic_boost_put;
662 const struct hda_fixup *fix, int action)
664 struct conexant_spec *spec = codec->spec;
667 spec->mute_led_eapd = 0x1b;
668 spec->dynamic_eapd = true;
678 const struct hda_fixup *fix, int action)
692 const struct hda_fixup *fix, int action)
703 int action)
705 /* the mic pin (0x19) doesn't give an unsolicited event;
706 * probe the mic pin together with the headphone pin (0x16)
713 static void cxt_update_gpio_led(struct hda_codec *codec, unsigned int mask,
716 struct conexant_spec *spec = codec->spec;
717 unsigned int oldval = spec->gpio_led;
719 if (spec->mute_led_polarity)
723 spec->gpio_led |= mask;
725 spec->gpio_led &= ~mask;
727 mask, led_on, spec->gpio_led);
728 if (spec->gpio_led != oldval)
730 spec->gpio_led);
734 static int cxt_gpio_mute_update(struct led_classdev *led_cdev,
737 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
738 struct conexant_spec *spec = codec->spec;
740 cxt_update_gpio_led(codec, spec->gpio_mute_led_mask, brightness);
744 /* turn on/off mic-mute LED via GPIO per capture hook */
745 static int cxt_gpio_micmute_update(struct led_classdev *led_cdev,
748 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
749 struct conexant_spec *spec = codec->spec;
751 cxt_update_gpio_led(codec, spec->gpio_mic_led_mask, brightness);
756 unsigned int mute, unsigned int mic_mute)
758 struct conexant_spec *spec = codec->spec;
760 spec->gpio_led = 0;
761 spec->mute_led_polarity = 0;
764 spec->gpio_mute_led_mask = mute;
768 spec->gpio_mic_led_mask = mic_mute;
773 unsigned int gpio_mute_mask)
785 const struct hda_fixup *fix, int action)
792 const struct hda_fixup *fix, int action)
799 const struct hda_fixup *fix, int action)
810 { 0x17, 0x21a11000 }, /* dock-mic */
811 { 0x19, 0x2121103f }, /* dock-HP */
819 { 0x1a, 0x21a190f0 }, /* dock-mic */
820 { 0x1c, 0x212140ff }, /* dock-HP */
826 { 0x1a, 0x90a10020 }, /* Internal mic */
827 { 0x1b, 0x03a11020 }, /* External mic */
836 /* SuoWoSi/South-holding JS201D with sn6140 */
840 { 0x18, 0x95a70130 }, /* Internal mic */
841 { 0x19, 0x03a11020 }, /* Headset Mic */
871 /* 0x17 was falsely set up as a mic, it should 0x1d */
898 { 0x18, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
943 { 0x12, 0x02a1901e }, /* ext mic */
944 { 0x14, 0x95a70110 }, /* int mic */
951 { 0x12, 0x90a60160 }, /* int mic */
968 { 0x16, 0x21011020 }, /* line-out */
969 { 0x18, 0x2181103f }, /* line-in */
1032 /* HP, Packard Bell, Fujitsu-Siemens & Lenovo laptops have
1043 { .id = CXT_FIXUP_CAP_MIX_AMP, .name = "cap-mix-amp" },
1044 { .id = CXT_FIXUP_TOSHIBA_P105, .name = "toshiba-p105" },
1045 { .id = CXT_FIXUP_HP_530, .name = "hp-530" },
1057 { .id = CXT_FIXUP_CAP_MIX_AMP_5047, .name = "cap-mix-amp" },
1068 { .id = CXT_PINCFG_LENOVO_X200, .name = "lenovo-x200" },
1102 SND_PCI_QUIRK(0x14f1, 0x0252, "MBX-Z60MR100", CXT_FIXUP_HP_A_U),
1104 SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT_FIXUP_OLPC_XO),
1112 SND_PCI_QUIRK(0x17aa, 0x21db, "Lenovo X220-tablet", CXT_PINCFG_LENOVO_TP410),
1114 SND_PCI_QUIRK(0x17aa, 0x3905, "Lenovo G50-30", CXT_FIXUP_STEREO_DMIC),
1115 SND_PCI_QUIRK(0x17aa, 0x390b, "Lenovo G50-80", CXT_FIXUP_STEREO_DMIC),
1121 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo G50-70", CXT_FIXUP_STEREO_DMIC),
1132 { .id = CXT_FIXUP_STEREO_DMIC, .name = "stereo-dmic" },
1134 { .id = CXT_FIXUP_HEADPHONE_MIC_PIN, .name = "headphone-mic-pin" },
1137 { .id = CXT_FIXUP_LENOVO_XPAD_ACPI, .name = "thinkpad-ideapad" },
1138 { .id = CXT_PINCFG_LEMOTE_A1004, .name = "lemote-a1004" },
1139 { .id = CXT_PINCFG_LEMOTE_A1205, .name = "lemote-a1205" },
1140 { .id = CXT_FIXUP_OLPC_XO, .name = "olpc-xo" },
1141 { .id = CXT_FIXUP_MUTE_LED_EAPD, .name = "mute-led-eapd" },
1142 { .id = CXT_FIXUP_HP_DOCK, .name = "hp-dock" },
1143 { .id = CXT_FIXUP_MUTE_LED_GPIO, .name = "mute-led-gpio" },
1144 { .id = CXT_FIXUP_HP_ZBOOK_MUTE_LED, .name = "hp-zbook-mute-led" },
1145 { .id = CXT_FIXUP_HP_MIC_NO_PRESENCE, .name = "hp-mic-fix" },
1146 { .id = CXT_PINCFG_LENOVO_NOTEBOOK, .name = "lenovo-20149" },
1147 { .id = CXT_PINCFG_SWS_JS201D, .name = "sws-js201d" },
1148 { .id = CXT_PINCFG_TOP_SPEAKER, .name = "sirius-top-speaker" },
1149 { .id = CXT_FIXUP_HP_A_U, .name = "HP-U-support" },
1153 /* add "fake" mute amp-caps to DACs on cx5051 so that mixer mute switches
1158 struct conexant_spec *spec = codec->spec;
1168 spec->gen.dac_min_mute = true;
1171 static int cx_probe(struct hda_codec *codec, const struct hda_device_id *id)
1174 int err;
1176 codec_info(codec, "%s: BIOS auto-probing.\n", codec->core.chip_name);
1180 return -ENOMEM;
1181 snd_hda_gen_spec_init(&spec->gen);
1182 codec->spec = spec;
1185 switch (codec->core.vendor_id) {
1188 spec->is_cx11880_sn6140 = true;
1194 spec->gen.own_eapd_ctl = 1;
1196 switch (codec->core.vendor_id) {
1198 codec->single_adc_amp = 1;
1199 spec->gen.mixer_nid = 0x17;
1200 spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO;
1205 codec->pin_amp_workaround = 1;
1206 spec->gen.mixer_nid = 0x19;
1207 spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO;
1213 codec->pin_amp_workaround = 1;
1218 codec->pin_amp_workaround = 1;
1219 spec->gen.mixer_nid = 0x22;
1220 spec->gen.add_stereo_mix_input = HDA_HINT_STEREO_MIX_AUTO;
1225 codec->power_save_node = 1;
1228 codec->pin_amp_workaround = 1;
1234 if (!spec->gen.vmaster_mute.hook && spec->dynamic_eapd)
1235 spec->gen.vmaster_mute.hook = cx_auto_vmaster_hook;
1239 err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL,
1240 spec->parse_flags);
1248 err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg);
1253 * which falls into the single-cmd mode.
1256 if (!codec->bus->core.sync_write) {
1259 codec->bus->core.sync_write = 1;
1260 codec->bus->allow_bus_reset = 1;
1326 MODULE_DESCRIPTION("Conexant HD-audio codec");