internal.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
  3. */
  4. #ifndef _WCD937X_INTERNAL_H
  5. #define _WCD937X_INTERNAL_H
  6. #include <asoc/wcd-clsh.h>
  7. #include <asoc/wcd-mbhc-v2.h>
  8. #include <asoc/wcd-irq.h>
  9. #include <soc/soundwire.h>
  10. #include "wcd937x-mbhc.h"
  11. #include "wcd937x.h"
  12. #define WCD937X_MAX_MICBIAS 3
  13. /* Convert from vout ctl to micbias voltage in mV */
  14. #define WCD_VOUT_CTL_TO_MICB(v) (1000 + v * 50)
  15. #define MAX_PORT 8
  16. #define MAX_CH_PER_PORT 8
  17. #define MAX_TX_PWR_CH 2
  18. #define SWR_NUM_PORTS 4
  19. #define WCD937X_MAX_SLAVE_PORT_TYPES 10
  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_component *component;
  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. /* class h specific info */
  45. struct wcd_clsh_cdc_info clsh_info;
  46. /* mbhc module */
  47. struct wcd937x_mbhc *mbhc;
  48. u32 hph_mode;
  49. bool comp1_enable;
  50. bool comp2_enable;
  51. struct irq_domain *virq;
  52. struct wcd_irq_info irq_info;
  53. u32 rx_clk_cnt;
  54. int num_irq_regs;
  55. /* to track the status */
  56. unsigned long status_mask;
  57. u8 num_tx_ports;
  58. u8 num_rx_ports;
  59. struct codec_port_info
  60. tx_port_mapping[MAX_PORT][MAX_CH_PER_PORT];
  61. struct codec_port_info
  62. rx_port_mapping[MAX_PORT][MAX_CH_PER_PORT];
  63. struct swr_port_params tx_port_params[SWR_UC_MAX][SWR_NUM_PORTS];
  64. struct swr_dev_frame_config swr_tx_port_params[SWR_UC_MAX];
  65. struct regulator_bulk_data *supplies;
  66. struct notifier_block nblock;
  67. /* wcd callback to bolero */
  68. void *handle;
  69. int (*update_wcd_event)(void *handle, u16 event, u32 data);
  70. int (*register_notifier)(void *handle,
  71. struct notifier_block *nblock,
  72. bool enable);
  73. int (*wakeup)(void *handle, bool enable);
  74. u32 version;
  75. /* Entry for version info */
  76. struct snd_info_entry *entry;
  77. struct snd_info_entry *version_entry;
  78. /*Entry for Variant info*/
  79. struct snd_info_entry *variant_entry;
  80. int ear_rx_path;
  81. int ana_clk_count;
  82. struct mutex ana_tx_clk_lock;
  83. u8 tx_master_ch_map[WCD937X_MAX_SLAVE_CH_TYPES];
  84. bool usbc_hs_status;
  85. u32 tx_ch_pwr[MAX_TX_PWR_CH];
  86. };
  87. struct wcd937x_micbias_setting {
  88. u8 ldoh_v;
  89. u32 cfilt1_mv;
  90. u32 micb1_mv;
  91. u32 micb2_mv;
  92. u32 micb3_mv;
  93. u8 bias1_cfilt_sel;
  94. };
  95. struct wcd937x_pdata {
  96. struct device_node *rst_np;
  97. struct device_node *rx_slave;
  98. struct device_node *tx_slave;
  99. struct wcd937x_micbias_setting micbias;
  100. struct cdc_regulator *regulator;
  101. int num_supplies;
  102. };
  103. struct wcd_ctrl_platform_data {
  104. void *handle;
  105. int (*update_wcd_event)(void *handle, u16 event, u32 data);
  106. int (*register_notifier)(void *handle,
  107. struct notifier_block *nblock,
  108. bool enable);
  109. };
  110. enum {
  111. WCD_RX1,
  112. WCD_RX2,
  113. WCD_RX3
  114. };
  115. enum {
  116. /* INTR_CTRL_INT_MASK_0 */
  117. WCD937X_IRQ_MBHC_BUTTON_PRESS_DET = 0,
  118. WCD937X_IRQ_MBHC_BUTTON_RELEASE_DET,
  119. WCD937X_IRQ_MBHC_ELECT_INS_REM_DET,
  120. WCD937X_IRQ_MBHC_ELECT_INS_REM_LEG_DET,
  121. WCD937X_IRQ_MBHC_SW_DET,
  122. WCD937X_IRQ_HPHR_OCP_INT,
  123. WCD937X_IRQ_HPHR_CNP_INT,
  124. WCD937X_IRQ_HPHL_OCP_INT,
  125. /* INTR_CTRL_INT_MASK_1 */
  126. WCD937X_IRQ_HPHL_CNP_INT,
  127. WCD937X_IRQ_EAR_CNP_INT,
  128. WCD937X_IRQ_EAR_SCD_INT,
  129. WCD937X_IRQ_AUX_CNP_INT,
  130. WCD937X_IRQ_AUX_SCD_INT,
  131. WCD937X_IRQ_HPHL_PDM_WD_INT,
  132. WCD937X_IRQ_HPHR_PDM_WD_INT,
  133. WCD937X_IRQ_AUX_PDM_WD_INT,
  134. /* INTR_CTRL_INT_MASK_2 */
  135. WCD937X_IRQ_LDORT_SCD_INT,
  136. WCD937X_IRQ_MBHC_MOISTURE_INT,
  137. WCD937X_IRQ_HPHL_SURGE_DET_INT,
  138. WCD937X_IRQ_HPHR_SURGE_DET_INT,
  139. WCD937X_NUM_IRQS,
  140. };
  141. extern void wcd937x_disable_bcs_before_slow_insert(
  142. struct snd_soc_component *component,
  143. bool bcs_disable);
  144. extern struct wcd937x_mbhc *wcd937x_soc_get_mbhc(
  145. struct snd_soc_component *component);
  146. extern int wcd937x_mbhc_micb_adjust_voltage(struct snd_soc_component *component,
  147. int volt, int micb_num);
  148. extern int wcd937x_get_micb_vout_ctl_val(u32 micb_mv);
  149. extern int wcd937x_micbias_control(struct snd_soc_component *component,
  150. int micb_num, int req, bool is_dapm);
  151. #endif