^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 1) /* SPDX-License-Identifier: GPL-2.0-or-later */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 3) * Generic BIOS auto-parser helper functions for HD-audio
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 4) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 5) * Copyright (c) 2012 Takashi Iwai <tiwai@suse.de>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 6) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 7)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 8) #ifndef __SOUND_HDA_GENERIC_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 9) #define __SOUND_HDA_GENERIC_H
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #include <linux/leds.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) /* table entry for multi-io paths */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) struct hda_multi_io {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) hda_nid_t pin; /* multi-io widget pin NID */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) hda_nid_t dac; /* DAC to be connected */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) unsigned int ctl_in; /* cached input-pin control value */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) /* Widget connection path
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) * For output, stored in the order of DAC -> ... -> pin,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) * for input, pin -> ... -> ADC.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) * idx[i] contains the source index number to select on of the widget path[i];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) * e.g. idx[1] is the index of the DAC (path[0]) selected by path[1] widget
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) * multi[] indicates whether it's a selector widget with multi-connectors
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) * (i.e. the connection selection is mandatory)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) * vol_ctl and mute_ctl contains the NIDs for the assigned mixers
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) #define MAX_NID_PATH_DEPTH 10
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) enum {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) NID_PATH_VOL_CTL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) NID_PATH_MUTE_CTL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) NID_PATH_BOOST_CTL,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 38) NID_PATH_NUM_CTLS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 39) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 40)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 41) struct nid_path {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 42) int depth;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 43) hda_nid_t path[MAX_NID_PATH_DEPTH];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 44) unsigned char idx[MAX_NID_PATH_DEPTH];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 45) unsigned char multi[MAX_NID_PATH_DEPTH];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 46) unsigned int ctls[NID_PATH_NUM_CTLS]; /* NID_PATH_XXX_CTL */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 47) bool active:1; /* activated by driver */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 48) bool pin_enabled:1; /* pins are enabled */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 49) bool pin_fixed:1; /* path with fixed pin */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 50) bool stream_enabled:1; /* stream is active */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 51) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 52)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 53) /* mic/line-in auto switching entry */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 54)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 55) #define MAX_AUTO_MIC_PINS 3
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 56)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 57) struct automic_entry {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 58) hda_nid_t pin; /* pin */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 59) int idx; /* imux index, -1 = invalid */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 60) unsigned int attr; /* pin attribute (INPUT_PIN_ATTR_*) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 61) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 62)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 63) /* active stream id */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 64) enum { STREAM_MULTI_OUT, STREAM_INDEP_HP };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 65)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 66) /* PCM hook action */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 67) enum {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 68) HDA_GEN_PCM_ACT_OPEN,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 69) HDA_GEN_PCM_ACT_PREPARE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 70) HDA_GEN_PCM_ACT_CLEANUP,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 71) HDA_GEN_PCM_ACT_CLOSE,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 72) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 73)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 74) /* DAC assignment badness table */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 75) struct badness_table {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 76) int no_primary_dac; /* no primary DAC */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 77) int no_dac; /* no secondary DACs */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 78) int shared_primary; /* primary DAC is shared with main output */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 79) int shared_surr; /* secondary DAC shared with main or primary */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 80) int shared_clfe; /* third DAC shared with main or primary */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 81) int shared_surr_main; /* secondary DAC sahred with main/DAC0 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 82) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 83)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 84) extern const struct badness_table hda_main_out_badness;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 85) extern const struct badness_table hda_extra_out_badness;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 86)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 87) struct hda_micmute_hook {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 88) unsigned int led_mode;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 89) unsigned int capture;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 90) unsigned int led_value;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 91) void (*old_hook)(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 92) struct snd_kcontrol *kcontrol,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 93) struct snd_ctl_elem_value *ucontrol);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 94) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 95)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 96) struct hda_gen_spec {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 97) char stream_name_analog[32]; /* analog PCM stream */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 98) const struct hda_pcm_stream *stream_analog_playback;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 99) const struct hda_pcm_stream *stream_analog_capture;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 100)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 101) char stream_name_alt_analog[32]; /* alternative analog PCM stream */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 102) const struct hda_pcm_stream *stream_analog_alt_playback;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 103) const struct hda_pcm_stream *stream_analog_alt_capture;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 104)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 105) char stream_name_digital[32]; /* digital PCM stream */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 106) const struct hda_pcm_stream *stream_digital_playback;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 107) const struct hda_pcm_stream *stream_digital_capture;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 108)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 109) /* PCM */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 110) unsigned int active_streams;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 111) struct mutex pcm_mutex;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 112)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 113) /* playback */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 114) struct hda_multi_out multiout; /* playback set-up
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 115) * max_channels, dacs must be set
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 116) * dig_out_nid and hp_nid are optional
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 117) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 118) hda_nid_t alt_dac_nid;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 119) hda_nid_t follower_dig_outs[3]; /* optional - for auto-parsing */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 120) int dig_out_type;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 121)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 122) /* capture */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 123) unsigned int num_adc_nids;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 124) hda_nid_t adc_nids[AUTO_CFG_MAX_INS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 125) hda_nid_t dig_in_nid; /* digital-in NID; optional */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 126) hda_nid_t mixer_nid; /* analog-mixer NID */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 127) hda_nid_t mixer_merge_nid; /* aamix merge-point NID (optional) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 128) const char *input_labels[HDA_MAX_NUM_INPUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 129) int input_label_idxs[HDA_MAX_NUM_INPUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 130)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 131) /* capture setup for dynamic dual-adc switch */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 132) hda_nid_t cur_adc;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 133) unsigned int cur_adc_stream_tag;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 134) unsigned int cur_adc_format;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 135)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 136) /* capture source */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 137) struct hda_input_mux input_mux;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 138) unsigned int cur_mux[3];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 139)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 140) /* channel model */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 141) /* min_channel_count contains the minimum channel count for primary
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 142) * outputs. When multi_ios is set, the channels can be configured
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 143) * between min_channel_count and (min_channel_count + multi_ios * 2).
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 144) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 145) * ext_channel_count contains the current channel count of the primary
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 146) * out. This varies in the range above.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 147) *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 148) * Meanwhile, const_channel_count is the channel count for all outputs
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 149) * including headphone and speakers. It's a constant value, and the
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 150) * PCM is set up as max(ext_channel_count, const_channel_count).
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 151) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 152) int min_channel_count; /* min. channel count for primary out */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 153) int ext_channel_count; /* current channel count for primary */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 154) int const_channel_count; /* channel count for all */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 155)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 156) /* PCM information */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 157) struct hda_pcm *pcm_rec[3]; /* used in build_pcms() */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 158)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 159) /* dynamic controls, init_verbs and input_mux */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 160) struct auto_pin_cfg autocfg;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 161) struct snd_array kctls;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 162) hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 163) hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 164) unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 165) /* shared hp/mic */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 166) hda_nid_t shared_mic_vref_pin;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 167) hda_nid_t hp_mic_pin;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 168) int hp_mic_mux_idx;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 169)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 170) /* DAC/ADC lists */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 171) int num_all_dacs;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 172) hda_nid_t all_dacs[16];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 173) int num_all_adcs;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 174) hda_nid_t all_adcs[AUTO_CFG_MAX_INS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 175)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 176) /* path list */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 177) struct snd_array paths;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 178)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 179) /* path indices */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 180) int out_paths[AUTO_CFG_MAX_OUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 181) int hp_paths[AUTO_CFG_MAX_OUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 182) int speaker_paths[AUTO_CFG_MAX_OUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 183) int aamix_out_paths[3];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 184) int digout_paths[AUTO_CFG_MAX_OUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 185) int input_paths[HDA_MAX_NUM_INPUTS][AUTO_CFG_MAX_INS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 186) int loopback_paths[HDA_MAX_NUM_INPUTS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 187) int loopback_merge_path;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 188) int digin_path;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 189)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 190) /* auto-mic stuff */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 191) int am_num_entries;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 192) struct automic_entry am_entry[MAX_AUTO_MIC_PINS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 193)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 194) /* for pin sensing */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 195) /* current status; set in hda_geneic.c */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 196) unsigned int hp_jack_present:1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 197) unsigned int line_jack_present:1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 198) unsigned int speaker_muted:1; /* current status of speaker mute */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 199) unsigned int line_out_muted:1; /* current status of LO mute */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 200)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 201) /* internal states of automute / autoswitch behavior */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 202) unsigned int auto_mic:1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 203) unsigned int automute_speaker:1; /* automute speaker outputs */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 204) unsigned int automute_lo:1; /* automute LO outputs */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 205)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 206) /* capabilities detected by parser */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 207) unsigned int detect_hp:1; /* Headphone detection enabled */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 208) unsigned int detect_lo:1; /* Line-out detection enabled */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 209) unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 210) unsigned int automute_lo_possible:1; /* there are line outs and HP */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 211)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 212) /* additional parameters set by codec drivers */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 213) unsigned int master_mute:1; /* master mute over all */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 214) unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 215) unsigned int line_in_auto_switch:1; /* allow line-in auto switch */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 216) unsigned int auto_mute_via_amp:1; /* auto-mute via amp instead of pinctl */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 217)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 218) /* parser behavior flags; set before snd_hda_gen_parse_auto_config() */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 219) unsigned int suppress_auto_mute:1; /* suppress input jack auto mute */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 220) unsigned int suppress_auto_mic:1; /* suppress input jack auto switch */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 221)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 222) /* other parse behavior flags */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 223) unsigned int need_dac_fix:1; /* need to limit DACs for multi channels */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 224) unsigned int hp_mic:1; /* Allow HP as a mic-in */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 225) unsigned int suppress_hp_mic_detect:1; /* Don't detect HP/mic */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 226) unsigned int no_primary_hp:1; /* Don't prefer HP pins to speaker pins */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 227) unsigned int no_multi_io:1; /* Don't try multi I/O config */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 228) unsigned int multi_cap_vol:1; /* allow multiple capture xxx volumes */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 229) unsigned int inv_dmic_split:1; /* inverted dmic w/a for conexant */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 230) unsigned int own_eapd_ctl:1; /* set EAPD by own function */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 231) unsigned int keep_eapd_on:1; /* don't turn off EAPD automatically */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 232) unsigned int vmaster_mute_enum:1; /* add vmaster mute mode enum */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 233) unsigned int indep_hp:1; /* independent HP supported */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 234) unsigned int prefer_hp_amp:1; /* enable HP amp for speaker if any */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 235) unsigned int add_stereo_mix_input:2; /* add aamix as a capture src */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 236) unsigned int add_jack_modes:1; /* add i/o jack mode enum ctls */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 237) unsigned int power_down_unused:1; /* power down unused widgets */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 238) unsigned int dac_min_mute:1; /* minimal = mute for DACs */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 239) unsigned int suppress_vmaster:1; /* don't create vmaster kctls */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 240) unsigned int obey_preferred_dacs:1; /* obey preferred_dacs assignment */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 241)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 242) /* other internal flags */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 243) unsigned int no_analog:1; /* digital I/O only */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 244) unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 245) unsigned int indep_hp_enabled:1; /* independent HP enabled */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 246) unsigned int have_aamix_ctl:1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 247) unsigned int hp_mic_jack_modes:1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 248) unsigned int skip_verbs:1; /* don't apply verbs at snd_hda_gen_init() */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 249)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 250) /* additional mute flags (only effective with auto_mute_via_amp=1) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 251) u64 mute_bits;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 252)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 253) /* bitmask for skipping volume controls */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 254) u64 out_vol_mask;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 255)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 256) /* badness tables for output path evaluations */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 257) const struct badness_table *main_out_badness;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 258) const struct badness_table *extra_out_badness;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 259)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 260) /* preferred pin/DAC pairs; an array of paired NIDs */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 261) const hda_nid_t *preferred_dacs;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 262)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 263) /* loopback mixing mode */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 264) bool aamix_mode;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 265)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 266) /* digital beep */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 267) hda_nid_t beep_nid;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 268)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 269) /* for virtual master */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 270) hda_nid_t vmaster_nid;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 271) unsigned int vmaster_tlv[4];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 272) struct hda_vmaster_mute_hook vmaster_mute;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 273)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 274) struct hda_loopback_check loopback;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 275) struct snd_array loopback_list;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 276)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 277) /* multi-io */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 278) int multi_ios;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 279) struct hda_multi_io multi_io[4];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 280)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 281) /* hooks */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 282) void (*init_hook)(struct hda_codec *codec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 283) void (*automute_hook)(struct hda_codec *codec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 284) void (*cap_sync_hook)(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 285) struct snd_kcontrol *kcontrol,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 286) struct snd_ctl_elem_value *ucontrol);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 287)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 288) /* mic mute LED hook; called via cap_sync_hook */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 289) struct hda_micmute_hook micmute_led;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 290)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 291) /* PCM hooks */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 292) void (*pcm_playback_hook)(struct hda_pcm_stream *hinfo,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 293) struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 294) struct snd_pcm_substream *substream,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 295) int action);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 296) void (*pcm_capture_hook)(struct hda_pcm_stream *hinfo,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 297) struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 298) struct snd_pcm_substream *substream,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 299) int action);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 300)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 301) /* automute / autoswitch hooks */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 302) void (*hp_automute_hook)(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 303) struct hda_jack_callback *cb);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 304) void (*line_automute_hook)(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 305) struct hda_jack_callback *cb);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 306) void (*mic_autoswitch_hook)(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 307) struct hda_jack_callback *cb);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 308)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 309) /* leds */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 310) struct led_classdev *led_cdevs[NUM_AUDIO_LEDS];
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 311) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 312)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 313) /* values for add_stereo_mix_input flag */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 314) enum {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 315) HDA_HINT_STEREO_MIX_DISABLE, /* No stereo mix input */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 316) HDA_HINT_STEREO_MIX_ENABLE, /* Add stereo mix input */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 317) HDA_HINT_STEREO_MIX_AUTO, /* Add only if auto-mic is disabled */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 318) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 319)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 320) int snd_hda_gen_spec_init(struct hda_gen_spec *spec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 321)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 322) int snd_hda_gen_init(struct hda_codec *codec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 323) void snd_hda_gen_free(struct hda_codec *codec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 324)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 325) int snd_hda_get_path_idx(struct hda_codec *codec, struct nid_path *path);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 326) struct nid_path *snd_hda_get_path_from_idx(struct hda_codec *codec, int idx);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 327) struct nid_path *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 328) snd_hda_add_new_path(struct hda_codec *codec, hda_nid_t from_nid,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 329) hda_nid_t to_nid, int anchor_nid);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 330) void snd_hda_activate_path(struct hda_codec *codec, struct nid_path *path,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 331) bool enable, bool add_aamix);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 332)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 333) struct snd_kcontrol_new *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 334) snd_hda_gen_add_kctl(struct hda_gen_spec *spec, const char *name,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 335) const struct snd_kcontrol_new *temp);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 336)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 337) int snd_hda_gen_parse_auto_config(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 338) struct auto_pin_cfg *cfg);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 339) int snd_hda_gen_build_controls(struct hda_codec *codec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 340) int snd_hda_gen_build_pcms(struct hda_codec *codec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 341) void snd_hda_gen_reboot_notify(struct hda_codec *codec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 342)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 343) /* standard jack event callbacks */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 344) void snd_hda_gen_hp_automute(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 345) struct hda_jack_callback *jack);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 346) void snd_hda_gen_line_automute(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 347) struct hda_jack_callback *jack);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 348) void snd_hda_gen_mic_autoswitch(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 349) struct hda_jack_callback *jack);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 350) void snd_hda_gen_update_outputs(struct hda_codec *codec);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 351)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 352) #ifdef CONFIG_PM
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 353) int snd_hda_gen_check_power_status(struct hda_codec *codec, hda_nid_t nid);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 354) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 355) unsigned int snd_hda_gen_path_power_filter(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 356) hda_nid_t nid,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 357) unsigned int power_state);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 358) void snd_hda_gen_stream_pm(struct hda_codec *codec, hda_nid_t nid, bool on);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 359) int snd_hda_gen_fix_pin_power(struct hda_codec *codec, hda_nid_t pin);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 360)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 361) int snd_hda_gen_add_mute_led_cdev(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 362) int (*callback)(struct led_classdev *,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 363) enum led_brightness));
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 364) int snd_hda_gen_add_micmute_led_cdev(struct hda_codec *codec,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 365) int (*callback)(struct led_classdev *,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 366) enum led_brightness));
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 367)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 368) #endif /* __SOUND_HDA_GENERIC_H */