hda_generic.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. /*
  2. * Generic BIOS auto-parser helper functions for HD-audio
  3. *
  4. * Copyright (c) 2012 Takashi Iwai <tiwai@suse.de>
  5. *
  6. * This driver is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. */
  11. #ifndef __SOUND_HDA_GENERIC_H
  12. #define __SOUND_HDA_GENERIC_H
  13. /* unsol event tags */
  14. enum {
  15. HDA_GEN_HP_EVENT = 1, HDA_GEN_FRONT_EVENT, HDA_GEN_MIC_EVENT,
  16. HDA_GEN_LAST_EVENT = HDA_GEN_MIC_EVENT
  17. };
  18. /* table entry for multi-io paths */
  19. struct hda_multi_io {
  20. hda_nid_t pin; /* multi-io widget pin NID */
  21. hda_nid_t dac; /* DAC to be connected */
  22. unsigned int ctl_in; /* cached input-pin control value */
  23. };
  24. /* Widget connection path
  25. *
  26. * For output, stored in the order of DAC -> ... -> pin,
  27. * for input, pin -> ... -> ADC.
  28. *
  29. * idx[i] contains the source index number to select on of the widget path[i];
  30. * e.g. idx[1] is the index of the DAC (path[0]) selected by path[1] widget
  31. * multi[] indicates whether it's a selector widget with multi-connectors
  32. * (i.e. the connection selection is mandatory)
  33. * vol_ctl and mute_ctl contains the NIDs for the assigned mixers
  34. */
  35. #define MAX_NID_PATH_DEPTH 10
  36. enum {
  37. NID_PATH_VOL_CTL,
  38. NID_PATH_MUTE_CTL,
  39. NID_PATH_BOOST_CTL,
  40. NID_PATH_NUM_CTLS
  41. };
  42. struct nid_path {
  43. int depth;
  44. hda_nid_t path[MAX_NID_PATH_DEPTH];
  45. unsigned char idx[MAX_NID_PATH_DEPTH];
  46. unsigned char multi[MAX_NID_PATH_DEPTH];
  47. unsigned int ctls[NID_PATH_NUM_CTLS]; /* NID_PATH_XXX_CTL */
  48. bool active;
  49. };
  50. /* mic/line-in auto switching entry */
  51. #define MAX_AUTO_MIC_PINS 3
  52. struct automic_entry {
  53. hda_nid_t pin; /* pin */
  54. int idx; /* imux index, -1 = invalid */
  55. unsigned int attr; /* pin attribute (INPUT_PIN_ATTR_*) */
  56. };
  57. /* active stream id */
  58. enum { STREAM_MULTI_OUT, STREAM_INDEP_HP };
  59. /* PCM hook action */
  60. enum {
  61. HDA_GEN_PCM_ACT_OPEN,
  62. HDA_GEN_PCM_ACT_PREPARE,
  63. HDA_GEN_PCM_ACT_CLEANUP,
  64. HDA_GEN_PCM_ACT_CLOSE,
  65. };
  66. struct hda_gen_spec {
  67. char stream_name_analog[32]; /* analog PCM stream */
  68. const struct hda_pcm_stream *stream_analog_playback;
  69. const struct hda_pcm_stream *stream_analog_capture;
  70. char stream_name_alt_analog[32]; /* alternative analog PCM stream */
  71. const struct hda_pcm_stream *stream_analog_alt_playback;
  72. const struct hda_pcm_stream *stream_analog_alt_capture;
  73. char stream_name_digital[32]; /* digital PCM stream */
  74. const struct hda_pcm_stream *stream_digital_playback;
  75. const struct hda_pcm_stream *stream_digital_capture;
  76. /* PCM */
  77. unsigned int active_streams;
  78. struct mutex pcm_mutex;
  79. /* playback */
  80. struct hda_multi_out multiout; /* playback set-up
  81. * max_channels, dacs must be set
  82. * dig_out_nid and hp_nid are optional
  83. */
  84. hda_nid_t alt_dac_nid;
  85. hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
  86. int dig_out_type;
  87. /* capture */
  88. unsigned int num_adc_nids;
  89. hda_nid_t adc_nids[AUTO_CFG_MAX_INS];
  90. hda_nid_t dig_in_nid; /* digital-in NID; optional */
  91. hda_nid_t mixer_nid; /* analog-mixer NID */
  92. hda_nid_t mixer_merge_nid; /* aamix merge-point NID (optional) */
  93. const char *input_labels[HDA_MAX_NUM_INPUTS];
  94. int input_label_idxs[HDA_MAX_NUM_INPUTS];
  95. /* capture setup for dynamic dual-adc switch */
  96. hda_nid_t cur_adc;
  97. unsigned int cur_adc_stream_tag;
  98. unsigned int cur_adc_format;
  99. /* capture source */
  100. struct hda_input_mux input_mux;
  101. unsigned int cur_mux[3];
  102. /* channel model */
  103. /* min_channel_count contains the minimum channel count for primary
  104. * outputs. When multi_ios is set, the channels can be configured
  105. * between min_channel_count and (min_channel_count + multi_ios * 2).
  106. *
  107. * ext_channel_count contains the current channel count of the primary
  108. * out. This varies in the range above.
  109. *
  110. * Meanwhile, const_channel_count is the channel count for all outputs
  111. * including headphone and speakers. It's a constant value, and the
  112. * PCM is set up as max(ext_channel_count, const_channel_count).
  113. */
  114. int min_channel_count; /* min. channel count for primary out */
  115. int ext_channel_count; /* current channel count for primary */
  116. int const_channel_count; /* channel count for all */
  117. /* PCM information */
  118. struct hda_pcm pcm_rec[3]; /* used in build_pcms() */
  119. /* dynamic controls, init_verbs and input_mux */
  120. struct auto_pin_cfg autocfg;
  121. struct snd_array kctls;
  122. hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
  123. hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
  124. unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
  125. hda_nid_t shared_mic_vref_pin;
  126. /* DAC/ADC lists */
  127. int num_all_dacs;
  128. hda_nid_t all_dacs[16];
  129. int num_all_adcs;
  130. hda_nid_t all_adcs[AUTO_CFG_MAX_INS];
  131. /* path list */
  132. struct snd_array paths;
  133. /* path indices */
  134. int out_paths[AUTO_CFG_MAX_OUTS];
  135. int hp_paths[AUTO_CFG_MAX_OUTS];
  136. int speaker_paths[AUTO_CFG_MAX_OUTS];
  137. int aamix_out_paths[3];
  138. int digout_paths[AUTO_CFG_MAX_OUTS];
  139. int input_paths[HDA_MAX_NUM_INPUTS][AUTO_CFG_MAX_INS];
  140. int loopback_paths[HDA_MAX_NUM_INPUTS];
  141. int loopback_merge_path;
  142. int digin_path;
  143. /* auto-mic stuff */
  144. int am_num_entries;
  145. struct automic_entry am_entry[MAX_AUTO_MIC_PINS];
  146. /* for pin sensing */
  147. /* current status; set in hda_geneic.c */
  148. unsigned int hp_jack_present:1;
  149. unsigned int line_jack_present:1;
  150. unsigned int speaker_muted:1; /* current status of speaker mute */
  151. unsigned int line_out_muted:1; /* current status of LO mute */
  152. /* internal states of automute / autoswitch behavior */
  153. unsigned int auto_mic:1;
  154. unsigned int automute_speaker:1; /* automute speaker outputs */
  155. unsigned int automute_lo:1; /* automute LO outputs */
  156. /* capabilities detected by parser */
  157. unsigned int detect_hp:1; /* Headphone detection enabled */
  158. unsigned int detect_lo:1; /* Line-out detection enabled */
  159. unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
  160. unsigned int automute_lo_possible:1; /* there are line outs and HP */
  161. /* additional parameters set by codec drivers */
  162. unsigned int master_mute:1; /* master mute over all */
  163. unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */
  164. unsigned int line_in_auto_switch:1; /* allow line-in auto switch */
  165. /* parser behavior flags; set before snd_hda_gen_parse_auto_config() */
  166. unsigned int suppress_auto_mute:1; /* suppress input jack auto mute */
  167. unsigned int suppress_auto_mic:1; /* suppress input jack auto switch */
  168. /* other parse behavior flags */
  169. unsigned int need_dac_fix:1; /* need to limit DACs for multi channels */
  170. unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */
  171. unsigned int no_primary_hp:1; /* Don't prefer HP pins to speaker pins */
  172. unsigned int multi_cap_vol:1; /* allow multiple capture xxx volumes */
  173. unsigned int inv_dmic_split:1; /* inverted dmic w/a for conexant */
  174. unsigned int own_eapd_ctl:1; /* set EAPD by own function */
  175. unsigned int vmaster_mute_enum:1; /* add vmaster mute mode enum */
  176. unsigned int indep_hp:1; /* independent HP supported */
  177. unsigned int prefer_hp_amp:1; /* enable HP amp for speaker if any */
  178. unsigned int add_stereo_mix_input:1; /* add aamix as a capture src */
  179. unsigned int add_out_jack_modes:1; /* add output jack mode enum ctls */
  180. unsigned int add_in_jack_modes:1; /* add input jack mode enum ctls */
  181. unsigned int power_down_unused:1; /* power down unused widgets */
  182. /* other internal flags */
  183. unsigned int no_analog:1; /* digital I/O only */
  184. unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
  185. unsigned int indep_hp_enabled:1; /* independent HP enabled */
  186. unsigned int have_aamix_ctl:1;
  187. /* loopback mixing mode */
  188. bool aamix_mode;
  189. /* for virtual master */
  190. hda_nid_t vmaster_nid;
  191. unsigned int vmaster_tlv[4];
  192. struct hda_vmaster_mute_hook vmaster_mute;
  193. struct hda_loopback_check loopback;
  194. struct snd_array loopback_list;
  195. /* multi-io */
  196. int multi_ios;
  197. struct hda_multi_io multi_io[4];
  198. /* hooks */
  199. void (*init_hook)(struct hda_codec *codec);
  200. void (*automute_hook)(struct hda_codec *codec);
  201. void (*cap_sync_hook)(struct hda_codec *codec,
  202. struct snd_ctl_elem_value *ucontrol);
  203. /* PCM hooks */
  204. void (*pcm_playback_hook)(struct hda_pcm_stream *hinfo,
  205. struct hda_codec *codec,
  206. struct snd_pcm_substream *substream,
  207. int action);
  208. void (*pcm_capture_hook)(struct hda_pcm_stream *hinfo,
  209. struct hda_codec *codec,
  210. struct snd_pcm_substream *substream,
  211. int action);
  212. /* automute / autoswitch hooks */
  213. void (*hp_automute_hook)(struct hda_codec *codec,
  214. struct hda_jack_tbl *tbl);
  215. void (*line_automute_hook)(struct hda_codec *codec,
  216. struct hda_jack_tbl *tbl);
  217. void (*mic_autoswitch_hook)(struct hda_codec *codec,
  218. struct hda_jack_tbl *tbl);
  219. };
  220. int snd_hda_gen_spec_init(struct hda_gen_spec *spec);
  221. void snd_hda_gen_spec_free(struct hda_gen_spec *spec);
  222. int snd_hda_gen_init(struct hda_codec *codec);
  223. void snd_hda_gen_free(struct hda_codec *codec);
  224. struct nid_path *snd_hda_get_nid_path(struct hda_codec *codec,
  225. hda_nid_t from_nid, hda_nid_t to_nid);
  226. int snd_hda_get_path_idx(struct hda_codec *codec, struct nid_path *path);
  227. struct nid_path *snd_hda_get_path_from_idx(struct hda_codec *codec, int idx);
  228. bool snd_hda_parse_nid_path(struct hda_codec *codec, hda_nid_t from_nid,
  229. hda_nid_t to_nid, int anchor_nid,
  230. struct nid_path *path);
  231. struct nid_path *
  232. snd_hda_add_new_path(struct hda_codec *codec, hda_nid_t from_nid,
  233. hda_nid_t to_nid, int anchor_nid);
  234. void snd_hda_activate_path(struct hda_codec *codec, struct nid_path *path,
  235. bool enable, bool add_aamix);
  236. struct snd_kcontrol_new *
  237. snd_hda_gen_add_kctl(struct hda_gen_spec *spec, const char *name,
  238. const struct snd_kcontrol_new *temp);
  239. int snd_hda_gen_parse_auto_config(struct hda_codec *codec,
  240. struct auto_pin_cfg *cfg);
  241. int snd_hda_gen_build_controls(struct hda_codec *codec);
  242. int snd_hda_gen_build_pcms(struct hda_codec *codec);
  243. /* standard jack event callbacks */
  244. void snd_hda_gen_hp_automute(struct hda_codec *codec,
  245. struct hda_jack_tbl *jack);
  246. void snd_hda_gen_line_automute(struct hda_codec *codec,
  247. struct hda_jack_tbl *jack);
  248. void snd_hda_gen_mic_autoswitch(struct hda_codec *codec,
  249. struct hda_jack_tbl *jack);
  250. void snd_hda_gen_update_outputs(struct hda_codec *codec);
  251. #ifdef CONFIG_PM
  252. int snd_hda_gen_check_power_status(struct hda_codec *codec, hda_nid_t nid);
  253. #endif
  254. #endif /* __SOUND_HDA_GENERIC_H */