hda_generic.h 12 KB

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