wcd-mbhc-adc.c 34 KB

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