wcd-mbhc-legacy.c 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037
  1. /* Copyright (c) 2015-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. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include <linux/slab.h>
  15. #include <linux/of_gpio.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/device.h>
  18. #include <linux/printk.h>
  19. #include <linux/ratelimit.h>
  20. #include <linux/list.h>
  21. #include <linux/bitops.h>
  22. #include <linux/delay.h>
  23. #include <linux/pm_runtime.h>
  24. #include <linux/kernel.h>
  25. #include <linux/input.h>
  26. #include <linux/firmware.h>
  27. #include <linux/completion.h>
  28. #include <sound/soc.h>
  29. #include <sound/jack.h>
  30. #include "wcd-mbhc-legacy.h"
  31. #include "wcd-mbhc-v2.h"
  32. static int det_extn_cable_en;
  33. module_param(det_extn_cable_en, int, 0664);
  34. MODULE_PARM_DESC(det_extn_cable_en, "enable/disable extn cable detect");
  35. static bool wcd_mbhc_detect_anc_plug_type(struct wcd_mbhc *mbhc)
  36. {
  37. bool anc_mic_found = false;
  38. u16 val, hs_comp_res, btn_status = 0;
  39. unsigned long retry = 0;
  40. int valid_plug_cnt = 0, invalid_plug_cnt = 0;
  41. int btn_status_cnt = 0;
  42. bool is_check_btn_press = false;
  43. if (mbhc->mbhc_cfg->anc_micbias < MIC_BIAS_1 ||
  44. mbhc->mbhc_cfg->anc_micbias > MIC_BIAS_4)
  45. return false;
  46. if (!mbhc->mbhc_cb->mbhc_micbias_control)
  47. return false;
  48. WCD_MBHC_REG_READ(WCD_MBHC_FSM_EN, val);
  49. if (val)
  50. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  51. mbhc->mbhc_cb->mbhc_micbias_control(mbhc->codec,
  52. mbhc->mbhc_cfg->anc_micbias,
  53. MICB_ENABLE);
  54. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MUX_CTL, 0x2);
  55. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ANC_DET_EN, 1);
  56. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  57. /*
  58. * wait for button debounce time 20ms. If 4-pole plug is inserted
  59. * into 5-pole jack, then there will be a button press interrupt
  60. * during anc plug detection. In that case though Hs_comp_res is 0,
  61. * it should not be declared as ANC plug type
  62. */
  63. usleep_range(20000, 20100);
  64. /*
  65. * After enabling FSM, to handle slow insertion scenarios,
  66. * check hs_comp_result for few times to see if the IN3 voltage
  67. * is below the Vref
  68. */
  69. do {
  70. if (wcd_swch_level_remove(mbhc)) {
  71. pr_debug("%s: Switch level is low\n", __func__);
  72. goto exit;
  73. }
  74. pr_debug("%s: Retry attempt %lu\n", __func__, retry + 1);
  75. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_res);
  76. if (!hs_comp_res) {
  77. valid_plug_cnt++;
  78. is_check_btn_press = true;
  79. } else
  80. invalid_plug_cnt++;
  81. /* Wait 1ms before taking another reading */
  82. usleep_range(1000, 1100);
  83. WCD_MBHC_REG_READ(WCD_MBHC_FSM_STATUS, btn_status);
  84. if (btn_status)
  85. btn_status_cnt++;
  86. retry++;
  87. } while (retry < ANC_DETECT_RETRY_CNT);
  88. pr_debug("%s: valid: %d, invalid: %d, btn_status_cnt: %d\n",
  89. __func__, valid_plug_cnt, invalid_plug_cnt, btn_status_cnt);
  90. /* decision logic */
  91. if ((valid_plug_cnt > invalid_plug_cnt) && is_check_btn_press &&
  92. (btn_status_cnt == 0))
  93. anc_mic_found = true;
  94. exit:
  95. if (!val)
  96. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  97. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ANC_DET_EN, 0);
  98. mbhc->mbhc_cb->mbhc_micbias_control(mbhc->codec,
  99. mbhc->mbhc_cfg->anc_micbias,
  100. MICB_DISABLE);
  101. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MUX_CTL, 0x0);
  102. pr_debug("%s: anc mic %sfound\n", __func__,
  103. anc_mic_found ? "" : "not ");
  104. return anc_mic_found;
  105. }
  106. /* To determine if cross connection occurred */
  107. static int wcd_check_cross_conn(struct wcd_mbhc *mbhc)
  108. {
  109. u16 swap_res = 0;
  110. enum wcd_mbhc_plug_type plug_type = MBHC_PLUG_TYPE_NONE;
  111. s16 reg1 = 0;
  112. bool hphl_sch_res = 0, hphr_sch_res = 0;
  113. if (wcd_swch_level_remove(mbhc)) {
  114. pr_debug("%s: Switch level is low\n", __func__);
  115. return -EINVAL;
  116. }
  117. /* If PA is enabled, dont check for cross-connection */
  118. if (mbhc->mbhc_cb->hph_pa_on_status)
  119. if (mbhc->mbhc_cb->hph_pa_on_status(mbhc->codec))
  120. return false;
  121. WCD_MBHC_REG_READ(WCD_MBHC_ELECT_SCHMT_ISRC, reg1);
  122. /*
  123. * Check if there is any cross connection,
  124. * Micbias and schmitt trigger (HPHL-HPHR)
  125. * needs to be enabled. For some codecs like wcd9335,
  126. * pull-up will already be enabled when this function
  127. * is called for cross-connection identification. No
  128. * need to enable micbias in that case.
  129. */
  130. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  131. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_SCHMT_ISRC, 2);
  132. WCD_MBHC_REG_READ(WCD_MBHC_ELECT_RESULT, swap_res);
  133. pr_debug("%s: swap_res%x\n", __func__, swap_res);
  134. /*
  135. * Read reg hphl and hphr schmitt result with cross connection
  136. * bit. These bits will both be "0" in case of cross connection
  137. * otherwise, they stay at 1
  138. */
  139. WCD_MBHC_REG_READ(WCD_MBHC_HPHL_SCHMT_RESULT, hphl_sch_res);
  140. WCD_MBHC_REG_READ(WCD_MBHC_HPHR_SCHMT_RESULT, hphr_sch_res);
  141. if (!(hphl_sch_res || hphr_sch_res)) {
  142. plug_type = MBHC_PLUG_TYPE_GND_MIC_SWAP;
  143. pr_debug("%s: Cross connection identified\n", __func__);
  144. } else {
  145. pr_debug("%s: No Cross connection found\n", __func__);
  146. }
  147. /* Disable schmitt trigger and restore micbias */
  148. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_SCHMT_ISRC, reg1);
  149. pr_debug("%s: leave, plug type: %d\n", __func__, plug_type);
  150. return (plug_type == MBHC_PLUG_TYPE_GND_MIC_SWAP) ? true : false;
  151. }
  152. static bool wcd_is_special_headset(struct wcd_mbhc *mbhc)
  153. {
  154. struct snd_soc_codec *codec = mbhc->codec;
  155. int delay = 0, rc;
  156. bool ret = false;
  157. u16 hs_comp_res;
  158. bool is_spl_hs = false;
  159. /*
  160. * Increase micbias to 2.7V to detect headsets with
  161. * threshold on microphone
  162. */
  163. if (mbhc->mbhc_cb->mbhc_micbias_control &&
  164. !mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic) {
  165. pr_debug("%s: callback fn micb_ctrl_thr_mic not defined\n",
  166. __func__);
  167. return false;
  168. } else if (mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic) {
  169. rc = mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(codec,
  170. MIC_BIAS_2, true);
  171. if (rc) {
  172. pr_err("%s: Micbias control for thr mic failed, rc: %d\n",
  173. __func__, rc);
  174. return false;
  175. }
  176. }
  177. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  178. pr_debug("%s: special headset, start register writes\n", __func__);
  179. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_res);
  180. while (!is_spl_hs) {
  181. if (mbhc->hs_detect_work_stop) {
  182. pr_debug("%s: stop requested: %d\n", __func__,
  183. mbhc->hs_detect_work_stop);
  184. break;
  185. }
  186. delay = delay + 50;
  187. if (mbhc->mbhc_cb->mbhc_common_micb_ctrl) {
  188. mbhc->mbhc_cb->mbhc_common_micb_ctrl(codec,
  189. MBHC_COMMON_MICB_PRECHARGE,
  190. true);
  191. mbhc->mbhc_cb->mbhc_common_micb_ctrl(codec,
  192. MBHC_COMMON_MICB_SET_VAL,
  193. true);
  194. }
  195. /* Wait for 50msec for MICBIAS to settle down */
  196. msleep(50);
  197. if (mbhc->mbhc_cb->set_auto_zeroing)
  198. mbhc->mbhc_cb->set_auto_zeroing(codec, true);
  199. /* Wait for 50msec for FSM to update result values */
  200. msleep(50);
  201. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_res);
  202. if (!(hs_comp_res)) {
  203. pr_debug("%s: Special headset detected in %d msecs\n",
  204. __func__, (delay * 2));
  205. is_spl_hs = true;
  206. }
  207. if (delay == SPECIAL_HS_DETECT_TIME_MS) {
  208. pr_debug("%s: Spl headset didn't get detect in 4 sec\n",
  209. __func__);
  210. break;
  211. }
  212. }
  213. if (is_spl_hs) {
  214. pr_debug("%s: Headset with threshold found\n", __func__);
  215. mbhc->micbias_enable = true;
  216. ret = true;
  217. }
  218. if (mbhc->mbhc_cb->mbhc_common_micb_ctrl)
  219. mbhc->mbhc_cb->mbhc_common_micb_ctrl(codec,
  220. MBHC_COMMON_MICB_PRECHARGE,
  221. false);
  222. if (mbhc->mbhc_cb->set_micbias_value && !mbhc->micbias_enable)
  223. mbhc->mbhc_cb->set_micbias_value(codec);
  224. if (mbhc->mbhc_cb->set_auto_zeroing)
  225. mbhc->mbhc_cb->set_auto_zeroing(codec, false);
  226. if (mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic &&
  227. !mbhc->micbias_enable)
  228. mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(codec, MIC_BIAS_2,
  229. false);
  230. pr_debug("%s: leave, micb_enable: %d\n", __func__,
  231. mbhc->micbias_enable);
  232. return ret;
  233. }
  234. static void wcd_mbhc_update_fsm_source(struct wcd_mbhc *mbhc,
  235. enum wcd_mbhc_plug_type plug_type)
  236. {
  237. bool micbias2;
  238. micbias2 = mbhc->mbhc_cb->micbias_enable_status(mbhc,
  239. MIC_BIAS_2);
  240. switch (plug_type) {
  241. case MBHC_PLUG_TYPE_HEADPHONE:
  242. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 3);
  243. break;
  244. case MBHC_PLUG_TYPE_HEADSET:
  245. case MBHC_PLUG_TYPE_ANC_HEADPHONE:
  246. if (!mbhc->is_hs_recording && !micbias2)
  247. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 3);
  248. break;
  249. default:
  250. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 0);
  251. break;
  252. };
  253. }
  254. static void wcd_enable_mbhc_supply(struct wcd_mbhc *mbhc,
  255. enum wcd_mbhc_plug_type plug_type)
  256. {
  257. struct snd_soc_codec *codec = mbhc->codec;
  258. /*
  259. * Do not disable micbias if recording is going on or
  260. * headset is inserted on the other side of the extn
  261. * cable. If headset has been detected current source
  262. * needs to be kept enabled for button detection to work.
  263. * If the accessory type is invalid or unsupported, we
  264. * dont need to enable either of them.
  265. */
  266. if (det_extn_cable_en && mbhc->is_extn_cable &&
  267. mbhc->mbhc_cb && mbhc->mbhc_cb->extn_use_mb &&
  268. mbhc->mbhc_cb->extn_use_mb(codec)) {
  269. if (plug_type == MBHC_PLUG_TYPE_HEADPHONE ||
  270. plug_type == MBHC_PLUG_TYPE_HEADSET)
  271. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  272. } else {
  273. if (plug_type == MBHC_PLUG_TYPE_HEADSET) {
  274. if (mbhc->is_hs_recording || mbhc->micbias_enable) {
  275. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  276. } else if ((test_bit(WCD_MBHC_EVENT_PA_HPHL,
  277. &mbhc->event_state)) ||
  278. (test_bit(WCD_MBHC_EVENT_PA_HPHR,
  279. &mbhc->event_state))) {
  280. wcd_enable_curr_micbias(mbhc,
  281. WCD_MBHC_EN_PULLUP);
  282. } else {
  283. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_CS);
  284. }
  285. } else if (plug_type == MBHC_PLUG_TYPE_HEADPHONE) {
  286. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_CS);
  287. } else {
  288. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_NONE);
  289. }
  290. }
  291. }
  292. static bool wcd_mbhc_check_for_spl_headset(struct wcd_mbhc *mbhc,
  293. int *spl_hs_cnt)
  294. {
  295. u16 hs_comp_res_1_8v = 0, hs_comp_res_2_7v = 0;
  296. bool spl_hs = false;
  297. if (!mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic)
  298. goto done;
  299. if (!spl_hs_cnt) {
  300. pr_err("%s: spl_hs_cnt is NULL\n", __func__);
  301. goto done;
  302. }
  303. /* Read back hs_comp_res @ 1.8v Micbias */
  304. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_res_1_8v);
  305. if (!hs_comp_res_1_8v) {
  306. spl_hs = false;
  307. goto done;
  308. }
  309. /* Bump up MB2 to 2.7v */
  310. mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(mbhc->codec,
  311. mbhc->mbhc_cfg->mbhc_micbias, true);
  312. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  313. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  314. usleep_range(10000, 10100);
  315. /* Read back HS_COMP_RESULT */
  316. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_res_2_7v);
  317. if (!hs_comp_res_2_7v && hs_comp_res_1_8v)
  318. spl_hs = true;
  319. if (spl_hs)
  320. *spl_hs_cnt += 1;
  321. /* MB2 back to 1.8v */
  322. if (*spl_hs_cnt != WCD_MBHC_SPL_HS_CNT) {
  323. mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(mbhc->codec,
  324. mbhc->mbhc_cfg->mbhc_micbias, false);
  325. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  326. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  327. usleep_range(10000, 10100);
  328. }
  329. if (spl_hs)
  330. pr_debug("%s: Detected special HS (%d)\n", __func__, spl_hs);
  331. done:
  332. return spl_hs;
  333. }
  334. /* should be called under interrupt context that hold suspend */
  335. static void wcd_schedule_hs_detect_plug(struct wcd_mbhc *mbhc,
  336. struct work_struct *work)
  337. {
  338. pr_debug("%s: scheduling correct_swch_plug\n", __func__);
  339. WCD_MBHC_RSC_ASSERT_LOCKED(mbhc);
  340. mbhc->hs_detect_work_stop = false;
  341. mbhc->mbhc_cb->lock_sleep(mbhc, true);
  342. schedule_work(work);
  343. }
  344. /* called under codec_resource_lock acquisition */
  345. static void wcd_cancel_hs_detect_plug(struct wcd_mbhc *mbhc,
  346. struct work_struct *work)
  347. {
  348. pr_debug("%s: Canceling correct_plug_swch\n", __func__);
  349. mbhc->hs_detect_work_stop = true;
  350. WCD_MBHC_RSC_UNLOCK(mbhc);
  351. if (cancel_work_sync(work)) {
  352. pr_debug("%s: correct_plug_swch is canceled\n",
  353. __func__);
  354. mbhc->mbhc_cb->lock_sleep(mbhc, false);
  355. }
  356. WCD_MBHC_RSC_LOCK(mbhc);
  357. }
  358. /* called under codec_resource_lock acquisition */
  359. static void wcd_mbhc_detect_plug_type(struct wcd_mbhc *mbhc)
  360. {
  361. struct snd_soc_codec *codec = mbhc->codec;
  362. bool micbias1 = false;
  363. pr_debug("%s: enter\n", __func__);
  364. WCD_MBHC_RSC_ASSERT_LOCKED(mbhc);
  365. if (mbhc->mbhc_cb->hph_pull_down_ctrl)
  366. mbhc->mbhc_cb->hph_pull_down_ctrl(codec, false);
  367. if (mbhc->mbhc_cb->micbias_enable_status)
  368. micbias1 = mbhc->mbhc_cb->micbias_enable_status(mbhc,
  369. MIC_BIAS_1);
  370. if (mbhc->mbhc_cb->set_cap_mode)
  371. mbhc->mbhc_cb->set_cap_mode(codec, micbias1, true);
  372. if (mbhc->mbhc_cb->mbhc_micbias_control)
  373. mbhc->mbhc_cb->mbhc_micbias_control(codec, MIC_BIAS_2,
  374. MICB_ENABLE);
  375. else
  376. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  377. /* Re-initialize button press completion object */
  378. reinit_completion(&mbhc->btn_press_compl);
  379. wcd_schedule_hs_detect_plug(mbhc, &mbhc->correct_plug_swch);
  380. pr_debug("%s: leave\n", __func__);
  381. }
  382. static void wcd_correct_swch_plug(struct work_struct *work)
  383. {
  384. struct wcd_mbhc *mbhc;
  385. struct snd_soc_codec *codec;
  386. enum wcd_mbhc_plug_type plug_type = MBHC_PLUG_TYPE_INVALID;
  387. unsigned long timeout;
  388. u16 hs_comp_res = 0, hphl_sch = 0, mic_sch = 0, btn_result = 0;
  389. bool wrk_complete = false;
  390. int pt_gnd_mic_swap_cnt = 0;
  391. int no_gnd_mic_swap_cnt = 0;
  392. bool is_pa_on = false, spl_hs = false, spl_hs_reported = false;
  393. bool micbias2 = false;
  394. bool micbias1 = false;
  395. int ret = 0;
  396. int rc, spl_hs_count = 0;
  397. int cross_conn;
  398. int try = 0;
  399. pr_debug("%s: enter\n", __func__);
  400. mbhc = container_of(work, struct wcd_mbhc, correct_plug_swch);
  401. codec = mbhc->codec;
  402. /*
  403. * Enable micbias/pullup for detection in correct work.
  404. * This work will get scheduled from detect_plug_type which
  405. * will already request for pullup/micbias. If the pullup/micbias
  406. * is handled with ref-counts by individual codec drivers, there is
  407. * no need to enabale micbias/pullup here
  408. */
  409. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  410. /* Enable HW FSM */
  411. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  412. /*
  413. * Check for any button press interrupts before starting 3-sec
  414. * loop.
  415. */
  416. rc = wait_for_completion_timeout(&mbhc->btn_press_compl,
  417. msecs_to_jiffies(WCD_MBHC_BTN_PRESS_COMPL_TIMEOUT_MS));
  418. WCD_MBHC_REG_READ(WCD_MBHC_BTN_RESULT, btn_result);
  419. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_res);
  420. if (!rc) {
  421. pr_debug("%s No btn press interrupt\n", __func__);
  422. if (!btn_result && !hs_comp_res)
  423. plug_type = MBHC_PLUG_TYPE_HEADSET;
  424. else if (!btn_result && hs_comp_res)
  425. plug_type = MBHC_PLUG_TYPE_HIGH_HPH;
  426. else
  427. plug_type = MBHC_PLUG_TYPE_INVALID;
  428. } else {
  429. if (!btn_result && !hs_comp_res)
  430. plug_type = MBHC_PLUG_TYPE_HEADPHONE;
  431. else
  432. plug_type = MBHC_PLUG_TYPE_INVALID;
  433. }
  434. do {
  435. cross_conn = wcd_check_cross_conn(mbhc);
  436. try++;
  437. } while (try < mbhc->swap_thr);
  438. /*
  439. * Check for cross connection 4 times.
  440. * Consider the result of the fourth iteration.
  441. */
  442. if (cross_conn > 0) {
  443. pr_debug("%s: cross con found, start polling\n",
  444. __func__);
  445. plug_type = MBHC_PLUG_TYPE_GND_MIC_SWAP;
  446. pr_debug("%s: Plug found, plug type is %d\n",
  447. __func__, plug_type);
  448. goto correct_plug_type;
  449. }
  450. if ((plug_type == MBHC_PLUG_TYPE_HEADSET ||
  451. plug_type == MBHC_PLUG_TYPE_HEADPHONE) &&
  452. (!wcd_swch_level_remove(mbhc))) {
  453. WCD_MBHC_RSC_LOCK(mbhc);
  454. if (mbhc->current_plug == MBHC_PLUG_TYPE_HIGH_HPH)
  455. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_DETECTION_TYPE,
  456. 0);
  457. wcd_mbhc_find_plug_and_report(mbhc, plug_type);
  458. WCD_MBHC_RSC_UNLOCK(mbhc);
  459. }
  460. correct_plug_type:
  461. timeout = jiffies + msecs_to_jiffies(HS_DETECT_PLUG_TIME_MS);
  462. while (!time_after(jiffies, timeout)) {
  463. if (mbhc->hs_detect_work_stop) {
  464. pr_debug("%s: stop requested: %d\n", __func__,
  465. mbhc->hs_detect_work_stop);
  466. wcd_enable_curr_micbias(mbhc,
  467. WCD_MBHC_EN_NONE);
  468. if (mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic &&
  469. mbhc->micbias_enable) {
  470. mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(
  471. mbhc->codec, MIC_BIAS_2, false);
  472. if (mbhc->mbhc_cb->set_micbias_value)
  473. mbhc->mbhc_cb->set_micbias_value(
  474. mbhc->codec);
  475. mbhc->micbias_enable = false;
  476. }
  477. goto exit;
  478. }
  479. if (mbhc->btn_press_intr) {
  480. wcd_cancel_btn_work(mbhc);
  481. mbhc->btn_press_intr = false;
  482. }
  483. /* Toggle FSM */
  484. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  485. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  486. /* allow sometime and re-check stop requested again */
  487. msleep(20);
  488. if (mbhc->hs_detect_work_stop) {
  489. pr_debug("%s: stop requested: %d\n", __func__,
  490. mbhc->hs_detect_work_stop);
  491. wcd_enable_curr_micbias(mbhc,
  492. WCD_MBHC_EN_NONE);
  493. if (mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic &&
  494. mbhc->micbias_enable) {
  495. mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(
  496. mbhc->codec, MIC_BIAS_2, false);
  497. if (mbhc->mbhc_cb->set_micbias_value)
  498. mbhc->mbhc_cb->set_micbias_value(
  499. mbhc->codec);
  500. mbhc->micbias_enable = false;
  501. }
  502. goto exit;
  503. }
  504. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_res);
  505. pr_debug("%s: hs_comp_res: %x\n", __func__, hs_comp_res);
  506. if (mbhc->mbhc_cb->hph_pa_on_status)
  507. is_pa_on = mbhc->mbhc_cb->hph_pa_on_status(codec);
  508. /*
  509. * instead of hogging system by contineous polling, wait for
  510. * sometime and re-check stop request again.
  511. */
  512. msleep(180);
  513. if (hs_comp_res && (spl_hs_count < WCD_MBHC_SPL_HS_CNT)) {
  514. spl_hs = wcd_mbhc_check_for_spl_headset(mbhc,
  515. &spl_hs_count);
  516. if (spl_hs_count == WCD_MBHC_SPL_HS_CNT) {
  517. hs_comp_res = 0;
  518. spl_hs = true;
  519. mbhc->micbias_enable = true;
  520. }
  521. }
  522. if ((!hs_comp_res) && (!is_pa_on)) {
  523. /* Check for cross connection*/
  524. ret = wcd_check_cross_conn(mbhc);
  525. if (ret < 0) {
  526. continue;
  527. } else if (ret > 0) {
  528. pt_gnd_mic_swap_cnt++;
  529. no_gnd_mic_swap_cnt = 0;
  530. if (pt_gnd_mic_swap_cnt <
  531. mbhc->swap_thr) {
  532. continue;
  533. } else if (pt_gnd_mic_swap_cnt >
  534. mbhc->swap_thr) {
  535. /*
  536. * This is due to GND/MIC switch didn't
  537. * work, Report unsupported plug.
  538. */
  539. pr_debug("%s: switch didn't work\n",
  540. __func__);
  541. plug_type = MBHC_PLUG_TYPE_GND_MIC_SWAP;
  542. goto report;
  543. } else {
  544. plug_type = MBHC_PLUG_TYPE_GND_MIC_SWAP;
  545. }
  546. } else {
  547. no_gnd_mic_swap_cnt++;
  548. pt_gnd_mic_swap_cnt = 0;
  549. plug_type = MBHC_PLUG_TYPE_HEADSET;
  550. if ((no_gnd_mic_swap_cnt <
  551. GND_MIC_SWAP_THRESHOLD) &&
  552. (spl_hs_count != WCD_MBHC_SPL_HS_CNT)) {
  553. continue;
  554. } else {
  555. no_gnd_mic_swap_cnt = 0;
  556. }
  557. }
  558. if ((pt_gnd_mic_swap_cnt == mbhc->swap_thr) &&
  559. (plug_type == MBHC_PLUG_TYPE_GND_MIC_SWAP)) {
  560. /*
  561. * if switch is toggled, check again,
  562. * otherwise report unsupported plug
  563. */
  564. if (mbhc->mbhc_cfg->swap_gnd_mic &&
  565. mbhc->mbhc_cfg->swap_gnd_mic(codec,
  566. true)) {
  567. pr_debug("%s: US_EU gpio present,flip switch\n"
  568. , __func__);
  569. continue;
  570. }
  571. }
  572. }
  573. WCD_MBHC_REG_READ(WCD_MBHC_HPHL_SCHMT_RESULT, hphl_sch);
  574. WCD_MBHC_REG_READ(WCD_MBHC_MIC_SCHMT_RESULT, mic_sch);
  575. if (hs_comp_res && !(hphl_sch || mic_sch)) {
  576. pr_debug("%s: cable is extension cable\n", __func__);
  577. plug_type = MBHC_PLUG_TYPE_HIGH_HPH;
  578. wrk_complete = true;
  579. } else {
  580. pr_debug("%s: cable might be headset: %d\n", __func__,
  581. plug_type);
  582. if (!(plug_type == MBHC_PLUG_TYPE_GND_MIC_SWAP)) {
  583. plug_type = MBHC_PLUG_TYPE_HEADSET;
  584. if (!spl_hs_reported &&
  585. spl_hs_count == WCD_MBHC_SPL_HS_CNT) {
  586. spl_hs_reported = true;
  587. WCD_MBHC_RSC_LOCK(mbhc);
  588. wcd_mbhc_find_plug_and_report(mbhc,
  589. plug_type);
  590. WCD_MBHC_RSC_UNLOCK(mbhc);
  591. continue;
  592. } else if (spl_hs_reported)
  593. continue;
  594. /*
  595. * Report headset only if not already reported
  596. * and if there is not button press without
  597. * release
  598. */
  599. if (((mbhc->current_plug !=
  600. MBHC_PLUG_TYPE_HEADSET) &&
  601. (mbhc->current_plug !=
  602. MBHC_PLUG_TYPE_ANC_HEADPHONE)) &&
  603. !wcd_swch_level_remove(mbhc) &&
  604. !mbhc->btn_press_intr) {
  605. pr_debug("%s: cable is %sheadset\n",
  606. __func__,
  607. ((spl_hs_count ==
  608. WCD_MBHC_SPL_HS_CNT) ?
  609. "special ":""));
  610. goto report;
  611. }
  612. }
  613. wrk_complete = false;
  614. }
  615. }
  616. if (!wrk_complete && mbhc->btn_press_intr) {
  617. pr_debug("%s: Can be slow insertion of headphone\n", __func__);
  618. wcd_cancel_btn_work(mbhc);
  619. /* Report as headphone only if previously
  620. * not reported as lineout
  621. */
  622. if (!mbhc->force_linein)
  623. plug_type = MBHC_PLUG_TYPE_HEADPHONE;
  624. }
  625. /*
  626. * If plug_tye is headset, we might have already reported either in
  627. * detect_plug-type or in above while loop, no need to report again
  628. */
  629. if (!wrk_complete && ((plug_type == MBHC_PLUG_TYPE_HEADSET) ||
  630. (plug_type == MBHC_PLUG_TYPE_ANC_HEADPHONE))) {
  631. pr_debug("%s: plug_type:0x%x already reported\n",
  632. __func__, mbhc->current_plug);
  633. goto enable_supply;
  634. }
  635. if (plug_type == MBHC_PLUG_TYPE_HIGH_HPH &&
  636. (!det_extn_cable_en)) {
  637. if (wcd_is_special_headset(mbhc)) {
  638. pr_debug("%s: Special headset found %d\n",
  639. __func__, plug_type);
  640. plug_type = MBHC_PLUG_TYPE_HEADSET;
  641. goto report;
  642. }
  643. }
  644. report:
  645. if (wcd_swch_level_remove(mbhc)) {
  646. pr_debug("%s: Switch level is low\n", __func__);
  647. goto exit;
  648. }
  649. if (plug_type == MBHC_PLUG_TYPE_GND_MIC_SWAP && mbhc->btn_press_intr) {
  650. pr_debug("%s: insertion of headphone with swap\n", __func__);
  651. wcd_cancel_btn_work(mbhc);
  652. plug_type = MBHC_PLUG_TYPE_HEADPHONE;
  653. }
  654. pr_debug("%s: Valid plug found, plug type %d wrk_cmpt %d btn_intr %d\n",
  655. __func__, plug_type, wrk_complete,
  656. mbhc->btn_press_intr);
  657. WCD_MBHC_RSC_LOCK(mbhc);
  658. wcd_mbhc_find_plug_and_report(mbhc, plug_type);
  659. WCD_MBHC_RSC_UNLOCK(mbhc);
  660. enable_supply:
  661. if (mbhc->mbhc_cb->mbhc_micbias_control)
  662. wcd_mbhc_update_fsm_source(mbhc, plug_type);
  663. else
  664. wcd_enable_mbhc_supply(mbhc, plug_type);
  665. exit:
  666. if (mbhc->mbhc_cb->mbhc_micbias_control &&
  667. !mbhc->micbias_enable)
  668. mbhc->mbhc_cb->mbhc_micbias_control(codec, MIC_BIAS_2,
  669. MICB_DISABLE);
  670. /*
  671. * If plug type is corrected from special headset to headphone,
  672. * clear the micbias enable flag, set micbias back to 1.8V and
  673. * disable micbias.
  674. */
  675. if (plug_type == MBHC_PLUG_TYPE_HEADPHONE &&
  676. mbhc->micbias_enable) {
  677. if (mbhc->mbhc_cb->mbhc_micbias_control)
  678. mbhc->mbhc_cb->mbhc_micbias_control(
  679. codec, MIC_BIAS_2,
  680. MICB_DISABLE);
  681. if (mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic)
  682. mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(
  683. codec,
  684. MIC_BIAS_2, false);
  685. if (mbhc->mbhc_cb->set_micbias_value) {
  686. mbhc->mbhc_cb->set_micbias_value(codec);
  687. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MICB_CTRL, 0);
  688. }
  689. mbhc->micbias_enable = false;
  690. }
  691. if (mbhc->mbhc_cb->micbias_enable_status) {
  692. micbias1 = mbhc->mbhc_cb->micbias_enable_status(mbhc,
  693. MIC_BIAS_1);
  694. micbias2 = mbhc->mbhc_cb->micbias_enable_status(mbhc,
  695. MIC_BIAS_2);
  696. }
  697. if (mbhc->mbhc_cfg->detect_extn_cable &&
  698. ((plug_type == MBHC_PLUG_TYPE_HEADPHONE) ||
  699. (plug_type == MBHC_PLUG_TYPE_HEADSET)) &&
  700. !mbhc->hs_detect_work_stop) {
  701. WCD_MBHC_RSC_LOCK(mbhc);
  702. wcd_mbhc_hs_elec_irq(mbhc, WCD_MBHC_ELEC_HS_REM, true);
  703. WCD_MBHC_RSC_UNLOCK(mbhc);
  704. }
  705. if (mbhc->mbhc_cb->set_cap_mode)
  706. mbhc->mbhc_cb->set_cap_mode(codec, micbias1, micbias2);
  707. if (mbhc->mbhc_cb->hph_pull_down_ctrl)
  708. mbhc->mbhc_cb->hph_pull_down_ctrl(codec, true);
  709. mbhc->mbhc_cb->lock_sleep(mbhc, false);
  710. pr_debug("%s: leave\n", __func__);
  711. }
  712. static irqreturn_t wcd_mbhc_hs_rem_irq(int irq, void *data)
  713. {
  714. struct wcd_mbhc *mbhc = data;
  715. u8 hs_comp_result = 0, hphl_sch = 0, mic_sch = 0;
  716. static u16 hphl_trigerred;
  717. static u16 mic_trigerred;
  718. unsigned long timeout;
  719. bool removed = true;
  720. int retry = 0;
  721. bool hphpa_on = false;
  722. u8 moisture_status = 0;
  723. pr_debug("%s: enter\n", __func__);
  724. WCD_MBHC_RSC_LOCK(mbhc);
  725. timeout = jiffies +
  726. msecs_to_jiffies(WCD_FAKE_REMOVAL_MIN_PERIOD_MS);
  727. do {
  728. retry++;
  729. /*
  730. * read the result register every 10ms to look for
  731. * any change in HS_COMP_RESULT bit
  732. */
  733. usleep_range(10000, 10100);
  734. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_result);
  735. pr_debug("%s: Check result reg for fake removal: hs_comp_res %x\n",
  736. __func__, hs_comp_result);
  737. if ((!hs_comp_result) &&
  738. retry > FAKE_REM_RETRY_ATTEMPTS) {
  739. removed = false;
  740. break;
  741. }
  742. } while (!time_after(jiffies, timeout));
  743. if (wcd_swch_level_remove(mbhc)) {
  744. pr_debug("%s: Switch level is low ", __func__);
  745. goto exit;
  746. }
  747. pr_debug("%s: headset %s actually removed\n", __func__,
  748. removed ? "" : "not ");
  749. WCD_MBHC_REG_READ(WCD_MBHC_HPHL_SCHMT_RESULT, hphl_sch);
  750. WCD_MBHC_REG_READ(WCD_MBHC_MIC_SCHMT_RESULT, mic_sch);
  751. WCD_MBHC_REG_READ(WCD_MBHC_HS_COMP_RESULT, hs_comp_result);
  752. if (removed) {
  753. if (mbhc->mbhc_cfg->moisture_en) {
  754. if (mbhc->mbhc_cb->hph_pa_on_status)
  755. if (
  756. mbhc->mbhc_cb->hph_pa_on_status(mbhc->codec)) {
  757. hphpa_on = true;
  758. WCD_MBHC_REG_UPDATE_BITS(
  759. WCD_MBHC_HPHL_PA_EN, 0);
  760. WCD_MBHC_REG_UPDATE_BITS(
  761. WCD_MBHC_HPH_PA_EN, 0);
  762. }
  763. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPHR_GND, 1);
  764. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPHL_GND, 1);
  765. /* wait for 50ms to get moisture status */
  766. usleep_range(50000, 50100);
  767. WCD_MBHC_REG_READ(
  768. WCD_MBHC_MOISTURE_STATUS, moisture_status);
  769. }
  770. if (mbhc->mbhc_cfg->moisture_en && !moisture_status) {
  771. pr_debug("%s: moisture present in jack\n", __func__);
  772. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_L_DET_EN, 0);
  773. WCD_MBHC_REG_UPDATE_BITS(
  774. WCD_MBHC_MECH_DETECTION_TYPE, 1);
  775. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_L_DET_EN, 1);
  776. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  777. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 0);
  778. mbhc->btn_press_intr = false;
  779. mbhc->is_btn_press = false;
  780. if (mbhc->current_plug == MBHC_PLUG_TYPE_HEADSET)
  781. wcd_mbhc_report_plug(
  782. mbhc, 0, SND_JACK_HEADSET);
  783. else if (mbhc->current_plug ==
  784. MBHC_PLUG_TYPE_HEADPHONE)
  785. wcd_mbhc_report_plug(
  786. mbhc, 0, SND_JACK_HEADPHONE);
  787. else if (mbhc->current_plug ==
  788. MBHC_PLUG_TYPE_GND_MIC_SWAP)
  789. wcd_mbhc_report_plug(
  790. mbhc, 0, SND_JACK_UNSUPPORTED);
  791. else if (mbhc->current_plug ==
  792. MBHC_PLUG_TYPE_HIGH_HPH)
  793. wcd_mbhc_report_plug(
  794. mbhc, 0, SND_JACK_LINEOUT);
  795. } else {
  796. if (!(hphl_sch && mic_sch && hs_comp_result)) {
  797. /*
  798. * extension cable is still plugged in
  799. * report it as LINEOUT device
  800. */
  801. goto report_unplug;
  802. } else {
  803. if (!mic_sch) {
  804. mic_trigerred++;
  805. pr_debug(
  806. "%s: Removal MIC trigerred %d\n",
  807. __func__, mic_trigerred);
  808. }
  809. if (!hphl_sch) {
  810. hphl_trigerred++;
  811. pr_debug(
  812. "%s: Removal HPHL trigerred %d\n",
  813. __func__, hphl_trigerred);
  814. }
  815. if (mic_trigerred && hphl_trigerred) {
  816. /*
  817. * extension cable is still plugged in
  818. * report it as LINEOUT device
  819. */
  820. goto report_unplug;
  821. }
  822. }
  823. }
  824. }
  825. exit:
  826. WCD_MBHC_RSC_UNLOCK(mbhc);
  827. pr_debug("%s: leave\n", __func__);
  828. return IRQ_HANDLED;
  829. report_unplug:
  830. wcd_mbhc_elec_hs_report_unplug(mbhc);
  831. if (hphpa_on) {
  832. hphpa_on = false;
  833. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPHL_PA_EN, 1);
  834. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPH_PA_EN, 1);
  835. }
  836. hphl_trigerred = 0;
  837. mic_trigerred = 0;
  838. WCD_MBHC_RSC_UNLOCK(mbhc);
  839. pr_debug("%s: leave\n", __func__);
  840. return IRQ_HANDLED;
  841. }
  842. static irqreturn_t wcd_mbhc_hs_ins_irq(int irq, void *data)
  843. {
  844. struct wcd_mbhc *mbhc = data;
  845. bool detection_type = 0, hphl_sch = 0, mic_sch = 0;
  846. u16 elect_result = 0;
  847. static u16 hphl_trigerred;
  848. static u16 mic_trigerred;
  849. pr_debug("%s: enter\n", __func__);
  850. if (!mbhc->mbhc_cfg->detect_extn_cable) {
  851. pr_debug("%s: Returning as Extension cable feature not enabled\n",
  852. __func__);
  853. return IRQ_HANDLED;
  854. }
  855. WCD_MBHC_RSC_LOCK(mbhc);
  856. WCD_MBHC_REG_READ(WCD_MBHC_ELECT_DETECTION_TYPE, detection_type);
  857. WCD_MBHC_REG_READ(WCD_MBHC_ELECT_RESULT, elect_result);
  858. pr_debug("%s: detection_type %d, elect_result %x\n", __func__,
  859. detection_type, elect_result);
  860. if (detection_type) {
  861. /* check if both Left and MIC Schmitt triggers are triggered */
  862. WCD_MBHC_REG_READ(WCD_MBHC_HPHL_SCHMT_RESULT, hphl_sch);
  863. WCD_MBHC_REG_READ(WCD_MBHC_MIC_SCHMT_RESULT, mic_sch);
  864. if (hphl_sch && mic_sch) {
  865. /* Go for plug type determination */
  866. pr_debug("%s: Go for plug type determination\n",
  867. __func__);
  868. goto determine_plug;
  869. } else {
  870. if (mic_sch) {
  871. mic_trigerred++;
  872. pr_debug("%s: Insertion MIC trigerred %d\n",
  873. __func__, mic_trigerred);
  874. WCD_MBHC_REG_UPDATE_BITS(
  875. WCD_MBHC_ELECT_SCHMT_ISRC,
  876. 0);
  877. msleep(20);
  878. WCD_MBHC_REG_UPDATE_BITS(
  879. WCD_MBHC_ELECT_SCHMT_ISRC,
  880. 1);
  881. }
  882. if (hphl_sch) {
  883. hphl_trigerred++;
  884. pr_debug("%s: Insertion HPHL trigerred %d\n",
  885. __func__, hphl_trigerred);
  886. }
  887. if (mic_trigerred && hphl_trigerred) {
  888. /* Go for plug type determination */
  889. pr_debug("%s: Go for plug type determination\n",
  890. __func__);
  891. goto determine_plug;
  892. }
  893. }
  894. }
  895. WCD_MBHC_RSC_UNLOCK(mbhc);
  896. pr_debug("%s: leave\n", __func__);
  897. return IRQ_HANDLED;
  898. determine_plug:
  899. /*
  900. * Disable HPHL trigger and MIC Schmitt triggers.
  901. * Setup for insertion detection.
  902. */
  903. pr_debug("%s: Disable insertion interrupt\n", __func__);
  904. wcd_mbhc_hs_elec_irq(mbhc, WCD_MBHC_ELEC_HS_INS,
  905. false);
  906. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_SCHMT_ISRC, 0);
  907. hphl_trigerred = 0;
  908. mic_trigerred = 0;
  909. mbhc->is_extn_cable = true;
  910. mbhc->btn_press_intr = false;
  911. wcd_mbhc_detect_plug_type(mbhc);
  912. WCD_MBHC_RSC_UNLOCK(mbhc);
  913. pr_debug("%s: leave\n", __func__);
  914. return IRQ_HANDLED;
  915. }
  916. static struct wcd_mbhc_fn mbhc_fn = {
  917. .wcd_mbhc_hs_ins_irq = wcd_mbhc_hs_ins_irq,
  918. .wcd_mbhc_hs_rem_irq = wcd_mbhc_hs_rem_irq,
  919. .wcd_mbhc_detect_plug_type = wcd_mbhc_detect_plug_type,
  920. .wcd_mbhc_detect_anc_plug_type = wcd_mbhc_detect_anc_plug_type,
  921. .wcd_cancel_hs_detect_plug = wcd_cancel_hs_detect_plug,
  922. };
  923. /* Function: wcd_mbhc_legacy_init
  924. * @mbhc: MBHC function pointer
  925. * Description: Initialize MBHC legacy based function pointers to MBHC structure
  926. */
  927. void wcd_mbhc_legacy_init(struct wcd_mbhc *mbhc)
  928. {
  929. if (!mbhc) {
  930. pr_err("%s: mbhc is NULL\n", __func__);
  931. return;
  932. }
  933. mbhc->mbhc_fn = &mbhc_fn;
  934. INIT_WORK(&mbhc->correct_plug_swch, wcd_correct_swch_plug);
  935. }
  936. EXPORT_SYMBOL(wcd_mbhc_legacy_init);