wcd-mbhc-v2.c 62 KB

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