wcd-mbhc-adc.c 31 KB

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