internal.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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. #include "asoc/wcd-irq.h"
  14. #include "wcd937x-mbhc.h"
  15. #define WCD937X_MAX_MICBIAS 3
  16. /* Convert from vout ctl to micbias voltage in mV */
  17. #define WCD_VOUT_CTL_TO_MICB(v) (1000 + v * 50)
  18. #define MAX_PORT 8
  19. #define MAX_CH_PER_PORT 8
  20. extern struct regmap_config wcd937x_regmap_config;
  21. struct codec_port_info {
  22. u32 slave_port_type;
  23. u32 master_port_type;
  24. u32 ch_mask;
  25. u32 num_ch;
  26. u32 ch_rate;
  27. };
  28. struct wcd937x_priv {
  29. struct device *dev;
  30. int variant;
  31. struct snd_soc_codec *codec;
  32. struct device_node *rst_np;
  33. struct regmap *regmap;
  34. struct swr_device *rx_swr_dev;
  35. struct swr_device *tx_swr_dev;
  36. s32 micb_ref[WCD937X_MAX_MICBIAS];
  37. s32 pullup_ref[WCD937X_MAX_MICBIAS];
  38. struct fw_info *fw_data;
  39. struct device_node *wcd_rst_np;
  40. struct mutex micb_lock;
  41. s32 dmic_0_1_clk_cnt;
  42. s32 dmic_2_3_clk_cnt;
  43. s32 dmic_4_5_clk_cnt;
  44. /* mbhc module */
  45. struct wcd937x_mbhc *mbhc;
  46. struct blocking_notifier_head notifier;
  47. u32 hph_mode;
  48. struct irq_domain *virq;
  49. struct wcd_irq_info irq_info;
  50. u32 rx_clk_cnt;
  51. int num_irq_regs;
  52. u8 num_tx_ports;
  53. u8 num_rx_ports;
  54. struct codec_port_info
  55. tx_port_mapping[MAX_PORT][MAX_CH_PER_PORT];
  56. struct codec_port_info
  57. rx_port_mapping[MAX_PORT][MAX_CH_PER_PORT];
  58. struct regulator_bulk_data *supplies;
  59. u32 version;
  60. /* Entry for version info */
  61. struct snd_info_entry *entry;
  62. struct snd_info_entry *version_entry;
  63. };
  64. struct wcd937x_micbias_setting {
  65. u8 ldoh_v;
  66. u32 cfilt1_mv;
  67. u32 micb1_mv;
  68. u32 micb2_mv;
  69. u32 micb3_mv;
  70. u8 bias1_cfilt_sel;
  71. };
  72. struct wcd937x_pdata {
  73. struct device_node *rst_np;
  74. struct device_node *rx_slave;
  75. struct device_node *tx_slave;
  76. struct wcd937x_micbias_setting micbias;
  77. struct cdc_regulator *regulator;
  78. int num_supplies;
  79. };
  80. enum {
  81. /* INTR_CTRL_INT_MASK_0 */
  82. WCD937X_IRQ_MBHC_BUTTON_RELEASE_DET = 0,
  83. WCD937X_IRQ_MBHC_BUTTON_PRESS_DET,
  84. WCD937X_IRQ_MBHC_ELECT_INS_REM_DET,
  85. WCD937X_IRQ_MBHC_ELECT_INS_REM_LEG_DET,
  86. WCD937X_IRQ_MBHC_SW_DET,
  87. WCD937X_IRQ_HPHR_OCP_INT,
  88. WCD937X_IRQ_HPHR_CNP_INT,
  89. WCD937X_IRQ_HPHL_OCP_INT,
  90. /* INTR_CTRL_INT_MASK_1 */
  91. WCD937X_IRQ_HPHL_CNP_INT,
  92. WCD937X_IRQ_EAR_CNP_INT,
  93. WCD937X_IRQ_EAR_SCD_INT,
  94. WCD937X_IRQ_AUX_CNP_INT,
  95. WCD937X_IRQ_AUX_SCD_INT,
  96. WCD937X_IRQ_HPHL_PDM_WD_INT,
  97. WCD937X_IRQ_HPHR_PDM_WD_INT,
  98. WCD937X_IRQ_AUX_PDM_WD_INT,
  99. /* INTR_CTRL_INT_MASK_2 */
  100. WCD937X_IRQ_LDORT_SCD_INT,
  101. WCD937X_IRQ_MBHC_MOISTURE_INT,
  102. WCD937X_IRQ_HPHL_SURGE_DET_INT,
  103. WCD937X_IRQ_HPHR_SURGE_DET_INT,
  104. WCD937X_NUM_IRQS,
  105. };
  106. extern struct wcd937x_mbhc *wcd937x_soc_get_mbhc(struct snd_soc_codec *codec);
  107. extern int wcd937x_mbhc_micb_adjust_voltage(struct snd_soc_codec *codec,
  108. int volt, int micb_num);
  109. extern int wcd937x_get_micb_vout_ctl_val(u32 micb_mv);
  110. extern int wcd937x_micbias_control(struct snd_soc_codec *codec, int micb_num,
  111. int req, bool is_dapm);
  112. extern int wcd937x_info_create_codec_entry(struct snd_info_entry *codec_root,
  113. struct snd_soc_codec *codec);
  114. #endif