wcd-mbhc-v2.c 60 KB

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