rt711-sdca.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * rt711-sdca.h -- RT711 SDCA ALSA SoC audio driver header
  4. *
  5. * Copyright(c) 2021 Realtek Semiconductor Corp.
  6. */
  7. #ifndef __RT711_SDCA_H__
  8. #define __RT711_SDCA_H__
  9. #include <linux/pm.h>
  10. #include <linux/regmap.h>
  11. #include <linux/soundwire/sdw.h>
  12. #include <linux/soundwire/sdw_type.h>
  13. #include <sound/soc.h>
  14. #include <linux/workqueue.h>
  15. struct rt711_sdca_priv {
  16. struct regmap *regmap, *mbq_regmap;
  17. struct snd_soc_component *component;
  18. struct sdw_slave *slave;
  19. enum sdw_slave_status status;
  20. struct sdw_bus_params params;
  21. bool hw_init;
  22. bool first_hw_init;
  23. struct snd_soc_jack *hs_jack;
  24. struct delayed_work jack_detect_work;
  25. struct delayed_work jack_btn_check_work;
  26. struct mutex calibrate_mutex; /* for headset calibration */
  27. struct mutex disable_irq_lock; /* SDCA irq lock protection */
  28. bool disable_irq;
  29. int jack_type, jd_src;
  30. unsigned int scp_sdca_stat1, scp_sdca_stat2;
  31. int hw_ver;
  32. bool fu0f_dapm_mute, fu0f_mixer_l_mute, fu0f_mixer_r_mute;
  33. bool fu1e_dapm_mute, fu1e_mixer_l_mute, fu1e_mixer_r_mute;
  34. };
  35. struct sdw_stream_data {
  36. struct sdw_stream_runtime *sdw_stream;
  37. };
  38. /* NID */
  39. #define RT711_AUDIO_FUNCTION_GROUP 0x01
  40. #define RT711_DAC_OUT2 0x03
  41. #define RT711_ADC_IN1 0x09
  42. #define RT711_ADC_IN2 0x08
  43. #define RT711_DMIC1 0x12
  44. #define RT711_DMIC2 0x13
  45. #define RT711_MIC2 0x19
  46. #define RT711_LINE1 0x1a
  47. #define RT711_LINE2 0x1b
  48. #define RT711_BEEP 0x1d
  49. #define RT711_VENDOR_REG 0x20
  50. #define RT711_HP_OUT 0x21
  51. #define RT711_MIXER_IN1 0x22
  52. #define RT711_MIXER_IN2 0x23
  53. #define RT711_INLINE_CMD 0x55
  54. #define RT711_VENDOR_CALI 0x58
  55. #define RT711_VENDOR_IMS_DRE 0x5b
  56. #define RT711_VENDOR_VAD 0x5e
  57. #define RT711_VENDOR_ANALOG_CTL 0x5f
  58. #define RT711_VENDOR_HDA_CTL 0x61
  59. /* Index (NID:20h) */
  60. #define RT711_JD_PRODUCT_NUM 0x00
  61. #define RT711_DMIC_CTL1 0x06
  62. #define RT711_JD_CTL1 0x08
  63. #define RT711_JD_CTL2 0x09
  64. #define RT711_CC_DET1 0x11
  65. #define RT711_PARA_VERB_CTL 0x1a
  66. #define RT711_COMBO_JACK_AUTO_CTL1 0x45
  67. #define RT711_COMBO_JACK_AUTO_CTL2 0x46
  68. #define RT711_COMBO_JACK_AUTO_CTL3 0x47
  69. #define RT711_INLINE_CMD_CTL 0x48
  70. #define RT711_DIGITAL_MISC_CTRL4 0x4a
  71. #define RT711_JD_CTRL6 0x6a
  72. #define RT711_VREFOUT_CTL 0x6b
  73. #define RT711_GPIO_TEST_MODE_CTL2 0x6d
  74. #define RT711_FSM_CTL 0x6f
  75. #define RT711_IRQ_FLAG_TABLE1 0x80
  76. #define RT711_IRQ_FLAG_TABLE2 0x81
  77. #define RT711_IRQ_FLAG_TABLE3 0x82
  78. #define RT711_HP_FSM_CTL 0x83
  79. #define RT711_TX_RX_MUX_CTL 0x91
  80. #define RT711_FILTER_SRC_SEL 0xb0
  81. #define RT711_ADC27_VOL_SET 0xb7
  82. /* Index (NID:58h) */
  83. #define RT711_DAC_DC_CALI_CTL1 0x00
  84. #define RT711_DAC_DC_CALI_CTL2 0x01
  85. /* Index (NID:5bh) */
  86. #define RT711_IMS_DIGITAL_CTL1 0x00
  87. #define RT711_HP_IMS_RESULT_L 0x20
  88. #define RT711_HP_IMS_RESULT_R 0x21
  89. /* Index (NID:5eh) */
  90. #define RT711_VAD_SRAM_CTL1 0x10
  91. /* Index (NID:5fh) */
  92. #define RT711_MISC_POWER_CTL0 0x01
  93. #define RT711_MISC_POWER_CTL4 0x05
  94. /* Index (NID:61h) */
  95. #define RT711_HDA_LEGACY_MUX_CTL1 0x00
  96. #define RT711_HDA_LEGACY_UNSOLICITED_CTL 0x03
  97. #define RT711_HDA_LEGACY_CONFIG_CTL 0x06
  98. #define RT711_HDA_LEGACY_RESET_CTL 0x08
  99. #define RT711_HDA_LEGACY_GPIO_CTL 0x0a
  100. #define RT711_ADC08_09_PDE_CTL 0x24
  101. #define RT711_GE_MODE_RELATED_CTL 0x35
  102. #define RT711_PUSH_BTN_INT_CTL0 0x36
  103. #define RT711_PUSH_BTN_INT_CTL1 0x37
  104. #define RT711_PUSH_BTN_INT_CTL2 0x38
  105. #define RT711_PUSH_BTN_INT_CTL6 0x3c
  106. #define RT711_PUSH_BTN_INT_CTL7 0x3d
  107. #define RT711_PUSH_BTN_INT_CTL9 0x3f
  108. /* DAC DC offset calibration control-1 (0x00)(NID:20h) */
  109. #define RT711_DAC_DC_CALI_TRIGGER (0x1 << 15)
  110. #define RT711_DAC_DC_CALI_CLK_EN (0x1 << 14)
  111. #define RT711_DAC_DC_FORCE_CALI_RST (0x1 << 3)
  112. /* jack detect control 1 (0x08)(NID:20h) */
  113. #define RT711_JD2_DIGITAL_MODE_SEL (0x1 << 1)
  114. /* jack detect control 2 (0x09)(NID:20h) */
  115. #define RT711_JD2_2PORT_200K_DECODE_HP (0x1 << 13)
  116. #define RT711_HP_JD_SEL_JD1 (0x0 << 1)
  117. #define RT711_HP_JD_SEL_JD2 (0x1 << 1)
  118. /* CC DET1 (0x11)(NID:20h) */
  119. #define RT711_HP_JD_FINAL_RESULT_CTL_JD12 (0x1 << 10)
  120. #define RT711_HP_JD_FINAL_RESULT_CTL_CCDET (0x0 << 10)
  121. /* Parameter & Verb control (0x1a)(NID:20h) */
  122. #define RT711_HIDDEN_REG_SW_RESET (0x1 << 14)
  123. /* combo jack auto switch control 2 (0x46)(NID:20h) */
  124. #define RT711_COMBOJACK_AUTO_DET_STATUS (0x1 << 11)
  125. #define RT711_COMBOJACK_AUTO_DET_TRS (0x1 << 10)
  126. #define RT711_COMBOJACK_AUTO_DET_CTIA (0x1 << 9)
  127. #define RT711_COMBOJACK_AUTO_DET_OMTP (0x1 << 8)
  128. /* FSM control (0x6f)(NID:20h) */
  129. #define RT711_CALI_CTL (0x0 << 0)
  130. #define RT711_COMBOJACK_CTL (0x1 << 0)
  131. #define RT711_IMS_CTL (0x2 << 0)
  132. #define RT711_DEPOP_CTL (0x3 << 0)
  133. #define RT711_FSM_IMP_EN (0x1 << 6)
  134. /* Impedance Sense Digital Control 1 (0x00)(NID:5bh) */
  135. #define RT711_TRIGGER_IMS (0x1 << 15)
  136. #define RT711_IMS_EN (0x1 << 6)
  137. #define RT711_EAPD_HIGH 0x2
  138. #define RT711_EAPD_LOW 0x0
  139. #define RT711_MUTE_SFT 7
  140. /* set input/output mapping to payload[14][15] separately */
  141. #define RT711_DIR_IN_SFT 6
  142. #define RT711_DIR_OUT_SFT 7
  143. /* RC Calibration register */
  144. #define RT711_RC_CAL_STATUS 0x320c
  145. /* Buffer address for HID */
  146. #define RT711_BUF_ADDR_HID1 0x44030000
  147. #define RT711_BUF_ADDR_HID2 0x44030020
  148. /* RT711 SDCA Control - function number */
  149. #define FUNC_NUM_JACK_CODEC 0x01
  150. #define FUNC_NUM_MIC_ARRAY 0x02
  151. #define FUNC_NUM_HID 0x03
  152. /* RT711 SDCA entity */
  153. #define RT711_SDCA_ENT_HID01 0x01
  154. #define RT711_SDCA_ENT_GE49 0x49
  155. #define RT711_SDCA_ENT_USER_FU05 0x05
  156. #define RT711_SDCA_ENT_USER_FU0F 0x0f
  157. #define RT711_SDCA_ENT_USER_FU1E 0x1e
  158. #define RT711_SDCA_ENT_PLATFORM_FU15 0x15
  159. #define RT711_SDCA_ENT_PLATFORM_FU44 0x44
  160. #define RT711_SDCA_ENT_PDE28 0x28
  161. #define RT711_SDCA_ENT_PDE29 0x29
  162. #define RT711_SDCA_ENT_PDE2A 0x2a
  163. #define RT711_SDCA_ENT_CS01 0x01
  164. #define RT711_SDCA_ENT_CS11 0x11
  165. #define RT711_SDCA_ENT_CS1F 0x1f
  166. #define RT711_SDCA_ENT_OT1 0x06
  167. #define RT711_SDCA_ENT_LINE1 0x09
  168. #define RT711_SDCA_ENT_LINE2 0x31
  169. #define RT711_SDCA_ENT_PDELINE2 0x36
  170. #define RT711_SDCA_ENT_USER_FU9 0x41
  171. /* RT711 SDCA control */
  172. #define RT711_SDCA_CTL_SAMPLE_FREQ_INDEX 0x10
  173. #define RT711_SDCA_CTL_FU_CH_GAIN 0x0b
  174. #define RT711_SDCA_CTL_FU_MUTE 0x01
  175. #define RT711_SDCA_CTL_FU_VOLUME 0x02
  176. #define RT711_SDCA_CTL_HIDTX_CURRENT_OWNER 0x10
  177. #define RT711_SDCA_CTL_HIDTX_SET_OWNER_TO_DEVICE 0x11
  178. #define RT711_SDCA_CTL_HIDTX_MESSAGE_OFFSET 0x12
  179. #define RT711_SDCA_CTL_HIDTX_MESSAGE_LENGTH 0x13
  180. #define RT711_SDCA_CTL_SELECTED_MODE 0x01
  181. #define RT711_SDCA_CTL_DETECTED_MODE 0x02
  182. #define RT711_SDCA_CTL_REQ_POWER_STATE 0x01
  183. #define RT711_SDCA_CTL_VENDOR_DEF 0x30
  184. /* RT711 SDCA channel */
  185. #define CH_L 0x01
  186. #define CH_R 0x02
  187. /* sample frequency index */
  188. #define RT711_SDCA_RATE_44100HZ 0x08
  189. #define RT711_SDCA_RATE_48000HZ 0x09
  190. #define RT711_SDCA_RATE_96000HZ 0x0b
  191. #define RT711_SDCA_RATE_192000HZ 0x0d
  192. enum {
  193. RT711_AIF1,
  194. RT711_AIF2,
  195. RT711_AIFS,
  196. };
  197. enum rt711_sdca_jd_src {
  198. RT711_JD_NULL,
  199. RT711_JD1,
  200. RT711_JD2
  201. };
  202. enum rt711_sdca_ver {
  203. RT711_VER_VD0,
  204. RT711_VER_VD1
  205. };
  206. int rt711_sdca_io_init(struct device *dev, struct sdw_slave *slave);
  207. int rt711_sdca_init(struct device *dev, struct regmap *regmap,
  208. struct regmap *mbq_regmap, struct sdw_slave *slave);
  209. int rt711_sdca_jack_detect(struct rt711_sdca_priv *rt711, bool *hp, bool *mic);
  210. #endif /* __RT711_SDCA_H__ */