wcd-mbhc-adc.c 31 KB

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