Lines Matching +full:gen +full:- +full:2
1 // SPDX-License-Identifier: GPL-2.0-or-later
7 * Tobin Davis <tdavis@dsl-only.net>
25 struct hda_gen_spec gen;
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;
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;
134 struct conexant_spec *spec = codec->spec;
136 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, enabled);
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);
174 /* set OFF voltage for DFET from -1.2V to -0.8V, set headset micbias register
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);
268 * pin fix-up
313 struct conexant_spec *spec = codec->spec;
314 spec->gen.inv_dmic_split = 1;
345 /* The verbs used in this function were tested on a Conexant CX20751/2 codec. */
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]);
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;
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;
437 for (ch = 0; ch < 2; ch++) {
440 if (!spec->dc_enable)
449 struct conexant_spec *spec = codec->spec;
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);
470 update_mic_pin(codec, 0x1a, spec->recording ?
472 update_mic_pin(codec, 0x1b, spec->recording ?
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)
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;
542 struct conexant_spec *spec = codec->spec;
543 ucontrol->value.integer.value[0] = spec->dc_enable;
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;
567 struct conexant_spec *spec = codec->spec;
568 ucontrol->value.enumerated.item[0] = spec->dc_input_bias;
582 struct conexant_spec *spec = codec->spec;
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)
623 struct conexant_spec *spec = codec->spec;
625 if (ret > 0 && spec->dc_enable)
633 struct conexant_spec *spec = codec->spec;
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);
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;
664 struct conexant_spec *spec = codec->spec;
667 spec->mute_led_eapd = 0x1b;
668 spec->dynamic_eapd = true;
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);
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 */
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);
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;
810 { 0x17, 0x21a11000 }, /* dock-mic */
811 { 0x19, 0x2121103f }, /* dock-HP */
819 { 0x1a, 0x21a190f0 }, /* dock-mic */
820 { 0x1c, 0x212140ff }, /* dock-HP */
836 /* SuoWoSi/South-holding JS201D with sn6140 */
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;
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;
1314 HDA_CODEC_ID(0x14f1510f, "CX20751/2"),
1315 HDA_CODEC_ID(0x14f15110, "CX20751/2"),
1326 MODULE_DESCRIPTION("Conexant HD-audio codec");