wcd-mbhc-v2.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2015-2021, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/module.h>
  5. #include <linux/init.h>
  6. #include <linux/slab.h>
  7. #include <linux/of_gpio.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/device.h>
  10. #include <linux/printk.h>
  11. #include <linux/ratelimit.h>
  12. #include <linux/list.h>
  13. #include <linux/bitops.h>
  14. #include <linux/delay.h>
  15. #include <linux/pm_runtime.h>
  16. #include <linux/kernel.h>
  17. #include <linux/input.h>
  18. #include <linux/firmware.h>
  19. #include <linux/completion.h>
  20. #if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  21. #include <linux/soc/qcom/wcd939x-i2c.h>
  22. #endif
  23. #if IS_ENABLED(CONFIG_QCOM_FSA4480_I2C)
  24. #include <linux/soc/qcom/fsa4480-i2c.h>
  25. #endif
  26. #include <linux/usb/typec.h>
  27. #include <sound/soc.h>
  28. #include <sound/jack.h>
  29. #include <asoc/msm-cdc-pinctrl.h>
  30. #include <asoc/wcdcal-hwdep.h>
  31. #include "wcd-mbhc-legacy.h"
  32. #include "wcd-mbhc-adc.h"
  33. #include <asoc/wcd-mbhc-v2-api.h>
  34. static const unsigned int mbhc_ext_dev_supported_table[] = {
  35. EXTCON_JACK_MICROPHONE,
  36. EXTCON_JACK_HEADPHONE,
  37. EXTCON_JACK_LINE_OUT,
  38. EXTCON_MECHANICAL,
  39. EXTCON_NONE,
  40. };
  41. struct mutex hphl_pa_lock;
  42. struct mutex hphr_pa_lock;
  43. void wcd_mbhc_jack_report(struct wcd_mbhc *mbhc,
  44. struct snd_soc_jack *jack, int status, int mask)
  45. {
  46. snd_soc_jack_report(jack, status, mask);
  47. }
  48. EXPORT_SYMBOL(wcd_mbhc_jack_report);
  49. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  50. static void __hphocp_off_report(struct wcd_mbhc *mbhc, u32 jack_status,
  51. int irq)
  52. {
  53. struct snd_soc_component *component = mbhc->component;
  54. dev_dbg(component->dev, "%s: clear ocp status %x\n",
  55. __func__, jack_status);
  56. if (mbhc->hph_status & jack_status) {
  57. mbhc->hph_status &= ~jack_status;
  58. wcd_mbhc_jack_report(mbhc, &mbhc->headset_jack,
  59. mbhc->hph_status, WCD_MBHC_JACK_MASK);
  60. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_OCP_FSM_EN, 0);
  61. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_OCP_FSM_EN, 1);
  62. /*
  63. * reset retry counter as PA is turned off signifying
  64. * start of new OCP detection session
  65. */
  66. if (mbhc->intr_ids->hph_left_ocp)
  67. mbhc->hphlocp_cnt = 0;
  68. else
  69. mbhc->hphrocp_cnt = 0;
  70. mbhc->mbhc_cb->irq_control(component, irq, true);
  71. }
  72. }
  73. static void hphrocp_off_report(struct wcd_mbhc *mbhc, u32 jack_status)
  74. {
  75. __hphocp_off_report(mbhc, SND_JACK_OC_HPHR,
  76. mbhc->intr_ids->hph_right_ocp);
  77. }
  78. static void hphlocp_off_report(struct wcd_mbhc *mbhc, u32 jack_status)
  79. {
  80. __hphocp_off_report(mbhc, SND_JACK_OC_HPHL,
  81. mbhc->intr_ids->hph_left_ocp);
  82. }
  83. #endif /* CONFIG_AUDIO_QGKI */
  84. static void wcd_program_hs_vref(struct wcd_mbhc *mbhc)
  85. {
  86. struct wcd_mbhc_plug_type_cfg *plug_type_cfg;
  87. struct snd_soc_component *component = mbhc->component;
  88. u32 reg_val;
  89. plug_type_cfg = WCD_MBHC_CAL_PLUG_TYPE_PTR(
  90. mbhc->mbhc_cfg->calibration);
  91. reg_val = ((plug_type_cfg->v_hs_max - HS_VREF_MIN_VAL) / 100);
  92. dev_dbg(component->dev, "%s: reg_val = %x\n",
  93. __func__, reg_val);
  94. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HS_VREF, reg_val);
  95. }
  96. static void wcd_program_btn_threshold(const struct wcd_mbhc *mbhc, bool micbias)
  97. {
  98. struct wcd_mbhc_btn_detect_cfg *btn_det;
  99. struct snd_soc_component *component = mbhc->component;
  100. struct snd_soc_card *card = component->card;
  101. s16 *btn_low, *btn_high;
  102. if (mbhc->mbhc_cfg->calibration == NULL) {
  103. dev_err(card->dev, "%s: calibration data is NULL\n", __func__);
  104. return;
  105. }
  106. btn_det = WCD_MBHC_CAL_BTN_DET_PTR(mbhc->mbhc_cfg->calibration);
  107. btn_low = btn_det->_v_btn_low;
  108. btn_high = ((void *)&btn_det->_v_btn_low) +
  109. (sizeof(btn_det->_v_btn_low[0]) * btn_det->num_btn);
  110. mbhc->mbhc_cb->set_btn_thr(component, btn_low, btn_high,
  111. btn_det->num_btn, micbias);
  112. }
  113. void wcd_enable_curr_micbias(const struct wcd_mbhc *mbhc,
  114. const enum wcd_mbhc_cs_mb_en_flag cs_mb_en)
  115. {
  116. /*
  117. * Some codecs handle micbias/pullup enablement in codec
  118. * drivers itself and micbias is not needed for regular
  119. * plug type detection. So if micbias_control callback function
  120. * is defined, just return.
  121. */
  122. if (mbhc->mbhc_cb->mbhc_micbias_control)
  123. return;
  124. pr_debug("%s: enter, cs_mb_en: %d\n", __func__, cs_mb_en);
  125. switch (cs_mb_en) {
  126. case WCD_MBHC_EN_CS:
  127. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MICB_CTRL, 0);
  128. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 3);
  129. /* Program Button threshold registers as per CS */
  130. wcd_program_btn_threshold(mbhc, false);
  131. break;
  132. case WCD_MBHC_EN_MB:
  133. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 0);
  134. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  135. /* Disable PULL_UP_EN & enable MICBIAS */
  136. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MICB_CTRL, 2);
  137. /* Program Button threshold registers as per MICBIAS */
  138. wcd_program_btn_threshold(mbhc, true);
  139. break;
  140. case WCD_MBHC_EN_PULLUP:
  141. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 3);
  142. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  143. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MICB_CTRL, 1);
  144. /* Program Button threshold registers as per MICBIAS */
  145. wcd_program_btn_threshold(mbhc, true);
  146. break;
  147. case WCD_MBHC_EN_NONE:
  148. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 0);
  149. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  150. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MICB_CTRL, 0);
  151. break;
  152. default:
  153. pr_debug("%s: Invalid parameter", __func__);
  154. break;
  155. }
  156. pr_debug("%s: exit\n", __func__);
  157. }
  158. EXPORT_SYMBOL(wcd_enable_curr_micbias);
  159. static const char *wcd_mbhc_get_event_string(int event)
  160. {
  161. switch (event) {
  162. case WCD_EVENT_PRE_MICBIAS_2_OFF:
  163. return WCD_MBHC_STRINGIFY(WCD_EVENT_PRE_MICBIAS_2_OFF);
  164. case WCD_EVENT_POST_MICBIAS_2_OFF:
  165. return WCD_MBHC_STRINGIFY(WCD_EVENT_POST_MICBIAS_2_OFF);
  166. case WCD_EVENT_PRE_MICBIAS_2_ON:
  167. return WCD_MBHC_STRINGIFY(WCD_EVENT_PRE_MICBIAS_2_ON);
  168. case WCD_EVENT_POST_MICBIAS_2_ON:
  169. return WCD_MBHC_STRINGIFY(WCD_EVENT_POST_MICBIAS_2_ON);
  170. case WCD_EVENT_PRE_HPHL_PA_ON:
  171. return WCD_MBHC_STRINGIFY(WCD_EVENT_PRE_HPHL_PA_ON);
  172. case WCD_EVENT_POST_HPHL_PA_OFF:
  173. return WCD_MBHC_STRINGIFY(WCD_EVENT_POST_HPHL_PA_OFF);
  174. case WCD_EVENT_PRE_HPHR_PA_ON:
  175. return WCD_MBHC_STRINGIFY(WCD_EVENT_PRE_HPHR_PA_ON);
  176. case WCD_EVENT_POST_HPHR_PA_OFF:
  177. return WCD_MBHC_STRINGIFY(WCD_EVENT_POST_HPHR_PA_OFF);
  178. case WCD_EVENT_PRE_HPHR_PA_OFF:
  179. return WCD_MBHC_STRINGIFY(WCD_EVENT_PRE_HPHR_PA_OFF);
  180. case WCD_EVENT_PRE_HPHL_PA_OFF:
  181. return WCD_MBHC_STRINGIFY(WCD_EVENT_PRE_HPHL_PA_OFF);
  182. case WCD_EVENT_POST_DAPM_MICBIAS_2_ON:
  183. return WCD_MBHC_STRINGIFY(WCD_EVENT_POST_DAPM_MICBIAS_2_ON);
  184. case WCD_EVENT_PRE_DAPM_MICBIAS_2_ON:
  185. return WCD_MBHC_STRINGIFY(WCD_EVENT_PRE_DAPM_MICBIAS_2_ON);
  186. case WCD_EVENT_POST_DAPM_MICBIAS_2_OFF:
  187. return WCD_MBHC_STRINGIFY(WCD_EVENT_POST_DAPM_MICBIAS_2_OFF);
  188. case WCD_EVENT_PRE_DAPM_MICBIAS_2_OFF:
  189. return WCD_MBHC_STRINGIFY(WCD_EVENT_PRE_DAPM_MICBIAS_2_OFF);
  190. case WCD_EVENT_OCP_OFF:
  191. return WCD_MBHC_STRINGIFY(WCD_EVENT_OCP_OFF);
  192. case WCD_EVENT_OCP_ON:
  193. return WCD_MBHC_STRINGIFY(WCD_EVENT_OCP_ON);
  194. case WCD_EVENT_INVALID:
  195. default:
  196. return WCD_MBHC_STRINGIFY(WCD_EVENT_INVALID);
  197. }
  198. }
  199. static int wcd_event_notify(struct notifier_block *self, unsigned long val,
  200. void *data)
  201. {
  202. struct wcd_mbhc *mbhc = (struct wcd_mbhc *)data;
  203. enum wcd_notify_event event = (enum wcd_notify_event)val;
  204. struct snd_soc_component *component = mbhc->component;
  205. bool micbias2 = false;
  206. bool micbias1 = false;
  207. u8 fsm_en = 0;
  208. pr_debug("%s: event %s (%d)\n", __func__,
  209. wcd_mbhc_get_event_string(event), event);
  210. if (mbhc->mbhc_cb->micbias_enable_status) {
  211. micbias2 = mbhc->mbhc_cb->micbias_enable_status(mbhc,
  212. MIC_BIAS_2);
  213. micbias1 = mbhc->mbhc_cb->micbias_enable_status(mbhc,
  214. MIC_BIAS_1);
  215. }
  216. switch (event) {
  217. /* MICBIAS usage change */
  218. case WCD_EVENT_POST_DAPM_MICBIAS_2_ON:
  219. mbhc->is_hs_recording = true;
  220. pr_debug("%s: is_capture: %d\n", __func__,
  221. mbhc->is_hs_recording);
  222. break;
  223. case WCD_EVENT_POST_MICBIAS_2_ON:
  224. if (!mbhc->micbias_enable)
  225. goto out_micb_en;
  226. if (mbhc->mbhc_cb->mbhc_common_micb_ctrl) {
  227. mbhc->mbhc_cb->mbhc_common_micb_ctrl(component,
  228. MBHC_COMMON_MICB_PRECHARGE,
  229. true);
  230. mbhc->mbhc_cb->mbhc_common_micb_ctrl(component,
  231. MBHC_COMMON_MICB_SET_VAL,
  232. true);
  233. /*
  234. * Special headset needs MICBIAS as 2.7V so wait for
  235. * 50 msec for the MICBIAS to reach 2.7 volts.
  236. */
  237. msleep(50);
  238. }
  239. if (mbhc->mbhc_cb->set_auto_zeroing)
  240. mbhc->mbhc_cb->set_auto_zeroing(component, true);
  241. if (mbhc->mbhc_cb->mbhc_common_micb_ctrl)
  242. mbhc->mbhc_cb->mbhc_common_micb_ctrl(component,
  243. MBHC_COMMON_MICB_PRECHARGE,
  244. false);
  245. out_micb_en:
  246. /* Disable current source if micbias enabled */
  247. if (mbhc->mbhc_cb->mbhc_micbias_control) {
  248. WCD_MBHC_REG_READ(WCD_MBHC_FSM_EN, fsm_en);
  249. if (fsm_en)
  250. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL,
  251. 0);
  252. } else {
  253. mbhc->is_hs_recording = true;
  254. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  255. }
  256. /* configure cap settings properly when micbias is enabled */
  257. if (mbhc->mbhc_cb->set_cap_mode)
  258. mbhc->mbhc_cb->set_cap_mode(component, micbias1, true);
  259. break;
  260. case WCD_EVENT_PRE_MICBIAS_2_OFF:
  261. /*
  262. * Before MICBIAS_2 is turned off, if FSM is enabled,
  263. * make sure current source is enabled so as to detect
  264. * button press/release events
  265. */
  266. if (mbhc->mbhc_cb->mbhc_micbias_control &&
  267. !mbhc->micbias_enable) {
  268. WCD_MBHC_REG_READ(WCD_MBHC_FSM_EN, fsm_en);
  269. if (fsm_en)
  270. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL,
  271. 3);
  272. }
  273. break;
  274. /* MICBIAS usage change */
  275. case WCD_EVENT_POST_DAPM_MICBIAS_2_OFF:
  276. mbhc->is_hs_recording = false;
  277. pr_debug("%s: is_capture: %d\n", __func__,
  278. mbhc->is_hs_recording);
  279. break;
  280. case WCD_EVENT_POST_MICBIAS_2_OFF:
  281. if (!mbhc->mbhc_cb->mbhc_micbias_control)
  282. mbhc->is_hs_recording = false;
  283. if (mbhc->micbias_enable) {
  284. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  285. break;
  286. }
  287. if (mbhc->mbhc_cb->set_auto_zeroing)
  288. mbhc->mbhc_cb->set_auto_zeroing(component, false);
  289. if (mbhc->mbhc_cb->set_micbias_value && !mbhc->micbias_enable)
  290. mbhc->mbhc_cb->set_micbias_value(component);
  291. /* Enable PULL UP if PA's are enabled */
  292. if ((test_bit(WCD_MBHC_EVENT_PA_HPHL, &mbhc->event_state)) ||
  293. (test_bit(WCD_MBHC_EVENT_PA_HPHR,
  294. &mbhc->event_state)))
  295. /* enable pullup and cs, disable mb */
  296. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_PULLUP);
  297. else
  298. /* enable current source and disable mb, pullup*/
  299. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_CS);
  300. /* configure cap settings properly when micbias is disabled */
  301. if (mbhc->mbhc_cb->set_cap_mode)
  302. mbhc->mbhc_cb->set_cap_mode(component, micbias1, false);
  303. break;
  304. case WCD_EVENT_PRE_HPHL_PA_OFF:
  305. break;
  306. case WCD_EVENT_POST_HPHL_PA_OFF:
  307. mutex_lock(&hphl_pa_lock);
  308. clear_bit(WCD_MBHC_HPHL_PA_OFF_ACK, &mbhc->hph_pa_dac_state);
  309. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  310. if (mbhc->hph_status & SND_JACK_OC_HPHL)
  311. hphlocp_off_report(mbhc, SND_JACK_OC_HPHL);
  312. #endif /* CONFIG_AUDIO_QGKI */
  313. clear_bit(WCD_MBHC_EVENT_PA_HPHL, &mbhc->event_state);
  314. /* check if micbias is enabled */
  315. if (micbias2)
  316. /* Disable cs, pullup & enable micbias */
  317. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  318. else
  319. /* Disable micbias, pullup & enable cs */
  320. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_CS);
  321. mutex_unlock(&hphl_pa_lock);
  322. clear_bit(WCD_MBHC_ANC0_OFF_ACK, &mbhc->hph_anc_state);
  323. break;
  324. case WCD_EVENT_PRE_HPHR_PA_OFF:
  325. break;
  326. case WCD_EVENT_POST_HPHR_PA_OFF:
  327. mutex_lock(&hphr_pa_lock);
  328. clear_bit(WCD_MBHC_HPHR_PA_OFF_ACK, &mbhc->hph_pa_dac_state);
  329. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  330. if (mbhc->hph_status & SND_JACK_OC_HPHR)
  331. hphrocp_off_report(mbhc, SND_JACK_OC_HPHR);
  332. #endif /* CONFIG_AUDIO_QGKI */
  333. clear_bit(WCD_MBHC_EVENT_PA_HPHR, &mbhc->event_state);
  334. /* check if micbias is enabled */
  335. if (micbias2)
  336. /* Disable cs, pullup & enable micbias */
  337. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  338. else
  339. /* Disable micbias, pullup & enable cs */
  340. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_CS);
  341. mutex_unlock(&hphr_pa_lock);
  342. clear_bit(WCD_MBHC_ANC1_OFF_ACK, &mbhc->hph_anc_state);
  343. break;
  344. case WCD_EVENT_PRE_HPHL_PA_ON:
  345. set_bit(WCD_MBHC_EVENT_PA_HPHL, &mbhc->event_state);
  346. /* check if micbias is enabled */
  347. if (micbias2)
  348. /* Disable cs, pullup & enable micbias */
  349. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  350. else
  351. /* Disable micbias, enable pullup & cs */
  352. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_PULLUP);
  353. break;
  354. case WCD_EVENT_PRE_HPHR_PA_ON:
  355. set_bit(WCD_MBHC_EVENT_PA_HPHR, &mbhc->event_state);
  356. /* check if micbias is enabled */
  357. if (micbias2)
  358. /* Disable cs, pullup & enable micbias */
  359. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  360. else
  361. /* Disable micbias, enable pullup & cs */
  362. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_PULLUP);
  363. break;
  364. case WCD_EVENT_OCP_OFF:
  365. mbhc->mbhc_cb->irq_control(mbhc->component,
  366. mbhc->intr_ids->hph_left_ocp,
  367. false);
  368. break;
  369. case WCD_EVENT_OCP_ON:
  370. mbhc->mbhc_cb->irq_control(mbhc->component,
  371. mbhc->intr_ids->hph_left_ocp,
  372. true);
  373. break;
  374. default:
  375. break;
  376. }
  377. return 0;
  378. }
  379. int wcd_cancel_btn_work(struct wcd_mbhc *mbhc)
  380. {
  381. int r;
  382. r = cancel_delayed_work_sync(&mbhc->mbhc_btn_dwork);
  383. /*
  384. * if scheduled mbhc.mbhc_btn_dwork is canceled from here,
  385. * we have to unlock from here instead btn_work
  386. */
  387. if (r)
  388. mbhc->mbhc_cb->lock_sleep(mbhc, false);
  389. return r;
  390. }
  391. EXPORT_SYMBOL(wcd_cancel_btn_work);
  392. bool wcd_swch_level_remove(struct wcd_mbhc *mbhc)
  393. {
  394. u16 result2 = 0;
  395. WCD_MBHC_REG_READ(WCD_MBHC_SWCH_LEVEL_REMOVE, result2);
  396. return (result2) ? true : false;
  397. }
  398. EXPORT_SYMBOL(wcd_swch_level_remove);
  399. static void wcd_mbhc_clr_and_turnon_hph_padac(struct wcd_mbhc *mbhc)
  400. {
  401. bool pa_turned_on = false;
  402. u8 wg_time = 0;
  403. WCD_MBHC_REG_READ(WCD_MBHC_HPH_CNP_WG_TIME, wg_time);
  404. wg_time += 1;
  405. mutex_lock(&hphr_pa_lock);
  406. if (test_and_clear_bit(WCD_MBHC_HPHR_PA_OFF_ACK,
  407. &mbhc->hph_pa_dac_state)) {
  408. pr_debug("%s: HPHR clear flag and enable PA\n", __func__);
  409. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPHR_PA_EN, 1);
  410. pa_turned_on = true;
  411. }
  412. mutex_unlock(&hphr_pa_lock);
  413. mutex_lock(&hphl_pa_lock);
  414. if (test_and_clear_bit(WCD_MBHC_HPHL_PA_OFF_ACK,
  415. &mbhc->hph_pa_dac_state)) {
  416. pr_debug("%s: HPHL clear flag and enable PA\n", __func__);
  417. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPHL_PA_EN, 1);
  418. pa_turned_on = true;
  419. }
  420. mutex_unlock(&hphl_pa_lock);
  421. if (pa_turned_on) {
  422. pr_debug("%s: PA was turned on by MBHC and not by DAPM\n",
  423. __func__);
  424. usleep_range(wg_time * 1000, wg_time * 1000 + 50);
  425. }
  426. if (test_and_clear_bit(WCD_MBHC_ANC0_OFF_ACK,
  427. &mbhc->hph_anc_state)) {
  428. usleep_range(20000, 20100);
  429. pr_debug("%s: HPHL ANC clear flag and enable ANC_EN\n",
  430. __func__);
  431. if (mbhc->mbhc_cb->update_anc_state)
  432. mbhc->mbhc_cb->update_anc_state(mbhc->component,
  433. true, 0);
  434. }
  435. if (test_and_clear_bit(WCD_MBHC_ANC1_OFF_ACK,
  436. &mbhc->hph_anc_state)) {
  437. usleep_range(20000, 20100);
  438. pr_debug("%s: HPHR ANC clear flag and enable ANC_EN\n",
  439. __func__);
  440. if (mbhc->mbhc_cb->update_anc_state)
  441. mbhc->mbhc_cb->update_anc_state(mbhc->component,
  442. true, 1);
  443. }
  444. }
  445. static bool wcd_mbhc_is_hph_pa_on(struct wcd_mbhc *mbhc)
  446. {
  447. bool hph_pa_on = false;
  448. WCD_MBHC_REG_READ(WCD_MBHC_HPH_PA_EN, hph_pa_on);
  449. return (hph_pa_on) ? true : false;
  450. }
  451. static void wcd_mbhc_set_and_turnoff_hph_padac(struct wcd_mbhc *mbhc)
  452. {
  453. u8 wg_time = 0;
  454. WCD_MBHC_REG_READ(WCD_MBHC_HPH_CNP_WG_TIME, wg_time);
  455. wg_time += 1;
  456. /* If headphone PA is on, check if userspace receives
  457. * removal event to sync-up PA's state
  458. */
  459. if (wcd_mbhc_is_hph_pa_on(mbhc)) {
  460. pr_debug("%s PA is on, setting PA_OFF_ACK\n", __func__);
  461. set_bit(WCD_MBHC_HPHL_PA_OFF_ACK, &mbhc->hph_pa_dac_state);
  462. set_bit(WCD_MBHC_HPHR_PA_OFF_ACK, &mbhc->hph_pa_dac_state);
  463. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPHL_OCP_DET_EN, 0);
  464. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPHR_OCP_DET_EN, 0);
  465. } else {
  466. pr_debug("%s PA is off\n", __func__);
  467. }
  468. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPH_PA_EN, 0);
  469. usleep_range(wg_time * 1000, wg_time * 1000 + 50);
  470. if (mbhc->mbhc_cb->is_anc_on && mbhc->mbhc_cb->is_anc_on(mbhc)) {
  471. usleep_range(20000, 20100);
  472. pr_debug("%s ANC is on, setting ANC_OFF_ACK\n", __func__);
  473. set_bit(WCD_MBHC_ANC0_OFF_ACK, &mbhc->hph_anc_state);
  474. set_bit(WCD_MBHC_ANC1_OFF_ACK, &mbhc->hph_anc_state);
  475. if (mbhc->mbhc_cb->update_anc_state) {
  476. mbhc->mbhc_cb->update_anc_state(mbhc->component,
  477. false, 0);
  478. mbhc->mbhc_cb->update_anc_state(mbhc->component,
  479. false, 1);
  480. } else {
  481. pr_debug("%s ANC is off\n", __func__);
  482. }
  483. }
  484. }
  485. int wcd_mbhc_get_impedance(struct wcd_mbhc *mbhc, uint32_t *zl,
  486. uint32_t *zr)
  487. {
  488. *zl = mbhc->zl;
  489. *zr = mbhc->zr;
  490. if (*zl && *zr)
  491. return 0;
  492. else
  493. return -EINVAL;
  494. }
  495. EXPORT_SYMBOL(wcd_mbhc_get_impedance);
  496. void wcd_mbhc_hs_elec_irq(struct wcd_mbhc *mbhc, int irq_type,
  497. bool enable)
  498. {
  499. int irq;
  500. WCD_MBHC_RSC_ASSERT_LOCKED(mbhc);
  501. if (irq_type == WCD_MBHC_ELEC_HS_INS)
  502. irq = mbhc->intr_ids->mbhc_hs_ins_intr;
  503. else if (irq_type == WCD_MBHC_ELEC_HS_REM)
  504. irq = mbhc->intr_ids->mbhc_hs_rem_intr;
  505. else {
  506. pr_debug("%s: irq_type: %d, enable: %d\n",
  507. __func__, irq_type, enable);
  508. return;
  509. }
  510. pr_debug("%s: irq: %d, enable: %d, intr_status:%lu\n",
  511. __func__, irq, enable, mbhc->intr_status);
  512. if ((test_bit(irq_type, &mbhc->intr_status)) != enable) {
  513. mbhc->mbhc_cb->irq_control(mbhc->component, irq, enable);
  514. if (enable)
  515. set_bit(irq_type, &mbhc->intr_status);
  516. else
  517. clear_bit(irq_type, &mbhc->intr_status);
  518. }
  519. }
  520. EXPORT_SYMBOL(wcd_mbhc_hs_elec_irq);
  521. void wcd_mbhc_report_plug(struct wcd_mbhc *mbhc, int insertion,
  522. enum snd_jack_types jack_type)
  523. {
  524. struct snd_soc_component *component = mbhc->component;
  525. bool is_pa_on = false;
  526. u8 fsm_en = 0;
  527. int extdev_type = 0;
  528. WCD_MBHC_RSC_ASSERT_LOCKED(mbhc);
  529. pr_debug("%s: enter insertion %d hph_status %x\n",
  530. __func__, insertion, mbhc->hph_status);
  531. if (!insertion) {
  532. /* Report removal */
  533. mbhc->hph_status &= ~jack_type;
  534. /*
  535. * cancel possibly scheduled btn work and
  536. * report release if we reported button press
  537. */
  538. if (wcd_cancel_btn_work(mbhc)) {
  539. pr_debug("%s: button press is canceled\n", __func__);
  540. } else if (mbhc->buttons_pressed) {
  541. pr_debug("%s: release of button press%d\n",
  542. __func__, jack_type);
  543. wcd_mbhc_jack_report(mbhc, &mbhc->button_jack, 0,
  544. mbhc->buttons_pressed);
  545. mbhc->buttons_pressed &=
  546. ~WCD_MBHC_JACK_BUTTON_MASK;
  547. }
  548. if (mbhc->micbias_enable) {
  549. if (mbhc->mbhc_cb->mbhc_micbias_control)
  550. mbhc->mbhc_cb->mbhc_micbias_control(
  551. component, MIC_BIAS_2,
  552. MICB_DISABLE);
  553. if (mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic)
  554. mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(
  555. component,
  556. MIC_BIAS_2, false);
  557. if (mbhc->mbhc_cb->set_micbias_value) {
  558. mbhc->mbhc_cb->set_micbias_value(component);
  559. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MICB_CTRL, 0);
  560. }
  561. mbhc->micbias_enable = false;
  562. }
  563. mbhc->hph_type = WCD_MBHC_HPH_NONE;
  564. mbhc->zl = mbhc->zr = 0;
  565. pr_debug("%s: Reporting removal %d(%x)\n", __func__,
  566. jack_type, mbhc->hph_status);
  567. wcd_mbhc_jack_report(mbhc, &mbhc->headset_jack,
  568. mbhc->hph_status, WCD_MBHC_JACK_MASK);
  569. wcd_mbhc_set_and_turnoff_hph_padac(mbhc);
  570. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  571. hphrocp_off_report(mbhc, SND_JACK_OC_HPHR);
  572. hphlocp_off_report(mbhc, SND_JACK_OC_HPHL);
  573. #endif /* CONFIG_AUDIO_QGKI */
  574. mbhc->current_plug = MBHC_PLUG_TYPE_NONE;
  575. mbhc->force_linein = false;
  576. } else {
  577. /*
  578. * Report removal of current jack type.
  579. * Headphone to headset shouldn't report headphone
  580. * removal.
  581. */
  582. if (mbhc->mbhc_cfg->detect_extn_cable &&
  583. (mbhc->current_plug == MBHC_PLUG_TYPE_HIGH_HPH ||
  584. jack_type == SND_JACK_LINEOUT) &&
  585. (mbhc->hph_status && mbhc->hph_status != jack_type)) {
  586. if (mbhc->micbias_enable &&
  587. mbhc->hph_status == SND_JACK_HEADSET) {
  588. if (mbhc->mbhc_cb->mbhc_micbias_control)
  589. mbhc->mbhc_cb->mbhc_micbias_control(
  590. component, MIC_BIAS_2,
  591. MICB_DISABLE);
  592. if (mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic)
  593. mbhc->mbhc_cb->mbhc_micb_ctrl_thr_mic(
  594. component,
  595. MIC_BIAS_2, false);
  596. if (mbhc->mbhc_cb->set_micbias_value) {
  597. mbhc->mbhc_cb->set_micbias_value(
  598. component);
  599. WCD_MBHC_REG_UPDATE_BITS(
  600. WCD_MBHC_MICB_CTRL, 0);
  601. }
  602. mbhc->micbias_enable = false;
  603. }
  604. mbhc->hph_type = WCD_MBHC_HPH_NONE;
  605. mbhc->zl = mbhc->zr = 0;
  606. if (!mbhc->force_linein) {
  607. pr_debug("%s: Reporting removal (%x)\n",
  608. __func__, mbhc->hph_status);
  609. wcd_mbhc_jack_report(mbhc, &mbhc->headset_jack,
  610. 0, WCD_MBHC_JACK_MASK);
  611. if (mbhc->current_plug == MBHC_PLUG_TYPE_HEADPHONE)
  612. extdev_type = EXTCON_JACK_HEADPHONE;
  613. else if (mbhc->current_plug == MBHC_PLUG_TYPE_HEADSET)
  614. extdev_type = EXTCON_JACK_MICROPHONE;
  615. else if (mbhc->current_plug == MBHC_PLUG_TYPE_HIGH_HPH)
  616. extdev_type = EXTCON_JACK_LINE_OUT;
  617. else if (mbhc->current_plug == MBHC_PLUG_TYPE_GND_MIC_SWAP)
  618. extdev_type = EXTCON_MECHANICAL;
  619. extcon_set_state_sync(mbhc->extdev, extdev_type, 0);
  620. }
  621. if (mbhc->hph_status == SND_JACK_LINEOUT) {
  622. pr_debug("%s: Enable micbias\n", __func__);
  623. /* Disable current source and enable micbias */
  624. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_MB);
  625. pr_debug("%s: set up elec removal detection\n",
  626. __func__);
  627. usleep_range(200, 210);
  628. wcd_mbhc_hs_elec_irq(mbhc,
  629. WCD_MBHC_ELEC_HS_REM,
  630. true);
  631. }
  632. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  633. mbhc->hph_status &= ~(SND_JACK_HEADSET |
  634. SND_JACK_LINEOUT |
  635. SND_JACK_UNSUPPORTED);
  636. #else
  637. mbhc->hph_status &= ~(SND_JACK_HEADSET |
  638. SND_JACK_LINEOUT);
  639. #endif /* CONFIG_AUDIO_QGKI */
  640. }
  641. if (mbhc->current_plug == MBHC_PLUG_TYPE_HEADSET &&
  642. jack_type == SND_JACK_HEADPHONE)
  643. mbhc->hph_status &= ~SND_JACK_HEADSET;
  644. /* Report insertion */
  645. if (jack_type == SND_JACK_HEADPHONE)
  646. mbhc->current_plug = MBHC_PLUG_TYPE_HEADPHONE;
  647. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  648. else if (jack_type == SND_JACK_UNSUPPORTED)
  649. mbhc->current_plug = MBHC_PLUG_TYPE_GND_MIC_SWAP;
  650. #endif /* CONFIG_AUDIO_QGKI */
  651. else if (jack_type == SND_JACK_HEADSET) {
  652. mbhc->current_plug = MBHC_PLUG_TYPE_HEADSET;
  653. mbhc->jiffies_atreport = jiffies;
  654. } else if (jack_type == SND_JACK_LINEOUT)
  655. mbhc->current_plug = MBHC_PLUG_TYPE_HIGH_HPH;
  656. else {
  657. pr_debug("%s: invalid Jack type %d\n",__func__, jack_type);
  658. }
  659. if (mbhc->mbhc_cb->hph_pa_on_status)
  660. is_pa_on = mbhc->mbhc_cb->hph_pa_on_status(component);
  661. if (mbhc->impedance_detect &&
  662. mbhc->mbhc_cb->compute_impedance &&
  663. (mbhc->mbhc_cfg->linein_th != 0) &&
  664. (!is_pa_on)) {
  665. /* Set MUX_CTL to AUTO for Z-det */
  666. WCD_MBHC_REG_READ(WCD_MBHC_FSM_EN, fsm_en);
  667. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  668. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MUX_CTL,
  669. MUX_CTL_AUTO);
  670. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 1);
  671. mbhc->mbhc_cb->compute_impedance(mbhc,
  672. &mbhc->zl, &mbhc->zr);
  673. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN,
  674. fsm_en);
  675. if ((mbhc->zl > mbhc->mbhc_cfg->linein_th) &&
  676. (mbhc->zr > mbhc->mbhc_cfg->linein_th) &&
  677. (jack_type == SND_JACK_HEADPHONE)) {
  678. jack_type = SND_JACK_LINEOUT;
  679. mbhc->force_linein = true;
  680. mbhc->current_plug = MBHC_PLUG_TYPE_HIGH_HPH;
  681. if (mbhc->hph_status) {
  682. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  683. mbhc->hph_status &= ~(SND_JACK_HEADSET |
  684. SND_JACK_LINEOUT |
  685. SND_JACK_UNSUPPORTED);
  686. #else
  687. mbhc->hph_status &= ~(SND_JACK_HEADSET |
  688. SND_JACK_LINEOUT);
  689. #endif /* CONFIG_AUDIO_QGKI */
  690. wcd_mbhc_jack_report(mbhc,
  691. &mbhc->headset_jack,
  692. mbhc->hph_status,
  693. WCD_MBHC_JACK_MASK);
  694. }
  695. pr_debug("%s: Marking jack type as SND_JACK_LINEOUT\n",
  696. __func__);
  697. }
  698. }
  699. /* Do not calculate impedance again for lineout
  700. * as during playback pa is on and impedance values
  701. * will not be correct resulting in lineout detected
  702. * as headphone.
  703. */
  704. if ((is_pa_on) && mbhc->force_linein == true) {
  705. jack_type = SND_JACK_LINEOUT;
  706. mbhc->current_plug = MBHC_PLUG_TYPE_HIGH_HPH;
  707. if (mbhc->hph_status) {
  708. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  709. mbhc->hph_status &= ~(SND_JACK_HEADSET |
  710. SND_JACK_LINEOUT |
  711. SND_JACK_UNSUPPORTED);
  712. #else
  713. mbhc->hph_status &= ~(SND_JACK_HEADSET |
  714. SND_JACK_LINEOUT);
  715. #endif /* CONFIG_AUDIO_QGKI */
  716. wcd_mbhc_jack_report(mbhc,
  717. &mbhc->headset_jack,
  718. mbhc->hph_status,
  719. WCD_MBHC_JACK_MASK);
  720. }
  721. }
  722. mbhc->hph_status |= jack_type;
  723. if (jack_type == SND_JACK_HEADPHONE &&
  724. mbhc->mbhc_cb->mbhc_micb_ramp_control)
  725. mbhc->mbhc_cb->mbhc_micb_ramp_control(component, false);
  726. pr_debug("%s: Reporting insertion %d(%x)\n", __func__,
  727. jack_type, mbhc->hph_status);
  728. wcd_mbhc_jack_report(mbhc, &mbhc->headset_jack,
  729. (mbhc->hph_status | SND_JACK_MECHANICAL),
  730. WCD_MBHC_JACK_MASK);
  731. wcd_mbhc_clr_and_turnon_hph_padac(mbhc);
  732. }
  733. pr_debug("%s: leave hph_status %x\n", __func__, mbhc->hph_status);
  734. }
  735. EXPORT_SYMBOL(wcd_mbhc_report_plug);
  736. void wcd_mbhc_elec_hs_report_unplug(struct wcd_mbhc *mbhc)
  737. {
  738. /* cancel pending button press */
  739. if (wcd_cancel_btn_work(mbhc))
  740. pr_debug("%s: button press is canceled\n", __func__);
  741. /* cancel correct work function */
  742. if (mbhc->mbhc_fn->wcd_cancel_hs_detect_plug)
  743. mbhc->mbhc_fn->wcd_cancel_hs_detect_plug(mbhc,
  744. &mbhc->correct_plug_swch);
  745. else
  746. pr_info("%s: hs_detect_plug work not cancelled\n", __func__);
  747. pr_debug("%s: Report extension cable\n", __func__);
  748. wcd_mbhc_report_plug(mbhc, 1, SND_JACK_LINEOUT);
  749. extcon_set_state_sync(mbhc->extdev, EXTCON_JACK_LINE_OUT, 1);
  750. /*
  751. * If PA is enabled HPHL schmitt trigger can
  752. * be unreliable, make sure to disable it
  753. */
  754. if (test_bit(WCD_MBHC_EVENT_PA_HPHL,
  755. &mbhc->event_state))
  756. wcd_mbhc_set_and_turnoff_hph_padac(mbhc);
  757. /*
  758. * Disable HPHL trigger and MIC Schmitt triggers.
  759. * Setup for insertion detection.
  760. */
  761. wcd_mbhc_hs_elec_irq(mbhc, WCD_MBHC_ELEC_HS_REM,
  762. false);
  763. wcd_enable_curr_micbias(mbhc, WCD_MBHC_EN_NONE);
  764. /* Disable HW FSM */
  765. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  766. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_SCHMT_ISRC, 3);
  767. /* Set the detection type appropriately */
  768. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_DETECTION_TYPE, 1);
  769. wcd_mbhc_hs_elec_irq(mbhc, WCD_MBHC_ELEC_HS_INS,
  770. true);
  771. }
  772. EXPORT_SYMBOL(wcd_mbhc_elec_hs_report_unplug);
  773. void wcd_mbhc_find_plug_and_report(struct wcd_mbhc *mbhc,
  774. enum wcd_mbhc_plug_type plug_type)
  775. {
  776. bool anc_mic_found = false;
  777. enum snd_jack_types jack_type;
  778. int ret = 0;
  779. if (mbhc->deinit_in_progress) {
  780. pr_info("%s: mbhc deinit in progess: ignore report\n", __func__);
  781. return;
  782. }
  783. pr_debug("%s: enter current_plug(%d) new_plug(%d)\n",
  784. __func__, mbhc->current_plug, plug_type);
  785. WCD_MBHC_RSC_ASSERT_LOCKED(mbhc);
  786. if (mbhc->current_plug == plug_type) {
  787. pr_debug("%s: cable already reported, exit\n", __func__);
  788. goto exit;
  789. }
  790. if (plug_type == MBHC_PLUG_TYPE_HEADPHONE) {
  791. /*
  792. * Nothing was reported previously
  793. * report a headphone or unsupported
  794. */
  795. wcd_mbhc_report_plug(mbhc, 1, SND_JACK_HEADPHONE);
  796. ret = extcon_set_state_sync(mbhc->extdev, EXTCON_JACK_HEADPHONE, 1);
  797. } else if (plug_type == MBHC_PLUG_TYPE_GND_MIC_SWAP) {
  798. if (mbhc->current_plug == MBHC_PLUG_TYPE_HEADPHONE) {
  799. wcd_mbhc_report_plug(mbhc, 0, SND_JACK_HEADPHONE);
  800. ret = extcon_set_state_sync(mbhc->extdev, EXTCON_JACK_HEADPHONE, 0);
  801. }
  802. if (mbhc->current_plug == MBHC_PLUG_TYPE_HEADSET) {
  803. wcd_mbhc_report_plug(mbhc, 0, SND_JACK_HEADSET);
  804. ret = extcon_set_state_sync(mbhc->extdev, EXTCON_JACK_MICROPHONE, 0);
  805. }
  806. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  807. wcd_mbhc_report_plug(mbhc, 1, SND_JACK_UNSUPPORTED);
  808. #endif /* CONFIG_AUDIO_QGKI */
  809. ret = extcon_set_state_sync(mbhc->extdev, EXTCON_MECHANICAL, 1);
  810. } else if (plug_type == MBHC_PLUG_TYPE_HEADSET) {
  811. if (mbhc->mbhc_cfg->enable_anc_mic_detect &&
  812. mbhc->mbhc_fn->wcd_mbhc_detect_anc_plug_type)
  813. anc_mic_found =
  814. mbhc->mbhc_fn->wcd_mbhc_detect_anc_plug_type(mbhc);
  815. jack_type = SND_JACK_HEADSET;
  816. /*
  817. * If Headphone was reported previously, this will
  818. * only report the mic line
  819. */
  820. wcd_mbhc_report_plug(mbhc, 1, jack_type);
  821. ret = extcon_set_state_sync(mbhc->extdev, EXTCON_JACK_MICROPHONE, 1);
  822. } else if (plug_type == MBHC_PLUG_TYPE_HIGH_HPH) {
  823. if (mbhc->mbhc_cfg->detect_extn_cable) {
  824. /* High impedance device found. Report as LINEOUT */
  825. wcd_mbhc_report_plug(mbhc, 1, SND_JACK_LINEOUT);
  826. ret = extcon_set_state_sync(mbhc->extdev, EXTCON_JACK_LINE_OUT, 1);
  827. pr_debug("%s: setup mic trigger for further detection\n",
  828. __func__);
  829. /* Disable HW FSM and current source */
  830. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  831. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 0);
  832. /* Setup for insertion detection */
  833. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_DETECTION_TYPE,
  834. 1);
  835. /*
  836. * Enable HPHL trigger and MIC Schmitt triggers
  837. * and request for elec insertion interrupts
  838. */
  839. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_SCHMT_ISRC,
  840. 3);
  841. wcd_mbhc_hs_elec_irq(mbhc, WCD_MBHC_ELEC_HS_INS,
  842. true);
  843. } else {
  844. wcd_mbhc_report_plug(mbhc, 1, SND_JACK_LINEOUT);
  845. ret = extcon_set_state_sync(mbhc->extdev, EXTCON_JACK_LINE_OUT, 1);
  846. }
  847. } else {
  848. WARN(1, "Unexpected current plug_type %d, plug_type %d\n",
  849. mbhc->current_plug, plug_type);
  850. }
  851. exit:
  852. pr_debug("%s: leave\n", __func__);
  853. }
  854. EXPORT_SYMBOL(wcd_mbhc_find_plug_and_report);
  855. static bool wcd_mbhc_moisture_detect(struct wcd_mbhc *mbhc, bool detection_type)
  856. {
  857. bool ret = false;
  858. if (!mbhc->mbhc_cfg->moisture_en &&
  859. !mbhc->mbhc_cfg->moisture_duty_cycle_en)
  860. return ret;
  861. if (!mbhc->mbhc_cb->mbhc_get_moisture_status ||
  862. !mbhc->mbhc_cb->mbhc_moisture_polling_ctrl ||
  863. !mbhc->mbhc_cb->mbhc_moisture_detect_en)
  864. return ret;
  865. if (mbhc->mbhc_cb->mbhc_get_moisture_status(mbhc)) {
  866. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_L_DET_EN, 0);
  867. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_GND_DET_EN, 0);
  868. mbhc->mbhc_cb->mbhc_moisture_polling_ctrl(mbhc, true);
  869. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MECH_DETECTION_TYPE,
  870. detection_type);
  871. ret = true;
  872. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_L_DET_EN, 1);
  873. if (mbhc->mbhc_cfg->gnd_det_en)
  874. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_GND_DET_EN, 1);
  875. } else {
  876. mbhc->mbhc_cb->mbhc_moisture_polling_ctrl(mbhc, false);
  877. mbhc->mbhc_cb->mbhc_moisture_detect_en(mbhc, false);
  878. }
  879. return ret;
  880. }
  881. static void wcd_mbhc_swch_irq_handler(struct wcd_mbhc *mbhc)
  882. {
  883. bool detection_type = 0;
  884. bool micbias1 = false;
  885. struct snd_soc_component *component = mbhc->component;
  886. enum snd_jack_types jack_type;
  887. int extdev_type = 0;
  888. dev_dbg(component->dev, "%s: enter\n", __func__);
  889. WCD_MBHC_RSC_LOCK(mbhc);
  890. mbhc->in_swch_irq_handler = true;
  891. /* cancel pending button press */
  892. if (wcd_cancel_btn_work(mbhc))
  893. pr_debug("%s: button press is canceled\n", __func__);
  894. WCD_MBHC_REG_READ(WCD_MBHC_MECH_DETECTION_TYPE, detection_type);
  895. /* Set the detection type appropriately */
  896. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_MECH_DETECTION_TYPE,
  897. !detection_type);
  898. pr_debug("%s: mbhc->current_plug: %d detection_type: %d\n", __func__,
  899. mbhc->current_plug, detection_type);
  900. if (mbhc->mbhc_fn->wcd_cancel_hs_detect_plug)
  901. mbhc->mbhc_fn->wcd_cancel_hs_detect_plug(mbhc,
  902. &mbhc->correct_plug_swch);
  903. else
  904. pr_info("%s: hs_detect_plug work not cancelled\n", __func__);
  905. /* Enable micbias ramp */
  906. if (mbhc->mbhc_cb->mbhc_micb_ramp_control)
  907. mbhc->mbhc_cb->mbhc_micb_ramp_control(component, true);
  908. if (mbhc->mbhc_cb->micbias_enable_status)
  909. micbias1 = mbhc->mbhc_cb->micbias_enable_status(mbhc,
  910. MIC_BIAS_1);
  911. if ((mbhc->current_plug == MBHC_PLUG_TYPE_NONE) &&
  912. detection_type) {
  913. /* If moisture is present, then enable polling, disable
  914. * moisture detection and wait for interrupt
  915. */
  916. if (wcd_mbhc_moisture_detect(mbhc, detection_type))
  917. goto done;
  918. /* Make sure MASTER_BIAS_CTL is enabled */
  919. mbhc->mbhc_cb->mbhc_bias(component, true);
  920. if (mbhc->mbhc_cb->mbhc_common_micb_ctrl)
  921. mbhc->mbhc_cb->mbhc_common_micb_ctrl(component,
  922. MBHC_COMMON_MICB_TAIL_CURR, true);
  923. if (!mbhc->mbhc_cfg->hs_ext_micbias &&
  924. mbhc->mbhc_cb->micb_internal)
  925. /*
  926. * Enable Tx2 RBias if the headset
  927. * is using internal micbias
  928. */
  929. mbhc->mbhc_cb->micb_internal(component, 1, true);
  930. /* Remove micbias pulldown */
  931. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_PULLDOWN_CTRL, 0);
  932. /* Apply trim if needed on the device */
  933. if (mbhc->mbhc_cb->trim_btn_reg)
  934. mbhc->mbhc_cb->trim_btn_reg(component);
  935. /* Enable external voltage source to micbias if present */
  936. if (mbhc->mbhc_cb->enable_mb_source)
  937. mbhc->mbhc_cb->enable_mb_source(mbhc, true);
  938. mbhc->btn_press_intr = false;
  939. mbhc->is_btn_press = false;
  940. if (mbhc->mbhc_fn)
  941. mbhc->mbhc_fn->wcd_mbhc_detect_plug_type(mbhc);
  942. } else if ((mbhc->current_plug != MBHC_PLUG_TYPE_NONE)
  943. && !detection_type) {
  944. /* Disable external voltage source to micbias if present */
  945. if (mbhc->mbhc_cb->enable_mb_source)
  946. mbhc->mbhc_cb->enable_mb_source(mbhc, false);
  947. /* Disable HW FSM */
  948. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  949. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 0);
  950. if (mbhc->mbhc_cb->mbhc_common_micb_ctrl)
  951. mbhc->mbhc_cb->mbhc_common_micb_ctrl(component,
  952. MBHC_COMMON_MICB_TAIL_CURR, false);
  953. if (mbhc->mbhc_cb->set_cap_mode)
  954. mbhc->mbhc_cb->set_cap_mode(component, micbias1, false);
  955. mbhc->btn_press_intr = false;
  956. mbhc->is_btn_press = false;
  957. switch (mbhc->current_plug) {
  958. case MBHC_PLUG_TYPE_HEADPHONE:
  959. jack_type = SND_JACK_HEADPHONE;
  960. extdev_type = EXTCON_JACK_HEADPHONE;
  961. break;
  962. case MBHC_PLUG_TYPE_GND_MIC_SWAP:
  963. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  964. jack_type = SND_JACK_UNSUPPORTED;
  965. #else
  966. jack_type = SND_JACK_HEADPHONE;
  967. #endif /* CONFIG_AUDIO_QGKI */
  968. extdev_type = EXTCON_MECHANICAL;
  969. break;
  970. case MBHC_PLUG_TYPE_HEADSET:
  971. /* make sure to turn off Rbias */
  972. if (mbhc->mbhc_cb->micb_internal)
  973. mbhc->mbhc_cb->micb_internal(component,
  974. 1, false);
  975. /* Pulldown micbias */
  976. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_PULLDOWN_CTRL, 1);
  977. jack_type = SND_JACK_HEADSET;
  978. extdev_type = EXTCON_JACK_MICROPHONE;
  979. break;
  980. case MBHC_PLUG_TYPE_HIGH_HPH:
  981. if (mbhc->mbhc_detection_logic == WCD_DETECTION_ADC)
  982. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_ISRC_EN, 0);
  983. mbhc->is_extn_cable = false;
  984. jack_type = SND_JACK_LINEOUT;
  985. extdev_type = EXTCON_JACK_LINE_OUT;
  986. break;
  987. default:
  988. pr_info("%s: Invalid current plug: %d\n",
  989. __func__, mbhc->current_plug);
  990. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  991. jack_type = SND_JACK_UNSUPPORTED;
  992. #else
  993. jack_type = SND_JACK_HEADPHONE;
  994. #endif /* CONFIG_AUDIO_QGKI */
  995. extdev_type = EXTCON_MECHANICAL;
  996. break;
  997. }
  998. wcd_mbhc_hs_elec_irq(mbhc, WCD_MBHC_ELEC_HS_REM, false);
  999. wcd_mbhc_hs_elec_irq(mbhc, WCD_MBHC_ELEC_HS_INS, false);
  1000. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_DETECTION_TYPE, 1);
  1001. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_ELECT_SCHMT_ISRC, 0);
  1002. mbhc->extn_cable_hph_rem = false;
  1003. wcd_mbhc_report_plug(mbhc, 0, jack_type);
  1004. extcon_set_state_sync(mbhc->extdev, extdev_type, 0);
  1005. if (mbhc->mbhc_cfg->enable_usbc_analog) {
  1006. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_L_DET_EN, 0);
  1007. if (mbhc->mbhc_cb->clk_setup)
  1008. mbhc->mbhc_cb->clk_setup(
  1009. mbhc->component, false);
  1010. }
  1011. if (mbhc->mbhc_cfg->moisture_en ||
  1012. mbhc->mbhc_cfg->moisture_duty_cycle_en) {
  1013. if (mbhc->mbhc_cb->mbhc_moisture_polling_ctrl)
  1014. mbhc->mbhc_cb->mbhc_moisture_polling_ctrl(mbhc,
  1015. false);
  1016. if (mbhc->mbhc_cb->mbhc_moisture_detect_en)
  1017. mbhc->mbhc_cb->mbhc_moisture_detect_en(mbhc,
  1018. false);
  1019. }
  1020. } else if (!detection_type) {
  1021. /* Disable external voltage source to micbias if present */
  1022. if (mbhc->mbhc_cb->enable_mb_source)
  1023. mbhc->mbhc_cb->enable_mb_source(mbhc, false);
  1024. /* Disable HW FSM */
  1025. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_FSM_EN, 0);
  1026. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_ISRC_CTL, 0);
  1027. mbhc->extn_cable_hph_rem = false;
  1028. }
  1029. done:
  1030. mbhc->in_swch_irq_handler = false;
  1031. WCD_MBHC_RSC_UNLOCK(mbhc);
  1032. pr_debug("%s: leave\n", __func__);
  1033. }
  1034. static irqreturn_t wcd_mbhc_mech_plug_detect_irq(int irq, void *data)
  1035. {
  1036. int r = IRQ_HANDLED;
  1037. struct wcd_mbhc *mbhc = data;
  1038. pr_debug("%s: enter\n", __func__);
  1039. /* WCD USB AATC did not required mech plug detection, will receive
  1040. * insertion/removal events from UCSI layer
  1041. */
  1042. #if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  1043. if (mbhc->mbhc_cfg->enable_usbc_analog) {
  1044. pr_debug("%s: leave, (irq_none)", __func__);
  1045. return IRQ_NONE;
  1046. }
  1047. #endif
  1048. if (mbhc == NULL) {
  1049. pr_err("%s: NULL irq data\n", __func__);
  1050. return IRQ_NONE;
  1051. }
  1052. if (unlikely((mbhc->mbhc_cb->lock_sleep(mbhc, true)) == false)) {
  1053. pr_warn("%s: failed to hold suspend\n", __func__);
  1054. r = IRQ_NONE;
  1055. } else {
  1056. /* Call handler */
  1057. wcd_mbhc_swch_irq_handler(mbhc);
  1058. mbhc->mbhc_cb->lock_sleep(mbhc, false);
  1059. }
  1060. pr_debug("%s: leave %d\n", __func__, r);
  1061. return r;
  1062. }
  1063. int wcd_mbhc_get_button_mask(struct wcd_mbhc *mbhc)
  1064. {
  1065. int mask = 0;
  1066. int btn;
  1067. btn = mbhc->mbhc_cb->map_btn_code_to_num(mbhc->component);
  1068. switch (btn) {
  1069. case 0:
  1070. mask = SND_JACK_BTN_0;
  1071. break;
  1072. case 1:
  1073. mask = SND_JACK_BTN_1;
  1074. break;
  1075. case 2:
  1076. mask = SND_JACK_BTN_2;
  1077. break;
  1078. case 3:
  1079. mask = SND_JACK_BTN_3;
  1080. break;
  1081. case 4:
  1082. mask = SND_JACK_BTN_4;
  1083. break;
  1084. case 5:
  1085. mask = SND_JACK_BTN_5;
  1086. break;
  1087. default:
  1088. break;
  1089. }
  1090. return mask;
  1091. }
  1092. EXPORT_SYMBOL(wcd_mbhc_get_button_mask);
  1093. static void wcd_btn_lpress_fn(struct work_struct *work)
  1094. {
  1095. struct delayed_work *dwork;
  1096. struct wcd_mbhc *mbhc;
  1097. s16 btn_result = 0;
  1098. pr_debug("%s: Enter\n", __func__);
  1099. dwork = to_delayed_work(work);
  1100. mbhc = container_of(dwork, struct wcd_mbhc, mbhc_btn_dwork);
  1101. WCD_MBHC_REG_READ(WCD_MBHC_BTN_RESULT, btn_result);
  1102. if (mbhc->current_plug == MBHC_PLUG_TYPE_HEADSET) {
  1103. pr_debug("%s: Reporting long button press event, btn_result: %d\n",
  1104. __func__, btn_result);
  1105. wcd_mbhc_jack_report(mbhc, &mbhc->button_jack,
  1106. mbhc->buttons_pressed, mbhc->buttons_pressed);
  1107. }
  1108. pr_debug("%s: leave\n", __func__);
  1109. mbhc->mbhc_cb->lock_sleep(mbhc, false);
  1110. }
  1111. static bool wcd_mbhc_fw_validate(const void *data, size_t size)
  1112. {
  1113. u32 cfg_offset;
  1114. struct wcd_mbhc_btn_detect_cfg *btn_cfg;
  1115. struct firmware_cal fw;
  1116. fw.data = (void *)data;
  1117. fw.size = size;
  1118. if (fw.size < WCD_MBHC_CAL_MIN_SIZE)
  1119. return false;
  1120. /*
  1121. * Previous check guarantees that there is enough fw data up
  1122. * to num_btn
  1123. */
  1124. btn_cfg = WCD_MBHC_CAL_BTN_DET_PTR(fw.data);
  1125. cfg_offset = (u32) ((void *) btn_cfg - (void *) fw.data);
  1126. if (fw.size < (cfg_offset + WCD_MBHC_CAL_BTN_SZ(btn_cfg)))
  1127. return false;
  1128. return true;
  1129. }
  1130. static irqreturn_t wcd_mbhc_btn_press_handler(int irq, void *data)
  1131. {
  1132. struct wcd_mbhc *mbhc = data;
  1133. int mask;
  1134. unsigned long msec_val;
  1135. pr_debug("%s: enter\n", __func__);
  1136. complete(&mbhc->btn_press_compl);
  1137. WCD_MBHC_RSC_LOCK(mbhc);
  1138. wcd_cancel_btn_work(mbhc);
  1139. if (wcd_swch_level_remove(mbhc)) {
  1140. pr_debug("%s: Switch level is low ", __func__);
  1141. goto done;
  1142. }
  1143. mbhc->is_btn_press = true;
  1144. msec_val = jiffies_to_msecs(jiffies - mbhc->jiffies_atreport);
  1145. pr_debug("%s: msec_val = %ld\n", __func__, msec_val);
  1146. if (msec_val < MBHC_BUTTON_PRESS_THRESHOLD_MIN) {
  1147. pr_debug("%s: Too short, ignore button press\n", __func__);
  1148. goto done;
  1149. }
  1150. /* If switch interrupt already kicked in, ignore button press */
  1151. if (mbhc->in_swch_irq_handler) {
  1152. pr_debug("%s: Swtich level changed, ignore button press\n",
  1153. __func__);
  1154. goto done;
  1155. }
  1156. mask = wcd_mbhc_get_button_mask(mbhc);
  1157. if (mask == SND_JACK_BTN_0)
  1158. mbhc->btn_press_intr = true;
  1159. if (mbhc->current_plug != MBHC_PLUG_TYPE_HEADSET) {
  1160. pr_debug("%s: Plug isn't headset, ignore button press\n",
  1161. __func__);
  1162. goto done;
  1163. }
  1164. mbhc->buttons_pressed |= mask;
  1165. mbhc->mbhc_cb->lock_sleep(mbhc, true);
  1166. if (schedule_delayed_work(&mbhc->mbhc_btn_dwork,
  1167. msecs_to_jiffies(400)) == 0) {
  1168. WARN(1, "Button pressed twice without release event\n");
  1169. mbhc->mbhc_cb->lock_sleep(mbhc, false);
  1170. }
  1171. done:
  1172. pr_debug("%s: leave\n", __func__);
  1173. WCD_MBHC_RSC_UNLOCK(mbhc);
  1174. return IRQ_HANDLED;
  1175. }
  1176. static irqreturn_t wcd_mbhc_release_handler(int irq, void *data)
  1177. {
  1178. struct wcd_mbhc *mbhc = data;
  1179. int ret;
  1180. pr_debug("%s: enter\n", __func__);
  1181. WCD_MBHC_RSC_LOCK(mbhc);
  1182. if (wcd_swch_level_remove(mbhc)) {
  1183. pr_debug("%s: Switch level is low ", __func__);
  1184. goto exit;
  1185. }
  1186. if (mbhc->is_btn_press) {
  1187. mbhc->is_btn_press = false;
  1188. } else {
  1189. pr_debug("%s: This release is for fake btn press\n", __func__);
  1190. goto exit;
  1191. }
  1192. /*
  1193. * If current plug is headphone then there is no chance to
  1194. * get btn release interrupt, so connected cable should be
  1195. * headset not headphone.
  1196. * For ADC MBHC, ADC_COMPLETE interrupt will be generated
  1197. * in this case. So skip the check here.
  1198. */
  1199. if (mbhc->mbhc_detection_logic == WCD_DETECTION_LEGACY &&
  1200. mbhc->current_plug == MBHC_PLUG_TYPE_HEADPHONE) {
  1201. wcd_mbhc_find_plug_and_report(mbhc, MBHC_PLUG_TYPE_HEADSET);
  1202. goto exit;
  1203. }
  1204. if (mbhc->buttons_pressed & WCD_MBHC_JACK_BUTTON_MASK) {
  1205. ret = wcd_cancel_btn_work(mbhc);
  1206. if (ret == 0) {
  1207. pr_debug("%s: Reporting long button release event\n",
  1208. __func__);
  1209. wcd_mbhc_jack_report(mbhc, &mbhc->button_jack,
  1210. 0, mbhc->buttons_pressed);
  1211. } else {
  1212. if (mbhc->in_swch_irq_handler) {
  1213. pr_debug("%s: Switch irq kicked in, ignore\n",
  1214. __func__);
  1215. } else {
  1216. pr_debug("%s: Reporting btn press\n",
  1217. __func__);
  1218. wcd_mbhc_jack_report(mbhc,
  1219. &mbhc->button_jack,
  1220. mbhc->buttons_pressed,
  1221. mbhc->buttons_pressed);
  1222. pr_debug("%s: Reporting btn release\n",
  1223. __func__);
  1224. wcd_mbhc_jack_report(mbhc,
  1225. &mbhc->button_jack,
  1226. 0, mbhc->buttons_pressed);
  1227. }
  1228. }
  1229. mbhc->buttons_pressed &= ~WCD_MBHC_JACK_BUTTON_MASK;
  1230. }
  1231. exit:
  1232. pr_debug("%s: leave\n", __func__);
  1233. WCD_MBHC_RSC_UNLOCK(mbhc);
  1234. return IRQ_HANDLED;
  1235. }
  1236. static irqreturn_t wcd_mbhc_hphl_ocp_irq(int irq, void *data)
  1237. {
  1238. struct wcd_mbhc *mbhc = data;
  1239. int val;
  1240. pr_debug("%s: received HPHL OCP irq\n", __func__);
  1241. if (mbhc) {
  1242. if (mbhc->mbhc_cb->hph_register_recovery) {
  1243. if (mbhc->mbhc_cb->hph_register_recovery(mbhc)) {
  1244. WCD_MBHC_REG_READ(WCD_MBHC_HPHR_OCP_STATUS,
  1245. val);
  1246. if ((val != -EINVAL) && val)
  1247. mbhc->is_hph_ocp_pending = true;
  1248. goto done;
  1249. }
  1250. }
  1251. if (mbhc->hphlocp_cnt < OCP_ATTEMPT) {
  1252. mbhc->hphlocp_cnt++;
  1253. pr_debug("%s: retry, hphlocp_cnt: %d\n", __func__,
  1254. mbhc->hphlocp_cnt);
  1255. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_OCP_FSM_EN, 0);
  1256. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_OCP_FSM_EN, 1);
  1257. } else {
  1258. mbhc->mbhc_cb->irq_control(mbhc->component,
  1259. mbhc->intr_ids->hph_left_ocp,
  1260. false);
  1261. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1262. mbhc->hph_status |= SND_JACK_OC_HPHL;
  1263. #endif /* CONFIG_AUDIO_QGKI */
  1264. wcd_mbhc_jack_report(mbhc, &mbhc->headset_jack,
  1265. mbhc->hph_status,
  1266. WCD_MBHC_JACK_MASK);
  1267. }
  1268. } else {
  1269. pr_err("%s: Bad wcd9xxx_spmi private data\n", __func__);
  1270. }
  1271. done:
  1272. return IRQ_HANDLED;
  1273. }
  1274. static irqreturn_t wcd_mbhc_hphr_ocp_irq(int irq, void *data)
  1275. {
  1276. struct wcd_mbhc *mbhc = data;
  1277. pr_debug("%s: received HPHR OCP irq\n", __func__);
  1278. if (!mbhc) {
  1279. pr_err("%s: Bad mbhc private data\n", __func__);
  1280. goto done;
  1281. }
  1282. if (mbhc->is_hph_ocp_pending) {
  1283. mbhc->is_hph_ocp_pending = false;
  1284. goto done;
  1285. }
  1286. if (mbhc->mbhc_cb->hph_register_recovery) {
  1287. if (mbhc->mbhc_cb->hph_register_recovery(mbhc))
  1288. /* register corruption, hence reset registers */
  1289. goto done;
  1290. }
  1291. if (mbhc->hphrocp_cnt < OCP_ATTEMPT) {
  1292. mbhc->hphrocp_cnt++;
  1293. pr_debug("%s: retry, hphrocp_cnt: %d\n", __func__,
  1294. mbhc->hphrocp_cnt);
  1295. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_OCP_FSM_EN, 0);
  1296. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_OCP_FSM_EN, 1);
  1297. } else {
  1298. mbhc->mbhc_cb->irq_control(mbhc->component,
  1299. mbhc->intr_ids->hph_right_ocp,
  1300. false);
  1301. #if IS_ENABLED(CONFIG_AUDIO_QGKI)
  1302. mbhc->hph_status |= SND_JACK_OC_HPHR;
  1303. #endif /* CONFIG_AUDIO_QGKI */
  1304. wcd_mbhc_jack_report(mbhc, &mbhc->headset_jack,
  1305. mbhc->hph_status, WCD_MBHC_JACK_MASK);
  1306. }
  1307. done:
  1308. return IRQ_HANDLED;
  1309. }
  1310. static int wcd_mbhc_initialise(struct wcd_mbhc *mbhc)
  1311. {
  1312. int ret = 0;
  1313. struct snd_soc_component *component = mbhc->component;
  1314. pr_debug("%s: enter\n", __func__);
  1315. WCD_MBHC_RSC_LOCK(mbhc);
  1316. /* enable HS detection */
  1317. if (mbhc->mbhc_cb->hph_pull_up_control_v2)
  1318. mbhc->mbhc_cb->hph_pull_up_control_v2(component,
  1319. HS_PULLUP_I_DEFAULT);
  1320. else if (mbhc->mbhc_cb->hph_pull_up_control)
  1321. mbhc->mbhc_cb->hph_pull_up_control(component, I_DEFAULT);
  1322. else
  1323. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HS_L_DET_PULL_UP_CTRL, 3);
  1324. /* Configure for moisture detection when duty cycle is not enabled.
  1325. * Otherwise disable moisture detection.
  1326. */
  1327. if (mbhc->mbhc_cfg->moisture_en && mbhc->mbhc_cb->mbhc_moisture_config
  1328. && !mbhc->mbhc_cfg->moisture_duty_cycle_en)
  1329. mbhc->mbhc_cb->mbhc_moisture_config(mbhc);
  1330. else if (mbhc->mbhc_cb->mbhc_moisture_detect_en)
  1331. mbhc->mbhc_cb->mbhc_moisture_detect_en(mbhc, false);
  1332. /*
  1333. * For USB analog we need to override the switch configuration.
  1334. * Also, disable hph_l pull-up current source as HS_DET_L is driven
  1335. * by an external source
  1336. */
  1337. if (mbhc->mbhc_cfg->enable_usbc_analog) {
  1338. if (mbhc->mbhc_cb->hph_pull_up_control_v2)
  1339. mbhc->mbhc_cb->hph_pull_up_control_v2(component,
  1340. HS_PULLUP_I_OFF);
  1341. else if (mbhc->mbhc_cb->hph_pull_up_control)
  1342. mbhc->mbhc_cb->hph_pull_up_control(component, I_OFF);
  1343. else
  1344. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HS_L_DET_PULL_UP_CTRL,
  1345. 0);
  1346. }
  1347. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HPHL_PLUG_TYPE, mbhc->hphl_swh);
  1348. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_GND_PLUG_TYPE, mbhc->gnd_swh);
  1349. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_SW_HPH_LP_100K_TO_GND, 1);
  1350. if (mbhc->mbhc_cfg->gnd_det_en && mbhc->mbhc_cb->mbhc_gnd_det_ctrl)
  1351. mbhc->mbhc_cb->mbhc_gnd_det_ctrl(component, true);
  1352. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_HS_L_DET_PULL_UP_COMP_CTRL, 1);
  1353. /*
  1354. * Disable L_DET for USB-C analog audio to avoid spurious interrupts
  1355. * when a non-audio accessory is inserted. L_DET_EN sets to 1 when FSA
  1356. * I2C driver notifies that ANALOG_AUDIO_ADAPTER is inserted
  1357. */
  1358. if (mbhc->mbhc_cfg->enable_usbc_analog)
  1359. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_L_DET_EN, 0);
  1360. else
  1361. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_L_DET_EN, 1);
  1362. if (mbhc->mbhc_cfg->enable_usbc_analog) {
  1363. /* Insertion debounce set to 48ms */
  1364. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_INSREM_DBNC, 4);
  1365. } else {
  1366. /* Insertion debounce set to 96ms */
  1367. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_INSREM_DBNC, 6);
  1368. }
  1369. /* Button Debounce set to 16ms */
  1370. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_BTN_DBNC, 2);
  1371. /* enable bias */
  1372. mbhc->mbhc_cb->mbhc_bias(component, true);
  1373. /* enable MBHC clock */
  1374. if (mbhc->mbhc_cb->clk_setup) {
  1375. if (mbhc->mbhc_cfg->enable_usbc_analog)
  1376. mbhc->mbhc_cb->clk_setup(component, false);
  1377. else
  1378. mbhc->mbhc_cb->clk_setup(component, true);
  1379. }
  1380. /* program HS_VREF value */
  1381. wcd_program_hs_vref(mbhc);
  1382. wcd_program_btn_threshold(mbhc, false);
  1383. reinit_completion(&mbhc->btn_press_compl);
  1384. WCD_MBHC_RSC_UNLOCK(mbhc);
  1385. pr_debug("%s: leave\n", __func__);
  1386. return ret;
  1387. }
  1388. static void wcd_mbhc_fw_read(struct work_struct *work)
  1389. {
  1390. struct delayed_work *dwork;
  1391. struct wcd_mbhc *mbhc;
  1392. struct snd_soc_component *component;
  1393. const struct firmware *fw;
  1394. struct firmware_cal *fw_data = NULL;
  1395. int ret = -1, retry = 0;
  1396. bool use_default_cal = false;
  1397. dwork = to_delayed_work(work);
  1398. mbhc = container_of(dwork, struct wcd_mbhc, mbhc_firmware_dwork);
  1399. component = mbhc->component;
  1400. while (retry < FW_READ_ATTEMPTS) {
  1401. retry++;
  1402. pr_debug("%s:Attempt %d to request MBHC firmware\n",
  1403. __func__, retry);
  1404. if (mbhc->mbhc_cb->get_hwdep_fw_cal)
  1405. fw_data = mbhc->mbhc_cb->get_hwdep_fw_cal(mbhc,
  1406. WCD9XXX_MBHC_CAL);
  1407. if (!fw_data)
  1408. ret = request_firmware(&fw, "wcd9320/wcd9320_mbhc.bin",
  1409. component->dev);
  1410. /*
  1411. * if request_firmware and hwdep cal both fail then
  1412. * sleep for 4sec for the userspace to send data to kernel
  1413. * retry for few times before bailing out
  1414. */
  1415. if ((ret != 0) && !fw_data) {
  1416. usleep_range(FW_READ_TIMEOUT, FW_READ_TIMEOUT +
  1417. WCD_MBHC_USLEEP_RANGE_MARGIN_US);
  1418. } else {
  1419. pr_debug("%s: MBHC Firmware read successful\n",
  1420. __func__);
  1421. break;
  1422. }
  1423. }
  1424. if (!fw_data)
  1425. pr_debug("%s: using request_firmware\n", __func__);
  1426. else
  1427. pr_debug("%s: using hwdep cal\n", __func__);
  1428. if (ret != 0 && !fw_data) {
  1429. pr_err("%s: Cannot load MBHC firmware use default cal\n",
  1430. __func__);
  1431. use_default_cal = true;
  1432. }
  1433. if (!use_default_cal) {
  1434. const void *data;
  1435. size_t size;
  1436. if (fw_data) {
  1437. data = fw_data->data;
  1438. size = fw_data->size;
  1439. } else {
  1440. data = fw->data;
  1441. size = fw->size;
  1442. }
  1443. if (wcd_mbhc_fw_validate(data, size) == false) {
  1444. pr_err("%s: Invalid MBHC cal data size use default cal\n",
  1445. __func__);
  1446. if (!fw_data)
  1447. release_firmware(fw);
  1448. } else {
  1449. if (fw_data) {
  1450. mbhc->mbhc_cfg->calibration =
  1451. (void *)fw_data->data;
  1452. mbhc->mbhc_cal = fw_data;
  1453. } else {
  1454. mbhc->mbhc_cfg->calibration =
  1455. (void *)fw->data;
  1456. mbhc->mbhc_fw = fw;
  1457. }
  1458. }
  1459. }
  1460. (void) wcd_mbhc_initialise(mbhc);
  1461. }
  1462. static int wcd_mbhc_set_keycode(struct wcd_mbhc *mbhc)
  1463. {
  1464. enum snd_jack_types type;
  1465. int i, ret, result = 0;
  1466. int *btn_key_code;
  1467. btn_key_code = mbhc->mbhc_cfg->key_code;
  1468. for (i = 0 ; i < WCD_MBHC_KEYCODE_NUM ; i++) {
  1469. if (btn_key_code[i] != 0) {
  1470. switch (i) {
  1471. case 0:
  1472. type = SND_JACK_BTN_0;
  1473. break;
  1474. case 1:
  1475. type = SND_JACK_BTN_1;
  1476. break;
  1477. case 2:
  1478. type = SND_JACK_BTN_2;
  1479. break;
  1480. case 3:
  1481. type = SND_JACK_BTN_3;
  1482. break;
  1483. case 4:
  1484. type = SND_JACK_BTN_4;
  1485. break;
  1486. case 5:
  1487. type = SND_JACK_BTN_5;
  1488. break;
  1489. default:
  1490. WARN_ONCE(1, "Wrong button number:%d\n", i);
  1491. result = -1;
  1492. return result;
  1493. }
  1494. ret = snd_jack_set_key(mbhc->button_jack.jack,
  1495. type,
  1496. btn_key_code[i]);
  1497. if (ret) {
  1498. pr_err("%s: Failed to set code for %d\n",
  1499. __func__, btn_key_code[i]);
  1500. result = -1;
  1501. return result;
  1502. }
  1503. input_set_capability(
  1504. mbhc->button_jack.jack->input_dev,
  1505. EV_KEY, btn_key_code[i]);
  1506. pr_debug("%s: set btn%d key code:%d\n", __func__,
  1507. i, btn_key_code[i]);
  1508. }
  1509. }
  1510. if (btn_key_code[0])
  1511. mbhc->is_btn_already_regd = true;
  1512. return result;
  1513. }
  1514. #if IS_ENABLED(CONFIG_QCOM_FSA4480_I2C) || IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  1515. static int wcd_mbhc_usbc_ana_event_handler(struct notifier_block *nb,
  1516. unsigned long mode, void *ptr)
  1517. {
  1518. struct wcd_mbhc *mbhc = container_of(nb, struct wcd_mbhc, aatc_dev_nb);
  1519. #if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  1520. int l_det_en = 0, detection_type = 0;
  1521. #endif
  1522. if (!mbhc)
  1523. return -EINVAL;
  1524. if (mode == TYPEC_ACCESSORY_AUDIO) {
  1525. dev_dbg(mbhc->component->dev, "enter, %s: mode = %lu\n", __func__, mode);
  1526. #if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  1527. wcd_usbss_switch_update(WCD_USBSS_AATC, WCD_USBSS_CABLE_CONNECT);
  1528. #endif
  1529. if (mbhc->mbhc_cb->clk_setup)
  1530. mbhc->mbhc_cb->clk_setup(mbhc->component, true);
  1531. #if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  1532. if (unlikely((mbhc->mbhc_cb->lock_sleep(mbhc, true)) == false))
  1533. pr_warn("%s: failed to hold suspend\n", __func__);
  1534. else {
  1535. if (mbhc->current_plug == MBHC_PLUG_TYPE_NONE)
  1536. wcd_mbhc_swch_irq_handler(mbhc);
  1537. mbhc->mbhc_cb->lock_sleep(mbhc, false);
  1538. }
  1539. #endif
  1540. } else {
  1541. #if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  1542. WCD_MBHC_REG_READ(WCD_MBHC_L_DET_EN, l_det_en);
  1543. WCD_MBHC_REG_READ(WCD_MBHC_MECH_DETECTION_TYPE, detection_type);
  1544. if ((mode == TYPEC_ACCESSORY_NONE) && !detection_type) {
  1545. wcd_usbss_switch_update(WCD_USBSS_AATC, WCD_USBSS_CABLE_DISCONNECT);
  1546. /* removal detected, disable L_DET_EN */
  1547. WCD_MBHC_REG_UPDATE_BITS(WCD_MBHC_L_DET_EN, 0);
  1548. if (unlikely((mbhc->mbhc_cb->lock_sleep(mbhc, true)) == false))
  1549. pr_warn("%s: failed to hold suspend\n", __func__);
  1550. else {
  1551. wcd_mbhc_swch_irq_handler(mbhc);
  1552. mbhc->mbhc_cb->lock_sleep(mbhc, false);
  1553. }
  1554. dev_dbg(mbhc->component->dev, "leave, %s: mode = %lu\n", __func__, mode);
  1555. }
  1556. #endif
  1557. }
  1558. return 0;
  1559. }
  1560. #else
  1561. static int wcd_mbhc_usbc_ana_event_handler(struct notifier_block *nb,
  1562. unsigned long mode, void *ptr)
  1563. {
  1564. pr_info("%s: mode = %lu, handler not implemented\n", __func__, mode);
  1565. return 0;
  1566. }
  1567. #endif
  1568. int wcd_mbhc_start(struct wcd_mbhc *mbhc, struct wcd_mbhc_config *mbhc_cfg)
  1569. {
  1570. int rc = 0;
  1571. struct snd_soc_component *component;
  1572. struct snd_soc_card *card;
  1573. const char *usb_c_dt = "qcom,msm-mbhc-usbc-audio-supported";
  1574. if (!mbhc || !mbhc_cfg)
  1575. return -EINVAL;
  1576. component = mbhc->component;
  1577. card = component->card;
  1578. /* update the mbhc config */
  1579. mbhc->mbhc_cfg = mbhc_cfg;
  1580. dev_dbg(mbhc->component->dev, "%s: enter\n", __func__);
  1581. /* check if USB C analog is defined on device tree */
  1582. mbhc_cfg->enable_usbc_analog = 0;
  1583. if (of_find_property(card->dev->of_node, usb_c_dt, NULL)) {
  1584. rc = of_property_read_u32(card->dev->of_node, usb_c_dt,
  1585. &mbhc_cfg->enable_usbc_analog);
  1586. }
  1587. if (mbhc_cfg->enable_usbc_analog == 0 || rc != 0) {
  1588. dev_dbg(card->dev,
  1589. "%s: %s in dt node is missing or false\n",
  1590. __func__, usb_c_dt);
  1591. dev_dbg(card->dev,
  1592. "%s: skipping USB c analog configuration\n", __func__);
  1593. }
  1594. /* Parse wcd_usbss/fsa switch handle */
  1595. if (mbhc_cfg->enable_usbc_analog) {
  1596. dev_dbg(mbhc->component->dev, "%s: usbc analog enabled\n",
  1597. __func__);
  1598. mbhc->swap_thr = GND_MIC_USBC_SWAP_THRESHOLD;
  1599. if (IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C))
  1600. mbhc->aatc_dev_np = of_parse_phandle(card->dev->of_node,
  1601. "wcd939x-i2c-handle", 0);
  1602. else if (IS_ENABLED(CONFIG_QCOM_FSA4480_I2C))
  1603. mbhc->aatc_dev_np = of_parse_phandle(card->dev->of_node,
  1604. "fsa4480-i2c-handle", 0);
  1605. if (!mbhc->aatc_dev_np) {
  1606. dev_err(card->dev, "%s: wcd939x or fsa i2c node not found\n",
  1607. __func__);
  1608. rc = -EINVAL;
  1609. goto err;
  1610. }
  1611. }
  1612. /* Disable moisture detect and duty cycle for WCD USB AATC HS*/
  1613. if (mbhc_cfg->enable_usbc_analog) {
  1614. mbhc_cfg->moisture_en = false;
  1615. mbhc_cfg->moisture_duty_cycle_en = false;
  1616. pr_debug("%s: Disable moisture detect and duty cycle of AATC",
  1617. __func__);
  1618. }
  1619. /* Set btn key code */
  1620. if ((!mbhc->is_btn_already_regd) && wcd_mbhc_set_keycode(mbhc))
  1621. pr_err("Set btn key code error!!!\n");
  1622. if (!mbhc->mbhc_cfg->read_fw_bin ||
  1623. (mbhc->mbhc_cfg->read_fw_bin && mbhc->mbhc_fw) ||
  1624. (mbhc->mbhc_cfg->read_fw_bin && mbhc->mbhc_cal)) {
  1625. rc = wcd_mbhc_initialise(mbhc);
  1626. if (rc) {
  1627. dev_err(card->dev, "%s: wcd mbhc initialize failed\n",
  1628. __func__);
  1629. goto err;
  1630. }
  1631. } else {
  1632. if (!mbhc->mbhc_fw || !mbhc->mbhc_cal)
  1633. schedule_delayed_work(&mbhc->mbhc_firmware_dwork,
  1634. usecs_to_jiffies(FW_READ_TIMEOUT));
  1635. else
  1636. pr_err("%s: Skipping to read mbhc fw, 0x%pK %pK\n",
  1637. __func__, mbhc->mbhc_fw, mbhc->mbhc_cal);
  1638. }
  1639. if (mbhc_cfg->enable_usbc_analog) {
  1640. mbhc->aatc_dev_nb.notifier_call = wcd_mbhc_usbc_ana_event_handler;
  1641. mbhc->aatc_dev_nb.priority = 0;
  1642. #if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  1643. rc = wcd_usbss_reg_notifier(&mbhc->aatc_dev_nb, mbhc->aatc_dev_np);
  1644. #endif
  1645. #if IS_ENABLED(CONFIG_QCOM_FSA4480_I2C)
  1646. rc = fsa4480_reg_notifier(&mbhc->aatc_dev_nb, mbhc->aatc_dev_np);
  1647. #endif
  1648. }
  1649. return rc;
  1650. err:
  1651. dev_dbg(mbhc->component->dev, "%s: leave %d\n", __func__, rc);
  1652. return rc;
  1653. }
  1654. EXPORT_SYMBOL(wcd_mbhc_start);
  1655. void wcd_mbhc_stop(struct wcd_mbhc *mbhc)
  1656. {
  1657. pr_debug("%s: enter\n", __func__);
  1658. if (mbhc->current_plug != MBHC_PLUG_TYPE_NONE) {
  1659. if (mbhc->mbhc_cb && mbhc->mbhc_cb->skip_imped_detect)
  1660. mbhc->mbhc_cb->skip_imped_detect(mbhc->component);
  1661. }
  1662. mbhc->current_plug = MBHC_PLUG_TYPE_NONE;
  1663. mbhc->hph_status = 0;
  1664. if (mbhc->mbhc_cb && mbhc->mbhc_cb->irq_control) {
  1665. mbhc->mbhc_cb->irq_control(mbhc->component,
  1666. mbhc->intr_ids->hph_left_ocp,
  1667. false);
  1668. mbhc->mbhc_cb->irq_control(mbhc->component,
  1669. mbhc->intr_ids->hph_right_ocp,
  1670. false);
  1671. }
  1672. if (mbhc->mbhc_fw || mbhc->mbhc_cal) {
  1673. cancel_delayed_work_sync(&mbhc->mbhc_firmware_dwork);
  1674. if (!mbhc->mbhc_cal)
  1675. release_firmware(mbhc->mbhc_fw);
  1676. mbhc->mbhc_fw = NULL;
  1677. mbhc->mbhc_cal = NULL;
  1678. }
  1679. #if IS_ENABLED(CONFIG_QCOM_WCD_USBSS_I2C)
  1680. if (mbhc->mbhc_cfg->enable_usbc_analog)
  1681. wcd_usbss_unreg_notifier(&mbhc->aatc_dev_nb, mbhc->aatc_dev_np);
  1682. #endif
  1683. #if IS_ENABLED(CONFIG_QCOM_FSA4480_I2C)
  1684. if (mbhc->mbhc_cfg->enable_usbc_analog)
  1685. fsa4480_unreg_notifier(&mbhc->aatc_dev_nb, mbhc->aatc_dev_np);
  1686. #endif
  1687. pr_debug("%s: leave\n", __func__);
  1688. }
  1689. EXPORT_SYMBOL(wcd_mbhc_stop);
  1690. /*
  1691. * wcd_mbhc_init : initialize MBHC internal structures.
  1692. *
  1693. * NOTE: mbhc->mbhc_cfg is not YET configure so shouldn't be used
  1694. */
  1695. int wcd_mbhc_init(struct wcd_mbhc *mbhc, struct snd_soc_component *component,
  1696. const struct wcd_mbhc_cb *mbhc_cb,
  1697. const struct wcd_mbhc_intr *mbhc_cdc_intr_ids,
  1698. struct wcd_mbhc_register *wcd_mbhc_regs,
  1699. bool impedance_det_en)
  1700. {
  1701. int ret = 0;
  1702. int hph_swh = 0;
  1703. int gnd_swh = 0;
  1704. u32 hph_moist_config[3];
  1705. struct snd_soc_card *card = component->card;
  1706. const char *hph_switch = "qcom,msm-mbhc-hphl-swh";
  1707. const char *gnd_switch = "qcom,msm-mbhc-gnd-swh";
  1708. const char *hs_thre = "qcom,msm-mbhc-hs-mic-max-threshold-mv";
  1709. const char *hph_thre = "qcom,msm-mbhc-hs-mic-min-threshold-mv";
  1710. pr_debug("%s: enter\n", __func__);
  1711. ret = of_property_read_u32(card->dev->of_node, hph_switch, &hph_swh);
  1712. if (ret) {
  1713. dev_err(card->dev,
  1714. "%s: missing %s in dt node\n", __func__, hph_switch);
  1715. goto err;
  1716. }
  1717. ret = of_property_read_u32(card->dev->of_node, gnd_switch, &gnd_swh);
  1718. if (ret) {
  1719. dev_err(card->dev,
  1720. "%s: missing %s in dt node\n", __func__, gnd_switch);
  1721. goto err;
  1722. }
  1723. ret = of_property_read_u32(card->dev->of_node, hs_thre,
  1724. &(mbhc->hs_thr));
  1725. if (ret)
  1726. dev_dbg(card->dev,
  1727. "%s: missing %s in dt node\n", __func__, hs_thre);
  1728. ret = of_property_read_u32(card->dev->of_node, hph_thre,
  1729. &(mbhc->hph_thr));
  1730. if (ret)
  1731. dev_dbg(card->dev,
  1732. "%s: missing %s in dt node\n", __func__, hph_thre);
  1733. ret = of_property_read_u32_array(card->dev->of_node,
  1734. "qcom,msm-mbhc-moist-cfg",
  1735. hph_moist_config, 3);
  1736. if (ret) {
  1737. dev_dbg(card->dev, "%s: no qcom,msm-mbhc-moist-cfg in DT\n",
  1738. __func__);
  1739. mbhc->moist_vref = V_45_MV;
  1740. mbhc->moist_iref = I_3P0_UA;
  1741. mbhc->moist_rref = R_24_KOHM;
  1742. } else {
  1743. mbhc->moist_vref = hph_moist_config[0];
  1744. mbhc->moist_iref = hph_moist_config[1];
  1745. mbhc->moist_rref = hph_moist_config[2];
  1746. }
  1747. mbhc->in_swch_irq_handler = false;
  1748. mbhc->current_plug = MBHC_PLUG_TYPE_NONE;
  1749. mbhc->is_btn_press = false;
  1750. mbhc->component = component;
  1751. mbhc->intr_ids = mbhc_cdc_intr_ids;
  1752. mbhc->impedance_detect = impedance_det_en;
  1753. mbhc->hphl_swh = hph_swh;
  1754. mbhc->gnd_swh = gnd_swh;
  1755. mbhc->micbias_enable = false;
  1756. mbhc->mbhc_cb = mbhc_cb;
  1757. mbhc->btn_press_intr = false;
  1758. mbhc->is_hs_recording = false;
  1759. mbhc->is_extn_cable = false;
  1760. mbhc->extn_cable_hph_rem = false;
  1761. mbhc->hph_type = WCD_MBHC_HPH_NONE;
  1762. mbhc->wcd_mbhc_regs = wcd_mbhc_regs;
  1763. mbhc->swap_thr = GND_MIC_SWAP_THRESHOLD;
  1764. mbhc->hphl_cross_conn_thr = HPHL_CROSS_CONN_THRESHOLD;
  1765. mbhc->hphr_cross_conn_thr = HPHR_CROSS_CONN_THRESHOLD;
  1766. if (mbhc->intr_ids == NULL) {
  1767. pr_err("%s: Interrupt mapping not provided\n", __func__);
  1768. return -EINVAL;
  1769. }
  1770. if (!mbhc->wcd_mbhc_regs) {
  1771. dev_err(component->dev, "%s: mbhc registers are not defined\n",
  1772. __func__);
  1773. return -EINVAL;
  1774. }
  1775. /* Check if IRQ and other required callbacks are defined or not */
  1776. if (!mbhc_cb || !mbhc_cb->request_irq || !mbhc_cb->irq_control ||
  1777. !mbhc_cb->free_irq || !mbhc_cb->map_btn_code_to_num ||
  1778. !mbhc_cb->lock_sleep || !mbhc_cb->mbhc_bias ||
  1779. !mbhc_cb->set_btn_thr) {
  1780. dev_err(component->dev, "%s: required mbhc callbacks are not defined\n",
  1781. __func__);
  1782. return -EINVAL;
  1783. }
  1784. /* No need to create new sound card jacks if is is already created */
  1785. if (mbhc->headset_jack.jack == NULL) {
  1786. ret = snd_soc_card_jack_new(component->card,
  1787. "Headset Jack", WCD_MBHC_JACK_MASK,
  1788. &mbhc->headset_jack);
  1789. if (ret) {
  1790. pr_err("%s: Failed to create new jack\n", __func__);
  1791. return ret;
  1792. }
  1793. ret = snd_soc_card_jack_new(component->card,
  1794. "Button Jack",
  1795. WCD_MBHC_JACK_BUTTON_MASK,
  1796. &mbhc->button_jack);
  1797. if (ret) {
  1798. pr_err("Failed to create new jack\n");
  1799. return ret;
  1800. }
  1801. ret = snd_jack_set_key(mbhc->button_jack.jack,
  1802. SND_JACK_BTN_0,
  1803. KEY_MEDIA);
  1804. if (ret) {
  1805. pr_err("%s: Failed to set code for btn-0\n",
  1806. __func__);
  1807. return ret;
  1808. }
  1809. INIT_DELAYED_WORK(&mbhc->mbhc_firmware_dwork,
  1810. wcd_mbhc_fw_read);
  1811. INIT_DELAYED_WORK(&mbhc->mbhc_btn_dwork, wcd_btn_lpress_fn);
  1812. }
  1813. init_completion(&mbhc->btn_press_compl);
  1814. /* Register event notifier */
  1815. mbhc->nblock.notifier_call = wcd_event_notify;
  1816. if (mbhc->mbhc_cb->register_notifier) {
  1817. ret = mbhc->mbhc_cb->register_notifier(mbhc, &mbhc->nblock,
  1818. true);
  1819. if (ret) {
  1820. pr_err("%s: Failed to register notifier %d\n",
  1821. __func__, ret);
  1822. return ret;
  1823. }
  1824. }
  1825. init_waitqueue_head(&mbhc->wait_btn_press);
  1826. mutex_init(&mbhc->codec_resource_lock);
  1827. switch (mbhc->mbhc_detection_logic) {
  1828. case WCD_DETECTION_LEGACY:
  1829. wcd_mbhc_legacy_init(mbhc);
  1830. break;
  1831. case WCD_DETECTION_ADC:
  1832. wcd_mbhc_adc_init(mbhc);
  1833. break;
  1834. default:
  1835. pr_err("%s: Unknown detection logic type %d\n",
  1836. __func__, mbhc->mbhc_detection_logic);
  1837. break;
  1838. }
  1839. if (!mbhc->mbhc_fn ||
  1840. !mbhc->mbhc_fn->wcd_mbhc_hs_ins_irq ||
  1841. !mbhc->mbhc_fn->wcd_mbhc_hs_rem_irq ||
  1842. !mbhc->mbhc_fn->wcd_mbhc_detect_plug_type ||
  1843. !mbhc->mbhc_fn->wcd_cancel_hs_detect_plug) {
  1844. pr_err("%s: mbhc function pointer is NULL\n", __func__);
  1845. goto err_mbhc_sw_irq;
  1846. }
  1847. ret = mbhc->mbhc_cb->request_irq(component,
  1848. mbhc->intr_ids->mbhc_sw_intr,
  1849. wcd_mbhc_mech_plug_detect_irq,
  1850. "mbhc sw intr", mbhc);
  1851. if (ret) {
  1852. pr_err("%s: Failed to request irq %d, ret = %d\n", __func__,
  1853. mbhc->intr_ids->mbhc_sw_intr, ret);
  1854. goto err_mbhc_sw_irq;
  1855. }
  1856. ret = mbhc->mbhc_cb->request_irq(component,
  1857. mbhc->intr_ids->mbhc_btn_press_intr,
  1858. wcd_mbhc_btn_press_handler,
  1859. "Button Press detect", mbhc);
  1860. if (ret) {
  1861. pr_err("%s: Failed to request irq %d\n", __func__,
  1862. mbhc->intr_ids->mbhc_btn_press_intr);
  1863. goto err_btn_press_irq;
  1864. }
  1865. ret = mbhc->mbhc_cb->request_irq(component,
  1866. mbhc->intr_ids->mbhc_btn_release_intr,
  1867. wcd_mbhc_release_handler,
  1868. "Button Release detect", mbhc);
  1869. if (ret) {
  1870. pr_err("%s: Failed to request irq %d\n", __func__,
  1871. mbhc->intr_ids->mbhc_btn_release_intr);
  1872. goto err_btn_release_irq;
  1873. }
  1874. ret = mbhc->mbhc_cb->request_irq(component,
  1875. mbhc->intr_ids->mbhc_hs_ins_intr,
  1876. mbhc->mbhc_fn->wcd_mbhc_hs_ins_irq,
  1877. "Elect Insert", mbhc);
  1878. if (ret) {
  1879. pr_err("%s: Failed to request irq %d\n", __func__,
  1880. mbhc->intr_ids->mbhc_hs_ins_intr);
  1881. goto err_mbhc_hs_ins_irq;
  1882. }
  1883. mbhc->mbhc_cb->irq_control(component, mbhc->intr_ids->mbhc_hs_ins_intr,
  1884. false);
  1885. clear_bit(WCD_MBHC_ELEC_HS_INS, &mbhc->intr_status);
  1886. ret = mbhc->mbhc_cb->request_irq(component,
  1887. mbhc->intr_ids->mbhc_hs_rem_intr,
  1888. mbhc->mbhc_fn->wcd_mbhc_hs_rem_irq,
  1889. "Elect Remove", mbhc);
  1890. if (ret) {
  1891. pr_err("%s: Failed to request irq %d\n", __func__,
  1892. mbhc->intr_ids->mbhc_hs_rem_intr);
  1893. goto err_mbhc_hs_rem_irq;
  1894. }
  1895. mbhc->mbhc_cb->irq_control(component, mbhc->intr_ids->mbhc_hs_rem_intr,
  1896. false);
  1897. clear_bit(WCD_MBHC_ELEC_HS_REM, &mbhc->intr_status);
  1898. ret = mbhc->mbhc_cb->request_irq(component,
  1899. mbhc->intr_ids->hph_left_ocp,
  1900. wcd_mbhc_hphl_ocp_irq, "HPH_L OCP detect",
  1901. mbhc);
  1902. if (ret) {
  1903. pr_err("%s: Failed to request irq %d\n", __func__,
  1904. mbhc->intr_ids->hph_left_ocp);
  1905. goto err_hphl_ocp_irq;
  1906. }
  1907. ret = mbhc->mbhc_cb->request_irq(component,
  1908. mbhc->intr_ids->hph_right_ocp,
  1909. wcd_mbhc_hphr_ocp_irq, "HPH_R OCP detect",
  1910. mbhc);
  1911. if (ret) {
  1912. pr_err("%s: Failed to request irq %d\n", __func__,
  1913. mbhc->intr_ids->hph_right_ocp);
  1914. goto err_hphr_ocp_irq;
  1915. }
  1916. if (!mbhc->extdev) {
  1917. mbhc->extdev =
  1918. devm_extcon_dev_allocate(component->dev,
  1919. mbhc_ext_dev_supported_table);
  1920. if (IS_ERR(mbhc->extdev)) {
  1921. goto err_ext_dev;
  1922. ret = PTR_ERR(mbhc->extdev);
  1923. }
  1924. ret = devm_extcon_dev_register(component->dev, mbhc->extdev);
  1925. if (ret) {
  1926. pr_err("%s:audio registration failed\n", __func__);
  1927. goto err_ext_dev;
  1928. }
  1929. }
  1930. mbhc->deinit_in_progress = false;
  1931. pr_debug("%s: leave ret %d\n", __func__, ret);
  1932. return ret;
  1933. err_ext_dev:
  1934. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->hph_right_ocp, mbhc);
  1935. err_hphr_ocp_irq:
  1936. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->hph_left_ocp, mbhc);
  1937. err_hphl_ocp_irq:
  1938. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->mbhc_hs_rem_intr,
  1939. mbhc);
  1940. err_mbhc_hs_rem_irq:
  1941. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->mbhc_hs_ins_intr,
  1942. mbhc);
  1943. err_mbhc_hs_ins_irq:
  1944. mbhc->mbhc_cb->free_irq(component,
  1945. mbhc->intr_ids->mbhc_btn_release_intr,
  1946. mbhc);
  1947. err_btn_release_irq:
  1948. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->mbhc_btn_press_intr,
  1949. mbhc);
  1950. err_btn_press_irq:
  1951. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->mbhc_sw_intr, mbhc);
  1952. err_mbhc_sw_irq:
  1953. if (mbhc->mbhc_cb->register_notifier)
  1954. mbhc->mbhc_cb->register_notifier(mbhc, &mbhc->nblock, false);
  1955. mutex_destroy(&mbhc->codec_resource_lock);
  1956. err:
  1957. pr_debug("%s: leave ret %d\n", __func__, ret);
  1958. return ret;
  1959. }
  1960. EXPORT_SYMBOL(wcd_mbhc_init);
  1961. void wcd_mbhc_deinit(struct wcd_mbhc *mbhc)
  1962. {
  1963. struct snd_soc_component *component = mbhc->component;
  1964. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->mbhc_sw_intr, mbhc);
  1965. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->mbhc_btn_press_intr,
  1966. mbhc);
  1967. mbhc->mbhc_cb->free_irq(component,
  1968. mbhc->intr_ids->mbhc_btn_release_intr,
  1969. mbhc);
  1970. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->mbhc_hs_ins_intr,
  1971. mbhc);
  1972. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->mbhc_hs_rem_intr,
  1973. mbhc);
  1974. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->hph_left_ocp, mbhc);
  1975. mbhc->mbhc_cb->free_irq(component, mbhc->intr_ids->hph_right_ocp, mbhc);
  1976. if (mbhc->mbhc_cb && mbhc->mbhc_cb->register_notifier)
  1977. mbhc->mbhc_cb->register_notifier(mbhc, &mbhc->nblock, false);
  1978. if (mbhc->mbhc_fn->wcd_cancel_hs_detect_plug) {
  1979. WCD_MBHC_RSC_LOCK(mbhc);
  1980. mbhc->mbhc_fn->wcd_cancel_hs_detect_plug(mbhc,
  1981. &mbhc->correct_plug_swch);
  1982. WCD_MBHC_RSC_UNLOCK(mbhc);
  1983. }
  1984. mutex_destroy(&mbhc->codec_resource_lock);
  1985. }
  1986. EXPORT_SYMBOL(wcd_mbhc_deinit);
  1987. static int __init mbhc_init(void)
  1988. {
  1989. mutex_init(&hphl_pa_lock);
  1990. mutex_init(&hphr_pa_lock);
  1991. return 0;
  1992. }
  1993. static void __exit mbhc_exit(void)
  1994. {
  1995. mutex_destroy(&hphl_pa_lock);
  1996. mutex_destroy(&hphr_pa_lock);
  1997. }
  1998. module_init(mbhc_init);
  1999. module_exit(mbhc_exit);
  2000. MODULE_DESCRIPTION("wcd MBHC v2 module");
  2001. MODULE_LICENSE("GPL v2");