internal.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* Copyright (c) 2018, The Linux Foundation. All rights reserved.
  2. * This program is free software; you can redistribute it and/or modify
  3. * it under the terms of the GNU General Public License version 2 and
  4. * only version 2 as published by the Free Software Foundation.
  5. * This program is distributed in the hope that it will be useful,
  6. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. * GNU General Public License for more details.
  9. */
  10. #ifndef _WCD937X_INTERNAL_H
  11. #define _WCD937X_INTERNAL_H
  12. #include "../wcd-mbhc-v2.h"
  13. #define WCD937X_MAX_MICBIAS 3
  14. extern struct regmap_config wcd937x_regmap_config;
  15. struct wcd937x_priv {
  16. struct device *dev;
  17. int variant;
  18. struct snd_soc_codec *codec;
  19. struct device_node *rst_np;
  20. struct regmap *regmap;
  21. struct swr_device *rx_swr_dev;
  22. struct swr_device *tx_swr_dev;
  23. s32 micb_ref[WCD937X_MAX_MICBIAS];
  24. s32 pullup_ref[WCD937X_MAX_MICBIAS];
  25. struct fw_info *fw_data;
  26. struct device_node *wcd_rst_np;
  27. s32 dmic_0_1_clk_cnt;
  28. s32 dmic_2_3_clk_cnt;
  29. s32 dmic_4_5_clk_cnt;
  30. /* mbhc module */
  31. struct wcd_mbhc mbhc;
  32. struct blocking_notifier_head notifier;
  33. struct mutex micb_lock;
  34. u32 hph_mode;
  35. u32 rx_clk_cnt;
  36. };
  37. struct wcd937x_pdata {
  38. struct device_node *rst_np;
  39. struct device_node *rx_slave;
  40. struct device_node *tx_slave;
  41. };
  42. #endif