wcd-mbhc-v2.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2014-2020, The Linux Foundation. All rights reserved.
  3. */
  4. #ifndef __WCD_MBHC_V2_H__
  5. #define __WCD_MBHC_V2_H__
  6. #include <linux/wait.h>
  7. #include <linux/stringify.h>
  8. #include <linux/power_supply.h>
  9. #include "wcdcal-hwdep.h"
  10. #include <sound/jack.h>
  11. #define TOMBAK_MBHC_NC 0
  12. #define TOMBAK_MBHC_NO 1
  13. #define WCD_MBHC_DEF_BUTTONS 8
  14. #define WCD_MBHC_KEYCODE_NUM 8
  15. #define WCD_MBHC_USLEEP_RANGE_MARGIN_US 100
  16. #define WCD_MBHC_THR_HS_MICB_MV 2700
  17. /* z value defined in Ohms */
  18. #define WCD_MONO_HS_MIN_THR 2
  19. #define WCD_MBHC_STRINGIFY(s) __stringify(s)
  20. #define WCD_MBHC_REGISTER(rid, rreg, rmask, rshift, rinvert) \
  21. { .id = rid, .reg = rreg, .mask = rmask, .offset = rshift, .invert = rinvert }
  22. #define WCD_MBHC_RSC_LOCK(mbhc) \
  23. { \
  24. pr_debug("%s: Acquiring BCL\n", __func__); \
  25. mutex_lock(&mbhc->codec_resource_lock); \
  26. pr_debug("%s: Acquiring BCL done\n", __func__); \
  27. }
  28. #define WCD_MBHC_RSC_UNLOCK(mbhc) \
  29. { \
  30. pr_debug("%s: Release BCL\n", __func__); \
  31. mutex_unlock(&mbhc->codec_resource_lock); \
  32. }
  33. #define WCD_MBHC_RSC_ASSERT_LOCKED(mbhc) \
  34. { \
  35. WARN_ONCE(!mutex_is_locked(&mbhc->codec_resource_lock), \
  36. "%s: BCL should have acquired\n", __func__); \
  37. }
  38. /*
  39. * Macros to update and read mbhc register bits. Check for
  40. * "0" before updating or reading the register, because it
  41. * is possible that one codec wants to write to that bit and
  42. * other codec does not.
  43. */
  44. #define WCD_MBHC_REG_UPDATE_BITS(function, val) \
  45. do { \
  46. if (mbhc->wcd_mbhc_regs[function].reg) { \
  47. snd_soc_component_update_bits(mbhc->component, \
  48. mbhc->wcd_mbhc_regs[function].reg, \
  49. mbhc->wcd_mbhc_regs[function].mask, \
  50. val << (mbhc->wcd_mbhc_regs[function].offset)); \
  51. } \
  52. } while (0)
  53. #define WCD_MBHC_REG_READ(function, val) \
  54. do { \
  55. if (mbhc->wcd_mbhc_regs[function].reg) { \
  56. val = (((snd_soc_component_read32(mbhc->component, \
  57. mbhc->wcd_mbhc_regs[function].reg)) & \
  58. (mbhc->wcd_mbhc_regs[function].mask)) >> \
  59. (mbhc->wcd_mbhc_regs[function].offset)); \
  60. } else { \
  61. val = -EINVAL; \
  62. } \
  63. } while (0)
  64. #define WCD_MBHC_CAL_SIZE(buttons, rload) ( \
  65. sizeof(struct wcd_mbhc_general_cfg) + \
  66. sizeof(struct wcd_mbhc_plug_detect_cfg) + \
  67. ((sizeof(s16) + sizeof(s16)) * buttons) + \
  68. sizeof(struct wcd_mbhc_plug_type_cfg) + \
  69. sizeof(struct wcd_mbhc_btn_detect_cfg) + \
  70. sizeof(struct wcd_mbhc_imped_detect_cfg) + \
  71. ((sizeof(u16) + sizeof(u16)) * rload) \
  72. )
  73. #define WCD_MBHC_CAL_GENERAL_PTR(cali) ( \
  74. (struct wcd_mbhc_general_cfg *) cali)
  75. #define WCD_MBHC_CAL_PLUG_DET_PTR(cali) ( \
  76. (struct wcd_mbhc_plug_detect_cfg *) \
  77. &(WCD_MBHC_CAL_GENERAL_PTR(cali)[1]))
  78. #define WCD_MBHC_CAL_PLUG_TYPE_PTR(cali) ( \
  79. (struct wcd_mbhc_plug_type_cfg *) \
  80. &(WCD_MBHC_CAL_PLUG_DET_PTR(cali)[1]))
  81. #define WCD_MBHC_CAL_BTN_DET_PTR(cali) ( \
  82. (struct wcd_mbhc_btn_detect_cfg *) \
  83. &(WCD_MBHC_CAL_PLUG_TYPE_PTR(cali)[1]))
  84. #define WCD_MBHC_CAL_IMPED_DET_PTR(cali) ( \
  85. (struct wcd_mbhc_imped_detect_cfg *) \
  86. (((void *)&WCD_MBHC_CAL_BTN_DET_PTR(cali)[1]) + \
  87. (WCD_MBHC_CAL_BTN_DET_PTR(cali)->num_btn * \
  88. (sizeof(WCD_MBHC_CAL_BTN_DET_PTR(cali)->_v_btn_low[0]) + \
  89. sizeof(WCD_MBHC_CAL_BTN_DET_PTR(cali)->_v_btn_high[0])))) \
  90. )
  91. #define WCD_MBHC_CAL_MIN_SIZE ( \
  92. sizeof(struct wcd_mbhc_general_cfg) + \
  93. sizeof(struct wcd_mbhc_plug_detect_cfg) + \
  94. sizeof(struct wcd_mbhc_plug_type_cfg) + \
  95. sizeof(struct wcd_mbhc_btn_detect_cfg) + \
  96. sizeof(struct wcd_mbhc_imped_detect_cfg) + \
  97. (sizeof(u16)*2) \
  98. )
  99. #define WCD_MBHC_CAL_BTN_SZ(cfg_ptr) ( \
  100. sizeof(struct wcd_mbhc_btn_detect_cfg) + \
  101. (cfg_ptr->num_btn * (sizeof(cfg_ptr->_v_btn_low[0]) + \
  102. sizeof(cfg_ptr->_v_btn_high[0]))))
  103. #define WCD_MBHC_CAL_IMPED_MIN_SZ ( \
  104. sizeof(struct wcd_mbhc_imped_detect_cfg) + sizeof(u16) * 2)
  105. #define WCD_MBHC_CAL_IMPED_SZ(cfg_ptr) ( \
  106. sizeof(struct wcd_mbhc_imped_detect_cfg) + \
  107. (cfg_ptr->_n_rload * \
  108. (sizeof(cfg_ptr->_rload[0]) + sizeof(cfg_ptr->_alpha[0]))))
  109. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  110. #define WCD_MBHC_JACK_MASK (SND_JACK_HEADSET | SND_JACK_OC_HPHL | \
  111. SND_JACK_OC_HPHR | SND_JACK_LINEOUT | \
  112. SND_JACK_MECHANICAL | \
  113. SND_JACK_UNSUPPORTED)
  114. #else
  115. #define WCD_MBHC_JACK_MASK (SND_JACK_HEADSET | SND_JACK_LINEOUT | \
  116. SND_JACK_MECHANICAL)
  117. #endif /* CONFIG_AUDIO_QGKI */
  118. #define WCD_MBHC_JACK_BUTTON_MASK (SND_JACK_BTN_0 | SND_JACK_BTN_1 | \
  119. SND_JACK_BTN_2 | SND_JACK_BTN_3 | \
  120. SND_JACK_BTN_4 | SND_JACK_BTN_5)
  121. #define OCP_ATTEMPT 20
  122. #define HS_DETECT_PLUG_TIME_MS (3 * 1000)
  123. #define SPECIAL_HS_DETECT_TIME_MS (2 * 1000)
  124. #define MBHC_BUTTON_PRESS_THRESHOLD_MIN 250
  125. #define GND_MIC_SWAP_THRESHOLD 4
  126. #define GND_MIC_USBC_SWAP_THRESHOLD 2
  127. #define WCD_FAKE_REMOVAL_MIN_PERIOD_MS 100
  128. #define HS_VREF_MIN_VAL 1400
  129. #define FW_READ_ATTEMPTS 15
  130. #define FW_READ_TIMEOUT 4000000
  131. #define FAKE_REM_RETRY_ATTEMPTS 3
  132. #define HPHL_CROSS_CONN_THRESHOLD 100
  133. #define HPHR_CROSS_CONN_THRESHOLD 100
  134. #define WCD_MBHC_BTN_PRESS_COMPL_TIMEOUT_MS 50
  135. #define ANC_DETECT_RETRY_CNT 7
  136. #define WCD_MBHC_SPL_HS_CNT 1
  137. enum wcd_mbhc_detect_logic {
  138. WCD_DETECTION_LEGACY,
  139. WCD_DETECTION_ADC,
  140. };
  141. enum wcd_mbhc_cs_mb_en_flag {
  142. WCD_MBHC_EN_CS = 0,
  143. WCD_MBHC_EN_MB,
  144. WCD_MBHC_EN_PULLUP,
  145. WCD_MBHC_EN_NONE,
  146. };
  147. enum {
  148. WCD_MBHC_ELEC_HS_INS,
  149. WCD_MBHC_ELEC_HS_REM,
  150. };
  151. struct wcd_mbhc;
  152. enum wcd_mbhc_register_function {
  153. WCD_MBHC_L_DET_EN,
  154. WCD_MBHC_GND_DET_EN,
  155. WCD_MBHC_MECH_DETECTION_TYPE,
  156. WCD_MBHC_MIC_CLAMP_CTL,
  157. WCD_MBHC_ELECT_DETECTION_TYPE,
  158. WCD_MBHC_HS_L_DET_PULL_UP_CTRL,
  159. WCD_MBHC_HS_L_DET_PULL_UP_COMP_CTRL,
  160. WCD_MBHC_HPHL_PLUG_TYPE,
  161. WCD_MBHC_GND_PLUG_TYPE,
  162. WCD_MBHC_SW_HPH_LP_100K_TO_GND,
  163. WCD_MBHC_ELECT_SCHMT_ISRC,
  164. WCD_MBHC_FSM_EN,
  165. WCD_MBHC_INSREM_DBNC,
  166. WCD_MBHC_BTN_DBNC,
  167. WCD_MBHC_HS_VREF,
  168. WCD_MBHC_HS_COMP_RESULT,
  169. WCD_MBHC_IN2P_CLAMP_STATE,
  170. WCD_MBHC_MIC_SCHMT_RESULT,
  171. WCD_MBHC_HPHL_SCHMT_RESULT,
  172. WCD_MBHC_HPHR_SCHMT_RESULT,
  173. WCD_MBHC_OCP_FSM_EN,
  174. WCD_MBHC_BTN_RESULT,
  175. WCD_MBHC_BTN_ISRC_CTL,
  176. WCD_MBHC_ELECT_RESULT,
  177. WCD_MBHC_MICB_CTRL, /* Pull-up and micb control */
  178. WCD_MBHC_HPH_CNP_WG_TIME,
  179. WCD_MBHC_HPHR_PA_EN,
  180. WCD_MBHC_HPHL_PA_EN,
  181. WCD_MBHC_HPH_PA_EN,
  182. WCD_MBHC_SWCH_LEVEL_REMOVE,
  183. WCD_MBHC_PULLDOWN_CTRL,
  184. WCD_MBHC_ANC_DET_EN,
  185. WCD_MBHC_FSM_STATUS,
  186. WCD_MBHC_MUX_CTL,
  187. WCD_MBHC_MOISTURE_STATUS,
  188. WCD_MBHC_HPHR_GND,
  189. WCD_MBHC_HPHL_GND,
  190. WCD_MBHC_HPHL_OCP_DET_EN,
  191. WCD_MBHC_HPHR_OCP_DET_EN,
  192. WCD_MBHC_HPHL_OCP_STATUS,
  193. WCD_MBHC_HPHR_OCP_STATUS,
  194. WCD_MBHC_ADC_EN,
  195. WCD_MBHC_ADC_COMPLETE,
  196. WCD_MBHC_ADC_TIMEOUT,
  197. WCD_MBHC_ADC_RESULT,
  198. WCD_MBHC_MICB2_VOUT,
  199. WCD_MBHC_ADC_MODE,
  200. WCD_MBHC_DETECTION_DONE,
  201. WCD_MBHC_ELECT_ISRC_EN,
  202. WCD_MBHC_REG_FUNC_MAX,
  203. };
  204. enum wcd_mbhc_plug_type {
  205. MBHC_PLUG_TYPE_INVALID = -1,
  206. MBHC_PLUG_TYPE_NONE,
  207. MBHC_PLUG_TYPE_HEADSET,
  208. MBHC_PLUG_TYPE_HEADPHONE,
  209. MBHC_PLUG_TYPE_HIGH_HPH,
  210. MBHC_PLUG_TYPE_GND_MIC_SWAP,
  211. MBHC_PLUG_TYPE_ANC_HEADPHONE,
  212. };
  213. enum pa_dac_ack_flags {
  214. WCD_MBHC_HPHL_PA_OFF_ACK = 0,
  215. WCD_MBHC_HPHR_PA_OFF_ACK,
  216. };
  217. enum anc_ack_flags {
  218. WCD_MBHC_ANC0_OFF_ACK = 0,
  219. WCD_MBHC_ANC1_OFF_ACK,
  220. };
  221. enum wcd_mbhc_btn_det_mem {
  222. WCD_MBHC_BTN_DET_V_BTN_LOW,
  223. WCD_MBHC_BTN_DET_V_BTN_HIGH
  224. };
  225. enum {
  226. MIC_BIAS_1 = 1,
  227. MIC_BIAS_2,
  228. MIC_BIAS_3,
  229. MIC_BIAS_4
  230. };
  231. enum {
  232. MICB_PULLUP_ENABLE,
  233. MICB_PULLUP_DISABLE,
  234. MICB_ENABLE,
  235. MICB_DISABLE,
  236. };
  237. enum {
  238. MBHC_COMMON_MICB_PRECHARGE,
  239. MBHC_COMMON_MICB_SET_VAL,
  240. MBHC_COMMON_MICB_TAIL_CURR,
  241. };
  242. enum wcd_notify_event {
  243. WCD_EVENT_INVALID,
  244. /* events for micbias ON and OFF */
  245. WCD_EVENT_PRE_MICBIAS_2_OFF,
  246. WCD_EVENT_POST_MICBIAS_2_OFF,
  247. WCD_EVENT_PRE_MICBIAS_2_ON,
  248. WCD_EVENT_POST_MICBIAS_2_ON,
  249. WCD_EVENT_PRE_DAPM_MICBIAS_2_OFF,
  250. WCD_EVENT_POST_DAPM_MICBIAS_2_OFF,
  251. WCD_EVENT_PRE_DAPM_MICBIAS_2_ON,
  252. WCD_EVENT_POST_DAPM_MICBIAS_2_ON,
  253. /* events for PA ON and OFF */
  254. WCD_EVENT_PRE_HPHL_PA_ON,
  255. WCD_EVENT_POST_HPHL_PA_OFF,
  256. WCD_EVENT_PRE_HPHR_PA_ON,
  257. WCD_EVENT_POST_HPHR_PA_OFF,
  258. WCD_EVENT_PRE_HPHL_PA_OFF,
  259. WCD_EVENT_PRE_HPHR_PA_OFF,
  260. WCD_EVENT_OCP_OFF,
  261. WCD_EVENT_OCP_ON,
  262. WCD_EVENT_LAST,
  263. };
  264. enum wcd_mbhc_event_state {
  265. WCD_MBHC_EVENT_PA_HPHL,
  266. WCD_MBHC_EVENT_PA_HPHR,
  267. };
  268. struct wcd_mbhc_general_cfg {
  269. u8 t_ldoh;
  270. u8 t_bg_fast_settle;
  271. u8 t_shutdown_plug_rem;
  272. u8 mbhc_nsa;
  273. u8 mbhc_navg;
  274. u8 v_micbias_l;
  275. u8 v_micbias;
  276. u8 mbhc_reserved;
  277. u16 settle_wait;
  278. u16 t_micbias_rampup;
  279. u16 t_micbias_rampdown;
  280. u16 t_supply_bringup;
  281. } __packed;
  282. struct wcd_mbhc_plug_detect_cfg {
  283. u32 mic_current;
  284. u32 hph_current;
  285. u16 t_mic_pid;
  286. u16 t_ins_complete;
  287. u16 t_ins_retry;
  288. u16 v_removal_delta;
  289. u8 micbias_slow_ramp;
  290. u8 reserved0;
  291. u8 reserved1;
  292. u8 reserved2;
  293. } __packed;
  294. struct wcd_mbhc_plug_type_cfg {
  295. u8 av_detect;
  296. u8 mono_detect;
  297. u8 num_ins_tries;
  298. u8 reserved0;
  299. s16 v_no_mic;
  300. s16 v_av_min;
  301. s16 v_av_max;
  302. s16 v_hs_min;
  303. s16 v_hs_max;
  304. u16 reserved1;
  305. } __packed;
  306. struct wcd_mbhc_btn_detect_cfg {
  307. s8 c[8];
  308. u8 nc;
  309. u8 n_meas;
  310. u8 mbhc_nsc;
  311. u8 n_btn_meas;
  312. u8 n_btn_con;
  313. u8 num_btn;
  314. u8 reserved0;
  315. u8 reserved1;
  316. u16 t_poll;
  317. u16 t_bounce_wait;
  318. u16 t_rel_timeout;
  319. s16 v_btn_press_delta_sta;
  320. s16 v_btn_press_delta_cic;
  321. u16 t_btn0_timeout;
  322. s16 _v_btn_low[0]; /* v_btn_low[num_btn] */
  323. s16 _v_btn_high[0]; /* v_btn_high[num_btn] */
  324. u8 _n_ready[2];
  325. u8 _n_cic[2];
  326. u8 _gain[2];
  327. } __packed;
  328. struct wcd_mbhc_imped_detect_cfg {
  329. u8 _hs_imped_detect;
  330. u8 _n_rload;
  331. u8 _hph_keep_on;
  332. u8 _repeat_rload_calc;
  333. u16 _t_dac_ramp_time;
  334. u16 _rhph_high;
  335. u16 _rhph_low;
  336. u16 _rload[0]; /* rload[n_rload] */
  337. u16 _alpha[0]; /* alpha[n_rload] */
  338. u16 _beta[3];
  339. } __packed;
  340. enum wcd_mbhc_hph_type {
  341. WCD_MBHC_HPH_NONE = 0,
  342. WCD_MBHC_HPH_MONO,
  343. WCD_MBHC_HPH_STEREO,
  344. };
  345. /*
  346. * These enum definitions are directly mapped to the register
  347. * definitions
  348. */
  349. enum mbhc_moisture_vref {
  350. V_OFF,
  351. V_45_MV,
  352. V_100_MV,
  353. V_225_MV,
  354. };
  355. enum mbhc_hs_pullup_iref {
  356. I_DEFAULT = -1,
  357. I_OFF = 0,
  358. I_1P0_UA,
  359. I_2P0_UA,
  360. I_3P0_UA,
  361. };
  362. enum mbhc_hs_pullup_iref_v2 {
  363. HS_PULLUP_I_DEFAULT = -1,
  364. HS_PULLUP_I_3P0_UA = 0,
  365. HS_PULLUP_I_2P25_UA,
  366. HS_PULLUP_I_1P5_UA,
  367. HS_PULLUP_I_0P75_UA,
  368. HS_PULLUP_I_1P125_UA = 0x05,
  369. HS_PULLUP_I_0P375_UA = 0x07,
  370. HS_PULLUP_I_2P0_UA,
  371. HS_PULLUP_I_1P0_UA = 0x0A,
  372. HS_PULLUP_I_0P5_UA,
  373. HS_PULLUP_I_0P25_UA = 0x0F,
  374. HS_PULLUP_I_0P125_UA = 0x17,
  375. HS_PULLUP_I_OFF,
  376. };
  377. enum mbhc_moisture_rref {
  378. R_OFF,
  379. R_24_KOHM,
  380. R_84_KOHM,
  381. R_184_KOHM,
  382. };
  383. struct wcd_mbhc_config {
  384. bool read_fw_bin;
  385. void *calibration;
  386. bool detect_extn_cable;
  387. bool mono_stero_detection;
  388. bool (*swap_gnd_mic)(struct snd_soc_component *component, bool active);
  389. bool hs_ext_micbias;
  390. bool gnd_det_en;
  391. int key_code[WCD_MBHC_KEYCODE_NUM];
  392. uint32_t linein_th;
  393. bool moisture_en;
  394. int mbhc_micbias;
  395. int anc_micbias;
  396. bool enable_anc_mic_detect;
  397. u32 enable_usbc_analog;
  398. bool moisture_duty_cycle_en;
  399. };
  400. struct wcd_mbhc_intr {
  401. int mbhc_sw_intr;
  402. int mbhc_btn_press_intr;
  403. int mbhc_btn_release_intr;
  404. int mbhc_hs_ins_intr;
  405. int mbhc_hs_rem_intr;
  406. int hph_left_ocp;
  407. int hph_right_ocp;
  408. };
  409. struct wcd_mbhc_register {
  410. const char *id;
  411. u16 reg;
  412. u8 mask;
  413. u8 offset;
  414. u8 invert;
  415. };
  416. struct wcd_mbhc_cb {
  417. void (*update_cross_conn_thr)
  418. (struct wcd_mbhc *mbhc);
  419. void (*mbhc_surge_ctl)
  420. (struct wcd_mbhc *mbhc, bool surge_en);
  421. void (*mbhc_comp_autozero_control)
  422. (struct wcd_mbhc *mbhc, bool az_enable);
  423. void (*get_micbias_val)
  424. (struct wcd_mbhc *mbhc, int *mb);
  425. void (*bcs_enable)
  426. (struct wcd_mbhc *mbhc, bool bcs_enable);
  427. int (*enable_mb_source)(struct wcd_mbhc *mbhc, bool turn_on);
  428. void (*trim_btn_reg)(struct snd_soc_component *component);
  429. void (*compute_impedance)(struct wcd_mbhc *mbhc,
  430. uint32_t *zl, uint32_t *zr);
  431. void (*set_micbias_value)(struct snd_soc_component *component);
  432. void (*set_auto_zeroing)(struct snd_soc_component *component,
  433. bool enable);
  434. struct firmware_cal * (*get_hwdep_fw_cal)(struct wcd_mbhc *mbhc,
  435. enum wcd_cal_type);
  436. void (*set_cap_mode)(struct snd_soc_component *component,
  437. bool micbias1, bool micbias2);
  438. int (*register_notifier)(struct wcd_mbhc *mbhc,
  439. struct notifier_block *nblock,
  440. bool enable);
  441. int (*request_irq)(struct snd_soc_component *component,
  442. int irq, irq_handler_t handler,
  443. const char *name, void *data);
  444. void (*irq_control)(struct snd_soc_component *component,
  445. int irq, bool enable);
  446. int (*free_irq)(struct snd_soc_component *component,
  447. int irq, void *data);
  448. void (*clk_setup)(struct snd_soc_component *component, bool enable);
  449. int (*map_btn_code_to_num)(struct snd_soc_component *component);
  450. bool (*lock_sleep)(struct wcd_mbhc *mbhc, bool lock);
  451. bool (*micbias_enable_status)(struct wcd_mbhc *mbhc, int micb_num);
  452. void (*mbhc_bias)(struct snd_soc_component *component, bool enable);
  453. void (*mbhc_common_micb_ctrl)(struct snd_soc_component *component,
  454. int event, bool enable);
  455. void (*micb_internal)(struct snd_soc_component *component,
  456. int micb_num, bool enable);
  457. bool (*hph_pa_on_status)(struct snd_soc_component *component);
  458. void (*set_btn_thr)(struct snd_soc_component *component,
  459. s16 *btn_low, s16 *btn_high,
  460. int num_btn, bool is_micbias);
  461. void (*hph_pull_up_control)(struct snd_soc_component *component,
  462. enum mbhc_hs_pullup_iref);
  463. int (*mbhc_micbias_control)(struct snd_soc_component *component,
  464. int micb_num, int req);
  465. void (*mbhc_micb_ramp_control)(struct snd_soc_component *component,
  466. bool enable);
  467. void (*skip_imped_detect)(struct snd_soc_component *component);
  468. bool (*extn_use_mb)(struct snd_soc_component *component);
  469. int (*mbhc_micb_ctrl_thr_mic)(struct snd_soc_component *component,
  470. int micb_num, bool req_en);
  471. void (*mbhc_gnd_det_ctrl)(struct snd_soc_component *component,
  472. bool enable);
  473. void (*hph_pull_down_ctrl)(struct snd_soc_component *component,
  474. bool enable);
  475. void (*mbhc_moisture_config)(struct wcd_mbhc *mbhc);
  476. bool (*hph_register_recovery)(struct wcd_mbhc *mbhc);
  477. void (*update_anc_state)(struct snd_soc_component *component,
  478. bool enable, int anc_num);
  479. bool (*is_anc_on)(struct wcd_mbhc *mbhc);
  480. void (*hph_pull_up_control_v2)(struct snd_soc_component *component,
  481. int pull_up_cur);
  482. bool (*mbhc_get_moisture_status)(struct wcd_mbhc *mbhc);
  483. void (*mbhc_moisture_polling_ctrl)(struct wcd_mbhc *mbhc, bool enable);
  484. void (*mbhc_moisture_detect_en)(struct wcd_mbhc *mbhc, bool enable);
  485. };
  486. struct wcd_mbhc_fn {
  487. irqreturn_t (*wcd_mbhc_hs_ins_irq)(int irq, void *data);
  488. irqreturn_t (*wcd_mbhc_hs_rem_irq)(int irq, void *data);
  489. void (*wcd_mbhc_detect_plug_type)(struct wcd_mbhc *mbhc);
  490. bool (*wcd_mbhc_detect_anc_plug_type)(struct wcd_mbhc *mbhc);
  491. void (*wcd_cancel_hs_detect_plug)(struct wcd_mbhc *mbhc,
  492. struct work_struct *work);
  493. };
  494. struct wcd_mbhc {
  495. /* Delayed work to report long button press */
  496. struct delayed_work mbhc_btn_dwork;
  497. int buttons_pressed;
  498. struct wcd_mbhc_config *mbhc_cfg;
  499. const struct wcd_mbhc_cb *mbhc_cb;
  500. u32 hph_status; /* track headhpone status */
  501. u8 hphlocp_cnt; /* headphone left ocp retry */
  502. u8 hphrocp_cnt; /* headphone right ocp retry */
  503. wait_queue_head_t wait_btn_press;
  504. bool is_btn_press;
  505. u8 current_plug;
  506. bool in_swch_irq_handler;
  507. bool hphl_swh; /*track HPHL switch NC / NO */
  508. bool gnd_swh; /*track GND switch NC / NO */
  509. u32 hs_thr;
  510. u32 hph_thr;
  511. u32 micb_mv;
  512. u32 swap_thr;
  513. u32 moist_vref;
  514. u32 moist_iref;
  515. u32 moist_rref;
  516. u32 hphl_cross_conn_thr;
  517. u32 hphr_cross_conn_thr;
  518. u8 micbias1_cap_mode; /* track ext cap setting */
  519. u8 micbias2_cap_mode; /* track ext cap setting */
  520. bool hs_detect_work_stop;
  521. bool micbias_enable;
  522. bool btn_press_intr;
  523. bool is_hs_recording;
  524. bool is_extn_cable;
  525. bool skip_imped_detection;
  526. bool is_btn_already_regd;
  527. bool extn_cable_hph_rem;
  528. struct snd_soc_component *component;
  529. /* Work to perform MBHC Firmware Read */
  530. struct delayed_work mbhc_firmware_dwork;
  531. const struct firmware *mbhc_fw;
  532. struct firmware_cal *mbhc_cal;
  533. /* track PA/DAC state to sync with userspace */
  534. unsigned long hph_pa_dac_state;
  535. unsigned long hph_anc_state;
  536. unsigned long event_state;
  537. unsigned long jiffies_atreport;
  538. /* impedance of hphl and hphr */
  539. uint32_t zl, zr;
  540. bool impedance_detect;
  541. /* Holds type of Headset - Mono/Stereo */
  542. enum wcd_mbhc_hph_type hph_type;
  543. struct snd_soc_jack headset_jack;
  544. struct snd_soc_jack button_jack;
  545. struct mutex codec_resource_lock;
  546. /* Holds codec specific interrupt mapping */
  547. const struct wcd_mbhc_intr *intr_ids;
  548. /* Work to correct accessory type */
  549. struct work_struct correct_plug_swch;
  550. struct notifier_block nblock;
  551. struct wcd_mbhc_register *wcd_mbhc_regs;
  552. struct completion btn_press_compl;
  553. struct mutex hphl_pa_lock;
  554. struct mutex hphr_pa_lock;
  555. bool deinit_in_progress;
  556. /* Holds mbhc detection method - ADC/Legacy */
  557. unsigned int mbhc_detection_logic;
  558. unsigned long intr_status;
  559. bool is_hph_ocp_pending;
  560. struct wcd_mbhc_fn *mbhc_fn;
  561. bool force_linein;
  562. struct device_node *fsa_np;
  563. struct notifier_block fsa_nb;
  564. };
  565. void wcd_mbhc_find_plug_and_report(struct wcd_mbhc *mbhc,
  566. enum wcd_mbhc_plug_type plug_type);
  567. void wcd_mbhc_hs_elec_irq(struct wcd_mbhc *mbhc, int irq_type, bool enable);
  568. void wcd_mbhc_elec_hs_report_unplug(struct wcd_mbhc *mbhc);
  569. bool wcd_swch_level_remove(struct wcd_mbhc *mbhc);
  570. void wcd_enable_curr_micbias(const struct wcd_mbhc *mbhc,
  571. const enum wcd_mbhc_cs_mb_en_flag cs_mb_en);
  572. void wcd_mbhc_jack_report(struct wcd_mbhc *mbhc,
  573. struct snd_soc_jack *jack, int status, int mask);
  574. int wcd_cancel_btn_work(struct wcd_mbhc *mbhc);
  575. int wcd_mbhc_get_button_mask(struct wcd_mbhc *mbhc);
  576. void wcd_mbhc_report_plug(struct wcd_mbhc *mbhc, int insertion,
  577. enum snd_jack_types jack_type);
  578. #endif /* __WCD_MBHC_V2_H__ */