wcd-mbhc-adc.c 35 KB

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