wcd937x-mbhc.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* Copyright (c) 2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef __WCD937X_MBHC_H__
  13. #define __WCD937X_MBHC_H__
  14. #include "../wcd-mbhc-v2.h"
  15. struct wcd937x_mbhc {
  16. struct wcd_mbhc wcd_mbhc;
  17. struct blocking_notifier_head notifier;
  18. struct fw_info *fw_data;
  19. bool mbhc_started;
  20. };
  21. #if IS_ENABLED(CONFIG_SND_SOC_WCD937X)
  22. extern int wcd937x_mbhc_init(struct wcd937x_mbhc **mbhc,
  23. struct snd_soc_codec *codec,
  24. struct fw_info *fw_data);
  25. extern void wcd937x_mbhc_hs_detect_exit(struct snd_soc_codec *codec);
  26. extern int wcd937x_mbhc_hs_detect(struct snd_soc_codec *codec,
  27. struct wcd_mbhc_config *mbhc_cfg);
  28. extern void wcd937x_mbhc_deinit(struct snd_soc_codec *codec);
  29. extern int wcd937x_mbhc_post_ssr_init(struct wcd937x_mbhc *mbhc,
  30. struct snd_soc_codec *codec);
  31. extern int wcd937x_mbhc_get_impedance(struct wcd937x_mbhc *wcd937x_mbhc,
  32. uint32_t *zl, uint32_t *zr);
  33. #else
  34. static inline int wcd937x_mbhc_init(struct wcd937x_mbhc **mbhc,
  35. struct snd_soc_codec *codec,
  36. struct fw_info *fw_data)
  37. {
  38. return 0;
  39. }
  40. static inline void wcd937x_mbhc_hs_detect_exit(struct snd_soc_codec *codec)
  41. {
  42. }
  43. static inline int wcd937x_mbhc_hs_detect(struct snd_soc_codec *codec,
  44. struct wcd_mbhc_config *mbhc_cfg)
  45. {
  46. return 0;
  47. }
  48. static inline void wcd937x_mbhc_deinit(struct snd_soc_codec *codec)
  49. {
  50. }
  51. static inline int wcd937x_mbhc_post_ssr_init(struct wcd937x_mbhc *mbhc,
  52. struct snd_soc_codec *codec)
  53. {
  54. return 0;
  55. }
  56. static inline int wcd937x_mbhc_get_impedance(struct wcd937x_mbhc *wcd937x_mbhc,
  57. uint32_t *zl, uint32_t *zr)
  58. {
  59. if (zl)
  60. *zl = 0;
  61. if (zr)
  62. *zr = 0;
  63. return -EINVAL;
  64. }
  65. #endif
  66. #endif /* __WCD937X_MBHC_H__ */