wcd-mbhc-v2.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. /* Copyright (c) 2014-2017, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef __WCD_MBHC_V2_H__
  13. #define __WCD_MBHC_V2_H__
  14. #include <linux/wait.h>
  15. #include <linux/stringify.h>
  16. #include <linux/power_supply.h>
  17. #include "wcdcal-hwdep.h"
  18. #include <sound/jack.h>
  19. #define TOMBAK_MBHC_NC 0
  20. #define TOMBAK_MBHC_NO 1
  21. #define WCD_MBHC_DEF_BUTTONS 8
  22. #define WCD_MBHC_KEYCODE_NUM 8
  23. #define WCD_MBHC_USLEEP_RANGE_MARGIN_US 100
  24. #define WCD_MBHC_THR_HS_MICB_MV 2700
  25. /* z value defined in Ohms */
  26. #define WCD_MONO_HS_MIN_THR 2
  27. #define WCD_MBHC_STRINGIFY(s) __stringify(s)
  28. #define WCD_MBHC_REGISTER(rid, rreg, rmask, rshift, rinvert) \
  29. { .id = rid, .reg = rreg, .mask = rmask, .offset = rshift, .invert = rinvert }
  30. #define WCD_MBHC_RSC_LOCK(mbhc) \
  31. { \
  32. pr_debug("%s: Acquiring BCL\n", __func__); \
  33. mutex_lock(&mbhc->codec_resource_lock); \
  34. pr_debug("%s: Acquiring BCL done\n", __func__); \
  35. }
  36. #define WCD_MBHC_RSC_UNLOCK(mbhc) \
  37. { \
  38. pr_debug("%s: Release BCL\n", __func__); \
  39. mutex_unlock(&mbhc->codec_resource_lock); \
  40. }
  41. #define WCD_MBHC_RSC_ASSERT_LOCKED(mbhc) \
  42. { \
  43. WARN_ONCE(!mutex_is_locked(&mbhc->codec_resource_lock), \
  44. "%s: BCL should have acquired\n", __func__); \
  45. }
  46. /*
  47. * Macros to update and read mbhc register bits. Check for
  48. * "0" before updating or reading the register, because it
  49. * is possible that one codec wants to write to that bit and
  50. * other codec does not.
  51. */
  52. #define WCD_MBHC_REG_UPDATE_BITS(function, val) \
  53. do { \
  54. if (mbhc->wcd_mbhc_regs[function].reg) { \
  55. snd_soc_update_bits(mbhc->codec, \
  56. mbhc->wcd_mbhc_regs[function].reg, \
  57. mbhc->wcd_mbhc_regs[function].mask, \
  58. val << (mbhc->wcd_mbhc_regs[function].offset)); \
  59. } \
  60. } while (0)
  61. #define WCD_MBHC_REG_READ(function, val) \
  62. do { \
  63. if (mbhc->wcd_mbhc_regs[function].reg) { \
  64. val = (((snd_soc_read(mbhc->codec, \
  65. mbhc->wcd_mbhc_regs[function].reg)) & \
  66. (mbhc->wcd_mbhc_regs[function].mask)) >> \
  67. (mbhc->wcd_mbhc_regs[function].offset)); \
  68. } else { \
  69. val = -EINVAL; \
  70. } \
  71. } while (0)
  72. #define WCD_MBHC_CAL_SIZE(buttons, rload) ( \
  73. sizeof(struct wcd_mbhc_general_cfg) + \
  74. sizeof(struct wcd_mbhc_plug_detect_cfg) + \
  75. ((sizeof(s16) + sizeof(s16)) * buttons) + \
  76. sizeof(struct wcd_mbhc_plug_type_cfg) + \
  77. sizeof(struct wcd_mbhc_btn_detect_cfg) + \
  78. sizeof(struct wcd_mbhc_imped_detect_cfg) + \
  79. ((sizeof(u16) + sizeof(u16)) * rload) \
  80. )
  81. #define WCD_MBHC_CAL_GENERAL_PTR(cali) ( \
  82. (struct wcd_mbhc_general_cfg *) cali)
  83. #define WCD_MBHC_CAL_PLUG_DET_PTR(cali) ( \
  84. (struct wcd_mbhc_plug_detect_cfg *) \
  85. &(WCD_MBHC_CAL_GENERAL_PTR(cali)[1]))
  86. #define WCD_MBHC_CAL_PLUG_TYPE_PTR(cali) ( \
  87. (struct wcd_mbhc_plug_type_cfg *) \
  88. &(WCD_MBHC_CAL_PLUG_DET_PTR(cali)[1]))
  89. #define WCD_MBHC_CAL_BTN_DET_PTR(cali) ( \
  90. (struct wcd_mbhc_btn_detect_cfg *) \
  91. &(WCD_MBHC_CAL_PLUG_TYPE_PTR(cali)[1]))
  92. #define WCD_MBHC_CAL_IMPED_DET_PTR(cali) ( \
  93. (struct wcd_mbhc_imped_detect_cfg *) \
  94. (((void *)&WCD_MBHC_CAL_BTN_DET_PTR(cali)[1]) + \
  95. (WCD_MBHC_CAL_BTN_DET_PTR(cali)->num_btn * \
  96. (sizeof(WCD_MBHC_CAL_BTN_DET_PTR(cali)->_v_btn_low[0]) + \
  97. sizeof(WCD_MBHC_CAL_BTN_DET_PTR(cali)->_v_btn_high[0])))) \
  98. )
  99. #define WCD_MBHC_CAL_MIN_SIZE ( \
  100. sizeof(struct wcd_mbhc_general_cfg) + \
  101. sizeof(struct wcd_mbhc_plug_detect_cfg) + \
  102. sizeof(struct wcd_mbhc_plug_type_cfg) + \
  103. sizeof(struct wcd_mbhc_btn_detect_cfg) + \
  104. sizeof(struct wcd_mbhc_imped_detect_cfg) + \
  105. (sizeof(u16)*2) \
  106. )
  107. #define WCD_MBHC_CAL_BTN_SZ(cfg_ptr) ( \
  108. sizeof(struct wcd_mbhc_btn_detect_cfg) + \
  109. (cfg_ptr->num_btn * (sizeof(cfg_ptr->_v_btn_low[0]) + \
  110. sizeof(cfg_ptr->_v_btn_high[0]))))
  111. #define WCD_MBHC_CAL_IMPED_MIN_SZ ( \
  112. sizeof(struct wcd_mbhc_imped_detect_cfg) + sizeof(u16) * 2)
  113. #define WCD_MBHC_CAL_IMPED_SZ(cfg_ptr) ( \
  114. sizeof(struct wcd_mbhc_imped_detect_cfg) + \
  115. (cfg_ptr->_n_rload * \
  116. (sizeof(cfg_ptr->_rload[0]) + sizeof(cfg_ptr->_alpha[0]))))
  117. #define WCD_MBHC_JACK_MASK (SND_JACK_HEADSET | SND_JACK_OC_HPHL | \
  118. SND_JACK_OC_HPHR | SND_JACK_LINEOUT | \
  119. SND_JACK_MECHANICAL | SND_JACK_MICROPHONE2 | \
  120. SND_JACK_UNSUPPORTED)
  121. #define WCD_MBHC_JACK_BUTTON_MASK (SND_JACK_BTN_0 | SND_JACK_BTN_1 | \
  122. SND_JACK_BTN_2 | SND_JACK_BTN_3 | \
  123. SND_JACK_BTN_4 | SND_JACK_BTN_5)
  124. #define OCP_ATTEMPT 20
  125. #define HS_DETECT_PLUG_TIME_MS (3 * 1000)
  126. #define SPECIAL_HS_DETECT_TIME_MS (2 * 1000)
  127. #define MBHC_BUTTON_PRESS_THRESHOLD_MIN 250
  128. #define GND_MIC_SWAP_THRESHOLD 4
  129. #define WCD_FAKE_REMOVAL_MIN_PERIOD_MS 100
  130. #define HS_VREF_MIN_VAL 1400
  131. #define FW_READ_ATTEMPTS 15
  132. #define FW_READ_TIMEOUT 4000000
  133. #define FAKE_REM_RETRY_ATTEMPTS 3
  134. #define MAX_IMPED 60000
  135. #define WCD_MBHC_BTN_PRESS_COMPL_TIMEOUT_MS 50
  136. #define ANC_DETECT_RETRY_CNT 7
  137. #define WCD_MBHC_SPL_HS_CNT 1
  138. enum wcd_mbhc_detect_logic {
  139. WCD_DETECTION_LEGACY,
  140. WCD_DETECTION_ADC,
  141. };
  142. enum wcd_mbhc_cs_mb_en_flag {
  143. WCD_MBHC_EN_CS = 0,
  144. WCD_MBHC_EN_MB,
  145. WCD_MBHC_EN_PULLUP,
  146. WCD_MBHC_EN_NONE,
  147. };
  148. enum {
  149. WCD_MBHC_ELEC_HS_INS,
  150. WCD_MBHC_ELEC_HS_REM,
  151. };
  152. struct wcd_mbhc;
  153. enum wcd_mbhc_register_function {
  154. WCD_MBHC_L_DET_EN,
  155. WCD_MBHC_GND_DET_EN,
  156. WCD_MBHC_MECH_DETECTION_TYPE,
  157. WCD_MBHC_MIC_CLAMP_CTL,
  158. WCD_MBHC_ELECT_DETECTION_TYPE,
  159. WCD_MBHC_HS_L_DET_PULL_UP_CTRL,
  160. WCD_MBHC_HS_L_DET_PULL_UP_COMP_CTRL,
  161. WCD_MBHC_HPHL_PLUG_TYPE,
  162. WCD_MBHC_GND_PLUG_TYPE,
  163. WCD_MBHC_SW_HPH_LP_100K_TO_GND,
  164. WCD_MBHC_ELECT_SCHMT_ISRC,
  165. WCD_MBHC_FSM_EN,
  166. WCD_MBHC_INSREM_DBNC,
  167. WCD_MBHC_BTN_DBNC,
  168. WCD_MBHC_HS_VREF,
  169. WCD_MBHC_HS_COMP_RESULT,
  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_moisture_rref {
  363. R_OFF,
  364. R_24_KOHM,
  365. R_84_KOHM,
  366. R_184_KOHM,
  367. };
  368. struct usbc_ana_audio_config {
  369. int usbc_en1_gpio;
  370. int usbc_en2_gpio;
  371. int usbc_force_gpio;
  372. struct device_node *usbc_en1_gpio_p; /* used by pinctrl API */
  373. struct device_node *usbc_en2_gpio_p; /* used by pinctrl API */
  374. struct device_node *usbc_force_gpio_p; /* used by pinctrl API */
  375. };
  376. struct wcd_mbhc_config {
  377. bool read_fw_bin;
  378. void *calibration;
  379. bool detect_extn_cable;
  380. bool mono_stero_detection;
  381. bool (*swap_gnd_mic)(struct snd_soc_codec *codec, bool active);
  382. bool hs_ext_micbias;
  383. bool gnd_det_en;
  384. int key_code[WCD_MBHC_KEYCODE_NUM];
  385. uint32_t linein_th;
  386. bool moisture_en;
  387. int mbhc_micbias;
  388. int anc_micbias;
  389. bool enable_anc_mic_detect;
  390. u32 enable_usbc_analog;
  391. struct usbc_ana_audio_config usbc_analog_cfg;
  392. };
  393. struct wcd_mbhc_intr {
  394. int mbhc_sw_intr;
  395. int mbhc_btn_press_intr;
  396. int mbhc_btn_release_intr;
  397. int mbhc_hs_ins_intr;
  398. int mbhc_hs_rem_intr;
  399. int hph_left_ocp;
  400. int hph_right_ocp;
  401. };
  402. struct wcd_mbhc_register {
  403. const char *id;
  404. u16 reg;
  405. u8 mask;
  406. u8 offset;
  407. u8 invert;
  408. };
  409. struct wcd_mbhc_cb {
  410. int (*enable_mb_source)(struct wcd_mbhc *, bool);
  411. void (*trim_btn_reg)(struct snd_soc_codec *);
  412. void (*compute_impedance)(struct wcd_mbhc *, uint32_t *, uint32_t *);
  413. void (*set_micbias_value)(struct snd_soc_codec *);
  414. void (*set_auto_zeroing)(struct snd_soc_codec *, bool);
  415. struct firmware_cal * (*get_hwdep_fw_cal)(struct wcd_mbhc *,
  416. enum wcd_cal_type);
  417. void (*set_cap_mode)(struct snd_soc_codec *, bool, bool);
  418. int (*register_notifier)(struct wcd_mbhc *,
  419. struct notifier_block *nblock,
  420. bool enable);
  421. int (*request_irq)(struct snd_soc_codec *,
  422. int, irq_handler_t, const char *, void *);
  423. void (*irq_control)(struct snd_soc_codec *,
  424. int irq, bool enable);
  425. int (*free_irq)(struct snd_soc_codec *,
  426. int irq, void *);
  427. void (*clk_setup)(struct snd_soc_codec *, bool);
  428. int (*map_btn_code_to_num)(struct snd_soc_codec *);
  429. bool (*lock_sleep)(struct wcd_mbhc *, bool);
  430. bool (*micbias_enable_status)(struct wcd_mbhc *, int);
  431. void (*mbhc_bias)(struct snd_soc_codec *, bool);
  432. void (*mbhc_common_micb_ctrl)(struct snd_soc_codec *,
  433. int event, bool);
  434. void (*micb_internal)(struct snd_soc_codec *,
  435. int micb_num, bool);
  436. bool (*hph_pa_on_status)(struct snd_soc_codec *);
  437. void (*set_btn_thr)(struct snd_soc_codec *, s16 *, s16 *,
  438. int num_btn, bool);
  439. void (*hph_pull_up_control)(struct snd_soc_codec *,
  440. enum mbhc_hs_pullup_iref);
  441. int (*mbhc_micbias_control)(struct snd_soc_codec *, int, int req);
  442. void (*mbhc_micb_ramp_control)(struct snd_soc_codec *, bool);
  443. void (*skip_imped_detect)(struct snd_soc_codec *);
  444. bool (*extn_use_mb)(struct snd_soc_codec *);
  445. int (*mbhc_micb_ctrl_thr_mic)(struct snd_soc_codec *, int, bool);
  446. void (*mbhc_gnd_det_ctrl)(struct snd_soc_codec *, bool);
  447. void (*hph_pull_down_ctrl)(struct snd_soc_codec *, bool);
  448. void (*mbhc_moisture_config)(struct wcd_mbhc *);
  449. bool (*hph_register_recovery)(struct wcd_mbhc *);
  450. void (*update_anc_state)(struct snd_soc_codec *codec,
  451. bool enable, int anc_num);
  452. bool (*is_anc_on)(struct wcd_mbhc *mbhc);
  453. };
  454. struct wcd_mbhc_fn {
  455. irqreturn_t (*wcd_mbhc_hs_ins_irq)(int irq, void *data);
  456. irqreturn_t (*wcd_mbhc_hs_rem_irq)(int irq, void *data);
  457. void (*wcd_mbhc_detect_plug_type)(struct wcd_mbhc *mbhc);
  458. bool (*wcd_mbhc_detect_anc_plug_type)(struct wcd_mbhc *mbhc);
  459. void (*wcd_cancel_hs_detect_plug)(struct wcd_mbhc *mbhc,
  460. struct work_struct *work);
  461. };
  462. struct wcd_mbhc {
  463. /* Delayed work to report long button press */
  464. struct delayed_work mbhc_btn_dwork;
  465. int buttons_pressed;
  466. struct wcd_mbhc_config *mbhc_cfg;
  467. const struct wcd_mbhc_cb *mbhc_cb;
  468. u32 hph_status; /* track headhpone status */
  469. u8 hphlocp_cnt; /* headphone left ocp retry */
  470. u8 hphrocp_cnt; /* headphone right ocp retry */
  471. wait_queue_head_t wait_btn_press;
  472. bool is_btn_press;
  473. u8 current_plug;
  474. bool in_swch_irq_handler;
  475. bool hphl_swh; /*track HPHL switch NC / NO */
  476. bool gnd_swh; /*track GND switch NC / NO */
  477. u32 hs_thr;
  478. u32 hph_thr;
  479. u32 moist_vref;
  480. u32 moist_iref;
  481. u32 moist_rref;
  482. u8 micbias1_cap_mode; /* track ext cap setting */
  483. u8 micbias2_cap_mode; /* track ext cap setting */
  484. bool hs_detect_work_stop;
  485. bool micbias_enable;
  486. bool btn_press_intr;
  487. bool is_hs_recording;
  488. bool is_extn_cable;
  489. bool skip_imped_detection;
  490. bool is_btn_already_regd;
  491. bool extn_cable_hph_rem;
  492. struct snd_soc_codec *codec;
  493. /* Work to perform MBHC Firmware Read */
  494. struct delayed_work mbhc_firmware_dwork;
  495. const struct firmware *mbhc_fw;
  496. struct firmware_cal *mbhc_cal;
  497. /* track PA/DAC state to sync with userspace */
  498. unsigned long hph_pa_dac_state;
  499. unsigned long hph_anc_state;
  500. unsigned long event_state;
  501. unsigned long jiffies_atreport;
  502. /* impedance of hphl and hphr */
  503. uint32_t zl, zr;
  504. bool impedance_detect;
  505. /* Holds type of Headset - Mono/Stereo */
  506. enum wcd_mbhc_hph_type hph_type;
  507. struct snd_soc_jack headset_jack;
  508. struct snd_soc_jack button_jack;
  509. struct mutex codec_resource_lock;
  510. /* Holds codec specific interrupt mapping */
  511. const struct wcd_mbhc_intr *intr_ids;
  512. /* Work to correct accessory type */
  513. struct work_struct correct_plug_swch;
  514. struct notifier_block nblock;
  515. struct wcd_mbhc_register *wcd_mbhc_regs;
  516. struct completion btn_press_compl;
  517. struct mutex hphl_pa_lock;
  518. struct mutex hphr_pa_lock;
  519. /* Holds mbhc detection method - ADC/Legacy */
  520. unsigned int mbhc_detection_logic;
  521. unsigned long intr_status;
  522. bool is_hph_ocp_pending;
  523. bool usbc_force_pr_mode;
  524. int usbc_mode;
  525. struct notifier_block psy_nb;
  526. struct power_supply *usb_psy;
  527. struct work_struct usbc_analog_work;
  528. struct wcd_mbhc_fn *mbhc_fn;
  529. };
  530. void wcd_mbhc_find_plug_and_report(struct wcd_mbhc *mbhc,
  531. enum wcd_mbhc_plug_type plug_type);
  532. void wcd_mbhc_hs_elec_irq(struct wcd_mbhc *mbhc, int irq_type, bool enable);
  533. void wcd_mbhc_elec_hs_report_unplug(struct wcd_mbhc *mbhc);
  534. bool wcd_swch_level_remove(struct wcd_mbhc *mbhc);
  535. void wcd_enable_curr_micbias(const struct wcd_mbhc *mbhc,
  536. const enum wcd_mbhc_cs_mb_en_flag cs_mb_en);
  537. void wcd_mbhc_jack_report(struct wcd_mbhc *mbhc,
  538. struct snd_soc_jack *jack, int status, int mask);
  539. int wcd_cancel_btn_work(struct wcd_mbhc *mbhc);
  540. int wcd_mbhc_get_button_mask(struct wcd_mbhc *mbhc);
  541. void wcd_mbhc_report_plug(struct wcd_mbhc *mbhc, int insertion,
  542. enum snd_jack_types jack_type);
  543. #endif /* __WCD_MBHC_V2_H__ */