wcd-mbhc-v2.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. /* Copyright (c) 2014-2018, 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 GND_MIC_USBC_SWAP_THRESHOLD 2
  130. #define WCD_FAKE_REMOVAL_MIN_PERIOD_MS 100
  131. #define HS_VREF_MIN_VAL 1400
  132. #define FW_READ_ATTEMPTS 15
  133. #define FW_READ_TIMEOUT 4000000
  134. #define FAKE_REM_RETRY_ATTEMPTS 3
  135. #define MAX_IMPED 60000
  136. #define WCD_MBHC_BTN_PRESS_COMPL_TIMEOUT_MS 50
  137. #define ANC_DETECT_RETRY_CNT 7
  138. #define WCD_MBHC_SPL_HS_CNT 1
  139. enum wcd_mbhc_detect_logic {
  140. WCD_DETECTION_LEGACY,
  141. WCD_DETECTION_ADC,
  142. };
  143. enum wcd_mbhc_cs_mb_en_flag {
  144. WCD_MBHC_EN_CS = 0,
  145. WCD_MBHC_EN_MB,
  146. WCD_MBHC_EN_PULLUP,
  147. WCD_MBHC_EN_NONE,
  148. };
  149. enum {
  150. WCD_MBHC_ELEC_HS_INS,
  151. WCD_MBHC_ELEC_HS_REM,
  152. };
  153. struct wcd_mbhc;
  154. enum wcd_mbhc_register_function {
  155. WCD_MBHC_L_DET_EN,
  156. WCD_MBHC_GND_DET_EN,
  157. WCD_MBHC_MECH_DETECTION_TYPE,
  158. WCD_MBHC_MIC_CLAMP_CTL,
  159. WCD_MBHC_ELECT_DETECTION_TYPE,
  160. WCD_MBHC_HS_L_DET_PULL_UP_CTRL,
  161. WCD_MBHC_HS_L_DET_PULL_UP_COMP_CTRL,
  162. WCD_MBHC_HPHL_PLUG_TYPE,
  163. WCD_MBHC_GND_PLUG_TYPE,
  164. WCD_MBHC_SW_HPH_LP_100K_TO_GND,
  165. WCD_MBHC_ELECT_SCHMT_ISRC,
  166. WCD_MBHC_FSM_EN,
  167. WCD_MBHC_INSREM_DBNC,
  168. WCD_MBHC_BTN_DBNC,
  169. WCD_MBHC_HS_VREF,
  170. WCD_MBHC_HS_COMP_RESULT,
  171. WCD_MBHC_IN2P_CLAMP_STATE,
  172. WCD_MBHC_MIC_SCHMT_RESULT,
  173. WCD_MBHC_HPHL_SCHMT_RESULT,
  174. WCD_MBHC_HPHR_SCHMT_RESULT,
  175. WCD_MBHC_OCP_FSM_EN,
  176. WCD_MBHC_BTN_RESULT,
  177. WCD_MBHC_BTN_ISRC_CTL,
  178. WCD_MBHC_ELECT_RESULT,
  179. WCD_MBHC_MICB_CTRL, /* Pull-up and micb control */
  180. WCD_MBHC_HPH_CNP_WG_TIME,
  181. WCD_MBHC_HPHR_PA_EN,
  182. WCD_MBHC_HPHL_PA_EN,
  183. WCD_MBHC_HPH_PA_EN,
  184. WCD_MBHC_SWCH_LEVEL_REMOVE,
  185. WCD_MBHC_PULLDOWN_CTRL,
  186. WCD_MBHC_ANC_DET_EN,
  187. WCD_MBHC_FSM_STATUS,
  188. WCD_MBHC_MUX_CTL,
  189. WCD_MBHC_MOISTURE_STATUS,
  190. WCD_MBHC_HPHR_GND,
  191. WCD_MBHC_HPHL_GND,
  192. WCD_MBHC_HPHL_OCP_DET_EN,
  193. WCD_MBHC_HPHR_OCP_DET_EN,
  194. WCD_MBHC_HPHL_OCP_STATUS,
  195. WCD_MBHC_HPHR_OCP_STATUS,
  196. WCD_MBHC_ADC_EN,
  197. WCD_MBHC_ADC_COMPLETE,
  198. WCD_MBHC_ADC_TIMEOUT,
  199. WCD_MBHC_ADC_RESULT,
  200. WCD_MBHC_MICB2_VOUT,
  201. WCD_MBHC_ADC_MODE,
  202. WCD_MBHC_DETECTION_DONE,
  203. WCD_MBHC_ELECT_ISRC_EN,
  204. WCD_MBHC_REG_FUNC_MAX,
  205. };
  206. enum wcd_mbhc_plug_type {
  207. MBHC_PLUG_TYPE_INVALID = -1,
  208. MBHC_PLUG_TYPE_NONE,
  209. MBHC_PLUG_TYPE_HEADSET,
  210. MBHC_PLUG_TYPE_HEADPHONE,
  211. MBHC_PLUG_TYPE_HIGH_HPH,
  212. MBHC_PLUG_TYPE_GND_MIC_SWAP,
  213. MBHC_PLUG_TYPE_ANC_HEADPHONE,
  214. };
  215. enum pa_dac_ack_flags {
  216. WCD_MBHC_HPHL_PA_OFF_ACK = 0,
  217. WCD_MBHC_HPHR_PA_OFF_ACK,
  218. };
  219. enum anc_ack_flags {
  220. WCD_MBHC_ANC0_OFF_ACK = 0,
  221. WCD_MBHC_ANC1_OFF_ACK,
  222. };
  223. enum wcd_mbhc_btn_det_mem {
  224. WCD_MBHC_BTN_DET_V_BTN_LOW,
  225. WCD_MBHC_BTN_DET_V_BTN_HIGH
  226. };
  227. enum {
  228. MIC_BIAS_1 = 1,
  229. MIC_BIAS_2,
  230. MIC_BIAS_3,
  231. MIC_BIAS_4
  232. };
  233. enum {
  234. MICB_PULLUP_ENABLE,
  235. MICB_PULLUP_DISABLE,
  236. MICB_ENABLE,
  237. MICB_DISABLE,
  238. };
  239. enum {
  240. MBHC_COMMON_MICB_PRECHARGE,
  241. MBHC_COMMON_MICB_SET_VAL,
  242. MBHC_COMMON_MICB_TAIL_CURR,
  243. };
  244. enum wcd_notify_event {
  245. WCD_EVENT_INVALID,
  246. /* events for micbias ON and OFF */
  247. WCD_EVENT_PRE_MICBIAS_2_OFF,
  248. WCD_EVENT_POST_MICBIAS_2_OFF,
  249. WCD_EVENT_PRE_MICBIAS_2_ON,
  250. WCD_EVENT_POST_MICBIAS_2_ON,
  251. WCD_EVENT_PRE_DAPM_MICBIAS_2_OFF,
  252. WCD_EVENT_POST_DAPM_MICBIAS_2_OFF,
  253. WCD_EVENT_PRE_DAPM_MICBIAS_2_ON,
  254. WCD_EVENT_POST_DAPM_MICBIAS_2_ON,
  255. /* events for PA ON and OFF */
  256. WCD_EVENT_PRE_HPHL_PA_ON,
  257. WCD_EVENT_POST_HPHL_PA_OFF,
  258. WCD_EVENT_PRE_HPHR_PA_ON,
  259. WCD_EVENT_POST_HPHR_PA_OFF,
  260. WCD_EVENT_PRE_HPHL_PA_OFF,
  261. WCD_EVENT_PRE_HPHR_PA_OFF,
  262. WCD_EVENT_OCP_OFF,
  263. WCD_EVENT_OCP_ON,
  264. WCD_EVENT_LAST,
  265. };
  266. enum wcd_mbhc_event_state {
  267. WCD_MBHC_EVENT_PA_HPHL,
  268. WCD_MBHC_EVENT_PA_HPHR,
  269. };
  270. struct wcd_mbhc_general_cfg {
  271. u8 t_ldoh;
  272. u8 t_bg_fast_settle;
  273. u8 t_shutdown_plug_rem;
  274. u8 mbhc_nsa;
  275. u8 mbhc_navg;
  276. u8 v_micbias_l;
  277. u8 v_micbias;
  278. u8 mbhc_reserved;
  279. u16 settle_wait;
  280. u16 t_micbias_rampup;
  281. u16 t_micbias_rampdown;
  282. u16 t_supply_bringup;
  283. } __packed;
  284. struct wcd_mbhc_plug_detect_cfg {
  285. u32 mic_current;
  286. u32 hph_current;
  287. u16 t_mic_pid;
  288. u16 t_ins_complete;
  289. u16 t_ins_retry;
  290. u16 v_removal_delta;
  291. u8 micbias_slow_ramp;
  292. u8 reserved0;
  293. u8 reserved1;
  294. u8 reserved2;
  295. } __packed;
  296. struct wcd_mbhc_plug_type_cfg {
  297. u8 av_detect;
  298. u8 mono_detect;
  299. u8 num_ins_tries;
  300. u8 reserved0;
  301. s16 v_no_mic;
  302. s16 v_av_min;
  303. s16 v_av_max;
  304. s16 v_hs_min;
  305. s16 v_hs_max;
  306. u16 reserved1;
  307. } __packed;
  308. struct wcd_mbhc_btn_detect_cfg {
  309. s8 c[8];
  310. u8 nc;
  311. u8 n_meas;
  312. u8 mbhc_nsc;
  313. u8 n_btn_meas;
  314. u8 n_btn_con;
  315. u8 num_btn;
  316. u8 reserved0;
  317. u8 reserved1;
  318. u16 t_poll;
  319. u16 t_bounce_wait;
  320. u16 t_rel_timeout;
  321. s16 v_btn_press_delta_sta;
  322. s16 v_btn_press_delta_cic;
  323. u16 t_btn0_timeout;
  324. s16 _v_btn_low[0]; /* v_btn_low[num_btn] */
  325. s16 _v_btn_high[0]; /* v_btn_high[num_btn] */
  326. u8 _n_ready[2];
  327. u8 _n_cic[2];
  328. u8 _gain[2];
  329. } __packed;
  330. struct wcd_mbhc_imped_detect_cfg {
  331. u8 _hs_imped_detect;
  332. u8 _n_rload;
  333. u8 _hph_keep_on;
  334. u8 _repeat_rload_calc;
  335. u16 _t_dac_ramp_time;
  336. u16 _rhph_high;
  337. u16 _rhph_low;
  338. u16 _rload[0]; /* rload[n_rload] */
  339. u16 _alpha[0]; /* alpha[n_rload] */
  340. u16 _beta[3];
  341. } __packed;
  342. enum wcd_mbhc_hph_type {
  343. WCD_MBHC_HPH_NONE = 0,
  344. WCD_MBHC_HPH_MONO,
  345. WCD_MBHC_HPH_STEREO,
  346. };
  347. /*
  348. * These enum definitions are directly mapped to the register
  349. * definitions
  350. */
  351. enum mbhc_moisture_vref {
  352. V_OFF,
  353. V_45_MV,
  354. V_100_MV,
  355. V_225_MV,
  356. };
  357. enum mbhc_hs_pullup_iref {
  358. I_DEFAULT = -1,
  359. I_OFF = 0,
  360. I_1P0_UA,
  361. I_2P0_UA,
  362. I_3P0_UA,
  363. };
  364. enum mbhc_hs_pullup_iref_v2 {
  365. HS_PULLUP_I_DEFAULT = -1,
  366. HS_PULLUP_I_3P0_UA = 0,
  367. HS_PULLUP_I_2P25_UA,
  368. HS_PULLUP_I_1P5_UA,
  369. HS_PULLUP_I_0P75_UA,
  370. HS_PULLUP_I_1P125_UA = 0x05,
  371. HS_PULLUP_I_0P375_UA = 0x07,
  372. HS_PULLUP_I_2P0_UA,
  373. HS_PULLUP_I_1P0_UA = 0x0A,
  374. HS_PULLUP_I_0P5_UA,
  375. HS_PULLUP_I_0P25_UA = 0x0F,
  376. HS_PULLUP_I_0P125_UA = 0x17,
  377. HS_PULLUP_I_OFF,
  378. };
  379. enum mbhc_moisture_rref {
  380. R_OFF,
  381. R_24_KOHM,
  382. R_84_KOHM,
  383. R_184_KOHM,
  384. };
  385. struct wcd_mbhc_config {
  386. bool read_fw_bin;
  387. void *calibration;
  388. bool detect_extn_cable;
  389. bool mono_stero_detection;
  390. bool (*swap_gnd_mic)(struct snd_soc_codec *codec, bool active);
  391. bool hs_ext_micbias;
  392. bool gnd_det_en;
  393. int key_code[WCD_MBHC_KEYCODE_NUM];
  394. uint32_t linein_th;
  395. bool moisture_en;
  396. int mbhc_micbias;
  397. int anc_micbias;
  398. bool enable_anc_mic_detect;
  399. u32 enable_usbc_analog;
  400. bool moisture_duty_cycle_en;
  401. };
  402. struct wcd_mbhc_intr {
  403. int mbhc_sw_intr;
  404. int mbhc_btn_press_intr;
  405. int mbhc_btn_release_intr;
  406. int mbhc_hs_ins_intr;
  407. int mbhc_hs_rem_intr;
  408. int hph_left_ocp;
  409. int hph_right_ocp;
  410. };
  411. struct wcd_mbhc_register {
  412. const char *id;
  413. u16 reg;
  414. u8 mask;
  415. u8 offset;
  416. u8 invert;
  417. };
  418. struct wcd_mbhc_cb {
  419. int (*enable_mb_source)(struct wcd_mbhc *, bool);
  420. void (*trim_btn_reg)(struct snd_soc_codec *);
  421. void (*compute_impedance)(struct wcd_mbhc *, uint32_t *, uint32_t *);
  422. void (*set_micbias_value)(struct snd_soc_codec *);
  423. void (*set_auto_zeroing)(struct snd_soc_codec *, bool);
  424. struct firmware_cal * (*get_hwdep_fw_cal)(struct wcd_mbhc *,
  425. enum wcd_cal_type);
  426. void (*set_cap_mode)(struct snd_soc_codec *, bool, bool);
  427. int (*register_notifier)(struct wcd_mbhc *,
  428. struct notifier_block *nblock,
  429. bool enable);
  430. int (*request_irq)(struct snd_soc_codec *,
  431. int, irq_handler_t, const char *, void *);
  432. void (*irq_control)(struct snd_soc_codec *,
  433. int irq, bool enable);
  434. int (*free_irq)(struct snd_soc_codec *,
  435. int irq, void *);
  436. void (*clk_setup)(struct snd_soc_codec *, bool);
  437. int (*map_btn_code_to_num)(struct snd_soc_codec *);
  438. bool (*lock_sleep)(struct wcd_mbhc *, bool);
  439. bool (*micbias_enable_status)(struct wcd_mbhc *, int);
  440. void (*mbhc_bias)(struct snd_soc_codec *, bool);
  441. void (*mbhc_common_micb_ctrl)(struct snd_soc_codec *,
  442. int event, bool);
  443. void (*micb_internal)(struct snd_soc_codec *,
  444. int micb_num, bool);
  445. bool (*hph_pa_on_status)(struct snd_soc_codec *);
  446. void (*set_btn_thr)(struct snd_soc_codec *, s16 *, s16 *,
  447. int num_btn, bool);
  448. void (*hph_pull_up_control)(struct snd_soc_codec *,
  449. enum mbhc_hs_pullup_iref);
  450. int (*mbhc_micbias_control)(struct snd_soc_codec *, int, int req);
  451. void (*mbhc_micb_ramp_control)(struct snd_soc_codec *, bool);
  452. void (*skip_imped_detect)(struct snd_soc_codec *);
  453. bool (*extn_use_mb)(struct snd_soc_codec *);
  454. int (*mbhc_micb_ctrl_thr_mic)(struct snd_soc_codec *, int, bool);
  455. void (*mbhc_gnd_det_ctrl)(struct snd_soc_codec *, bool);
  456. void (*hph_pull_down_ctrl)(struct snd_soc_codec *, bool);
  457. void (*mbhc_moisture_config)(struct wcd_mbhc *);
  458. bool (*hph_register_recovery)(struct wcd_mbhc *);
  459. void (*update_anc_state)(struct snd_soc_codec *codec,
  460. bool enable, int anc_num);
  461. bool (*is_anc_on)(struct wcd_mbhc *mbhc);
  462. void (*hph_pull_up_control_v2)(struct snd_soc_codec *, int);
  463. bool (*mbhc_get_moisture_status)(struct wcd_mbhc *);
  464. void (*mbhc_moisture_polling_ctrl)(struct wcd_mbhc *, bool);
  465. void (*mbhc_moisture_detect_en)(struct wcd_mbhc *, bool);
  466. };
  467. struct wcd_mbhc_fn {
  468. irqreturn_t (*wcd_mbhc_hs_ins_irq)(int irq, void *data);
  469. irqreturn_t (*wcd_mbhc_hs_rem_irq)(int irq, void *data);
  470. void (*wcd_mbhc_detect_plug_type)(struct wcd_mbhc *mbhc);
  471. bool (*wcd_mbhc_detect_anc_plug_type)(struct wcd_mbhc *mbhc);
  472. void (*wcd_cancel_hs_detect_plug)(struct wcd_mbhc *mbhc,
  473. struct work_struct *work);
  474. };
  475. struct wcd_mbhc {
  476. /* Delayed work to report long button press */
  477. struct delayed_work mbhc_btn_dwork;
  478. int buttons_pressed;
  479. struct wcd_mbhc_config *mbhc_cfg;
  480. const struct wcd_mbhc_cb *mbhc_cb;
  481. u32 hph_status; /* track headhpone status */
  482. u8 hphlocp_cnt; /* headphone left ocp retry */
  483. u8 hphrocp_cnt; /* headphone right ocp retry */
  484. wait_queue_head_t wait_btn_press;
  485. bool is_btn_press;
  486. u8 current_plug;
  487. bool in_swch_irq_handler;
  488. bool hphl_swh; /*track HPHL switch NC / NO */
  489. bool gnd_swh; /*track GND switch NC / NO */
  490. u32 hs_thr;
  491. u32 hph_thr;
  492. u32 swap_thr;
  493. u32 moist_vref;
  494. u32 moist_iref;
  495. u32 moist_rref;
  496. u8 micbias1_cap_mode; /* track ext cap setting */
  497. u8 micbias2_cap_mode; /* track ext cap setting */
  498. bool hs_detect_work_stop;
  499. bool micbias_enable;
  500. bool btn_press_intr;
  501. bool is_hs_recording;
  502. bool is_extn_cable;
  503. bool skip_imped_detection;
  504. bool is_btn_already_regd;
  505. bool extn_cable_hph_rem;
  506. struct snd_soc_codec *codec;
  507. /* Work to perform MBHC Firmware Read */
  508. struct delayed_work mbhc_firmware_dwork;
  509. const struct firmware *mbhc_fw;
  510. struct firmware_cal *mbhc_cal;
  511. /* track PA/DAC state to sync with userspace */
  512. unsigned long hph_pa_dac_state;
  513. unsigned long hph_anc_state;
  514. unsigned long event_state;
  515. unsigned long jiffies_atreport;
  516. /* impedance of hphl and hphr */
  517. uint32_t zl, zr;
  518. bool impedance_detect;
  519. /* Holds type of Headset - Mono/Stereo */
  520. enum wcd_mbhc_hph_type hph_type;
  521. struct snd_soc_jack headset_jack;
  522. struct snd_soc_jack button_jack;
  523. struct mutex codec_resource_lock;
  524. /* Holds codec specific interrupt mapping */
  525. const struct wcd_mbhc_intr *intr_ids;
  526. /* Work to correct accessory type */
  527. struct work_struct correct_plug_swch;
  528. struct notifier_block nblock;
  529. struct wcd_mbhc_register *wcd_mbhc_regs;
  530. struct completion btn_press_compl;
  531. struct mutex hphl_pa_lock;
  532. struct mutex hphr_pa_lock;
  533. bool deinit_in_progress;
  534. /* Holds mbhc detection method - ADC/Legacy */
  535. unsigned int mbhc_detection_logic;
  536. unsigned long intr_status;
  537. bool is_hph_ocp_pending;
  538. struct wcd_mbhc_fn *mbhc_fn;
  539. bool force_linein;
  540. struct device_node *fsa_np;
  541. struct notifier_block fsa_nb;
  542. };
  543. void wcd_mbhc_find_plug_and_report(struct wcd_mbhc *mbhc,
  544. enum wcd_mbhc_plug_type plug_type);
  545. void wcd_mbhc_hs_elec_irq(struct wcd_mbhc *mbhc, int irq_type, bool enable);
  546. void wcd_mbhc_elec_hs_report_unplug(struct wcd_mbhc *mbhc);
  547. bool wcd_swch_level_remove(struct wcd_mbhc *mbhc);
  548. void wcd_enable_curr_micbias(const struct wcd_mbhc *mbhc,
  549. const enum wcd_mbhc_cs_mb_en_flag cs_mb_en);
  550. void wcd_mbhc_jack_report(struct wcd_mbhc *mbhc,
  551. struct snd_soc_jack *jack, int status, int mask);
  552. int wcd_cancel_btn_work(struct wcd_mbhc *mbhc);
  553. int wcd_mbhc_get_button_mask(struct wcd_mbhc *mbhc);
  554. void wcd_mbhc_report_plug(struct wcd_mbhc *mbhc, int insertion,
  555. enum snd_jack_types jack_type);
  556. #endif /* __WCD_MBHC_V2_H__ */