hda_generic.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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, 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 5
  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. struct hda_gen_spec {
  58. char stream_name_analog[32]; /* analog PCM stream */
  59. const struct hda_pcm_stream *stream_analog_playback;
  60. const struct hda_pcm_stream *stream_analog_capture;
  61. const struct hda_pcm_stream *stream_analog_alt_playback;
  62. const struct hda_pcm_stream *stream_analog_alt_capture;
  63. char stream_name_digital[32]; /* digital PCM stream */
  64. const struct hda_pcm_stream *stream_digital_playback;
  65. const struct hda_pcm_stream *stream_digital_capture;
  66. /* playback */
  67. struct hda_multi_out multiout; /* playback set-up
  68. * max_channels, dacs must be set
  69. * dig_out_nid and hp_nid are optional
  70. */
  71. hda_nid_t alt_dac_nid;
  72. hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
  73. int dig_out_type;
  74. /* capture */
  75. unsigned int num_adc_nids;
  76. hda_nid_t adc_nids[AUTO_CFG_MAX_OUTS];
  77. hda_nid_t dig_in_nid; /* digital-in NID; optional */
  78. hda_nid_t mixer_nid; /* analog-mixer NID */
  79. /* capture setup for dynamic dual-adc switch */
  80. hda_nid_t cur_adc;
  81. unsigned int cur_adc_stream_tag;
  82. unsigned int cur_adc_format;
  83. /* capture source */
  84. struct hda_input_mux input_mux;
  85. unsigned int cur_mux[3];
  86. /* channel model */
  87. const struct hda_channel_mode *channel_mode;
  88. int num_channel_mode;
  89. int const_channel_count; /* min. channel count (for speakers) */
  90. int ext_channel_count; /* current channel count for multi-io */
  91. /* PCM information */
  92. struct hda_pcm pcm_rec[3]; /* used in build_pcms() */
  93. /* dynamic controls, init_verbs and input_mux */
  94. struct auto_pin_cfg autocfg;
  95. struct snd_array kctls;
  96. hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
  97. hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
  98. unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
  99. hda_nid_t shared_mic_vref_pin;
  100. /* DAC list */
  101. int num_all_dacs;
  102. hda_nid_t all_dacs[16];
  103. /* path list */
  104. struct snd_array paths;
  105. /* auto-mic stuff */
  106. int am_num_entries;
  107. struct automic_entry am_entry[MAX_AUTO_MIC_PINS];
  108. /* for pin sensing */
  109. unsigned int hp_jack_present:1;
  110. unsigned int line_jack_present:1;
  111. unsigned int master_mute:1;
  112. unsigned int auto_mic:1;
  113. unsigned int automute_speaker:1; /* automute speaker outputs */
  114. unsigned int automute_lo:1; /* automute LO outputs */
  115. unsigned int detect_hp:1; /* Headphone detection enabled */
  116. unsigned int detect_lo:1; /* Line-out detection enabled */
  117. unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
  118. unsigned int automute_lo_possible:1; /* there are line outs and HP */
  119. unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */
  120. unsigned int line_in_auto_switch:1; /* allow line-in auto switch */
  121. /* other flags */
  122. unsigned int need_dac_fix:1; /* need to limit DACs for multi channels */
  123. unsigned int no_analog:1; /* digital I/O only */
  124. unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
  125. unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */
  126. unsigned int no_primary_hp:1; /* Don't prefer HP pins to speaker pins */
  127. unsigned int multi_cap_vol:1; /* allow multiple capture xxx volumes */
  128. unsigned int inv_dmic_split:1; /* inverted dmic w/a for conexant */
  129. unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
  130. /* for virtual master */
  131. hda_nid_t vmaster_nid;
  132. struct hda_vmaster_mute_hook vmaster_mute;
  133. #ifdef CONFIG_PM
  134. struct hda_loopback_check loopback;
  135. int num_loopbacks;
  136. struct hda_amp_list loopback_list[8];
  137. #endif
  138. /* multi-io */
  139. int multi_ios;
  140. struct hda_multi_io multi_io[4];
  141. /* bind volumes */
  142. struct snd_array bind_ctls;
  143. /* hooks */
  144. void (*init_hook)(struct hda_codec *codec);
  145. void (*automute_hook)(struct hda_codec *codec);
  146. void (*cap_sync_hook)(struct hda_codec *codec);
  147. };
  148. int snd_hda_gen_spec_init(struct hda_gen_spec *spec);
  149. void snd_hda_gen_spec_free(struct hda_gen_spec *spec);
  150. int snd_hda_gen_init(struct hda_codec *codec);
  151. struct nid_path *snd_hda_get_nid_path(struct hda_codec *codec,
  152. hda_nid_t from_nid, hda_nid_t to_nid);
  153. bool snd_hda_parse_nid_path(struct hda_codec *codec, hda_nid_t from_nid,
  154. hda_nid_t to_nid, int with_aa_mix,
  155. struct nid_path *path);
  156. struct nid_path *
  157. snd_hda_add_new_path(struct hda_codec *codec, hda_nid_t from_nid,
  158. hda_nid_t to_nid, int with_aa_mix);
  159. void snd_hda_activate_path(struct hda_codec *codec, struct nid_path *path,
  160. bool enable, bool add_aamix);
  161. int snd_hda_gen_parse_auto_config(struct hda_codec *codec,
  162. const hda_nid_t *ignore_nids);
  163. int snd_hda_gen_build_controls(struct hda_codec *codec);
  164. int snd_hda_gen_build_pcms(struct hda_codec *codec);
  165. #endif /* __SOUND_HDA_GENERIC_H */