wcd9378-mbhc.c 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #include <linux/module.h>
  7. #include <linux/init.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/kernel.h>
  13. #include <linux/gpio.h>
  14. #include <linux/delay.h>
  15. #include <linux/regmap.h>
  16. #include <sound/pcm.h>
  17. #include <sound/pcm_params.h>
  18. #include <sound/soc.h>
  19. #include <sound/soc-dapm.h>
  20. #include <asoc/wcdcal-hwdep.h>
  21. #include <asoc/wcd-mbhc-v2-api.h>
  22. #include "wcd9378-registers.h"
  23. #include "internal.h"
  24. #define WCD9378_ZDET_SUPPORTED true
  25. /* Z value defined in milliohm */
  26. #define WCD9378_ZDET_VAL_0 0
  27. #define WCD9378_ZDET_VAL_32 32000
  28. #define WCD9378_ZDET_VAL_400 400000
  29. #define WCD9378_ZDET_VAL_2500 2500000
  30. #define WCD9378_ZDET_VAL_100K 100000000
  31. /* Z floating defined in ohms */
  32. #define WCD9378_ZDET_FLOATING_IMPEDANCE 0x0FFFFFFE
  33. #define WCD9378_ZDET_NUM_MEASUREMENTS 900
  34. #define WCD9378_MBHC_GET_C1(c) ((c & 0xC000) >> 14)
  35. #define WCD9378_MBHC_GET_X1(x) (x & 0x3FFF)
  36. /* Z value compared in milliOhm */
  37. #define WCD9378_MBHC_IS_SECOND_RAMP_REQUIRED(z) ((z > 400000) || (z < 32000))
  38. #define WCD9378_MBHC_ZDET_CONST (86 * 16384)
  39. #define WCD9378_MBHC_MOISTURE_RREF R_24_KOHM
  40. static struct wcd_mbhc_register
  41. wcd_mbhc_registers[WCD_MBHC_REG_FUNC_MAX] = {
  42. WCD_MBHC_REGISTER("WCD_MBHC_L_DET_EN",
  43. WCD9378_ANA_MBHC_MECH, 0x80, 7, 0),
  44. WCD_MBHC_REGISTER("WCD_MBHC_GND_DET_EN",
  45. WCD9378_ANA_MBHC_MECH, 0x40, 6, 0),
  46. WCD_MBHC_REGISTER("WCD_MBHC_MECH_DETECTION_TYPE",
  47. WCD9378_ANA_MBHC_MECH, 0x20, 5, 0),
  48. WCD_MBHC_REGISTER("WCD_MBHC_MIC_CLAMP_CTL",
  49. WCD9378_MBHC_NEW_PLUG_DETECT_CTL, 0x30, 4, 0),
  50. WCD_MBHC_REGISTER("WCD_MBHC_ELECT_DETECTION_TYPE",
  51. WCD9378_ANA_MBHC_ELECT, 0x08, 3, 0),
  52. WCD_MBHC_REGISTER("WCD_MBHC_HS_L_DET_PULL_UP_CTRL",
  53. WCD9378_MBHC_NEW_INT_MECH_DET_CURRENT, 0x1F, 0, 0),
  54. WCD_MBHC_REGISTER("WCD_MBHC_HS_L_DET_PULL_UP_COMP_CTRL",
  55. WCD9378_ANA_MBHC_MECH, 0x04, 2, 0),
  56. WCD_MBHC_REGISTER("WCD_MBHC_HPHL_PLUG_TYPE",
  57. WCD9378_ANA_MBHC_MECH, 0x10, 4, 0),
  58. WCD_MBHC_REGISTER("WCD_MBHC_GND_PLUG_TYPE",
  59. WCD9378_ANA_MBHC_MECH, 0x08, 3, 0),
  60. WCD_MBHC_REGISTER("WCD_MBHC_SW_HPH_LP_100K_TO_GND",
  61. WCD9378_ANA_MBHC_MECH, 0x01, 0, 0),
  62. WCD_MBHC_REGISTER("WCD_MBHC_ELECT_SCHMT_ISRC",
  63. WCD9378_ANA_MBHC_ELECT, 0x06, 1, 0),
  64. WCD_MBHC_REGISTER("WCD_MBHC_FSM_EN",
  65. WCD9378_ANA_MBHC_ELECT, 0x80, 7, 0),
  66. WCD_MBHC_REGISTER("WCD_MBHC_INSREM_DBNC",
  67. WCD9378_MBHC_NEW_PLUG_DETECT_CTL, 0x0F, 0, 0),
  68. WCD_MBHC_REGISTER("WCD_MBHC_BTN_DBNC",
  69. WCD9378_MBHC_NEW_CTL_1, 0x0F, 0, 0),
  70. WCD_MBHC_REGISTER("WCD_MBHC_HS_VREF",
  71. WCD9378_MBHC_NEW_CTL_2, 0x03, 0, 0),
  72. WCD_MBHC_REGISTER("WCD_MBHC_HS_COMP_RESULT",
  73. WCD9378_ANA_MBHC_RESULT_3, 0x08, 3, 0),
  74. WCD_MBHC_REGISTER("WCD_MBHC_IN2P_CLAMP_STATE",
  75. WCD9378_ANA_MBHC_RESULT_3, 0x10, 4, 0),
  76. WCD_MBHC_REGISTER("WCD_MBHC_MIC_SCHMT_RESULT",
  77. WCD9378_ANA_MBHC_RESULT_3, 0x20, 5, 0),
  78. WCD_MBHC_REGISTER("WCD_MBHC_HPHL_SCHMT_RESULT",
  79. WCD9378_ANA_MBHC_RESULT_3, 0x80, 7, 0),
  80. WCD_MBHC_REGISTER("WCD_MBHC_HPHR_SCHMT_RESULT",
  81. WCD9378_ANA_MBHC_RESULT_3, 0x40, 6, 0),
  82. WCD_MBHC_REGISTER("WCD_MBHC_OCP_FSM_EN",
  83. WCD9378_HPH_OCP_CTL, 0x10, 4, 0),
  84. WCD_MBHC_REGISTER("WCD_MBHC_BTN_RESULT",
  85. WCD9378_ANA_MBHC_RESULT_3, 0x07, 0, 0),
  86. WCD_MBHC_REGISTER("WCD_MBHC_BTN_ISRC_CTL",
  87. WCD9378_ANA_MBHC_ELECT, 0x70, 4, 0),
  88. WCD_MBHC_REGISTER("WCD_MBHC_ELECT_RESULT",
  89. WCD9378_ANA_MBHC_RESULT_3, 0xFF, 0, 0),
  90. WCD_MBHC_REGISTER("WCD_MBHC_MICB_CTRL",
  91. WCD9378_ANA_MICB2, 0xC0, 6, 0),
  92. WCD_MBHC_REGISTER("WCD_MBHC_HPH_CNP_WG_TIME",
  93. WCD9378_HPH_CNP_WG_TIME, 0xFF, 0, 0),
  94. WCD_MBHC_REGISTER("WCD_MBHC_HPHR_PA_EN",
  95. WCD9378_ANA_HPH, 0x40, 6, 0),
  96. WCD_MBHC_REGISTER("WCD_MBHC_HPHL_PA_EN",
  97. WCD9378_ANA_HPH, 0x80, 7, 0),
  98. WCD_MBHC_REGISTER("WCD_MBHC_HPH_PA_EN",
  99. WCD9378_ANA_HPH, 0xC0, 6, 0),
  100. WCD_MBHC_REGISTER("WCD_MBHC_SWCH_LEVEL_REMOVE",
  101. WCD9378_ANA_MBHC_RESULT_3, 0x10, 4, 0),
  102. WCD_MBHC_REGISTER("WCD_MBHC_PULLDOWN_CTRL",
  103. 0, 0, 0, 0),
  104. WCD_MBHC_REGISTER("WCD_MBHC_ANC_DET_EN",
  105. WCD9378_MBHC_CTL_BCS, 0x02, 1, 0),
  106. WCD_MBHC_REGISTER("WCD_MBHC_FSM_STATUS",
  107. WCD9378_MBHC_NEW_FSM_STATUS, 0x01, 0, 0),
  108. WCD_MBHC_REGISTER("WCD_MBHC_MUX_CTL",
  109. WCD9378_MBHC_NEW_CTL_2, 0x70, 4, 0),
  110. WCD_MBHC_REGISTER("WCD_MBHC_MOISTURE_STATUS",
  111. WCD9378_MBHC_NEW_FSM_STATUS, 0x20, 5, 0),
  112. WCD_MBHC_REGISTER("WCD_MBHC_HPHR_GND",
  113. WCD9378_HPH_PA_CTL2, 0x40, 6, 0),
  114. WCD_MBHC_REGISTER("WCD_MBHC_HPHL_GND",
  115. WCD9378_HPH_PA_CTL2, 0x10, 4, 0),
  116. WCD_MBHC_REGISTER("WCD_MBHC_HPHL_OCP_DET_EN",
  117. WCD9378_HPH_L_TEST, 0x01, 0, 0),
  118. WCD_MBHC_REGISTER("WCD_MBHC_HPHR_OCP_DET_EN",
  119. WCD9378_HPH_R_TEST, 0x01, 0, 0),
  120. WCD_MBHC_REGISTER("WCD_MBHC_HPHL_OCP_STATUS",
  121. SWRS_SCP_SDCA_INTSTAT_1, 0x80, 7, 0),
  122. WCD_MBHC_REGISTER("WCD_MBHC_HPHR_OCP_STATUS",
  123. SWRS_SCP_SDCA_INTSTAT_1, 0x20, 5, 0),
  124. WCD_MBHC_REGISTER("WCD_MBHC_ADC_EN",
  125. WCD9378_MBHC_NEW_CTL_1, 0x40, 6, 0),
  126. WCD_MBHC_REGISTER("WCD_MBHC_ADC_COMPLETE", WCD9378_MBHC_NEW_FSM_STATUS,
  127. 0x40, 6, 0),
  128. WCD_MBHC_REGISTER("WCD_MBHC_ADC_TIMEOUT", WCD9378_MBHC_NEW_FSM_STATUS,
  129. 0x80, 7, 0),
  130. WCD_MBHC_REGISTER("WCD_MBHC_ADC_RESULT", WCD9378_MBHC_NEW_ADC_RESULT,
  131. 0xFF, 0, 0),
  132. WCD_MBHC_REGISTER("WCD_MBHC_MICB2_VOUT", WCD9378_ANA_MICB2, 0x3F, 0, 0),
  133. WCD_MBHC_REGISTER("WCD_MBHC_ADC_MODE",
  134. WCD9378_MBHC_NEW_CTL_1, 0x10, 4, 0),
  135. WCD_MBHC_REGISTER("WCD_MBHC_DETECTION_DONE",
  136. WCD9378_MBHC_NEW_CTL_1, 0x20, 5, 0),
  137. WCD_MBHC_REGISTER("WCD_MBHC_ELECT_ISRC_EN",
  138. WCD9378_ANA_MBHC_ZDET, 0x02, 1, 0),
  139. };
  140. static const struct wcd_mbhc_intr intr_ids = {
  141. .mbhc_sw_intr = WCD9378_IRQ_MBHC_SW_DET,
  142. .mbhc_btn_press_intr = WCD9378_IRQ_MBHC_BUTTON_PRESS_DET,
  143. .mbhc_btn_release_intr = WCD9378_IRQ_MBHC_BUTTON_RELEASE_DET,
  144. .mbhc_hs_ins_intr = WCD9378_IRQ_MBHC_ELECT_INS_REM_LEG_DET,
  145. .mbhc_hs_rem_intr = WCD9378_IRQ_MBHC_ELECT_INS_REM_DET,
  146. .hph_left_ocp = WCD9378_IRQ_HPHL_OCP_INT,
  147. .hph_right_ocp = WCD9378_IRQ_HPHR_OCP_INT,
  148. };
  149. struct wcd9378_mbhc_zdet_param {
  150. u16 ldo_ctl;
  151. u16 noff;
  152. u16 nshift;
  153. u16 btn5;
  154. u16 btn6;
  155. u16 btn7;
  156. };
  157. static int wcd9378_mbhc_request_irq(struct snd_soc_component *component,
  158. int irq, irq_handler_t handler,
  159. const char *name, void *data)
  160. {
  161. struct wcd9378_priv *wcd9378 = dev_get_drvdata(component->dev);
  162. return wcd_request_irq(&wcd9378->irq_info, irq, name, handler, data);
  163. }
  164. static void wcd9378_mbhc_irq_control(struct snd_soc_component *component,
  165. int irq, bool enable)
  166. {
  167. struct wcd9378_priv *wcd9378 = dev_get_drvdata(component->dev);
  168. if (enable)
  169. wcd_enable_irq(&wcd9378->irq_info, irq);
  170. else
  171. wcd_disable_irq(&wcd9378->irq_info, irq);
  172. }
  173. static int wcd9378_mbhc_free_irq(struct snd_soc_component *component,
  174. int irq, void *data)
  175. {
  176. struct wcd9378_priv *wcd9378 = dev_get_drvdata(component->dev);
  177. wcd_free_irq(&wcd9378->irq_info, irq, data);
  178. return 0;
  179. }
  180. static void wcd9378_mbhc_clk_setup(struct snd_soc_component *component,
  181. bool enable)
  182. {
  183. if (enable) {
  184. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_1,
  185. 0x80, 0x80);
  186. snd_soc_component_update_bits(component, WCD9378_CDC_ANA_TX_CLK_CTL,
  187. 0x01, 0x01);
  188. } else {
  189. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_1,
  190. 0x80, 0x00);
  191. snd_soc_component_update_bits(component, WCD9378_CDC_ANA_TX_CLK_CTL,
  192. 0x01, 0x00);
  193. }
  194. }
  195. static int wcd9378_mbhc_btn_to_num(struct snd_soc_component *component)
  196. {
  197. return snd_soc_component_read(component, WCD9378_ANA_MBHC_RESULT_3) & 0x7;
  198. }
  199. static void wcd9378_mbhc_mbhc_bias_control(struct snd_soc_component *component,
  200. bool enable)
  201. {
  202. if (enable)
  203. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_ELECT,
  204. 0x01, 0x01);
  205. else
  206. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_ELECT,
  207. 0x01, 0x00);
  208. }
  209. static void wcd9378_mbhc_get_micbias_val(struct wcd_mbhc *mbhc,
  210. int *mb)
  211. {
  212. struct snd_soc_component *component = mbhc->component;
  213. struct wcd9378_priv *wcd9378 = dev_get_drvdata(component->dev);
  214. *mb = wcd9378->curr_micbias2;
  215. }
  216. static void wcd9378_mbhc_program_btn_thr(struct snd_soc_component *component,
  217. s16 *btn_low, s16 *btn_high,
  218. int num_btn, bool is_micbias)
  219. {
  220. int i;
  221. int vth;
  222. if (num_btn > WCD_MBHC_DEF_BUTTONS) {
  223. dev_err(component->dev, "%s: invalid number of buttons: %d\n",
  224. __func__, num_btn);
  225. return;
  226. }
  227. for (i = 0; i < num_btn; i++) {
  228. vth = ((btn_high[i] * 2) / 25) & 0x3F;
  229. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_BTN0 + i,
  230. 0xFC, vth << 2);
  231. dev_dbg(component->dev, "%s: btn_high[%d]: %d, vth: %d\n",
  232. __func__, i, btn_high[i], vth);
  233. }
  234. }
  235. static bool wcd9378_mbhc_lock_sleep(struct wcd_mbhc *mbhc, bool lock)
  236. {
  237. struct snd_soc_component *component = mbhc->component;
  238. struct wcd9378_priv *wcd9378 = dev_get_drvdata(component->dev);
  239. wcd9378->wakeup((void *)wcd9378, lock);
  240. return true;
  241. }
  242. static int wcd9378_mbhc_register_notifier(struct wcd_mbhc *mbhc,
  243. struct notifier_block *nblock,
  244. bool enable)
  245. {
  246. struct wcd9378_mbhc *wcd9378_mbhc;
  247. wcd9378_mbhc = container_of(mbhc, struct wcd9378_mbhc, wcd_mbhc);
  248. if (enable)
  249. return blocking_notifier_chain_register(&wcd9378_mbhc->notifier,
  250. nblock);
  251. else
  252. return blocking_notifier_chain_unregister(
  253. &wcd9378_mbhc->notifier, nblock);
  254. }
  255. static bool wcd9378_mbhc_micb_en_status(struct wcd_mbhc *mbhc, int micb_num)
  256. {
  257. struct snd_soc_component *component = mbhc->component;
  258. struct wcd9378_priv *wcd9378 =
  259. dev_get_drvdata(component->dev);
  260. if (micb_num == MIC_BIAS_2) {
  261. if (wcd9378->curr_micbias2)
  262. return true;
  263. }
  264. return false;
  265. }
  266. static bool wcd9378_mbhc_hph_pa_on_status(struct snd_soc_component *component)
  267. {
  268. if (snd_soc_component_read(component, WCD9378_PDE47_ACT_PS))
  269. return false;
  270. else
  271. return true;
  272. }
  273. static void wcd9378_mbhc_hph_l_pull_up_control(
  274. struct snd_soc_component *component,
  275. int pull_up_cur)
  276. {
  277. /* Default pull up current to 2uA */
  278. if (pull_up_cur > HS_PULLUP_I_OFF || pull_up_cur < HS_PULLUP_I_3P0_UA ||
  279. pull_up_cur == HS_PULLUP_I_DEFAULT)
  280. pull_up_cur = HS_PULLUP_I_2P0_UA;
  281. dev_dbg(component->dev, "%s: HS pull up current:%d\n",
  282. __func__, pull_up_cur);
  283. snd_soc_component_update_bits(component,
  284. WCD9378_MBHC_NEW_INT_MECH_DET_CURRENT,
  285. 0x1F, pull_up_cur);
  286. }
  287. static int wcd9378_mbhc_request_micbias(struct snd_soc_component *component,
  288. int micb_num, int req)
  289. {
  290. return wcd9378_micbias_control(component, micb_num, req, false);
  291. }
  292. static void wcd9378_mbhc_micb_ramp_control(struct snd_soc_component *component,
  293. bool enable)
  294. {
  295. if (enable) {
  296. snd_soc_component_update_bits(component, WCD9378_ANA_MICB2_RAMP,
  297. 0x1C, 0x0C);
  298. snd_soc_component_update_bits(component, WCD9378_ANA_MICB2_RAMP,
  299. 0x80, 0x80);
  300. } else {
  301. snd_soc_component_update_bits(component, WCD9378_ANA_MICB2_RAMP,
  302. 0x80, 0x00);
  303. snd_soc_component_update_bits(component, WCD9378_ANA_MICB2_RAMP,
  304. 0x1C, 0x00);
  305. }
  306. }
  307. static struct firmware_cal *wcd9378_get_hwdep_fw_cal(struct wcd_mbhc *mbhc,
  308. enum wcd_cal_type type)
  309. {
  310. struct wcd9378_mbhc *wcd9378_mbhc;
  311. struct firmware_cal *hwdep_cal;
  312. struct snd_soc_component *component = mbhc->component;
  313. wcd9378_mbhc = container_of(mbhc, struct wcd9378_mbhc, wcd_mbhc);
  314. if (!component) {
  315. pr_err("%s: NULL component pointer\n", __func__);
  316. return NULL;
  317. }
  318. hwdep_cal = wcdcal_get_fw_cal(wcd9378_mbhc->fw_data, type);
  319. if (!hwdep_cal)
  320. dev_err(component->dev, "%s: cal not sent by %d\n",
  321. __func__, type);
  322. return hwdep_cal;
  323. }
  324. static int wcd9378_mbhc_micb_ctrl_threshold_mic(
  325. struct snd_soc_component *component,
  326. int micb_num, bool req_en)
  327. {
  328. struct wcd9378_pdata *pdata = dev_get_platdata(component->dev);
  329. int rc, micb_mv;
  330. if (micb_num != MIC_BIAS_2)
  331. return -EINVAL;
  332. /*
  333. * If device tree micbias level is already above the minimum
  334. * voltage needed to detect threshold microphone, then do
  335. * not change the micbias, just return.
  336. */
  337. if (pdata->micbias.micb2_mv >= WCD_MBHC_THR_HS_MICB_MV)
  338. return 0;
  339. micb_mv = req_en ? WCD_MBHC_THR_HS_MICB_MV : pdata->micbias.micb2_mv;
  340. rc = wcd9378_mbhc_micb_adjust_voltage(component, micb_mv, MIC_BIAS_2);
  341. return rc;
  342. }
  343. static inline void wcd9378_mbhc_get_result_params(struct wcd9378_priv *wcd9378,
  344. s16 *d1_a, u16 noff,
  345. int32_t *zdet)
  346. {
  347. int i;
  348. int val, val1;
  349. s16 c1;
  350. s32 x1, d1;
  351. int32_t denom;
  352. int minCode_param[] = {
  353. 3277, 1639, 820, 410, 205, 103, 52, 26
  354. };
  355. regmap_update_bits(wcd9378->regmap, WCD9378_ANA_MBHC_ZDET, 0x20, 0x20);
  356. for (i = 0; i < WCD9378_ZDET_NUM_MEASUREMENTS; i++) {
  357. regmap_read(wcd9378->regmap, WCD9378_ANA_MBHC_RESULT_2, &val);
  358. if (val & 0x80)
  359. break;
  360. }
  361. val = val << 0x8;
  362. regmap_read(wcd9378->regmap, WCD9378_ANA_MBHC_RESULT_1, &val1);
  363. val |= val1;
  364. regmap_update_bits(wcd9378->regmap, WCD9378_ANA_MBHC_ZDET, 0x20, 0x00);
  365. x1 = WCD9378_MBHC_GET_X1(val);
  366. c1 = WCD9378_MBHC_GET_C1(val);
  367. /* If ramp is not complete, give additional 5ms */
  368. if ((c1 < 2) && x1)
  369. usleep_range(5000, 5050);
  370. if (!c1 || !x1) {
  371. dev_dbg(wcd9378->dev,
  372. "%s: Impedance detect ramp error, c1=%d, x1=0x%x\n",
  373. __func__, c1, x1);
  374. *zdet = WCD9378_ZDET_VAL_0;
  375. goto ramp_down;
  376. }
  377. d1 = d1_a[c1];
  378. denom = (x1 * d1) - (1 << (14 - noff));
  379. if (denom > 0)
  380. *zdet = (WCD9378_MBHC_ZDET_CONST * 1000) / denom;
  381. else if (x1 < minCode_param[noff])
  382. *zdet = WCD9378_ZDET_FLOATING_IMPEDANCE;
  383. dev_dbg(wcd9378->dev, "%s: d1=%d, c1=%d, x1=0x%x, z_val=%d(milliOhm)\n",
  384. __func__, d1, c1, x1, *zdet);
  385. ramp_down:
  386. i = 0;
  387. while (x1) {
  388. regmap_read(wcd9378->regmap,
  389. WCD9378_ANA_MBHC_RESULT_1, &val);
  390. regmap_read(wcd9378->regmap,
  391. WCD9378_ANA_MBHC_RESULT_2, &val1);
  392. val = val << 0x08;
  393. val |= val1;
  394. x1 = WCD9378_MBHC_GET_X1(val);
  395. i++;
  396. if (i == WCD9378_ZDET_NUM_MEASUREMENTS)
  397. break;
  398. }
  399. }
  400. static void wcd9378_mbhc_zdet_ramp(struct snd_soc_component *component,
  401. struct wcd9378_mbhc_zdet_param *zdet_param,
  402. int32_t *zl, int32_t *zr, s16 *d1_a)
  403. {
  404. struct wcd9378_priv *wcd9378 = dev_get_drvdata(component->dev);
  405. int32_t zdet = 0;
  406. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_ZDET_ANA_CTL,
  407. 0x70, zdet_param->ldo_ctl << 4);
  408. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_BTN5, 0xFC,
  409. zdet_param->btn5);
  410. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_BTN6, 0xFC,
  411. zdet_param->btn6);
  412. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_BTN7, 0xFC,
  413. zdet_param->btn7);
  414. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_ZDET_ANA_CTL,
  415. 0x0F, zdet_param->noff);
  416. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_ZDET_RAMP_CTL,
  417. 0x0F, zdet_param->nshift);
  418. if (!zl)
  419. goto z_right;
  420. /* Start impedance measurement for HPH_L */
  421. regmap_update_bits(wcd9378->regmap,
  422. WCD9378_ANA_MBHC_ZDET, 0x80, 0x80);
  423. dev_dbg(wcd9378->dev, "%s: ramp for HPH_L, noff = %d\n",
  424. __func__, zdet_param->noff);
  425. wcd9378_mbhc_get_result_params(wcd9378, d1_a, zdet_param->noff, &zdet);
  426. regmap_update_bits(wcd9378->regmap,
  427. WCD9378_ANA_MBHC_ZDET, 0x80, 0x00);
  428. *zl = zdet;
  429. z_right:
  430. if (!zr)
  431. return;
  432. /* Start impedance measurement for HPH_R */
  433. regmap_update_bits(wcd9378->regmap,
  434. WCD9378_ANA_MBHC_ZDET, 0x40, 0x40);
  435. dev_dbg(wcd9378->dev, "%s: ramp for HPH_R, noff = %d\n",
  436. __func__, zdet_param->noff);
  437. wcd9378_mbhc_get_result_params(wcd9378, d1_a, zdet_param->noff, &zdet);
  438. regmap_update_bits(wcd9378->regmap,
  439. WCD9378_ANA_MBHC_ZDET, 0x40, 0x00);
  440. *zr = zdet;
  441. }
  442. static inline void wcd9378_wcd_mbhc_qfuse_cal(
  443. struct snd_soc_component *component,
  444. int32_t *z_val, int flag_l_r)
  445. {
  446. s16 q1;
  447. int q1_cal;
  448. if (*z_val < (WCD9378_ZDET_VAL_400/1000))
  449. q1 = snd_soc_component_read(component,
  450. WCD9378_EFUSE_REG_23 + (2 * flag_l_r));
  451. else
  452. q1 = snd_soc_component_read(component,
  453. WCD9378_EFUSE_REG_24 + (2 * flag_l_r));
  454. if (q1 & 0x80)
  455. q1_cal = (10000 - ((q1 & 0x7F) * 25));
  456. else
  457. q1_cal = (10000 + (q1 * 25));
  458. if (q1_cal > 0)
  459. *z_val = ((*z_val) * 10000) / q1_cal;
  460. }
  461. static void wcd9378_wcd_mbhc_calc_impedance(struct wcd_mbhc *mbhc, uint32_t *zl,
  462. uint32_t *zr)
  463. {
  464. struct snd_soc_component *component = mbhc->component;
  465. struct wcd9378_priv *wcd9378 = dev_get_drvdata(component->dev);
  466. s16 reg0, reg1, reg2, reg3, reg4;
  467. int32_t z1L, z1R, z1Ls;
  468. int zMono, z_diff1, z_diff2;
  469. bool is_fsm_disable = false;
  470. struct wcd9378_mbhc_zdet_param zdet_param[] = {
  471. {4, 0, 4, 0x08, 0x14, 0x18}, /* 0ohm < Z < 32ohm */
  472. {2, 0, 3, 0x20, 0x7C, 0x90}, /* 32ohm < Z < 400ohm */
  473. {2, 4, 6, 0x20, 0x7C, 0x90}, /* 400ohm < Z < 2500ohm */
  474. {2, 5, 7, 0x20, 0x7C, 0x90}, /* >2500ohm or < 0ohm */
  475. };
  476. struct wcd9378_mbhc_zdet_param *zdet_param_ptr = NULL;
  477. s16 d1_a[][4] = {
  478. {0, 30, 90, 30},
  479. {0, 30, 30, 5},
  480. {0, 30, 30, 5},
  481. {0, 30, 30, 5},
  482. };
  483. s16 *d1 = NULL;
  484. WCD_MBHC_RSC_ASSERT_LOCKED(mbhc);
  485. reg0 = snd_soc_component_read(component, WCD9378_ANA_MBHC_BTN5);
  486. reg1 = snd_soc_component_read(component, WCD9378_ANA_MBHC_BTN6);
  487. reg2 = snd_soc_component_read(component, WCD9378_ANA_MBHC_BTN7);
  488. reg3 = snd_soc_component_read(component, WCD9378_MBHC_CTL_CLK);
  489. reg4 = snd_soc_component_read(component, WCD9378_MBHC_NEW_ZDET_ANA_CTL);
  490. if (snd_soc_component_read(component, WCD9378_ANA_MBHC_ELECT) & 0x80) {
  491. is_fsm_disable = true;
  492. regmap_update_bits(wcd9378->regmap,
  493. WCD9378_ANA_MBHC_ELECT, 0x80, 0x00);
  494. }
  495. /* For NO-jack, disable L_DET_EN before Z-det measurements */
  496. if (mbhc->hphl_swh)
  497. regmap_update_bits(wcd9378->regmap,
  498. WCD9378_ANA_MBHC_MECH, 0x80, 0x00);
  499. /* Turn off 100k pull down on HPHL */
  500. regmap_update_bits(wcd9378->regmap,
  501. WCD9378_ANA_MBHC_MECH, 0x01, 0x00);
  502. /* Disable surge protection before impedance detection.
  503. * This is done to give correct value for high impedance.
  504. */
  505. regmap_update_bits(wcd9378->regmap,
  506. WCD9378_HPH_SURGE_HPHLR_SURGE_EN, 0xC0, 0x00);
  507. /* 1ms delay needed after disable surge protection */
  508. usleep_range(1000, 1010);
  509. /* First get impedance on Left */
  510. d1 = d1_a[1];
  511. zdet_param_ptr = &zdet_param[1];
  512. wcd9378_mbhc_zdet_ramp(component, zdet_param_ptr, &z1L, NULL, d1);
  513. if (!WCD9378_MBHC_IS_SECOND_RAMP_REQUIRED(z1L))
  514. goto left_ch_impedance;
  515. /* Second ramp for left ch */
  516. if ((z1L < WCD9378_ZDET_VAL_32) &&
  517. (z1L >= WCD9378_ZDET_VAL_0)) {
  518. zdet_param_ptr = &zdet_param[0];
  519. d1 = d1_a[0];
  520. } else if ((z1L > WCD9378_ZDET_VAL_400) &&
  521. (z1L <= WCD9378_ZDET_VAL_2500)) {
  522. zdet_param_ptr = &zdet_param[2];
  523. d1 = d1_a[2];
  524. } else if ((z1L > WCD9378_ZDET_VAL_2500) ||
  525. (z1L < WCD9378_ZDET_VAL_0)) {
  526. zdet_param_ptr = &zdet_param[3];
  527. d1 = d1_a[3];
  528. }
  529. wcd9378_mbhc_zdet_ramp(component, zdet_param_ptr, &z1L, NULL, d1);
  530. left_ch_impedance:
  531. if ((z1L == WCD9378_ZDET_FLOATING_IMPEDANCE) ||
  532. (z1L > WCD9378_ZDET_VAL_100K)) {
  533. *zl = WCD9378_ZDET_FLOATING_IMPEDANCE;
  534. zdet_param_ptr = &zdet_param[1];
  535. d1 = d1_a[1];
  536. } else {
  537. *zl = z1L/1000;
  538. wcd9378_wcd_mbhc_qfuse_cal(component, zl, 0);
  539. }
  540. dev_dbg(component->dev, "%s: impedance on HPH_L = %d(ohms)\n",
  541. __func__, *zl);
  542. /* Start of right impedance ramp and calculation */
  543. wcd9378_mbhc_zdet_ramp(component, zdet_param_ptr, NULL, &z1R, d1);
  544. if (WCD9378_MBHC_IS_SECOND_RAMP_REQUIRED(z1R)) {
  545. if ((((z1R > WCD9378_ZDET_VAL_2500) ||
  546. (z1R < WCD9378_ZDET_VAL_0)) &&
  547. (zdet_param_ptr->noff == 0x6)) ||
  548. ((*zl) != WCD9378_ZDET_FLOATING_IMPEDANCE))
  549. goto right_ch_impedance;
  550. /* Second ramp for right ch */
  551. if ((z1R < WCD9378_ZDET_VAL_32) &&
  552. (z1R >= WCD9378_ZDET_VAL_0)) {
  553. zdet_param_ptr = &zdet_param[0];
  554. d1 = d1_a[0];
  555. } else if ((z1R > WCD9378_ZDET_VAL_400) &&
  556. (z1R <= WCD9378_ZDET_VAL_2500)) {
  557. zdet_param_ptr = &zdet_param[2];
  558. d1 = d1_a[2];
  559. } else if ((z1L > WCD9378_ZDET_VAL_2500) ||
  560. (z1L < WCD9378_ZDET_VAL_0)) {
  561. zdet_param_ptr = &zdet_param[3];
  562. d1 = d1_a[3];
  563. }
  564. wcd9378_mbhc_zdet_ramp(component, zdet_param_ptr, NULL, &z1R, d1);
  565. }
  566. right_ch_impedance:
  567. if ((z1R == WCD9378_ZDET_FLOATING_IMPEDANCE) ||
  568. (z1R > WCD9378_ZDET_VAL_100K)) {
  569. *zr = WCD9378_ZDET_FLOATING_IMPEDANCE;
  570. } else {
  571. *zr = z1R/1000;
  572. wcd9378_wcd_mbhc_qfuse_cal(component, zr, 1);
  573. }
  574. dev_dbg(component->dev, "%s: impedance on HPH_R = %d(ohms)\n",
  575. __func__, *zr);
  576. /* Mono/stereo detection */
  577. if ((*zl == WCD9378_ZDET_FLOATING_IMPEDANCE) &&
  578. (*zr == WCD9378_ZDET_FLOATING_IMPEDANCE)) {
  579. dev_dbg(component->dev,
  580. "%s: plug type is invalid or extension cable\n",
  581. __func__);
  582. goto zdet_complete;
  583. }
  584. if ((*zl == WCD9378_ZDET_FLOATING_IMPEDANCE) ||
  585. (*zr == WCD9378_ZDET_FLOATING_IMPEDANCE) ||
  586. ((*zl < WCD_MONO_HS_MIN_THR) && (*zr > WCD_MONO_HS_MIN_THR)) ||
  587. ((*zl > WCD_MONO_HS_MIN_THR) && (*zr < WCD_MONO_HS_MIN_THR))) {
  588. dev_dbg(component->dev,
  589. "%s: Mono plug type with one ch floating or shorted to GND\n",
  590. __func__);
  591. mbhc->hph_type = WCD_MBHC_HPH_MONO;
  592. goto zdet_complete;
  593. }
  594. snd_soc_component_update_bits(component, WCD9378_HPH_R_ATEST, 0x01, 0x01);
  595. snd_soc_component_update_bits(component, WCD9378_HPH_PA_CTL2, 0x40, 0x01);
  596. if (*zl < (WCD9378_ZDET_VAL_32/1000))
  597. wcd9378_mbhc_zdet_ramp(component, &zdet_param[0], &z1Ls, NULL, d1);
  598. else
  599. wcd9378_mbhc_zdet_ramp(component, &zdet_param[1], &z1Ls, NULL, d1);
  600. snd_soc_component_update_bits(component, WCD9378_HPH_PA_CTL2, 0x40, 0x00);
  601. snd_soc_component_update_bits(component, WCD9378_HPH_R_ATEST, 0x01, 0x00);
  602. z1Ls /= 1000;
  603. wcd9378_wcd_mbhc_qfuse_cal(component, &z1Ls, 0);
  604. /* Parallel of left Z and 9 ohm pull down resistor */
  605. zMono = ((*zl) * 9) / ((*zl) + 9);
  606. z_diff1 = (z1Ls > zMono) ? (z1Ls - zMono) : (zMono - z1Ls);
  607. z_diff2 = ((*zl) > z1Ls) ? ((*zl) - z1Ls) : (z1Ls - (*zl));
  608. if ((z_diff1 * (*zl + z1Ls)) > (z_diff2 * (z1Ls + zMono))) {
  609. dev_dbg(component->dev, "%s: stereo plug type detected\n",
  610. __func__);
  611. mbhc->hph_type = WCD_MBHC_HPH_STEREO;
  612. } else {
  613. dev_dbg(component->dev, "%s: MONO plug type detected\n",
  614. __func__);
  615. mbhc->hph_type = WCD_MBHC_HPH_MONO;
  616. }
  617. /* Enable surge protection again after impedance detection */
  618. regmap_update_bits(wcd9378->regmap,
  619. WCD9378_HPH_SURGE_HPHLR_SURGE_EN, 0xC0, 0xC0);
  620. zdet_complete:
  621. snd_soc_component_write(component, WCD9378_ANA_MBHC_BTN5, reg0);
  622. snd_soc_component_write(component, WCD9378_ANA_MBHC_BTN6, reg1);
  623. snd_soc_component_write(component, WCD9378_ANA_MBHC_BTN7, reg2);
  624. /* Turn on 100k pull down on HPHL */
  625. regmap_update_bits(wcd9378->regmap,
  626. WCD9378_ANA_MBHC_MECH, 0x01, 0x01);
  627. /* For NO-jack, re-enable L_DET_EN after Z-det measurements */
  628. if (mbhc->hphl_swh)
  629. regmap_update_bits(wcd9378->regmap,
  630. WCD9378_ANA_MBHC_MECH, 0x80, 0x80);
  631. snd_soc_component_write(component, WCD9378_MBHC_NEW_ZDET_ANA_CTL, reg4);
  632. snd_soc_component_write(component, WCD9378_MBHC_CTL_CLK, reg3);
  633. if (is_fsm_disable)
  634. regmap_update_bits(wcd9378->regmap,
  635. WCD9378_ANA_MBHC_ELECT, 0x80, 0x80);
  636. }
  637. static void wcd9378_mbhc_gnd_det_ctrl(struct snd_soc_component *component,
  638. bool enable)
  639. {
  640. if (enable) {
  641. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_MECH,
  642. 0x02, 0x02);
  643. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_MECH,
  644. 0x40, 0x40);
  645. } else {
  646. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_MECH,
  647. 0x40, 0x00);
  648. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_MECH,
  649. 0x02, 0x00);
  650. }
  651. }
  652. static void wcd9378_mbhc_hph_pull_down_ctrl(struct snd_soc_component *component,
  653. bool enable)
  654. {
  655. if (enable) {
  656. snd_soc_component_update_bits(component, WCD9378_HPH_PA_CTL2,
  657. 0x40, 0x40);
  658. snd_soc_component_update_bits(component, WCD9378_HPH_PA_CTL2,
  659. 0x10, 0x10);
  660. } else {
  661. snd_soc_component_update_bits(component, WCD9378_HPH_PA_CTL2,
  662. 0x40, 0x00);
  663. snd_soc_component_update_bits(component, WCD9378_HPH_PA_CTL2,
  664. 0x10, 0x00);
  665. }
  666. }
  667. static void wcd9378_mbhc_moisture_config(struct wcd_mbhc *mbhc)
  668. {
  669. struct snd_soc_component *component = mbhc->component;
  670. if ((mbhc->moist_rref == R_OFF) ||
  671. (mbhc->mbhc_cfg->enable_usbc_analog)) {
  672. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_2,
  673. 0x0C, R_OFF << 2);
  674. return;
  675. }
  676. /* Do not enable moisture detection if jack type is NC */
  677. if (!mbhc->hphl_swh) {
  678. dev_dbg(component->dev, "%s: disable moisture detection for NC\n",
  679. __func__);
  680. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_2,
  681. 0x0C, R_OFF << 2);
  682. return;
  683. }
  684. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_2,
  685. 0x0C, mbhc->moist_rref << 2);
  686. }
  687. static void wcd9378_mbhc_moisture_detect_en(struct wcd_mbhc *mbhc, bool enable)
  688. {
  689. struct snd_soc_component *component = mbhc->component;
  690. if (enable)
  691. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_2,
  692. 0x0C, mbhc->moist_rref << 2);
  693. else
  694. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_2,
  695. 0x0C, R_OFF << 2);
  696. }
  697. static bool wcd9378_mbhc_get_moisture_status(struct wcd_mbhc *mbhc)
  698. {
  699. struct snd_soc_component *component = mbhc->component;
  700. bool ret = false;
  701. if ((mbhc->moist_rref == R_OFF) ||
  702. (mbhc->mbhc_cfg->enable_usbc_analog)) {
  703. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_2,
  704. 0x0C, R_OFF << 2);
  705. goto done;
  706. }
  707. /* Do not enable moisture detection if jack type is NC */
  708. if (!mbhc->hphl_swh) {
  709. dev_dbg(component->dev, "%s: disable moisture detection for NC\n",
  710. __func__);
  711. snd_soc_component_update_bits(component, WCD9378_MBHC_NEW_CTL_2,
  712. 0x0C, R_OFF << 2);
  713. goto done;
  714. }
  715. /*
  716. * If moisture_en is already enabled, then skip to plug type
  717. * detection.
  718. */
  719. if ((snd_soc_component_read(component, WCD9378_MBHC_NEW_CTL_2) & 0x0C))
  720. goto done;
  721. wcd9378_mbhc_moisture_detect_en(mbhc, true);
  722. /* Read moisture comparator status */
  723. ret = ((snd_soc_component_read(component, WCD9378_MBHC_NEW_FSM_STATUS)
  724. & 0x20) ? 0 : 1);
  725. done:
  726. return ret;
  727. }
  728. static void wcd9378_mbhc_moisture_polling_ctrl(struct wcd_mbhc *mbhc,
  729. bool enable)
  730. {
  731. struct snd_soc_component *component = mbhc->component;
  732. snd_soc_component_update_bits(component,
  733. WCD9378_MBHC_NEW_INT_MOISTURE_DET_POLLING_CTRL,
  734. 0x04, (enable << 2));
  735. }
  736. static void wcd9378_mbhc_bcs_enable(struct wcd_mbhc *mbhc,
  737. bool bcs_enable)
  738. {
  739. if (bcs_enable)
  740. wcd9378_disable_bcs_before_slow_insert(mbhc->component, false);
  741. else
  742. wcd9378_disable_bcs_before_slow_insert(mbhc->component, true);
  743. }
  744. static const struct wcd_mbhc_cb mbhc_cb = {
  745. .request_irq = wcd9378_mbhc_request_irq,
  746. .irq_control = wcd9378_mbhc_irq_control,
  747. .free_irq = wcd9378_mbhc_free_irq,
  748. .clk_setup = wcd9378_mbhc_clk_setup,
  749. .map_btn_code_to_num = wcd9378_mbhc_btn_to_num,
  750. .mbhc_bias = wcd9378_mbhc_mbhc_bias_control,
  751. .get_micbias_val = wcd9378_mbhc_get_micbias_val,
  752. .set_btn_thr = wcd9378_mbhc_program_btn_thr,
  753. .lock_sleep = wcd9378_mbhc_lock_sleep,
  754. .register_notifier = wcd9378_mbhc_register_notifier,
  755. .micbias_enable_status = wcd9378_mbhc_micb_en_status,
  756. .hph_pa_on_status = wcd9378_mbhc_hph_pa_on_status,
  757. .hph_pull_up_control_v2 = wcd9378_mbhc_hph_l_pull_up_control,
  758. .mbhc_micbias_control = wcd9378_mbhc_request_micbias,
  759. .mbhc_micb_ramp_control = wcd9378_mbhc_micb_ramp_control,
  760. .get_hwdep_fw_cal = wcd9378_get_hwdep_fw_cal,
  761. .mbhc_micb_ctrl_thr_mic = wcd9378_mbhc_micb_ctrl_threshold_mic,
  762. .compute_impedance = wcd9378_wcd_mbhc_calc_impedance,
  763. .mbhc_gnd_det_ctrl = wcd9378_mbhc_gnd_det_ctrl,
  764. .hph_pull_down_ctrl = wcd9378_mbhc_hph_pull_down_ctrl,
  765. .mbhc_moisture_config = wcd9378_mbhc_moisture_config,
  766. .mbhc_get_moisture_status = wcd9378_mbhc_get_moisture_status,
  767. .mbhc_moisture_polling_ctrl = wcd9378_mbhc_moisture_polling_ctrl,
  768. .mbhc_moisture_detect_en = wcd9378_mbhc_moisture_detect_en,
  769. .bcs_enable = wcd9378_mbhc_bcs_enable,
  770. };
  771. static int wcd9378_get_hph_type(struct snd_kcontrol *kcontrol,
  772. struct snd_ctl_elem_value *ucontrol)
  773. {
  774. struct snd_soc_component *component =
  775. snd_soc_kcontrol_component(kcontrol);
  776. struct wcd9378_mbhc *wcd9378_mbhc = wcd9378_soc_get_mbhc(component);
  777. struct wcd_mbhc *mbhc;
  778. if (!wcd9378_mbhc) {
  779. dev_err(component->dev, "%s: mbhc not initialized!\n", __func__);
  780. return -EINVAL;
  781. }
  782. mbhc = &wcd9378_mbhc->wcd_mbhc;
  783. ucontrol->value.integer.value[0] = (u32) mbhc->hph_type;
  784. dev_dbg(component->dev, "%s: hph_type = %u\n", __func__, mbhc->hph_type);
  785. return 0;
  786. }
  787. static int wcd9378_hph_impedance_get(struct snd_kcontrol *kcontrol,
  788. struct snd_ctl_elem_value *ucontrol)
  789. {
  790. uint32_t zl, zr;
  791. bool hphr;
  792. struct soc_multi_mixer_control *mc;
  793. struct snd_soc_component *component =
  794. snd_soc_kcontrol_component(kcontrol);
  795. struct wcd9378_mbhc *wcd9378_mbhc = wcd9378_soc_get_mbhc(component);
  796. if (!wcd9378_mbhc) {
  797. dev_err(component->dev, "%s: mbhc not initialized!\n", __func__);
  798. return -EINVAL;
  799. }
  800. mc = (struct soc_multi_mixer_control *)(kcontrol->private_value);
  801. hphr = mc->shift;
  802. wcd_mbhc_get_impedance(&wcd9378_mbhc->wcd_mbhc, &zl, &zr);
  803. dev_dbg(component->dev, "%s: zl=%u(ohms), zr=%u(ohms)\n", __func__, zl, zr);
  804. ucontrol->value.integer.value[0] = hphr ? zr : zl;
  805. return 0;
  806. }
  807. static const struct snd_kcontrol_new hph_type_detect_controls[] = {
  808. SOC_SINGLE_EXT("HPH Type", 0, 0, UINT_MAX, 0,
  809. wcd9378_get_hph_type, NULL),
  810. };
  811. static const struct snd_kcontrol_new impedance_detect_controls[] = {
  812. SOC_SINGLE_EXT("HPHL Impedance", 0, 0, UINT_MAX, 0,
  813. wcd9378_hph_impedance_get, NULL),
  814. SOC_SINGLE_EXT("HPHR Impedance", 0, 1, UINT_MAX, 0,
  815. wcd9378_hph_impedance_get, NULL),
  816. };
  817. /*
  818. * wcd9378_mbhc_get_impedance: get impedance of headphone
  819. * left and right channels
  820. * @wcd9378_mbhc: handle to struct wcd9378_mbhc *
  821. * @zl: handle to left-ch impedance
  822. * @zr: handle to right-ch impedance
  823. * return 0 for success or error code in case of failure
  824. */
  825. int wcd9378_mbhc_get_impedance(struct wcd9378_mbhc *wcd9378_mbhc,
  826. uint32_t *zl, uint32_t *zr)
  827. {
  828. if (!wcd9378_mbhc) {
  829. pr_err("%s: mbhc not initialized!\n", __func__);
  830. return -EINVAL;
  831. }
  832. if (!zl || !zr) {
  833. pr_err("%s: zl or zr null!\n", __func__);
  834. return -EINVAL;
  835. }
  836. return wcd_mbhc_get_impedance(&wcd9378_mbhc->wcd_mbhc, zl, zr);
  837. }
  838. EXPORT_SYMBOL_GPL(wcd9378_mbhc_get_impedance);
  839. /*
  840. * wcd9378_mbhc_hs_detect: starts mbhc insertion/removal functionality
  841. * @codec: handle to snd_soc_component *
  842. * @mbhc_cfg: handle to mbhc configuration structure
  843. * return 0 if mbhc_start is success or error code in case of failure
  844. */
  845. int wcd9378_mbhc_hs_detect(struct snd_soc_component *component,
  846. struct wcd_mbhc_config *mbhc_cfg)
  847. {
  848. struct wcd9378_priv *wcd9378 = NULL;
  849. struct wcd9378_mbhc *wcd9378_mbhc = NULL;
  850. if (!component) {
  851. pr_err("%s: component is NULL\n", __func__);
  852. return -EINVAL;
  853. }
  854. wcd9378 = snd_soc_component_get_drvdata(component);
  855. if (!wcd9378) {
  856. pr_err("%s: wcd9378 is NULL\n", __func__);
  857. return -EINVAL;
  858. }
  859. wcd9378_mbhc = wcd9378->mbhc;
  860. if (!wcd9378_mbhc) {
  861. dev_err(component->dev, "%s: mbhc not initialized!\n", __func__);
  862. return -EINVAL;
  863. }
  864. return wcd_mbhc_start(&wcd9378_mbhc->wcd_mbhc, mbhc_cfg);
  865. }
  866. EXPORT_SYMBOL_GPL(wcd9378_mbhc_hs_detect);
  867. /*
  868. * wcd9378_mbhc_hs_detect_exit: stop mbhc insertion/removal functionality
  869. * @component: handle to snd_soc_component *
  870. */
  871. void wcd9378_mbhc_hs_detect_exit(struct snd_soc_component *component)
  872. {
  873. struct wcd9378_priv *wcd9378 = NULL;
  874. struct wcd9378_mbhc *wcd9378_mbhc = NULL;
  875. if (!component) {
  876. pr_err("%s: component is NULL\n", __func__);
  877. return;
  878. }
  879. wcd9378 = snd_soc_component_get_drvdata(component);
  880. if (!wcd9378) {
  881. pr_err("%s: wcd9378 is NULL\n", __func__);
  882. return;
  883. }
  884. wcd9378_mbhc = wcd9378->mbhc;
  885. if (!wcd9378_mbhc) {
  886. dev_err(component->dev, "%s: mbhc not initialized!\n", __func__);
  887. return;
  888. }
  889. wcd_mbhc_stop(&wcd9378_mbhc->wcd_mbhc);
  890. }
  891. EXPORT_SYMBOL_GPL(wcd9378_mbhc_hs_detect_exit);
  892. /*
  893. * wcd9378_mbhc_ssr_down: stop mbhc during
  894. * wcd9378 subsystem restart
  895. * mbhc: pointer to wcd937x_mbhc structure
  896. * component: handle to snd_soc_component *
  897. */
  898. void wcd9378_mbhc_ssr_down(struct wcd9378_mbhc *mbhc,
  899. struct snd_soc_component *component)
  900. {
  901. struct wcd_mbhc *wcd_mbhc = NULL;
  902. if (!mbhc || !component)
  903. return;
  904. wcd_mbhc = &mbhc->wcd_mbhc;
  905. if (!wcd_mbhc) {
  906. dev_err(component->dev, "%s: wcd_mbhc is NULL\n", __func__);
  907. return;
  908. }
  909. wcd9378_mbhc_hs_detect_exit(component);
  910. wcd_mbhc_deinit(wcd_mbhc);
  911. }
  912. EXPORT_SYMBOL_GPL(wcd9378_mbhc_ssr_down);
  913. /*
  914. * wcd9378_mbhc_post_ssr_init: initialize mbhc for
  915. * wcd9378 post subsystem restart
  916. * @mbhc: poniter to wcd9378_mbhc structure
  917. * @component: handle to snd_soc_component *
  918. *
  919. * return 0 if mbhc_init is success or error code in case of failure
  920. */
  921. int wcd9378_mbhc_post_ssr_init(struct wcd9378_mbhc *mbhc,
  922. struct snd_soc_component *component)
  923. {
  924. int ret = 0;
  925. struct wcd_mbhc *wcd_mbhc = NULL;
  926. struct wcd9378_priv *wcd9378 =
  927. dev_get_drvdata(component->dev);
  928. if (!mbhc || !component)
  929. return -EINVAL;
  930. wcd_mbhc = &mbhc->wcd_mbhc;
  931. if (wcd_mbhc == NULL) {
  932. pr_err("%s: wcd_mbhc is NULL\n", __func__);
  933. return -EINVAL;
  934. }
  935. /* Reset detection type to insertion after SSR recovery */
  936. snd_soc_component_update_bits(component, WCD9378_ANA_MBHC_MECH,
  937. 0x20, 0x20);
  938. ret = wcd_mbhc_init(wcd_mbhc, component, &mbhc_cb, &intr_ids,
  939. wcd_mbhc_registers, WCD9378_ZDET_SUPPORTED);
  940. if (ret) {
  941. dev_err(component->dev, "%s: mbhc initialization failed\n",
  942. __func__);
  943. goto done;
  944. }
  945. wcd_disable_irq(&wcd9378->irq_info,
  946. WCD9378_IRQ_MBHC_ELECT_INS_REM_DET);
  947. wcd_disable_irq(&wcd9378->irq_info,
  948. WCD9378_IRQ_MBHC_ELECT_INS_REM_LEG_DET);
  949. wcd_disable_irq(&wcd9378->irq_info,
  950. WCD9378_IRQ_EAR_SCD_INT);
  951. wcd_disable_irq(&wcd9378->irq_info,
  952. WCD9378_IRQ_AUX_SCD_INT);
  953. done:
  954. return ret;
  955. }
  956. EXPORT_SYMBOL_GPL(wcd9378_mbhc_post_ssr_init);
  957. /*
  958. * wcd9378_mbhc_init: initialize mbhc for wcd9378
  959. * @mbhc: poniter to wcd9378_mbhc struct pointer to store the configs
  960. * @codec: handle to snd_soc_component *
  961. * @fw_data: handle to firmware data
  962. *
  963. * return 0 if mbhc_init is success or error code in case of failure
  964. */
  965. int wcd9378_mbhc_init(struct wcd9378_mbhc **mbhc,
  966. struct snd_soc_component *component)
  967. {
  968. struct wcd9378_mbhc *wcd9378_mbhc = NULL;
  969. struct wcd_mbhc *wcd_mbhc = NULL;
  970. int ret = 0;
  971. struct wcd9378_pdata *pdata;
  972. struct wcd9378_priv *wcd9378 =
  973. dev_get_drvdata(component->dev);
  974. if (!component) {
  975. pr_err("%s: component is NULL\n", __func__);
  976. return -EINVAL;
  977. }
  978. wcd9378_mbhc = devm_kzalloc(component->dev, sizeof(struct wcd9378_mbhc),
  979. GFP_KERNEL);
  980. if (!wcd9378_mbhc)
  981. return -ENOMEM;
  982. BLOCKING_INIT_NOTIFIER_HEAD(&wcd9378_mbhc->notifier);
  983. wcd_mbhc = &wcd9378_mbhc->wcd_mbhc;
  984. if (wcd_mbhc == NULL) {
  985. pr_err("%s: wcd_mbhc is NULL\n", __func__);
  986. ret = -EINVAL;
  987. goto err;
  988. }
  989. /* Setting default mbhc detection logic to ADC */
  990. wcd_mbhc->mbhc_detection_logic = WCD_DETECTION_ADC;
  991. pdata = dev_get_platdata(component->dev);
  992. if (!pdata) {
  993. dev_err(component->dev, "%s: pdata pointer is NULL\n",
  994. __func__);
  995. ret = -EINVAL;
  996. goto err;
  997. }
  998. wcd_mbhc->micb_mv = pdata->micbias.micb2_mv;
  999. ret = wcd_mbhc_init(wcd_mbhc, component, &mbhc_cb,
  1000. &intr_ids, wcd_mbhc_registers,
  1001. WCD9378_ZDET_SUPPORTED);
  1002. if (ret) {
  1003. dev_err(component->dev, "%s: mbhc initialization failed\n",
  1004. __func__);
  1005. goto err;
  1006. }
  1007. wcd_disable_irq(&wcd9378->irq_info,
  1008. WCD9378_IRQ_MBHC_ELECT_INS_REM_DET);
  1009. wcd_disable_irq(&wcd9378->irq_info,
  1010. WCD9378_IRQ_MBHC_ELECT_INS_REM_LEG_DET);
  1011. wcd_disable_irq(&wcd9378->irq_info,
  1012. WCD9378_IRQ_EAR_SCD_INT);
  1013. wcd_disable_irq(&wcd9378->irq_info,
  1014. WCD9378_IRQ_AUX_SCD_INT);
  1015. (*mbhc) = wcd9378_mbhc;
  1016. snd_soc_add_component_controls(component, impedance_detect_controls,
  1017. ARRAY_SIZE(impedance_detect_controls));
  1018. snd_soc_add_component_controls(component, hph_type_detect_controls,
  1019. ARRAY_SIZE(hph_type_detect_controls));
  1020. return 0;
  1021. err:
  1022. return ret;
  1023. }
  1024. EXPORT_SYMBOL_GPL(wcd9378_mbhc_init);
  1025. /*
  1026. * wcd9378_mbhc_deinit: deinitialize mbhc for wcd9378
  1027. * @codec: handle to snd_soc_component *
  1028. */
  1029. void wcd9378_mbhc_deinit(struct snd_soc_component *component)
  1030. {
  1031. struct wcd9378_priv *wcd9378;
  1032. struct wcd9378_mbhc *wcd9378_mbhc;
  1033. if (!component) {
  1034. pr_err("%s: component is NULL\n", __func__);
  1035. return;
  1036. }
  1037. wcd9378 = snd_soc_component_get_drvdata(component);
  1038. if (!wcd9378) {
  1039. pr_err("%s: wcd9378 is NULL\n", __func__);
  1040. return;
  1041. }
  1042. wcd9378_mbhc = wcd9378->mbhc;
  1043. if (wcd9378_mbhc)
  1044. wcd_mbhc_deinit(&wcd9378_mbhc->wcd_mbhc);
  1045. }
  1046. EXPORT_SYMBOL_GPL(wcd9378_mbhc_deinit);