wcd-mbhc-adc.c 31 KB

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