wcd937x-mbhc.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. };
  20. #if IS_ENABLED(CONFIG_SND_SOC_WCD937X)
  21. extern int wcd937x_mbhc_init(struct wcd937x_mbhc **mbhc,
  22. struct snd_soc_codec *codec,
  23. struct fw_info *fw_data);
  24. extern void wcd937x_mbhc_hs_detect_exit(struct snd_soc_codec *codec);
  25. extern int wcd937x_mbhc_hs_detect(struct snd_soc_codec *codec,
  26. struct wcd_mbhc_config *mbhc_cfg);
  27. extern void wcd937x_mbhc_deinit(struct snd_soc_codec *codec);
  28. extern int wcd937x_mbhc_post_ssr_init(struct wcd937x_mbhc *mbhc,
  29. struct snd_soc_codec *codec);
  30. extern int wcd937x_mbhc_get_impedance(struct wcd937x_mbhc *wcd937x_mbhc,
  31. uint32_t *zl, uint32_t *zr);
  32. #else
  33. static inline int wcd937x_mbhc_init(struct wcd937x_mbhc **mbhc,
  34. struct snd_soc_codec *codec,
  35. struct fw_info *fw_data)
  36. {
  37. return 0;
  38. }
  39. static inline void wcd937x_mbhc_hs_detect_exit(struct snd_soc_codec *codec)
  40. {
  41. }
  42. static inline int wcd937x_mbhc_hs_detect(struct snd_soc_codec *codec,
  43. struct wcd_mbhc_config *mbhc_cfg)
  44. {
  45. return 0;
  46. }
  47. static inline void wcd937x_mbhc_deinit(struct snd_soc_codec *codec)
  48. {
  49. }
  50. static inline int wcd937x_mbhc_post_ssr_init(struct wcd937x_mbhc *mbhc,
  51. struct snd_soc_codec *codec)
  52. {
  53. return 0;
  54. }
  55. static inline int wcd937x_mbhc_get_impedance(struct wcd937x_mbhc *wcd937x_mbhc,
  56. uint32_t *zl, uint32_t *zr)
  57. {
  58. if (zl)
  59. *zl = 0;
  60. if (zr)
  61. *zr = 0;
  62. return -EINVAL;
  63. }
  64. #endif
  65. #endif /* __WCD937X_MBHC_H__ */