Lines Matching refs:codec
74 static int cx_auto_parse_beep(struct hda_codec *codec) in cx_auto_parse_beep() argument
76 struct conexant_spec *spec = codec->spec; in cx_auto_parse_beep()
79 for_each_hda_codec_node(nid, codec) in cx_auto_parse_beep()
80 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_BEEP) in cx_auto_parse_beep()
85 #define cx_auto_parse_beep(codec) 0 argument
93 static void cx_auto_parse_eapd(struct hda_codec *codec) in cx_auto_parse_eapd() argument
95 struct conexant_spec *spec = codec->spec; in cx_auto_parse_eapd()
98 for_each_hda_codec_node(nid, codec) { in cx_auto_parse_eapd()
99 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) in cx_auto_parse_eapd()
101 if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) in cx_auto_parse_eapd()
118 static void cx_auto_turn_eapd(struct hda_codec *codec, int num_pins, in cx_auto_turn_eapd() argument
123 if (snd_hda_query_pin_caps(codec, pins[i]) & AC_PINCAP_EAPD) in cx_auto_turn_eapd()
124 snd_hda_codec_write(codec, pins[i], 0, in cx_auto_turn_eapd()
133 struct hda_codec *codec = private_data; in cx_auto_vmaster_hook() local
134 struct conexant_spec *spec = codec->spec; in cx_auto_vmaster_hook()
136 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, enabled); in cx_auto_vmaster_hook()
143 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); in cx_auto_vmaster_mute_led() local
144 struct conexant_spec *spec = codec->spec; in cx_auto_vmaster_mute_led()
146 snd_hda_codec_write(codec, spec->mute_led_eapd, 0, in cx_auto_vmaster_mute_led()
152 static void cxt_init_gpio_led(struct hda_codec *codec) in cxt_init_gpio_led() argument
154 struct conexant_spec *spec = codec->spec; in cxt_init_gpio_led()
158 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK, in cxt_init_gpio_led()
160 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DIRECTION, in cxt_init_gpio_led()
162 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, in cxt_init_gpio_led()
167 static int cx_auto_init(struct hda_codec *codec) in cx_auto_init() argument
169 struct conexant_spec *spec = codec->spec; in cx_auto_init()
170 snd_hda_gen_init(codec); in cx_auto_init()
172 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, true); in cx_auto_init()
174 cxt_init_gpio_led(codec); in cx_auto_init()
175 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT); in cx_auto_init()
180 static void cx_auto_reboot_notify(struct hda_codec *codec) in cx_auto_reboot_notify() argument
182 struct conexant_spec *spec = codec->spec; in cx_auto_reboot_notify()
186 cx_auto_turn_eapd(codec, spec->num_eapds, spec->eapds, false); in cx_auto_reboot_notify()
187 snd_hda_gen_reboot_notify(codec); in cx_auto_reboot_notify()
190 static void cx_auto_free(struct hda_codec *codec) in cx_auto_free() argument
192 cx_auto_reboot_notify(codec); in cx_auto_free()
193 snd_hda_gen_free(codec); in cx_auto_free()
243 static void cxt_fixup_stereo_dmic(struct hda_codec *codec, in cxt_fixup_stereo_dmic() argument
246 struct conexant_spec *spec = codec->spec; in cxt_fixup_stereo_dmic()
250 static void cxt5066_increase_mic_boost(struct hda_codec *codec, in cxt5066_increase_mic_boost() argument
256 snd_hda_override_amp_caps(codec, 0x17, HDA_OUTPUT, in cxt5066_increase_mic_boost()
263 static void cxt_update_headset_mode(struct hda_codec *codec) in cxt_update_headset_mode() argument
268 struct conexant_spec *spec = codec->spec; in cxt_update_headset_mode()
280 …snd_hda_codec_write_cache(codec, 0x1c, 0, 0x410, 0x7c); /* enable merged mode for analog int-mic */ in cxt_update_headset_mode()
283 …snd_hda_codec_write_cache(codec, 0x1c, 0, 0x410, 0x54); /* disable merged mode for analog int-mic … in cxt_update_headset_mode()
284 spec->gen.hp_jack_present = snd_hda_jack_detect(codec, spec->gen.autocfg.hp_pins[0]); in cxt_update_headset_mode()
287 snd_hda_gen_update_outputs(codec); in cxt_update_headset_mode()
290 static void cxt_update_headset_mode_hook(struct hda_codec *codec, in cxt_update_headset_mode_hook() argument
294 cxt_update_headset_mode(codec); in cxt_update_headset_mode_hook()
297 static void cxt_fixup_headphone_mic(struct hda_codec *codec, in cxt_fixup_headphone_mic() argument
300 struct conexant_spec *spec = codec->spec; in cxt_fixup_headphone_mic()
305 snd_hdac_regmap_add_vendor_verb(&codec->core, 0x410); in cxt_fixup_headphone_mic()
313 cxt_update_headset_mode(codec); in cxt_fixup_headphone_mic()
318 static void cxt_fixup_headset_mic(struct hda_codec *codec, in cxt_fixup_headset_mic() argument
321 struct conexant_spec *spec = codec->spec; in cxt_fixup_headset_mic()
339 #define update_mic_pin(codec, nid, val) \ argument
340 snd_hda_codec_write_cache(codec, nid, 0, \
352 static void olpc_xo_update_mic_boost(struct hda_codec *codec) in olpc_xo_update_mic_boost() argument
354 struct conexant_spec *spec = codec->spec; in olpc_xo_update_mic_boost()
361 val |= snd_hda_codec_amp_read(codec, 0x17, ch, HDA_OUTPUT, 0); in olpc_xo_update_mic_boost()
362 snd_hda_codec_write(codec, 0x17, 0, in olpc_xo_update_mic_boost()
367 static void olpc_xo_update_mic_pins(struct hda_codec *codec) in olpc_xo_update_mic_pins() argument
369 struct conexant_spec *spec = codec->spec; in olpc_xo_update_mic_pins()
380 update_mic_pin(codec, 0x1e, 0); in olpc_xo_update_mic_pins()
381 snd_hda_activate_path(codec, spec->dc_mode_path, false, false); in olpc_xo_update_mic_pins()
390 update_mic_pin(codec, 0x1a, spec->recording ? in olpc_xo_update_mic_pins()
391 snd_hda_codec_get_pin_target(codec, 0x1a) : 0); in olpc_xo_update_mic_pins()
392 update_mic_pin(codec, 0x1b, spec->recording ? in olpc_xo_update_mic_pins()
393 snd_hda_codec_get_pin_target(codec, 0x1b) : 0); in olpc_xo_update_mic_pins()
395 path = snd_hda_get_path_from_idx(codec, cur_input); in olpc_xo_update_mic_pins()
397 snd_hda_activate_path(codec, path, true, false); in olpc_xo_update_mic_pins()
400 path = snd_hda_get_path_from_idx(codec, cur_input); in olpc_xo_update_mic_pins()
402 snd_hda_activate_path(codec, path, false, false); in olpc_xo_update_mic_pins()
413 update_mic_pin(codec, 0x1a, val); in olpc_xo_update_mic_pins()
414 update_mic_pin(codec, 0x1b, 0); in olpc_xo_update_mic_pins()
416 update_mic_pin(codec, 0x1e, spec->recording ? PIN_IN : 0); in olpc_xo_update_mic_pins()
417 snd_hda_activate_path(codec, spec->dc_mode_path, true, false); in olpc_xo_update_mic_pins()
422 static void olpc_xo_automic(struct hda_codec *codec, in olpc_xo_automic() argument
425 struct conexant_spec *spec = codec->spec; in olpc_xo_automic()
429 snd_hda_gen_mic_autoswitch(codec, jack); in olpc_xo_automic()
430 olpc_xo_update_mic_pins(codec); in olpc_xo_automic()
432 olpc_xo_update_mic_boost(codec); in olpc_xo_automic()
437 struct hda_codec *codec, in olpc_xo_capture_hook() argument
441 struct conexant_spec *spec = codec->spec; in olpc_xo_capture_hook()
449 olpc_xo_update_mic_pins(codec); in olpc_xo_capture_hook()
453 olpc_xo_update_mic_pins(codec); in olpc_xo_capture_hook()
461 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); in olpc_xo_dc_mode_get() local
462 struct conexant_spec *spec = codec->spec; in olpc_xo_dc_mode_get()
470 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); in olpc_xo_dc_mode_put() local
471 struct conexant_spec *spec = codec->spec; in olpc_xo_dc_mode_put()
478 olpc_xo_update_mic_pins(codec); in olpc_xo_dc_mode_put()
479 olpc_xo_update_mic_boost(codec); in olpc_xo_dc_mode_put()
486 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); in olpc_xo_dc_bias_enum_get() local
487 struct conexant_spec *spec = codec->spec; in olpc_xo_dc_bias_enum_get()
501 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); in olpc_xo_dc_bias_enum_put() local
502 struct conexant_spec *spec = codec->spec; in olpc_xo_dc_bias_enum_put()
514 olpc_xo_update_mic_pins(codec); in olpc_xo_dc_bias_enum_put()
542 struct hda_codec *codec = snd_kcontrol_chip(kcontrol); in olpc_xo_mic_boost_put() local
543 struct conexant_spec *spec = codec->spec; in olpc_xo_mic_boost_put()
546 olpc_xo_update_mic_boost(codec); in olpc_xo_mic_boost_put()
550 static void cxt_fixup_olpc_xo(struct hda_codec *codec, in cxt_fixup_olpc_xo() argument
553 struct conexant_spec *spec = codec->spec; in cxt_fixup_olpc_xo()
562 spec->dc_mode_path = snd_hda_add_new_path(codec, 0x1e, 0x14, 0); in cxt_fixup_olpc_xo()
564 snd_hda_add_new_ctls(codec, olpc_xo_mixers); in cxt_fixup_olpc_xo()
570 snd_hda_codec_set_pin_target(codec, 0x1a, PIN_VREF50); in cxt_fixup_olpc_xo()
581 static void cxt_fixup_mute_led_eapd(struct hda_codec *codec, in cxt_fixup_mute_led_eapd() argument
584 struct conexant_spec *spec = codec->spec; in cxt_fixup_mute_led_eapd()
589 snd_hda_gen_add_mute_led_cdev(codec, cx_auto_vmaster_mute_led); in cxt_fixup_mute_led_eapd()
597 static void cxt_fixup_cap_mix_amp(struct hda_codec *codec, in cxt_fixup_cap_mix_amp() argument
600 snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT, in cxt_fixup_cap_mix_amp()
611 static void cxt_fixup_cap_mix_amp_5047(struct hda_codec *codec, in cxt_fixup_cap_mix_amp_5047() argument
614 snd_hda_override_amp_caps(codec, 0x10, HDA_INPUT, in cxt_fixup_cap_mix_amp_5047()
621 static void cxt_fixup_hp_gate_mic_jack(struct hda_codec *codec, in cxt_fixup_hp_gate_mic_jack() argument
629 snd_hda_jack_set_gating_jack(codec, 0x19, 0x16); in cxt_fixup_hp_gate_mic_jack()
633 static void cxt_update_gpio_led(struct hda_codec *codec, unsigned int mask, in cxt_update_gpio_led() argument
636 struct conexant_spec *spec = codec->spec; in cxt_update_gpio_led()
646 codec_dbg(codec, "mask:%d enabled:%d gpio_led:%d\n", in cxt_update_gpio_led()
649 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, in cxt_update_gpio_led()
657 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); in cxt_gpio_mute_update() local
658 struct conexant_spec *spec = codec->spec; in cxt_gpio_mute_update()
660 cxt_update_gpio_led(codec, spec->gpio_mute_led_mask, brightness); in cxt_gpio_mute_update()
668 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent); in cxt_gpio_micmute_update() local
669 struct conexant_spec *spec = codec->spec; in cxt_gpio_micmute_update()
671 cxt_update_gpio_led(codec, spec->gpio_mic_led_mask, brightness); in cxt_gpio_micmute_update()
675 static void cxt_setup_mute_led(struct hda_codec *codec, in cxt_setup_mute_led() argument
678 struct conexant_spec *spec = codec->spec; in cxt_setup_mute_led()
683 snd_hda_gen_add_mute_led_cdev(codec, cxt_gpio_mute_update); in cxt_setup_mute_led()
687 snd_hda_gen_add_micmute_led_cdev(codec, cxt_gpio_micmute_update); in cxt_setup_mute_led()
692 static void cxt_fixup_mute_led_gpio(struct hda_codec *codec, in cxt_fixup_mute_led_gpio() argument
696 cxt_setup_mute_led(codec, 0x01, 0x02); in cxt_fixup_mute_led_gpio()
699 static void cxt_fixup_hp_zbook_mute_led(struct hda_codec *codec, in cxt_fixup_hp_zbook_mute_led() argument
703 cxt_setup_mute_led(codec, 0x10, 0x20); in cxt_fixup_hp_zbook_mute_led()
1009 static void add_cx5051_fake_mutes(struct hda_codec *codec) in add_cx5051_fake_mutes() argument
1011 struct conexant_spec *spec = codec->spec; in add_cx5051_fake_mutes()
1018 snd_hda_override_amp_caps(codec, *p, HDA_OUTPUT, in add_cx5051_fake_mutes()
1020 query_amp_caps(codec, *p, HDA_OUTPUT)); in add_cx5051_fake_mutes()
1024 static int patch_conexant_auto(struct hda_codec *codec) in patch_conexant_auto() argument
1029 codec_info(codec, "%s: BIOS auto-probing.\n", codec->core.chip_name); in patch_conexant_auto()
1035 codec->spec = spec; in patch_conexant_auto()
1036 codec->patch_ops = cx_auto_patch_ops; in patch_conexant_auto()
1038 cx_auto_parse_eapd(codec); in patch_conexant_auto()
1041 switch (codec->core.vendor_id) { in patch_conexant_auto()
1043 codec->single_adc_amp = 1; in patch_conexant_auto()
1046 snd_hda_pick_fixup(codec, cxt5045_fixup_models, in patch_conexant_auto()
1050 codec->pin_amp_workaround = 1; in patch_conexant_auto()
1053 snd_hda_pick_fixup(codec, cxt5047_fixup_models, in patch_conexant_auto()
1057 add_cx5051_fake_mutes(codec); in patch_conexant_auto()
1058 codec->pin_amp_workaround = 1; in patch_conexant_auto()
1059 snd_hda_pick_fixup(codec, cxt5051_fixup_models, in patch_conexant_auto()
1063 codec->pin_amp_workaround = 1; in patch_conexant_auto()
1066 snd_hda_pick_fixup(codec, cxt5066_fixup_models, in patch_conexant_auto()
1070 codec->power_save_node = 1; in patch_conexant_auto()
1073 codec->pin_amp_workaround = 1; in patch_conexant_auto()
1074 snd_hda_pick_fixup(codec, cxt5066_fixup_models, in patch_conexant_auto()
1082 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE); in patch_conexant_auto()
1084 err = snd_hda_parse_pin_defcfg(codec, &spec->gen.autocfg, NULL, in patch_conexant_auto()
1089 err = cx_auto_parse_beep(codec); in patch_conexant_auto()
1093 err = snd_hda_gen_parse_auto_config(codec, &spec->gen.autocfg); in patch_conexant_auto()
1101 if (!codec->bus->core.sync_write) { in patch_conexant_auto()
1102 codec_info(codec, in patch_conexant_auto()
1104 codec->bus->core.sync_write = 1; in patch_conexant_auto()
1105 codec->bus->allow_bus_reset = 1; in patch_conexant_auto()
1108 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE); in patch_conexant_auto()
1113 cx_auto_free(codec); in patch_conexant_auto()