wcd-mbhc-adc.c 31 KB

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