wcd-mbhc-v2.c 59 KB

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