hda_local.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736
  1. /*
  2. * Universal Interface for Intel High Definition Audio Codec
  3. *
  4. * Local helper functions
  5. *
  6. * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation; either version 2 of the License, or (at your option)
  11. * any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  16. * more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along with
  19. * this program; if not, write to the Free Software Foundation, Inc., 59
  20. * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. #ifndef __SOUND_HDA_LOCAL_H
  23. #define __SOUND_HDA_LOCAL_H
  24. /* We abuse kcontrol_new.subdev field to pass the NID corresponding to
  25. * the given new control. If id.subdev has a bit flag HDA_SUBDEV_NID_FLAG,
  26. * snd_hda_ctl_add() takes the lower-bit subdev value as a valid NID.
  27. *
  28. * Note that the subdevice field is cleared again before the real registration
  29. * in snd_hda_ctl_add(), so that this value won't appear in the outside.
  30. */
  31. #define HDA_SUBDEV_NID_FLAG (1U << 31)
  32. #define HDA_SUBDEV_AMP_FLAG (1U << 30)
  33. /*
  34. * for mixer controls
  35. */
  36. #define HDA_COMPOSE_AMP_VAL_OFS(nid,chs,idx,dir,ofs) \
  37. ((nid) | ((chs)<<16) | ((dir)<<18) | ((idx)<<19) | ((ofs)<<23))
  38. #define HDA_AMP_VAL_MIN_MUTE (1<<29)
  39. #define HDA_COMPOSE_AMP_VAL(nid,chs,idx,dir) \
  40. HDA_COMPOSE_AMP_VAL_OFS(nid, chs, idx, dir, 0)
  41. /* mono volume with index (index=0,1,...) (channel=1,2) */
  42. #define HDA_CODEC_VOLUME_MONO_IDX(xname, xcidx, nid, channel, xindex, dir, flags) \
  43. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \
  44. .subdevice = HDA_SUBDEV_AMP_FLAG, \
  45. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \
  46. SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
  47. SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \
  48. .info = snd_hda_mixer_amp_volume_info, \
  49. .get = snd_hda_mixer_amp_volume_get, \
  50. .put = snd_hda_mixer_amp_volume_put, \
  51. .tlv = { .c = snd_hda_mixer_amp_tlv }, \
  52. .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, dir) | flags }
  53. /* stereo volume with index */
  54. #define HDA_CODEC_VOLUME_IDX(xname, xcidx, nid, xindex, direction) \
  55. HDA_CODEC_VOLUME_MONO_IDX(xname, xcidx, nid, 3, xindex, direction, 0)
  56. /* mono volume */
  57. #define HDA_CODEC_VOLUME_MONO(xname, nid, channel, xindex, direction) \
  58. HDA_CODEC_VOLUME_MONO_IDX(xname, 0, nid, channel, xindex, direction, 0)
  59. /* stereo volume */
  60. #define HDA_CODEC_VOLUME(xname, nid, xindex, direction) \
  61. HDA_CODEC_VOLUME_MONO(xname, nid, 3, xindex, direction)
  62. /* stereo volume with min=mute */
  63. #define HDA_CODEC_VOLUME_MIN_MUTE(xname, nid, xindex, direction) \
  64. HDA_CODEC_VOLUME_MONO_IDX(xname, 0, nid, 3, xindex, direction, \
  65. HDA_AMP_VAL_MIN_MUTE)
  66. /* mono mute switch with index (index=0,1,...) (channel=1,2) */
  67. #define HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \
  68. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \
  69. .subdevice = HDA_SUBDEV_AMP_FLAG, \
  70. .info = snd_hda_mixer_amp_switch_info, \
  71. .get = snd_hda_mixer_amp_switch_get, \
  72. .put = snd_hda_mixer_amp_switch_put, \
  73. .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, direction) }
  74. /* stereo mute switch with index */
  75. #define HDA_CODEC_MUTE_IDX(xname, xcidx, nid, xindex, direction) \
  76. HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, 3, xindex, direction)
  77. /* mono mute switch */
  78. #define HDA_CODEC_MUTE_MONO(xname, nid, channel, xindex, direction) \
  79. HDA_CODEC_MUTE_MONO_IDX(xname, 0, nid, channel, xindex, direction)
  80. /* stereo mute switch */
  81. #define HDA_CODEC_MUTE(xname, nid, xindex, direction) \
  82. HDA_CODEC_MUTE_MONO(xname, nid, 3, xindex, direction)
  83. #ifdef CONFIG_SND_HDA_INPUT_BEEP
  84. /* special beep mono mute switch with index (index=0,1,...) (channel=1,2) */
  85. #define HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \
  86. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \
  87. .subdevice = HDA_SUBDEV_AMP_FLAG, \
  88. .info = snd_hda_mixer_amp_switch_info, \
  89. .get = snd_hda_mixer_amp_switch_get_beep, \
  90. .put = snd_hda_mixer_amp_switch_put_beep, \
  91. .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, direction) }
  92. #else
  93. /* no digital beep - just the standard one */
  94. #define HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, xcidx, nid, ch, xidx, dir) \
  95. HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, ch, xidx, dir)
  96. #endif /* CONFIG_SND_HDA_INPUT_BEEP */
  97. /* special beep mono mute switch */
  98. #define HDA_CODEC_MUTE_BEEP_MONO(xname, nid, channel, xindex, direction) \
  99. HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, 0, nid, channel, xindex, direction)
  100. /* special beep stereo mute switch */
  101. #define HDA_CODEC_MUTE_BEEP(xname, nid, xindex, direction) \
  102. HDA_CODEC_MUTE_BEEP_MONO(xname, nid, 3, xindex, direction)
  103. extern const char *snd_hda_pcm_type_name[];
  104. int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
  105. struct snd_ctl_elem_info *uinfo);
  106. int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
  107. struct snd_ctl_elem_value *ucontrol);
  108. int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
  109. struct snd_ctl_elem_value *ucontrol);
  110. int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
  111. unsigned int size, unsigned int __user *tlv);
  112. int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
  113. struct snd_ctl_elem_info *uinfo);
  114. int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
  115. struct snd_ctl_elem_value *ucontrol);
  116. int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
  117. struct snd_ctl_elem_value *ucontrol);
  118. #ifdef CONFIG_SND_HDA_INPUT_BEEP
  119. int snd_hda_mixer_amp_switch_get_beep(struct snd_kcontrol *kcontrol,
  120. struct snd_ctl_elem_value *ucontrol);
  121. int snd_hda_mixer_amp_switch_put_beep(struct snd_kcontrol *kcontrol,
  122. struct snd_ctl_elem_value *ucontrol);
  123. #endif
  124. /* lowlevel accessor with caching; use carefully */
  125. #define snd_hda_codec_amp_read(codec, nid, ch, dir, idx) \
  126. snd_hdac_regmap_get_amp(&(codec)->core, nid, ch, dir, idx)
  127. int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid,
  128. int ch, int dir, int idx, int mask, int val);
  129. int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
  130. int dir, int idx, int mask, int val);
  131. int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
  132. int direction, int idx, int mask, int val);
  133. int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
  134. int dir, int idx, int mask, int val);
  135. void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
  136. unsigned int *tlv);
  137. struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
  138. const char *name);
  139. int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
  140. unsigned int *tlv, const char * const *slaves,
  141. const char *suffix, bool init_slave_vol,
  142. struct snd_kcontrol **ctl_ret);
  143. #define snd_hda_add_vmaster(codec, name, tlv, slaves, suffix) \
  144. __snd_hda_add_vmaster(codec, name, tlv, slaves, suffix, true, NULL)
  145. int snd_hda_codec_reset(struct hda_codec *codec);
  146. void snd_hda_codec_register(struct hda_codec *codec);
  147. void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec);
  148. enum {
  149. HDA_VMUTE_OFF,
  150. HDA_VMUTE_ON,
  151. HDA_VMUTE_FOLLOW_MASTER,
  152. };
  153. struct hda_vmaster_mute_hook {
  154. /* below two fields must be filled by the caller of
  155. * snd_hda_add_vmaster_hook() beforehand
  156. */
  157. struct snd_kcontrol *sw_kctl;
  158. void (*hook)(void *, int);
  159. /* below are initialized automatically */
  160. unsigned int mute_mode; /* HDA_VMUTE_XXX */
  161. struct hda_codec *codec;
  162. };
  163. int snd_hda_add_vmaster_hook(struct hda_codec *codec,
  164. struct hda_vmaster_mute_hook *hook,
  165. bool expose_enum_ctl);
  166. void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook);
  167. /* amp value bits */
  168. #define HDA_AMP_MUTE 0x80
  169. #define HDA_AMP_UNMUTE 0x00
  170. #define HDA_AMP_VOLMASK 0x7f
  171. /*
  172. * SPDIF I/O
  173. */
  174. int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
  175. hda_nid_t associated_nid,
  176. hda_nid_t cvt_nid, int type);
  177. #define snd_hda_create_spdif_out_ctls(codec, anid, cnid) \
  178. snd_hda_create_dig_out_ctls(codec, anid, cnid, HDA_PCM_TYPE_SPDIF)
  179. int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid);
  180. /*
  181. * input MUX helper
  182. */
  183. #define HDA_MAX_NUM_INPUTS 16
  184. struct hda_input_mux_item {
  185. char label[32];
  186. unsigned int index;
  187. };
  188. struct hda_input_mux {
  189. unsigned int num_items;
  190. struct hda_input_mux_item items[HDA_MAX_NUM_INPUTS];
  191. };
  192. int snd_hda_input_mux_info(const struct hda_input_mux *imux,
  193. struct snd_ctl_elem_info *uinfo);
  194. int snd_hda_input_mux_put(struct hda_codec *codec,
  195. const struct hda_input_mux *imux,
  196. struct snd_ctl_elem_value *ucontrol, hda_nid_t nid,
  197. unsigned int *cur_val);
  198. int snd_hda_add_imux_item(struct hda_codec *codec,
  199. struct hda_input_mux *imux, const char *label,
  200. int index, int *type_index_ret);
  201. /*
  202. * Multi-channel / digital-out PCM helper
  203. */
  204. enum { HDA_FRONT, HDA_REAR, HDA_CLFE, HDA_SIDE }; /* index for dac_nidx */
  205. enum { HDA_DIG_NONE, HDA_DIG_EXCLUSIVE, HDA_DIG_ANALOG_DUP }; /* dig_out_used */
  206. #define HDA_MAX_OUTS 5
  207. struct hda_multi_out {
  208. int num_dacs; /* # of DACs, must be more than 1 */
  209. const hda_nid_t *dac_nids; /* DAC list */
  210. hda_nid_t hp_nid; /* optional DAC for HP, 0 when not exists */
  211. hda_nid_t hp_out_nid[HDA_MAX_OUTS]; /* DACs for multiple HPs */
  212. hda_nid_t extra_out_nid[HDA_MAX_OUTS]; /* other (e.g. speaker) DACs */
  213. hda_nid_t dig_out_nid; /* digital out audio widget */
  214. const hda_nid_t *slave_dig_outs;
  215. int max_channels; /* currently supported analog channels */
  216. int dig_out_used; /* current usage of digital out (HDA_DIG_XXX) */
  217. int no_share_stream; /* don't share a stream with multiple pins */
  218. int share_spdif; /* share SPDIF pin */
  219. /* PCM information for both analog and SPDIF DACs */
  220. unsigned int analog_rates;
  221. unsigned int analog_maxbps;
  222. u64 analog_formats;
  223. unsigned int spdif_rates;
  224. unsigned int spdif_maxbps;
  225. u64 spdif_formats;
  226. };
  227. int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
  228. struct hda_multi_out *mout);
  229. int snd_hda_multi_out_dig_open(struct hda_codec *codec,
  230. struct hda_multi_out *mout);
  231. int snd_hda_multi_out_dig_close(struct hda_codec *codec,
  232. struct hda_multi_out *mout);
  233. int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
  234. struct hda_multi_out *mout,
  235. unsigned int stream_tag,
  236. unsigned int format,
  237. struct snd_pcm_substream *substream);
  238. int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
  239. struct hda_multi_out *mout);
  240. int snd_hda_multi_out_analog_open(struct hda_codec *codec,
  241. struct hda_multi_out *mout,
  242. struct snd_pcm_substream *substream,
  243. struct hda_pcm_stream *hinfo);
  244. int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
  245. struct hda_multi_out *mout,
  246. unsigned int stream_tag,
  247. unsigned int format,
  248. struct snd_pcm_substream *substream);
  249. int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
  250. struct hda_multi_out *mout);
  251. /*
  252. * generic proc interface
  253. */
  254. #ifdef CONFIG_SND_PROC_FS
  255. int snd_hda_codec_proc_new(struct hda_codec *codec);
  256. #else
  257. static inline int snd_hda_codec_proc_new(struct hda_codec *codec) { return 0; }
  258. #endif
  259. #define SND_PRINT_BITS_ADVISED_BUFSIZE 16
  260. void snd_print_pcm_bits(int pcm, char *buf, int buflen);
  261. /*
  262. * Misc
  263. */
  264. int snd_hda_add_new_ctls(struct hda_codec *codec,
  265. const struct snd_kcontrol_new *knew);
  266. /*
  267. * Fix-up pin default configurations and add default verbs
  268. */
  269. struct hda_pintbl {
  270. hda_nid_t nid;
  271. u32 val;
  272. };
  273. struct hda_model_fixup {
  274. const int id;
  275. const char *name;
  276. };
  277. struct hda_fixup {
  278. int type;
  279. bool chained:1; /* call the chained fixup(s) after this */
  280. bool chained_before:1; /* call the chained fixup(s) before this */
  281. int chain_id;
  282. union {
  283. const struct hda_pintbl *pins;
  284. const struct hda_verb *verbs;
  285. void (*func)(struct hda_codec *codec,
  286. const struct hda_fixup *fix,
  287. int action);
  288. } v;
  289. };
  290. struct snd_hda_pin_quirk {
  291. unsigned int codec; /* Codec vendor/device ID */
  292. unsigned short subvendor; /* PCI subvendor ID */
  293. const struct hda_pintbl *pins; /* list of matching pins */
  294. #ifdef CONFIG_SND_DEBUG_VERBOSE
  295. const char *name;
  296. #endif
  297. int value; /* quirk value */
  298. };
  299. #ifdef CONFIG_SND_DEBUG_VERBOSE
  300. #define SND_HDA_PIN_QUIRK(_codec, _subvendor, _name, _value, _pins...) \
  301. { .codec = _codec,\
  302. .subvendor = _subvendor,\
  303. .name = _name,\
  304. .value = _value,\
  305. .pins = (const struct hda_pintbl[]) { _pins, {0, 0}} \
  306. }
  307. #else
  308. #define SND_HDA_PIN_QUIRK(_codec, _subvendor, _name, _value, _pins...) \
  309. { .codec = _codec,\
  310. .subvendor = _subvendor,\
  311. .value = _value,\
  312. .pins = (const struct hda_pintbl[]) { _pins, {0, 0}} \
  313. }
  314. #endif
  315. #define HDA_FIXUP_ID_NOT_SET -1
  316. #define HDA_FIXUP_ID_NO_FIXUP -2
  317. /* fixup types */
  318. enum {
  319. HDA_FIXUP_INVALID,
  320. HDA_FIXUP_PINS,
  321. HDA_FIXUP_VERBS,
  322. HDA_FIXUP_FUNC,
  323. HDA_FIXUP_PINCTLS,
  324. };
  325. /* fixup action definitions */
  326. enum {
  327. HDA_FIXUP_ACT_PRE_PROBE,
  328. HDA_FIXUP_ACT_PROBE,
  329. HDA_FIXUP_ACT_INIT,
  330. HDA_FIXUP_ACT_BUILD,
  331. HDA_FIXUP_ACT_FREE,
  332. };
  333. int snd_hda_add_verbs(struct hda_codec *codec, const struct hda_verb *list);
  334. void snd_hda_apply_verbs(struct hda_codec *codec);
  335. void snd_hda_apply_pincfgs(struct hda_codec *codec,
  336. const struct hda_pintbl *cfg);
  337. void snd_hda_apply_fixup(struct hda_codec *codec, int action);
  338. void snd_hda_pick_fixup(struct hda_codec *codec,
  339. const struct hda_model_fixup *models,
  340. const struct snd_pci_quirk *quirk,
  341. const struct hda_fixup *fixlist);
  342. void snd_hda_pick_pin_fixup(struct hda_codec *codec,
  343. const struct snd_hda_pin_quirk *pin_quirk,
  344. const struct hda_fixup *fixlist);
  345. /* helper macros to retrieve pin default-config values */
  346. #define get_defcfg_connect(cfg) \
  347. ((cfg & AC_DEFCFG_PORT_CONN) >> AC_DEFCFG_PORT_CONN_SHIFT)
  348. #define get_defcfg_association(cfg) \
  349. ((cfg & AC_DEFCFG_DEF_ASSOC) >> AC_DEFCFG_ASSOC_SHIFT)
  350. #define get_defcfg_location(cfg) \
  351. ((cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT)
  352. #define get_defcfg_sequence(cfg) \
  353. (cfg & AC_DEFCFG_SEQUENCE)
  354. #define get_defcfg_device(cfg) \
  355. ((cfg & AC_DEFCFG_DEVICE) >> AC_DEFCFG_DEVICE_SHIFT)
  356. #define get_defcfg_misc(cfg) \
  357. ((cfg & AC_DEFCFG_MISC) >> AC_DEFCFG_MISC_SHIFT)
  358. /* amp values */
  359. #define AMP_IN_MUTE(idx) (0x7080 | ((idx)<<8))
  360. #define AMP_IN_UNMUTE(idx) (0x7000 | ((idx)<<8))
  361. #define AMP_OUT_MUTE 0xb080
  362. #define AMP_OUT_UNMUTE 0xb000
  363. #define AMP_OUT_ZERO 0xb000
  364. /* pinctl values */
  365. #define PIN_IN (AC_PINCTL_IN_EN)
  366. #define PIN_VREFHIZ (AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ)
  367. #define PIN_VREF50 (AC_PINCTL_IN_EN | AC_PINCTL_VREF_50)
  368. #define PIN_VREFGRD (AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD)
  369. #define PIN_VREF80 (AC_PINCTL_IN_EN | AC_PINCTL_VREF_80)
  370. #define PIN_VREF100 (AC_PINCTL_IN_EN | AC_PINCTL_VREF_100)
  371. #define PIN_OUT (AC_PINCTL_OUT_EN)
  372. #define PIN_HP (AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN)
  373. #define PIN_HP_AMP (AC_PINCTL_HP_EN)
  374. unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin);
  375. unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
  376. hda_nid_t pin, unsigned int val);
  377. int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
  378. unsigned int val, bool cached);
  379. /**
  380. * _snd_hda_set_pin_ctl - Set a pin-control value safely
  381. * @codec: the codec instance
  382. * @pin: the pin NID to set the control
  383. * @val: the pin-control value (AC_PINCTL_* bits)
  384. *
  385. * This function sets the pin-control value to the given pin, but
  386. * filters out the invalid pin-control bits when the pin has no such
  387. * capabilities. For example, when PIN_HP is passed but the pin has no
  388. * HP-drive capability, the HP bit is omitted.
  389. *
  390. * The function doesn't check the input VREF capability bits, though.
  391. * Use snd_hda_get_default_vref() to guess the right value.
  392. * Also, this function is only for analog pins, not for HDMI pins.
  393. */
  394. static inline int
  395. snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin, unsigned int val)
  396. {
  397. return _snd_hda_set_pin_ctl(codec, pin, val, false);
  398. }
  399. /**
  400. * snd_hda_set_pin_ctl_cache - Set a pin-control value safely
  401. * @codec: the codec instance
  402. * @pin: the pin NID to set the control
  403. * @val: the pin-control value (AC_PINCTL_* bits)
  404. *
  405. * Just like snd_hda_set_pin_ctl() but write to cache as well.
  406. */
  407. static inline int
  408. snd_hda_set_pin_ctl_cache(struct hda_codec *codec, hda_nid_t pin,
  409. unsigned int val)
  410. {
  411. return _snd_hda_set_pin_ctl(codec, pin, val, true);
  412. }
  413. int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid);
  414. int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
  415. unsigned int val);
  416. #define for_each_hda_codec_node(nid, codec) \
  417. for ((nid) = (codec)->core.start_nid; (nid) < (codec)->core.end_nid; (nid)++)
  418. /*
  419. * get widget capabilities
  420. */
  421. static inline u32 get_wcaps(struct hda_codec *codec, hda_nid_t nid)
  422. {
  423. if (nid < codec->core.start_nid ||
  424. nid >= codec->core.start_nid + codec->core.num_nodes)
  425. return 0;
  426. return codec->wcaps[nid - codec->core.start_nid];
  427. }
  428. /* get the widget type from widget capability bits */
  429. static inline int get_wcaps_type(unsigned int wcaps)
  430. {
  431. if (!wcaps)
  432. return -1; /* invalid type */
  433. return (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
  434. }
  435. static inline unsigned int get_wcaps_channels(u32 wcaps)
  436. {
  437. unsigned int chans;
  438. chans = (wcaps & AC_WCAP_CHAN_CNT_EXT) >> 13;
  439. chans = ((chans << 1) | 1) + 1;
  440. return chans;
  441. }
  442. static inline void snd_hda_override_wcaps(struct hda_codec *codec,
  443. hda_nid_t nid, u32 val)
  444. {
  445. if (nid >= codec->core.start_nid &&
  446. nid < codec->core.start_nid + codec->core.num_nodes)
  447. codec->wcaps[nid - codec->core.start_nid] = val;
  448. }
  449. u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction);
  450. int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
  451. unsigned int caps);
  452. /**
  453. * snd_hda_query_pin_caps - Query PIN capabilities
  454. * @codec: the HD-auio codec
  455. * @nid: the NID to query
  456. *
  457. * Query PIN capabilities for the given widget.
  458. * Returns the obtained capability bits.
  459. *
  460. * When cap bits have been already read, this doesn't read again but
  461. * returns the cached value.
  462. */
  463. static inline u32
  464. snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid)
  465. {
  466. return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
  467. }
  468. /**
  469. * snd_hda_override_pin_caps - Override the pin capabilities
  470. * @codec: the CODEC
  471. * @nid: the NID to override
  472. * @caps: the capability bits to set
  473. *
  474. * Override the cached PIN capabilitiy bits value by the given one.
  475. *
  476. * Returns zero if successful or a negative error code.
  477. */
  478. static inline int
  479. snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid,
  480. unsigned int caps)
  481. {
  482. return snd_hdac_override_parm(&codec->core, nid, AC_PAR_PIN_CAP, caps);
  483. }
  484. bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
  485. int dir, unsigned int bits);
  486. #define nid_has_mute(codec, nid, dir) \
  487. snd_hda_check_amp_caps(codec, nid, dir, (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE))
  488. #define nid_has_volume(codec, nid, dir) \
  489. snd_hda_check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
  490. /* flags for hda_nid_item */
  491. #define HDA_NID_ITEM_AMP (1<<0)
  492. struct hda_nid_item {
  493. struct snd_kcontrol *kctl;
  494. unsigned int index;
  495. hda_nid_t nid;
  496. unsigned short flags;
  497. };
  498. int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
  499. struct snd_kcontrol *kctl);
  500. int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
  501. unsigned int index, hda_nid_t nid);
  502. void snd_hda_ctls_clear(struct hda_codec *codec);
  503. /*
  504. * hwdep interface
  505. */
  506. #ifdef CONFIG_SND_HDA_HWDEP
  507. int snd_hda_create_hwdep(struct hda_codec *codec);
  508. #else
  509. static inline int snd_hda_create_hwdep(struct hda_codec *codec) { return 0; }
  510. #endif
  511. void snd_hda_sysfs_init(struct hda_codec *codec);
  512. void snd_hda_sysfs_clear(struct hda_codec *codec);
  513. extern const struct attribute_group *snd_hda_dev_attr_groups[];
  514. #ifdef CONFIG_SND_HDA_RECONFIG
  515. const char *snd_hda_get_hint(struct hda_codec *codec, const char *key);
  516. int snd_hda_get_bool_hint(struct hda_codec *codec, const char *key);
  517. int snd_hda_get_int_hint(struct hda_codec *codec, const char *key, int *valp);
  518. #else
  519. static inline
  520. const char *snd_hda_get_hint(struct hda_codec *codec, const char *key)
  521. {
  522. return NULL;
  523. }
  524. static inline
  525. int snd_hda_get_bool_hint(struct hda_codec *codec, const char *key)
  526. {
  527. return -ENOENT;
  528. }
  529. static inline
  530. int snd_hda_get_int_hint(struct hda_codec *codec, const char *key, int *valp)
  531. {
  532. return -ENOENT;
  533. }
  534. #endif
  535. /*
  536. * power-management
  537. */
  538. void snd_hda_schedule_power_save(struct hda_codec *codec);
  539. struct hda_amp_list {
  540. hda_nid_t nid;
  541. unsigned char dir;
  542. unsigned char idx;
  543. };
  544. struct hda_loopback_check {
  545. const struct hda_amp_list *amplist;
  546. int power_on;
  547. };
  548. int snd_hda_check_amp_list_power(struct hda_codec *codec,
  549. struct hda_loopback_check *check,
  550. hda_nid_t nid);
  551. /* check whether the actual power state matches with the target state */
  552. static inline bool
  553. snd_hda_check_power_state(struct hda_codec *codec, hda_nid_t nid,
  554. unsigned int target_state)
  555. {
  556. return snd_hdac_check_power_state(&codec->core, nid, target_state);
  557. }
  558. unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
  559. hda_nid_t nid,
  560. unsigned int power_state);
  561. /*
  562. * AMP control callbacks
  563. */
  564. /* retrieve parameters from private_value */
  565. #define get_amp_nid_(pv) ((pv) & 0xffff)
  566. #define get_amp_nid(kc) get_amp_nid_((kc)->private_value)
  567. #define get_amp_channels(kc) (((kc)->private_value >> 16) & 0x3)
  568. #define get_amp_direction_(pv) (((pv) >> 18) & 0x1)
  569. #define get_amp_direction(kc) get_amp_direction_((kc)->private_value)
  570. #define get_amp_index_(pv) (((pv) >> 19) & 0xf)
  571. #define get_amp_index(kc) get_amp_index_((kc)->private_value)
  572. #define get_amp_offset(kc) (((kc)->private_value >> 23) & 0x3f)
  573. #define get_amp_min_mute(kc) (((kc)->private_value >> 29) & 0x1)
  574. /*
  575. * enum control helper
  576. */
  577. int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
  578. struct snd_ctl_elem_info *uinfo,
  579. int num_entries, const char * const *texts);
  580. #define snd_hda_enum_bool_helper_info(kcontrol, uinfo) \
  581. snd_hda_enum_helper_info(kcontrol, uinfo, 0, NULL)
  582. /*
  583. * CEA Short Audio Descriptor data
  584. */
  585. struct cea_sad {
  586. int channels;
  587. int format; /* (format == 0) indicates invalid SAD */
  588. int rates;
  589. int sample_bits; /* for LPCM */
  590. int max_bitrate; /* for AC3...ATRAC */
  591. int profile; /* for WMAPRO */
  592. };
  593. #define ELD_FIXED_BYTES 20
  594. #define ELD_MAX_SIZE 256
  595. #define ELD_MAX_MNL 16
  596. #define ELD_MAX_SAD 16
  597. /*
  598. * ELD: EDID Like Data
  599. */
  600. struct parsed_hdmi_eld {
  601. /*
  602. * all fields will be cleared before updating ELD
  603. */
  604. int baseline_len;
  605. int eld_ver;
  606. int cea_edid_ver;
  607. char monitor_name[ELD_MAX_MNL + 1];
  608. int manufacture_id;
  609. int product_id;
  610. u64 port_id;
  611. int support_hdcp;
  612. int support_ai;
  613. int conn_type;
  614. int aud_synch_delay;
  615. int spk_alloc;
  616. int sad_count;
  617. struct cea_sad sad[ELD_MAX_SAD];
  618. };
  619. struct hdmi_eld {
  620. bool monitor_present;
  621. bool eld_valid;
  622. int eld_size;
  623. char eld_buffer[ELD_MAX_SIZE];
  624. struct parsed_hdmi_eld info;
  625. };
  626. int snd_hdmi_get_eld_size(struct hda_codec *codec, hda_nid_t nid);
  627. int snd_hdmi_get_eld(struct hda_codec *codec, hda_nid_t nid,
  628. unsigned char *buf, int *eld_size);
  629. int snd_hdmi_parse_eld(struct hda_codec *codec, struct parsed_hdmi_eld *e,
  630. const unsigned char *buf, int size);
  631. void snd_hdmi_show_eld(struct hda_codec *codec, struct parsed_hdmi_eld *e);
  632. void snd_hdmi_eld_update_pcm_info(struct parsed_hdmi_eld *e,
  633. struct hda_pcm_stream *hinfo);
  634. int snd_hdmi_get_eld_ati(struct hda_codec *codec, hda_nid_t nid,
  635. unsigned char *buf, int *eld_size,
  636. bool rev3_or_later);
  637. #ifdef CONFIG_SND_PROC_FS
  638. void snd_hdmi_print_eld_info(struct hdmi_eld *eld,
  639. struct snd_info_buffer *buffer);
  640. void snd_hdmi_write_eld_info(struct hdmi_eld *eld,
  641. struct snd_info_buffer *buffer);
  642. #endif
  643. #define SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE 80
  644. void snd_print_channel_allocation(int spk_alloc, char *buf, int buflen);
  645. /*
  646. */
  647. #define codec_err(codec, fmt, args...) \
  648. dev_err(hda_codec_dev(codec), fmt, ##args)
  649. #define codec_warn(codec, fmt, args...) \
  650. dev_warn(hda_codec_dev(codec), fmt, ##args)
  651. #define codec_info(codec, fmt, args...) \
  652. dev_info(hda_codec_dev(codec), fmt, ##args)
  653. #define codec_dbg(codec, fmt, args...) \
  654. dev_dbg(hda_codec_dev(codec), fmt, ##args)
  655. #endif /* __SOUND_HDA_LOCAL_H */