wcd939x-mbhc.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2022-2023, Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #ifndef __WCD939X_MBHC_H__
  7. #define __WCD939X_MBHC_H__
  8. #include <asoc/wcd-mbhc-v2.h>
  9. struct wcd939x_mbhc {
  10. struct wcd_mbhc wcd_mbhc;
  11. struct blocking_notifier_head notifier;
  12. struct fw_info *fw_data;
  13. struct timer_list rdown_timer;
  14. int rdown_prev_iter;
  15. bool rdown_timer_complete;
  16. };
  17. static inline u32 get_r_gnd_res_tot_mohms(u32 r_gnd_int_fet_mohms, u32 r_gnd_ext_fet_mohms,
  18. u32 r_gnd_par_tot_mohms)
  19. {
  20. return r_gnd_int_fet_mohms + r_gnd_ext_fet_mohms + r_gnd_par_tot_mohms;
  21. }
  22. static inline u32 get_r_aud_res_tot_mohms(u32 r_aud_int_fet_mohms, u32 r_aud_ext_fet_mohms)
  23. {
  24. return r_aud_int_fet_mohms + r_aud_ext_fet_mohms;
  25. }
  26. #if IS_ENABLED(CONFIG_SND_SOC_WCD939X)
  27. extern int wcd939x_mbhc_init(struct wcd939x_mbhc **mbhc,
  28. struct snd_soc_component *component,
  29. struct fw_info *fw_data);
  30. extern void wcd939x_mbhc_hs_detect_exit(struct snd_soc_component *component);
  31. extern int wcd939x_mbhc_hs_detect(struct snd_soc_component *component,
  32. struct wcd_mbhc_config *mbhc_cfg);
  33. extern void wcd939x_mbhc_deinit(struct snd_soc_component *component);
  34. extern void wcd939x_mbhc_ssr_down(struct wcd939x_mbhc *mbhc,
  35. struct snd_soc_component *component);
  36. extern int wcd939x_mbhc_post_ssr_init(struct wcd939x_mbhc *mbhc,
  37. struct snd_soc_component *component);
  38. extern int wcd939x_mbhc_get_impedance(struct wcd939x_mbhc *wcd939x_mbhc,
  39. uint32_t *zl, uint32_t *zr);
  40. #else
  41. static inline int wcd939x_mbhc_init(struct wcd939x_mbhc **mbhc,
  42. struct snd_soc_component *component,
  43. struct fw_info *fw_data)
  44. {
  45. return 0;
  46. }
  47. static inline void wcd939x_mbhc_hs_detect_exit(
  48. struct snd_soc_component *component)
  49. {
  50. }
  51. static inline int wcd939x_mbhc_hs_detect(struct snd_soc_component *component,
  52. struct wcd_mbhc_config *mbhc_cfg)
  53. {
  54. return 0;
  55. }
  56. static inline void wcd939x_mbhc_deinit(struct snd_soc_component *component)
  57. {
  58. }
  59. static inline void wcd939x_mbhc_ssr_down(struct wcd939x_mbhc *mbhc,
  60. struct snd_soc_component *component)
  61. {
  62. }
  63. static inline int wcd939x_mbhc_post_ssr_init(struct wcd939x_mbhc *mbhc,
  64. struct snd_soc_component *component)
  65. {
  66. return 0;
  67. }
  68. static inline int wcd939x_mbhc_get_impedance(struct wcd939x_mbhc *wcd939x_mbhc,
  69. uint32_t *zl, uint32_t *zr)
  70. {
  71. if (zl)
  72. *zl = 0;
  73. if (zr)
  74. *zr = 0;
  75. return -EINVAL;
  76. }
  77. #endif
  78. #endif /* __WCD939X_MBHC_H__ */