wcd937x.c 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/slab.h>
  7. #include <linux/platform_device.h>
  8. #include <linux/device.h>
  9. #include <linux/delay.h>
  10. #include <linux/kernel.h>
  11. #include <linux/component.h>
  12. #include <linux/regmap.h>
  13. #include <linux/pm_runtime.h>
  14. #include <sound/soc.h>
  15. #include <sound/tlv.h>
  16. #include <soc/soundwire.h>
  17. #include <sound/soc.h>
  18. #include <sound/soc-dapm.h>
  19. #include "internal.h"
  20. #include "wcd937x.h"
  21. #include <asoc/wcdcal-hwdep.h>
  22. #include "wcd937x-registers.h"
  23. #include <asoc/msm-cdc-pinctrl.h>
  24. #include <dt-bindings/sound/audio-codec-port-types.h>
  25. #include <asoc/msm-cdc-supply.h>
  26. #define DRV_NAME "wcd937x_codec"
  27. #define WCD9370_VARIANT 0
  28. #define WCD9375_VARIANT 5
  29. #define NUM_SWRS_DT_PARAMS 5
  30. #define WCD937X_VERSION_1_0 1
  31. #define WCD937X_VERSION_ENTRY_SIZE 32
  32. #define EAR_RX_PATH_AUX 1
  33. enum {
  34. CODEC_TX = 0,
  35. CODEC_RX,
  36. };
  37. enum {
  38. ALLOW_BUCK_DISABLE,
  39. HPH_COMP_DELAY,
  40. HPH_PA_DELAY,
  41. };
  42. static const DECLARE_TLV_DB_SCALE(line_gain, 0, 7, 1);
  43. static const DECLARE_TLV_DB_SCALE(analog_gain, 0, 25, 1);
  44. static int wcd937x_handle_post_irq(void *data);
  45. static int wcd937x_reset(struct device *dev);
  46. static int wcd937x_reset_low(struct device *dev);
  47. static const struct regmap_irq wcd937x_irqs[WCD937X_NUM_IRQS] = {
  48. REGMAP_IRQ_REG(WCD937X_IRQ_MBHC_BUTTON_PRESS_DET, 0, 0x01),
  49. REGMAP_IRQ_REG(WCD937X_IRQ_MBHC_BUTTON_RELEASE_DET, 0, 0x02),
  50. REGMAP_IRQ_REG(WCD937X_IRQ_MBHC_ELECT_INS_REM_DET, 0, 0x04),
  51. REGMAP_IRQ_REG(WCD937X_IRQ_MBHC_ELECT_INS_REM_LEG_DET, 0, 0x08),
  52. REGMAP_IRQ_REG(WCD937X_IRQ_MBHC_SW_DET, 0, 0x10),
  53. REGMAP_IRQ_REG(WCD937X_IRQ_HPHR_OCP_INT, 0, 0x20),
  54. REGMAP_IRQ_REG(WCD937X_IRQ_HPHR_CNP_INT, 0, 0x40),
  55. REGMAP_IRQ_REG(WCD937X_IRQ_HPHL_OCP_INT, 0, 0x80),
  56. REGMAP_IRQ_REG(WCD937X_IRQ_HPHL_CNP_INT, 1, 0x01),
  57. REGMAP_IRQ_REG(WCD937X_IRQ_EAR_CNP_INT, 1, 0x02),
  58. REGMAP_IRQ_REG(WCD937X_IRQ_EAR_SCD_INT, 1, 0x04),
  59. REGMAP_IRQ_REG(WCD937X_IRQ_AUX_CNP_INT, 1, 0x08),
  60. REGMAP_IRQ_REG(WCD937X_IRQ_AUX_SCD_INT, 1, 0x10),
  61. REGMAP_IRQ_REG(WCD937X_IRQ_HPHL_PDM_WD_INT, 1, 0x20),
  62. REGMAP_IRQ_REG(WCD937X_IRQ_HPHR_PDM_WD_INT, 1, 0x40),
  63. REGMAP_IRQ_REG(WCD937X_IRQ_AUX_PDM_WD_INT, 1, 0x80),
  64. REGMAP_IRQ_REG(WCD937X_IRQ_LDORT_SCD_INT, 2, 0x01),
  65. REGMAP_IRQ_REG(WCD937X_IRQ_MBHC_MOISTURE_INT, 2, 0x02),
  66. REGMAP_IRQ_REG(WCD937X_IRQ_HPHL_SURGE_DET_INT, 2, 0x04),
  67. REGMAP_IRQ_REG(WCD937X_IRQ_HPHR_SURGE_DET_INT, 2, 0x08),
  68. };
  69. static struct regmap_irq_chip wcd937x_regmap_irq_chip = {
  70. .name = "wcd937x",
  71. .irqs = wcd937x_irqs,
  72. .num_irqs = ARRAY_SIZE(wcd937x_irqs),
  73. .num_regs = 3,
  74. .status_base = WCD937X_DIGITAL_INTR_STATUS_0,
  75. .mask_base = WCD937X_DIGITAL_INTR_MASK_0,
  76. .ack_base = WCD937X_DIGITAL_INTR_CLEAR_0,
  77. .use_ack = 1,
  78. .type_base = WCD937X_DIGITAL_INTR_LEVEL_0,
  79. .runtime_pm = false,
  80. .handle_post_irq = wcd937x_handle_post_irq,
  81. .irq_drv_data = NULL,
  82. };
  83. static int wcd937x_handle_post_irq(void *data)
  84. {
  85. struct wcd937x_priv *wcd937x = data;
  86. u32 status1 = 0, status2 = 0, status3 = 0;
  87. regmap_read(wcd937x->regmap, WCD937X_DIGITAL_INTR_STATUS_0, &status1);
  88. regmap_read(wcd937x->regmap, WCD937X_DIGITAL_INTR_STATUS_1, &status2);
  89. regmap_read(wcd937x->regmap, WCD937X_DIGITAL_INTR_STATUS_2, &status3);
  90. wcd937x->tx_swr_dev->slave_irq_pending =
  91. ((status1 || status2 || status3) ? true : false);
  92. return IRQ_HANDLED;
  93. }
  94. static int wcd937x_init_reg(struct snd_soc_component *component)
  95. {
  96. snd_soc_component_update_bits(component, WCD937X_SLEEP_CTL,
  97. 0x0E, 0x0E);
  98. snd_soc_component_update_bits(component, WCD937X_SLEEP_CTL,
  99. 0x80, 0x80);
  100. usleep_range(1000, 1010);
  101. snd_soc_component_update_bits(component, WCD937X_SLEEP_CTL,
  102. 0x40, 0x40);
  103. usleep_range(1000, 1010);
  104. snd_soc_component_update_bits(component, WCD937X_LDORXTX_CONFIG,
  105. 0x10, 0x00);
  106. snd_soc_component_update_bits(component, WCD937X_BIAS_VBG_FINE_ADJ,
  107. 0xF0, 0x80);
  108. snd_soc_component_update_bits(component, WCD937X_ANA_BIAS,
  109. 0x80, 0x80);
  110. snd_soc_component_update_bits(component, WCD937X_ANA_BIAS,
  111. 0x40, 0x40);
  112. usleep_range(10000, 10010);
  113. snd_soc_component_update_bits(component, WCD937X_ANA_BIAS,
  114. 0x40, 0x00);
  115. snd_soc_component_update_bits(component, WCD937X_HPH_OCP_CTL,
  116. 0xFF, 0x3A);
  117. snd_soc_component_update_bits(component, WCD937X_RX_OCP_CTL,
  118. 0x0F, 0x02);
  119. snd_soc_component_update_bits(component,
  120. WCD937X_HPH_SURGE_HPHLR_SURGE_EN,
  121. 0xFF, 0xD9);
  122. return 0;
  123. }
  124. static int wcd937x_set_port_params(struct snd_soc_component *component,
  125. u8 slv_prt_type, u8 *port_id, u8 *num_ch,
  126. u8 *ch_mask, u32 *ch_rate,
  127. u8 *port_type, u8 path)
  128. {
  129. int i, j;
  130. u8 num_ports = 0;
  131. struct codec_port_info (*map)[MAX_PORT][MAX_CH_PER_PORT] = NULL;
  132. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  133. switch (path) {
  134. case CODEC_RX:
  135. map = &wcd937x->rx_port_mapping;
  136. num_ports = wcd937x->num_rx_ports;
  137. break;
  138. case CODEC_TX:
  139. map = &wcd937x->tx_port_mapping;
  140. num_ports = wcd937x->num_tx_ports;
  141. break;
  142. }
  143. for (i = 0; i <= num_ports; i++) {
  144. for (j = 0; j < MAX_CH_PER_PORT; j++) {
  145. if ((*map)[i][j].slave_port_type == slv_prt_type)
  146. goto found;
  147. }
  148. }
  149. found:
  150. if (i > num_ports || j == MAX_CH_PER_PORT) {
  151. dev_err(component->dev, "%s Failed to find slave port for type %u\n",
  152. __func__, slv_prt_type);
  153. return -EINVAL;
  154. }
  155. *port_id = i;
  156. *num_ch = (*map)[i][j].num_ch;
  157. *ch_mask = (*map)[i][j].ch_mask;
  158. *ch_rate = (*map)[i][j].ch_rate;
  159. *port_type = (*map)[i][j].master_port_type;
  160. return 0;
  161. }
  162. static int wcd937x_parse_port_mapping(struct device *dev,
  163. char *prop, u8 path)
  164. {
  165. u32 *dt_array, map_size, map_length;
  166. u32 port_num = 0, ch_mask, ch_rate, old_port_num = 0;
  167. u32 slave_port_type, master_port_type;
  168. u32 i, ch_iter = 0;
  169. int ret = 0;
  170. u8 *num_ports = NULL;
  171. struct codec_port_info (*map)[MAX_PORT][MAX_CH_PER_PORT] = NULL;
  172. struct wcd937x_priv *wcd937x = dev_get_drvdata(dev);
  173. switch (path) {
  174. case CODEC_RX:
  175. map = &wcd937x->rx_port_mapping;
  176. num_ports = &wcd937x->num_rx_ports;
  177. break;
  178. case CODEC_TX:
  179. map = &wcd937x->tx_port_mapping;
  180. num_ports = &wcd937x->num_tx_ports;
  181. break;
  182. }
  183. if (!of_find_property(dev->of_node, prop,
  184. &map_size)) {
  185. dev_err(dev, "missing port mapping prop %s\n", prop);
  186. ret = -EINVAL;
  187. goto err;
  188. }
  189. map_length = map_size / (NUM_SWRS_DT_PARAMS * sizeof(u32));
  190. dt_array = kzalloc(map_size, GFP_KERNEL);
  191. if (!dt_array) {
  192. ret = -ENOMEM;
  193. goto err;
  194. }
  195. ret = of_property_read_u32_array(dev->of_node, prop, dt_array,
  196. NUM_SWRS_DT_PARAMS * map_length);
  197. if (ret) {
  198. dev_err(dev, "%s: Failed to read port mapping from prop %s\n",
  199. __func__, prop);
  200. ret = -EINVAL;
  201. goto err_pdata_fail;
  202. }
  203. for (i = 0; i < map_length; i++) {
  204. port_num = dt_array[NUM_SWRS_DT_PARAMS * i];
  205. slave_port_type = dt_array[NUM_SWRS_DT_PARAMS * i + 1];
  206. ch_mask = dt_array[NUM_SWRS_DT_PARAMS * i + 2];
  207. ch_rate = dt_array[NUM_SWRS_DT_PARAMS * i + 3];
  208. master_port_type = dt_array[NUM_SWRS_DT_PARAMS * i + 4];
  209. if (port_num != old_port_num)
  210. ch_iter = 0;
  211. (*map)[port_num][ch_iter].slave_port_type = slave_port_type;
  212. (*map)[port_num][ch_iter].ch_mask = ch_mask;
  213. (*map)[port_num][ch_iter].master_port_type = master_port_type;
  214. (*map)[port_num][ch_iter].num_ch = __sw_hweight8(ch_mask);
  215. (*map)[port_num][ch_iter++].ch_rate = ch_rate;
  216. old_port_num = port_num;
  217. }
  218. *num_ports = port_num;
  219. kfree(dt_array);
  220. return 0;
  221. err_pdata_fail:
  222. kfree(dt_array);
  223. err:
  224. return ret;
  225. }
  226. static int wcd937x_tx_connect_port(struct snd_soc_component *component,
  227. u8 slv_port_type, u8 enable)
  228. {
  229. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  230. u8 port_id;
  231. u8 num_ch;
  232. u8 ch_mask;
  233. u32 ch_rate;
  234. u8 port_type;
  235. u8 num_port = 1;
  236. int ret = 0;
  237. ret = wcd937x_set_port_params(component, slv_port_type, &port_id,
  238. &num_ch, &ch_mask, &ch_rate,
  239. &port_type, CODEC_TX);
  240. if (ret)
  241. return ret;
  242. if (enable)
  243. ret = swr_connect_port(wcd937x->tx_swr_dev, &port_id,
  244. num_port, &ch_mask, &ch_rate,
  245. &num_ch, &port_type);
  246. else
  247. ret = swr_disconnect_port(wcd937x->tx_swr_dev, &port_id,
  248. num_port, &ch_mask, &port_type);
  249. return ret;
  250. }
  251. static int wcd937x_rx_connect_port(struct snd_soc_component *component,
  252. u8 slv_port_type, u8 enable)
  253. {
  254. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  255. u8 port_id;
  256. u8 num_ch;
  257. u8 ch_mask;
  258. u32 ch_rate;
  259. u8 port_type;
  260. u8 num_port = 1;
  261. int ret = 0;
  262. ret = wcd937x_set_port_params(component, slv_port_type, &port_id,
  263. &num_ch, &ch_mask, &ch_rate,
  264. &port_type, CODEC_RX);
  265. if (ret)
  266. return ret;
  267. if (enable)
  268. ret = swr_connect_port(wcd937x->rx_swr_dev, &port_id,
  269. num_port, &ch_mask, &ch_rate,
  270. &num_ch, &port_type);
  271. else
  272. ret = swr_disconnect_port(wcd937x->rx_swr_dev, &port_id,
  273. num_port, &ch_mask, &port_type);
  274. return ret;
  275. }
  276. static int wcd937x_rx_clk_enable(struct snd_soc_component *component)
  277. {
  278. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  279. if (wcd937x->rx_clk_cnt == 0) {
  280. snd_soc_component_update_bits(component,
  281. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0x08, 0x08);
  282. snd_soc_component_update_bits(component,
  283. WCD937X_DIGITAL_CDC_ANA_CLK_CTL, 0x01, 0x01);
  284. snd_soc_component_update_bits(component,
  285. WCD937X_ANA_RX_SUPPLIES, 0x01, 0x01);
  286. snd_soc_component_update_bits(component,
  287. WCD937X_DIGITAL_CDC_RX0_CTL, 0x40, 0x00);
  288. snd_soc_component_update_bits(component,
  289. WCD937X_DIGITAL_CDC_RX1_CTL, 0x40, 0x00);
  290. snd_soc_component_update_bits(component,
  291. WCD937X_DIGITAL_CDC_RX2_CTL, 0x40, 0x00);
  292. snd_soc_component_update_bits(component,
  293. WCD937X_DIGITAL_CDC_ANA_CLK_CTL, 0x02, 0x02);
  294. }
  295. wcd937x->rx_clk_cnt++;
  296. return 0;
  297. }
  298. static int wcd937x_rx_clk_disable(struct snd_soc_component *component)
  299. {
  300. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  301. if (wcd937x->rx_clk_cnt == 0) {
  302. dev_dbg(wcd937x->dev, "%s:clk already disabled\n", __func__);
  303. return 0;
  304. }
  305. wcd937x->rx_clk_cnt--;
  306. if (wcd937x->rx_clk_cnt == 0) {
  307. snd_soc_component_update_bits(component,
  308. WCD937X_ANA_RX_SUPPLIES, 0x01, 0x00);
  309. snd_soc_component_update_bits(component,
  310. WCD937X_DIGITAL_CDC_ANA_CLK_CTL,
  311. 0x02, 0x00);
  312. snd_soc_component_update_bits(component,
  313. WCD937X_DIGITAL_CDC_ANA_CLK_CTL,
  314. 0x01, 0x00);
  315. }
  316. return 0;
  317. }
  318. /*
  319. * wcd937x_soc_get_mbhc: get wcd937x_mbhc handle of corresponding component
  320. * @component: handle to snd_soc_component *
  321. *
  322. * return wcd937x_mbhc handle or error code in case of failure
  323. */
  324. struct wcd937x_mbhc *wcd937x_soc_get_mbhc(struct snd_soc_component *component)
  325. {
  326. struct wcd937x_priv *wcd937x;
  327. if (!component) {
  328. pr_err("%s: Invalid params, NULL component\n", __func__);
  329. return NULL;
  330. }
  331. wcd937x = snd_soc_component_get_drvdata(component);
  332. if (!wcd937x) {
  333. pr_err("%s: Invalid params, NULL tavil\n", __func__);
  334. return NULL;
  335. }
  336. return wcd937x->mbhc;
  337. }
  338. EXPORT_SYMBOL(wcd937x_soc_get_mbhc);
  339. static int wcd937x_codec_hphl_dac_event(struct snd_soc_dapm_widget *w,
  340. struct snd_kcontrol *kcontrol,
  341. int event)
  342. {
  343. struct snd_soc_component *component =
  344. snd_soc_dapm_to_component(w->dapm);
  345. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  346. int hph_mode = wcd937x->hph_mode;
  347. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  348. w->name, event);
  349. switch (event) {
  350. case SND_SOC_DAPM_PRE_PMU:
  351. wcd937x_rx_clk_enable(component);
  352. snd_soc_component_update_bits(component,
  353. WCD937X_DIGITAL_CDC_DIG_CLK_CTL,
  354. 0x01, 0x01);
  355. snd_soc_component_update_bits(component,
  356. WCD937X_DIGITAL_CDC_HPH_GAIN_CTL,
  357. 0x04, 0x04);
  358. snd_soc_component_update_bits(component,
  359. WCD937X_HPH_RDAC_CLK_CTL1,
  360. 0x80, 0x00);
  361. set_bit(HPH_COMP_DELAY, &wcd937x->status_mask);
  362. break;
  363. case SND_SOC_DAPM_POST_PMU:
  364. if (hph_mode == CLS_AB_HIFI || hph_mode == CLS_H_HIFI)
  365. snd_soc_component_update_bits(component,
  366. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_L,
  367. 0x0F, 0x02);
  368. else if (hph_mode == CLS_H_LOHIFI)
  369. snd_soc_component_update_bits(component,
  370. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_L,
  371. 0x0F, 0x06);
  372. if (wcd937x->comp1_enable) {
  373. snd_soc_component_update_bits(component,
  374. WCD937X_DIGITAL_CDC_COMP_CTL_0,
  375. 0x02, 0x02);
  376. snd_soc_component_update_bits(component,
  377. WCD937X_HPH_L_EN, 0x20, 0x00);
  378. if (wcd937x->comp2_enable) {
  379. snd_soc_component_update_bits(component,
  380. WCD937X_DIGITAL_CDC_COMP_CTL_0,
  381. 0x01, 0x01);
  382. snd_soc_component_update_bits(component,
  383. WCD937X_HPH_R_EN, 0x20, 0x00);
  384. }
  385. /*
  386. * 5ms sleep is required after COMP is enabled as per
  387. * HW requirement
  388. */
  389. if (test_bit(HPH_COMP_DELAY, &wcd937x->status_mask)) {
  390. usleep_range(5000, 5100);
  391. clear_bit(HPH_COMP_DELAY,
  392. &wcd937x->status_mask);
  393. }
  394. } else {
  395. snd_soc_component_update_bits(component,
  396. WCD937X_DIGITAL_CDC_COMP_CTL_0,
  397. 0x02, 0x00);
  398. snd_soc_component_update_bits(component,
  399. WCD937X_HPH_L_EN, 0x20, 0x20);
  400. }
  401. snd_soc_component_update_bits(component,
  402. WCD937X_HPH_NEW_INT_HPH_TIMER1, 0x02, 0x00);
  403. break;
  404. case SND_SOC_DAPM_POST_PMD:
  405. snd_soc_component_update_bits(component,
  406. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_L,
  407. 0x0F, 0x01);
  408. break;
  409. }
  410. return 0;
  411. }
  412. static int wcd937x_codec_hphr_dac_event(struct snd_soc_dapm_widget *w,
  413. struct snd_kcontrol *kcontrol,
  414. int event)
  415. {
  416. struct snd_soc_component *component =
  417. snd_soc_dapm_to_component(w->dapm);
  418. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  419. int hph_mode = wcd937x->hph_mode;
  420. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  421. w->name, event);
  422. switch (event) {
  423. case SND_SOC_DAPM_PRE_PMU:
  424. wcd937x_rx_clk_enable(component);
  425. snd_soc_component_update_bits(component,
  426. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0x02, 0x02);
  427. snd_soc_component_update_bits(component,
  428. WCD937X_DIGITAL_CDC_HPH_GAIN_CTL, 0x08, 0x08);
  429. snd_soc_component_update_bits(component,
  430. WCD937X_HPH_RDAC_CLK_CTL1, 0x80, 0x00);
  431. set_bit(HPH_COMP_DELAY, &wcd937x->status_mask);
  432. break;
  433. case SND_SOC_DAPM_POST_PMU:
  434. if (hph_mode == CLS_AB_HIFI || hph_mode == CLS_H_HIFI)
  435. snd_soc_component_update_bits(component,
  436. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_R,
  437. 0x0F, 0x02);
  438. else if (hph_mode == CLS_H_LOHIFI)
  439. snd_soc_component_update_bits(component,
  440. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_R,
  441. 0x0F, 0x06);
  442. if (wcd937x->comp2_enable) {
  443. snd_soc_component_update_bits(component,
  444. WCD937X_DIGITAL_CDC_COMP_CTL_0,
  445. 0x01, 0x01);
  446. snd_soc_component_update_bits(component,
  447. WCD937X_HPH_R_EN, 0x20, 0x00);
  448. if (wcd937x->comp1_enable) {
  449. snd_soc_component_update_bits(component,
  450. WCD937X_DIGITAL_CDC_COMP_CTL_0,
  451. 0x02, 0x02);
  452. snd_soc_component_update_bits(component,
  453. WCD937X_HPH_L_EN, 0x20, 0x00);
  454. }
  455. /*
  456. * 5ms sleep is required after COMP is enabled as per
  457. * HW requirement
  458. */
  459. if (test_bit(HPH_COMP_DELAY, &wcd937x->status_mask)) {
  460. usleep_range(5000, 5100);
  461. clear_bit(HPH_COMP_DELAY,
  462. &wcd937x->status_mask);
  463. }
  464. } else {
  465. snd_soc_component_update_bits(component,
  466. WCD937X_DIGITAL_CDC_COMP_CTL_0,
  467. 0x01, 0x00);
  468. snd_soc_component_update_bits(component,
  469. WCD937X_HPH_R_EN, 0x20, 0x20);
  470. }
  471. snd_soc_component_update_bits(component,
  472. WCD937X_HPH_NEW_INT_HPH_TIMER1, 0x02, 0x00);
  473. break;
  474. case SND_SOC_DAPM_POST_PMD:
  475. snd_soc_component_update_bits(component,
  476. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_R,
  477. 0x0F, 0x01);
  478. break;
  479. }
  480. return 0;
  481. }
  482. static int wcd937x_codec_ear_dac_event(struct snd_soc_dapm_widget *w,
  483. struct snd_kcontrol *kcontrol,
  484. int event)
  485. {
  486. struct snd_soc_component *component =
  487. snd_soc_dapm_to_component(w->dapm);
  488. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  489. int hph_mode = wcd937x->hph_mode;
  490. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  491. w->name, event);
  492. switch (event) {
  493. case SND_SOC_DAPM_PRE_PMU:
  494. wcd937x_rx_clk_enable(component);
  495. snd_soc_component_update_bits(component,
  496. WCD937X_DIGITAL_CDC_HPH_GAIN_CTL,
  497. 0x04, 0x04);
  498. snd_soc_component_update_bits(component,
  499. WCD937X_DIGITAL_CDC_DIG_CLK_CTL,
  500. 0x01, 0x01);
  501. if (hph_mode == CLS_AB_HIFI || hph_mode == CLS_H_HIFI)
  502. snd_soc_component_update_bits(component,
  503. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_L,
  504. 0x0F, 0x02);
  505. else if (hph_mode == CLS_H_LOHIFI)
  506. snd_soc_component_update_bits(component,
  507. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_L,
  508. 0x0F, 0x06);
  509. snd_soc_component_update_bits(component,
  510. WCD937X_DIGITAL_CDC_COMP_CTL_0,
  511. 0x02, 0x02);
  512. usleep_range(5000, 5010);
  513. snd_soc_component_update_bits(component, WCD937X_FLYBACK_EN,
  514. 0x04, 0x00);
  515. wcd_cls_h_fsm(component, &wcd937x->clsh_info,
  516. WCD_CLSH_EVENT_PRE_DAC,
  517. WCD_CLSH_STATE_EAR,
  518. hph_mode);
  519. break;
  520. case SND_SOC_DAPM_POST_PMD:
  521. if (hph_mode == CLS_AB_HIFI || hph_mode == CLS_H_LOHIFI ||
  522. hph_mode == CLS_H_HIFI)
  523. snd_soc_component_update_bits(component,
  524. WCD937X_HPH_NEW_INT_RDAC_HD2_CTL_L,
  525. 0x0F, 0x01);
  526. break;
  527. };
  528. return 0;
  529. }
  530. static int wcd937x_codec_aux_dac_event(struct snd_soc_dapm_widget *w,
  531. struct snd_kcontrol *kcontrol,
  532. int event)
  533. {
  534. struct snd_soc_component *component =
  535. snd_soc_dapm_to_component(w->dapm);
  536. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  537. int hph_mode = wcd937x->hph_mode;
  538. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  539. w->name, event);
  540. switch (event) {
  541. case SND_SOC_DAPM_PRE_PMU:
  542. wcd937x_rx_clk_enable(component);
  543. snd_soc_component_update_bits(component,
  544. WCD937X_DIGITAL_CDC_ANA_CLK_CTL,
  545. 0x04, 0x04);
  546. snd_soc_component_update_bits(component,
  547. WCD937X_DIGITAL_CDC_DIG_CLK_CTL,
  548. 0x04, 0x04);
  549. snd_soc_component_update_bits(component,
  550. WCD937X_DIGITAL_CDC_AUX_GAIN_CTL,
  551. 0x01, 0x01);
  552. wcd_cls_h_fsm(component, &wcd937x->clsh_info,
  553. WCD_CLSH_EVENT_PRE_DAC,
  554. WCD_CLSH_STATE_AUX,
  555. hph_mode);
  556. break;
  557. case SND_SOC_DAPM_POST_PMD:
  558. wcd937x_rx_clk_disable(component);
  559. snd_soc_component_update_bits(component,
  560. WCD937X_DIGITAL_CDC_ANA_CLK_CTL,
  561. 0x04, 0x00);
  562. break;
  563. };
  564. return 0;
  565. }
  566. static int wcd937x_codec_enable_hphr_pa(struct snd_soc_dapm_widget *w,
  567. struct snd_kcontrol *kcontrol,
  568. int event)
  569. {
  570. struct snd_soc_component *component =
  571. snd_soc_dapm_to_component(w->dapm);
  572. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  573. int ret = 0;
  574. int hph_mode = wcd937x->hph_mode;
  575. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  576. w->name, event);
  577. switch (event) {
  578. case SND_SOC_DAPM_PRE_PMU:
  579. ret = swr_slvdev_datapath_control(wcd937x->rx_swr_dev,
  580. wcd937x->rx_swr_dev->dev_num,
  581. true);
  582. wcd_cls_h_fsm(component, &wcd937x->clsh_info,
  583. WCD_CLSH_EVENT_PRE_DAC,
  584. WCD_CLSH_STATE_HPHR,
  585. hph_mode);
  586. snd_soc_component_update_bits(component, WCD937X_ANA_HPH,
  587. 0x10, 0x10);
  588. usleep_range(100, 110);
  589. set_bit(HPH_PA_DELAY, &wcd937x->status_mask);
  590. ret = swr_slvdev_datapath_control(wcd937x->rx_swr_dev,
  591. wcd937x->rx_swr_dev->dev_num,
  592. true);
  593. snd_soc_component_update_bits(component,
  594. WCD937X_DIGITAL_PDM_WD_CTL1, 0x17, 0x13);
  595. break;
  596. case SND_SOC_DAPM_POST_PMU:
  597. /*
  598. * 7ms sleep is required after PA is enabled as per
  599. * HW requirement. If compander is disabled, then
  600. * 20ms delay is required.
  601. */
  602. if (test_bit(HPH_PA_DELAY, &wcd937x->status_mask)) {
  603. if (!wcd937x->comp2_enable)
  604. usleep_range(20000, 20100);
  605. else
  606. usleep_range(7000, 7100);
  607. clear_bit(HPH_PA_DELAY, &wcd937x->status_mask);
  608. }
  609. snd_soc_component_update_bits(component,
  610. WCD937X_HPH_NEW_INT_HPH_TIMER1,
  611. 0x02, 0x02);
  612. snd_soc_component_update_bits(component,
  613. WCD937X_HPH_R_TEST, 0x01, 0x01);
  614. if (hph_mode == CLS_AB || hph_mode == CLS_AB_HIFI)
  615. snd_soc_component_update_bits(component,
  616. WCD937X_ANA_RX_SUPPLIES,
  617. 0x02, 0x02);
  618. if (wcd937x->update_wcd_event)
  619. wcd937x->update_wcd_event(wcd937x->handle,
  620. WCD_BOLERO_EVT_RX_MUTE,
  621. (WCD_RX2 << 0x10));
  622. break;
  623. case SND_SOC_DAPM_PRE_PMD:
  624. snd_soc_component_update_bits(component,
  625. WCD937X_HPH_R_TEST, 0x01, 0x00);
  626. if (wcd937x->update_wcd_event)
  627. wcd937x->update_wcd_event(wcd937x->handle,
  628. WCD_BOLERO_EVT_RX_MUTE,
  629. (WCD_RX2 << 0x10 | 0x1));
  630. blocking_notifier_call_chain(&wcd937x->mbhc->notifier,
  631. WCD_EVENT_PRE_HPHR_PA_OFF,
  632. &wcd937x->mbhc->wcd_mbhc);
  633. set_bit(HPH_PA_DELAY, &wcd937x->status_mask);
  634. break;
  635. case SND_SOC_DAPM_POST_PMD:
  636. /*
  637. * 7ms sleep is required after PA is disabled as per
  638. * HW requirement. If compander is disabled, then
  639. * 20ms delay is required.
  640. */
  641. if (test_bit(HPH_PA_DELAY, &wcd937x->status_mask)) {
  642. if (!wcd937x->comp2_enable)
  643. usleep_range(20000, 20100);
  644. else
  645. usleep_range(7000, 7100);
  646. clear_bit(HPH_PA_DELAY, &wcd937x->status_mask);
  647. }
  648. snd_soc_component_update_bits(component,
  649. WCD937X_DIGITAL_PDM_WD_CTL1, 0x17, 0x00);
  650. blocking_notifier_call_chain(&wcd937x->mbhc->notifier,
  651. WCD_EVENT_POST_HPHR_PA_OFF,
  652. &wcd937x->mbhc->wcd_mbhc);
  653. snd_soc_component_update_bits(component, WCD937X_ANA_HPH,
  654. 0x10, 0x00);
  655. wcd_cls_h_fsm(component, &wcd937x->clsh_info,
  656. WCD_CLSH_EVENT_POST_PA,
  657. WCD_CLSH_STATE_HPHR,
  658. hph_mode);
  659. break;
  660. };
  661. return ret;
  662. }
  663. static int wcd937x_codec_enable_hphl_pa(struct snd_soc_dapm_widget *w,
  664. struct snd_kcontrol *kcontrol,
  665. int event)
  666. {
  667. struct snd_soc_component *component =
  668. snd_soc_dapm_to_component(w->dapm);
  669. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  670. int ret = 0;
  671. int hph_mode = wcd937x->hph_mode;
  672. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  673. w->name, event);
  674. switch (event) {
  675. case SND_SOC_DAPM_PRE_PMU:
  676. ret = swr_slvdev_datapath_control(wcd937x->rx_swr_dev,
  677. wcd937x->rx_swr_dev->dev_num,
  678. true);
  679. wcd_cls_h_fsm(component, &wcd937x->clsh_info,
  680. WCD_CLSH_EVENT_PRE_DAC,
  681. WCD_CLSH_STATE_HPHL,
  682. hph_mode);
  683. snd_soc_component_update_bits(component, WCD937X_ANA_HPH,
  684. 0x20, 0x20);
  685. usleep_range(100, 110);
  686. set_bit(HPH_PA_DELAY, &wcd937x->status_mask);
  687. snd_soc_component_update_bits(component,
  688. WCD937X_DIGITAL_PDM_WD_CTL0, 0x17, 0x13);
  689. break;
  690. case SND_SOC_DAPM_POST_PMU:
  691. /*
  692. * 7ms sleep is required after PA is enabled as per
  693. * HW requirement. If compander is disabled, then
  694. * 20ms delay is required.
  695. */
  696. if (test_bit(HPH_PA_DELAY, &wcd937x->status_mask)) {
  697. if (!wcd937x->comp1_enable)
  698. usleep_range(20000, 20100);
  699. else
  700. usleep_range(7000, 7100);
  701. clear_bit(HPH_PA_DELAY, &wcd937x->status_mask);
  702. }
  703. snd_soc_component_update_bits(component,
  704. WCD937X_HPH_NEW_INT_HPH_TIMER1,
  705. 0x02, 0x02);
  706. snd_soc_component_update_bits(component,
  707. WCD937X_HPH_L_TEST, 0x01, 0x01);
  708. if (hph_mode == CLS_AB || hph_mode == CLS_AB_HIFI)
  709. snd_soc_component_update_bits(component,
  710. WCD937X_ANA_RX_SUPPLIES,
  711. 0x02, 0x02);
  712. if (wcd937x->update_wcd_event)
  713. wcd937x->update_wcd_event(wcd937x->handle,
  714. WCD_BOLERO_EVT_RX_MUTE,
  715. (WCD_RX1 << 0x10));
  716. break;
  717. case SND_SOC_DAPM_PRE_PMD:
  718. snd_soc_component_update_bits(component,
  719. WCD937X_HPH_L_TEST, 0x01, 0x00);
  720. if (wcd937x->update_wcd_event)
  721. wcd937x->update_wcd_event(wcd937x->handle,
  722. WCD_BOLERO_EVT_RX_MUTE,
  723. (WCD_RX1 << 0x10 | 0x1));
  724. blocking_notifier_call_chain(&wcd937x->mbhc->notifier,
  725. WCD_EVENT_PRE_HPHL_PA_OFF,
  726. &wcd937x->mbhc->wcd_mbhc);
  727. set_bit(HPH_PA_DELAY, &wcd937x->status_mask);
  728. break;
  729. case SND_SOC_DAPM_POST_PMD:
  730. /*
  731. * 7ms sleep is required after PA is disabled as per
  732. * HW requirement. If compander is disabled, then
  733. * 20ms delay is required.
  734. */
  735. if (test_bit(HPH_PA_DELAY, &wcd937x->status_mask)) {
  736. if (!wcd937x->comp1_enable)
  737. usleep_range(20000, 20100);
  738. else
  739. usleep_range(7000, 7100);
  740. clear_bit(HPH_PA_DELAY, &wcd937x->status_mask);
  741. }
  742. snd_soc_component_update_bits(component,
  743. WCD937X_DIGITAL_PDM_WD_CTL0, 0x17, 0x00);
  744. blocking_notifier_call_chain(&wcd937x->mbhc->notifier,
  745. WCD_EVENT_POST_HPHL_PA_OFF,
  746. &wcd937x->mbhc->wcd_mbhc);
  747. snd_soc_component_update_bits(component, WCD937X_ANA_HPH,
  748. 0x20, 0x00);
  749. wcd_cls_h_fsm(component, &wcd937x->clsh_info,
  750. WCD_CLSH_EVENT_POST_PA,
  751. WCD_CLSH_STATE_HPHL,
  752. hph_mode);
  753. break;
  754. };
  755. return ret;
  756. }
  757. static int wcd937x_codec_enable_aux_pa(struct snd_soc_dapm_widget *w,
  758. struct snd_kcontrol *kcontrol,
  759. int event)
  760. {
  761. struct snd_soc_component *component =
  762. snd_soc_dapm_to_component(w->dapm);
  763. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  764. int hph_mode = wcd937x->hph_mode;
  765. int ret = 0;
  766. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  767. w->name, event);
  768. switch (event) {
  769. case SND_SOC_DAPM_PRE_PMU:
  770. ret = swr_slvdev_datapath_control(wcd937x->rx_swr_dev,
  771. wcd937x->rx_swr_dev->dev_num,
  772. true);
  773. snd_soc_component_update_bits(component,
  774. WCD937X_DIGITAL_PDM_WD_CTL2, 0x05, 0x05);
  775. break;
  776. case SND_SOC_DAPM_POST_PMU:
  777. usleep_range(1000, 1010);
  778. if (hph_mode == CLS_AB || hph_mode == CLS_AB_HIFI)
  779. snd_soc_component_update_bits(component,
  780. WCD937X_ANA_RX_SUPPLIES,
  781. 0x02, 0x02);
  782. if (wcd937x->update_wcd_event)
  783. wcd937x->update_wcd_event(wcd937x->handle,
  784. WCD_BOLERO_EVT_RX_MUTE,
  785. (WCD_RX3 << 0x10));
  786. break;
  787. case SND_SOC_DAPM_PRE_PMD:
  788. if (wcd937x->update_wcd_event)
  789. wcd937x->update_wcd_event(wcd937x->handle,
  790. WCD_BOLERO_EVT_RX_MUTE,
  791. (WCD_RX3 << 0x10 | 0x1));
  792. break;
  793. case SND_SOC_DAPM_POST_PMD:
  794. /* Add delay as per hw requirement */
  795. usleep_range(2000, 2010);
  796. wcd_cls_h_fsm(component, &wcd937x->clsh_info,
  797. WCD_CLSH_EVENT_POST_PA,
  798. WCD_CLSH_STATE_AUX,
  799. hph_mode);
  800. snd_soc_component_update_bits(component,
  801. WCD937X_DIGITAL_PDM_WD_CTL2, 0x05, 0x00);
  802. break;
  803. };
  804. return ret;
  805. }
  806. static int wcd937x_codec_enable_ear_pa(struct snd_soc_dapm_widget *w,
  807. struct snd_kcontrol *kcontrol,
  808. int event)
  809. {
  810. struct snd_soc_component *component =
  811. snd_soc_dapm_to_component(w->dapm);
  812. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  813. int hph_mode = wcd937x->hph_mode;
  814. int ret = 0;
  815. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  816. w->name, event);
  817. switch (event) {
  818. case SND_SOC_DAPM_PRE_PMU:
  819. ret = swr_slvdev_datapath_control(wcd937x->rx_swr_dev,
  820. wcd937x->rx_swr_dev->dev_num,
  821. true);
  822. /*
  823. * Enable watchdog interrupt for HPHL or AUX
  824. * depending on mux value
  825. */
  826. wcd937x->ear_rx_path =
  827. snd_soc_component_read32(
  828. component, WCD937X_DIGITAL_CDC_EAR_PATH_CTL);
  829. if (wcd937x->ear_rx_path & EAR_RX_PATH_AUX)
  830. snd_soc_component_update_bits(component,
  831. WCD937X_DIGITAL_PDM_WD_CTL2,
  832. 0x05, 0x05);
  833. else
  834. snd_soc_component_update_bits(component,
  835. WCD937X_DIGITAL_PDM_WD_CTL0,
  836. 0x17, 0x13);
  837. if (!wcd937x->comp1_enable)
  838. snd_soc_component_update_bits(component,
  839. WCD937X_ANA_EAR_COMPANDER_CTL, 0x80, 0x80);
  840. break;
  841. case SND_SOC_DAPM_POST_PMU:
  842. usleep_range(6000, 6010);
  843. if (hph_mode == CLS_AB || hph_mode == CLS_AB_HIFI)
  844. snd_soc_component_update_bits(component,
  845. WCD937X_ANA_RX_SUPPLIES,
  846. 0x02, 0x02);
  847. if (wcd937x->update_wcd_event)
  848. wcd937x->update_wcd_event(wcd937x->handle,
  849. WCD_BOLERO_EVT_RX_MUTE,
  850. (WCD_RX1 << 0x10));
  851. break;
  852. case SND_SOC_DAPM_PRE_PMD:
  853. if (wcd937x->update_wcd_event)
  854. wcd937x->update_wcd_event(wcd937x->handle,
  855. WCD_BOLERO_EVT_RX_MUTE,
  856. (WCD_RX1 << 0x10 | 0x1));
  857. break;
  858. case SND_SOC_DAPM_POST_PMD:
  859. if (!wcd937x->comp1_enable)
  860. snd_soc_component_update_bits(component,
  861. WCD937X_ANA_EAR_COMPANDER_CTL, 0x80, 0x00);
  862. usleep_range(7000, 7010);
  863. wcd_cls_h_fsm(component, &wcd937x->clsh_info,
  864. WCD_CLSH_EVENT_POST_PA,
  865. WCD_CLSH_STATE_EAR,
  866. hph_mode);
  867. snd_soc_component_update_bits(component, WCD937X_FLYBACK_EN,
  868. 0x04, 0x04);
  869. if (wcd937x->ear_rx_path & EAR_RX_PATH_AUX)
  870. snd_soc_component_update_bits(component,
  871. WCD937X_DIGITAL_PDM_WD_CTL2,
  872. 0x05, 0x00);
  873. else
  874. snd_soc_component_update_bits(component,
  875. WCD937X_DIGITAL_PDM_WD_CTL0,
  876. 0x17, 0x00);
  877. break;
  878. };
  879. return ret;
  880. }
  881. static int wcd937x_enable_clsh(struct snd_soc_dapm_widget *w,
  882. struct snd_kcontrol *kcontrol,
  883. int event)
  884. {
  885. struct snd_soc_component *component =
  886. snd_soc_dapm_to_component(w->dapm);
  887. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  888. int mode = wcd937x->hph_mode;
  889. int ret = 0;
  890. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  891. w->name, event);
  892. if (mode == CLS_H_LOHIFI || mode == CLS_H_ULP ||
  893. mode == CLS_H_HIFI || mode == CLS_H_LP) {
  894. wcd937x_rx_connect_port(component, CLSH,
  895. SND_SOC_DAPM_EVENT_ON(event));
  896. }
  897. if (SND_SOC_DAPM_EVENT_OFF(event))
  898. ret = swr_slvdev_datapath_control(
  899. wcd937x->rx_swr_dev,
  900. wcd937x->rx_swr_dev->dev_num,
  901. false);
  902. return ret;
  903. }
  904. static int wcd937x_enable_rx1(struct snd_soc_dapm_widget *w,
  905. struct snd_kcontrol *kcontrol,
  906. int event)
  907. {
  908. struct snd_soc_component *component =
  909. snd_soc_dapm_to_component(w->dapm);
  910. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  911. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  912. w->name, event);
  913. switch (event) {
  914. case SND_SOC_DAPM_PRE_PMU:
  915. wcd937x_rx_connect_port(component, HPH_L, true);
  916. if (wcd937x->comp1_enable)
  917. wcd937x_rx_connect_port(component, COMP_L, true);
  918. break;
  919. case SND_SOC_DAPM_POST_PMD:
  920. wcd937x_rx_connect_port(component, HPH_L, false);
  921. if (wcd937x->comp1_enable)
  922. wcd937x_rx_connect_port(component, COMP_L, false);
  923. wcd937x_rx_clk_disable(component);
  924. snd_soc_component_update_bits(component,
  925. WCD937X_DIGITAL_CDC_DIG_CLK_CTL,
  926. 0x01, 0x00);
  927. break;
  928. };
  929. return 0;
  930. }
  931. static int wcd937x_enable_rx2(struct snd_soc_dapm_widget *w,
  932. struct snd_kcontrol *kcontrol, int event)
  933. {
  934. struct snd_soc_component *component =
  935. snd_soc_dapm_to_component(w->dapm);
  936. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  937. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  938. w->name, event);
  939. switch (event) {
  940. case SND_SOC_DAPM_PRE_PMU:
  941. wcd937x_rx_connect_port(component, HPH_R, true);
  942. if (wcd937x->comp2_enable)
  943. wcd937x_rx_connect_port(component, COMP_R, true);
  944. break;
  945. case SND_SOC_DAPM_POST_PMD:
  946. wcd937x_rx_connect_port(component, HPH_R, false);
  947. if (wcd937x->comp2_enable)
  948. wcd937x_rx_connect_port(component, COMP_R, false);
  949. wcd937x_rx_clk_disable(component);
  950. snd_soc_component_update_bits(component,
  951. WCD937X_DIGITAL_CDC_DIG_CLK_CTL,
  952. 0x02, 0x00);
  953. break;
  954. };
  955. return 0;
  956. }
  957. static int wcd937x_enable_rx3(struct snd_soc_dapm_widget *w,
  958. struct snd_kcontrol *kcontrol,
  959. int event)
  960. {
  961. struct snd_soc_component *component =
  962. snd_soc_dapm_to_component(w->dapm);
  963. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  964. w->name, event);
  965. switch (event) {
  966. case SND_SOC_DAPM_PRE_PMU:
  967. wcd937x_rx_connect_port(component, LO, true);
  968. break;
  969. case SND_SOC_DAPM_POST_PMD:
  970. wcd937x_rx_connect_port(component, LO, false);
  971. usleep_range(6000, 6010);
  972. wcd937x_rx_clk_disable(component);
  973. snd_soc_component_update_bits(component,
  974. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0x04, 0x00);
  975. break;
  976. }
  977. return 0;
  978. }
  979. static int wcd937x_codec_enable_dmic(struct snd_soc_dapm_widget *w,
  980. struct snd_kcontrol *kcontrol,
  981. int event)
  982. {
  983. struct snd_soc_component *component =
  984. snd_soc_dapm_to_component(w->dapm);
  985. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  986. u16 dmic_clk_reg;
  987. s32 *dmic_clk_cnt;
  988. unsigned int dmic;
  989. char *wname;
  990. int ret = 0;
  991. wname = strpbrk(w->name, "012345");
  992. if (!wname) {
  993. dev_err(component->dev, "%s: widget not found\n", __func__);
  994. return -EINVAL;
  995. }
  996. ret = kstrtouint(wname, 10, &dmic);
  997. if (ret < 0) {
  998. dev_err(component->dev, "%s: Invalid DMIC line on the codec\n",
  999. __func__);
  1000. return -EINVAL;
  1001. }
  1002. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  1003. w->name, event);
  1004. switch (dmic) {
  1005. case 0:
  1006. case 1:
  1007. dmic_clk_cnt = &(wcd937x->dmic_0_1_clk_cnt);
  1008. dmic_clk_reg = WCD937X_DIGITAL_CDC_DMIC1_CTL;
  1009. break;
  1010. case 2:
  1011. case 3:
  1012. dmic_clk_cnt = &(wcd937x->dmic_2_3_clk_cnt);
  1013. dmic_clk_reg = WCD937X_DIGITAL_CDC_DMIC2_CTL;
  1014. break;
  1015. case 4:
  1016. case 5:
  1017. dmic_clk_cnt = &(wcd937x->dmic_4_5_clk_cnt);
  1018. dmic_clk_reg = WCD937X_DIGITAL_CDC_DMIC3_CTL;
  1019. break;
  1020. default:
  1021. dev_err(component->dev, "%s: Invalid DMIC Selection\n",
  1022. __func__);
  1023. return -EINVAL;
  1024. };
  1025. dev_dbg(component->dev, "%s: event %d DMIC%d dmic_clk_cnt %d\n",
  1026. __func__, event, dmic, *dmic_clk_cnt);
  1027. switch (event) {
  1028. case SND_SOC_DAPM_PRE_PMU:
  1029. snd_soc_component_update_bits(component,
  1030. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0x80, 0x80);
  1031. snd_soc_component_update_bits(component,
  1032. dmic_clk_reg, 0x07, 0x02);
  1033. snd_soc_component_update_bits(component,
  1034. dmic_clk_reg, 0x08, 0x08);
  1035. snd_soc_component_update_bits(component,
  1036. dmic_clk_reg, 0x70, 0x20);
  1037. wcd937x_tx_connect_port(component, DMIC0 + (w->shift), true);
  1038. break;
  1039. case SND_SOC_DAPM_POST_PMD:
  1040. wcd937x_tx_connect_port(component, DMIC0 + (w->shift), false);
  1041. break;
  1042. };
  1043. return 0;
  1044. }
  1045. /*
  1046. * wcd937x_get_micb_vout_ctl_val: converts micbias from volts to register value
  1047. * @micb_mv: micbias in mv
  1048. *
  1049. * return register value converted
  1050. */
  1051. int wcd937x_get_micb_vout_ctl_val(u32 micb_mv)
  1052. {
  1053. /* min micbias voltage is 1V and maximum is 2.85V */
  1054. if (micb_mv < 1000 || micb_mv > 2850) {
  1055. pr_err("%s: unsupported micbias voltage\n", __func__);
  1056. return -EINVAL;
  1057. }
  1058. return (micb_mv - 1000) / 50;
  1059. }
  1060. EXPORT_SYMBOL(wcd937x_get_micb_vout_ctl_val);
  1061. /*
  1062. * wcd937x_mbhc_micb_adjust_voltage: adjust specific micbias voltage
  1063. * @component: handle to snd_soc_component *
  1064. * @req_volt: micbias voltage to be set
  1065. * @micb_num: micbias to be set, e.g. micbias1 or micbias2
  1066. *
  1067. * return 0 if adjustment is success or error code in case of failure
  1068. */
  1069. int wcd937x_mbhc_micb_adjust_voltage(struct snd_soc_component *component,
  1070. int req_volt, int micb_num)
  1071. {
  1072. struct wcd937x_priv *wcd937x =
  1073. snd_soc_component_get_drvdata(component);
  1074. int cur_vout_ctl, req_vout_ctl;
  1075. int micb_reg, micb_val, micb_en;
  1076. int ret = 0;
  1077. switch (micb_num) {
  1078. case MIC_BIAS_1:
  1079. micb_reg = WCD937X_ANA_MICB1;
  1080. break;
  1081. case MIC_BIAS_2:
  1082. micb_reg = WCD937X_ANA_MICB2;
  1083. break;
  1084. case MIC_BIAS_3:
  1085. micb_reg = WCD937X_ANA_MICB3;
  1086. break;
  1087. default:
  1088. return -EINVAL;
  1089. }
  1090. mutex_lock(&wcd937x->micb_lock);
  1091. /*
  1092. * If requested micbias voltage is same as current micbias
  1093. * voltage, then just return. Otherwise, adjust voltage as
  1094. * per requested value. If micbias is already enabled, then
  1095. * to avoid slow micbias ramp-up or down enable pull-up
  1096. * momentarily, change the micbias value and then re-enable
  1097. * micbias.
  1098. */
  1099. micb_val = snd_soc_component_read32(component, micb_reg);
  1100. micb_en = (micb_val & 0xC0) >> 6;
  1101. cur_vout_ctl = micb_val & 0x3F;
  1102. req_vout_ctl = wcd937x_get_micb_vout_ctl_val(req_volt);
  1103. if (req_vout_ctl < 0) {
  1104. ret = -EINVAL;
  1105. goto exit;
  1106. }
  1107. if (cur_vout_ctl == req_vout_ctl) {
  1108. ret = 0;
  1109. goto exit;
  1110. }
  1111. dev_dbg(component->dev, "%s: micb_num: %d, cur_mv: %d, req_mv: %d, micb_en: %d\n",
  1112. __func__, micb_num, WCD_VOUT_CTL_TO_MICB(cur_vout_ctl),
  1113. req_volt, micb_en);
  1114. if (micb_en == 0x1)
  1115. snd_soc_component_update_bits(component, micb_reg, 0xC0, 0x80);
  1116. snd_soc_component_update_bits(component, micb_reg, 0x3F, req_vout_ctl);
  1117. if (micb_en == 0x1) {
  1118. snd_soc_component_update_bits(component, micb_reg, 0xC0, 0x40);
  1119. /*
  1120. * Add 2ms delay as per HW requirement after enabling
  1121. * micbias
  1122. */
  1123. usleep_range(2000, 2100);
  1124. }
  1125. exit:
  1126. mutex_unlock(&wcd937x->micb_lock);
  1127. return ret;
  1128. }
  1129. EXPORT_SYMBOL(wcd937x_mbhc_micb_adjust_voltage);
  1130. static int wcd937x_tx_swr_ctrl(struct snd_soc_dapm_widget *w,
  1131. struct snd_kcontrol *kcontrol,
  1132. int event)
  1133. {
  1134. struct snd_soc_component *component =
  1135. snd_soc_dapm_to_component(w->dapm);
  1136. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  1137. int ret = 0;
  1138. switch (event) {
  1139. case SND_SOC_DAPM_PRE_PMU:
  1140. ret = swr_slvdev_datapath_control(wcd937x->tx_swr_dev,
  1141. wcd937x->tx_swr_dev->dev_num,
  1142. true);
  1143. break;
  1144. case SND_SOC_DAPM_POST_PMD:
  1145. ret = swr_slvdev_datapath_control(wcd937x->tx_swr_dev,
  1146. wcd937x->tx_swr_dev->dev_num,
  1147. false);
  1148. break;
  1149. };
  1150. return ret;
  1151. }
  1152. static int wcd937x_codec_enable_adc(struct snd_soc_dapm_widget *w,
  1153. struct snd_kcontrol *kcontrol,
  1154. int event){
  1155. struct snd_soc_component *component =
  1156. snd_soc_dapm_to_component(w->dapm);
  1157. struct wcd937x_priv *wcd937x =
  1158. snd_soc_component_get_drvdata(component);
  1159. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  1160. w->name, event);
  1161. switch (event) {
  1162. case SND_SOC_DAPM_PRE_PMU:
  1163. mutex_lock(&wcd937x->ana_tx_clk_lock);
  1164. wcd937x->ana_clk_count++;
  1165. mutex_unlock(&wcd937x->ana_tx_clk_lock);
  1166. snd_soc_component_update_bits(component,
  1167. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0x80, 0x80);
  1168. snd_soc_component_update_bits(component,
  1169. WCD937X_DIGITAL_CDC_ANA_CLK_CTL, 0x08, 0x08);
  1170. snd_soc_component_update_bits(component,
  1171. WCD937X_DIGITAL_CDC_ANA_CLK_CTL, 0x10, 0x10);
  1172. wcd937x_tx_connect_port(component, ADC1 + (w->shift), true);
  1173. break;
  1174. case SND_SOC_DAPM_POST_PMD:
  1175. wcd937x_tx_connect_port(component, ADC1 + (w->shift), false);
  1176. snd_soc_component_update_bits(component,
  1177. WCD937X_DIGITAL_CDC_ANA_CLK_CTL, 0x08, 0x00);
  1178. break;
  1179. };
  1180. return 0;
  1181. }
  1182. static int wcd937x_enable_req(struct snd_soc_dapm_widget *w,
  1183. struct snd_kcontrol *kcontrol, int event)
  1184. {
  1185. struct snd_soc_component *component =
  1186. snd_soc_dapm_to_component(w->dapm);
  1187. struct wcd937x_priv *wcd937x =
  1188. snd_soc_component_get_drvdata(component);
  1189. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  1190. w->name, event);
  1191. switch (event) {
  1192. case SND_SOC_DAPM_PRE_PMU:
  1193. snd_soc_component_update_bits(component,
  1194. WCD937X_DIGITAL_CDC_REQ_CTL, 0x02, 0x02);
  1195. snd_soc_component_update_bits(component,
  1196. WCD937X_DIGITAL_CDC_REQ_CTL, 0x01, 0x00);
  1197. snd_soc_component_update_bits(component,
  1198. WCD937X_ANA_TX_CH2, 0x40, 0x40);
  1199. snd_soc_component_update_bits(component,
  1200. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0x30, 0x30);
  1201. snd_soc_component_update_bits(component,
  1202. WCD937X_ANA_TX_CH1, 0x80, 0x80);
  1203. snd_soc_component_update_bits(component,
  1204. WCD937X_ANA_TX_CH2, 0x40, 0x00);
  1205. snd_soc_component_update_bits(component,
  1206. WCD937X_ANA_TX_CH2, 0x80, 0x80);
  1207. break;
  1208. case SND_SOC_DAPM_POST_PMD:
  1209. snd_soc_component_update_bits(component,
  1210. WCD937X_ANA_TX_CH1, 0x80, 0x00);
  1211. snd_soc_component_update_bits(component,
  1212. WCD937X_ANA_TX_CH2, 0x80, 0x00);
  1213. snd_soc_component_update_bits(component,
  1214. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0x10, 0x00);
  1215. mutex_lock(&wcd937x->ana_tx_clk_lock);
  1216. wcd937x->ana_clk_count--;
  1217. if (wcd937x->ana_clk_count <= 0) {
  1218. snd_soc_component_update_bits(component,
  1219. WCD937X_DIGITAL_CDC_ANA_CLK_CTL, 0x10, 0x00);
  1220. wcd937x->ana_clk_count = 0;
  1221. }
  1222. mutex_unlock(&wcd937x->ana_tx_clk_lock);
  1223. snd_soc_component_update_bits(component,
  1224. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0x80, 0x00);
  1225. break;
  1226. };
  1227. return 0;
  1228. }
  1229. int wcd937x_micbias_control(struct snd_soc_component *component,
  1230. int micb_num, int req, bool is_dapm)
  1231. {
  1232. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  1233. int micb_index = micb_num - 1;
  1234. u16 micb_reg;
  1235. int pre_off_event = 0, post_off_event = 0;
  1236. int post_on_event = 0, post_dapm_off = 0;
  1237. int post_dapm_on = 0;
  1238. if ((micb_index < 0) || (micb_index > WCD937X_MAX_MICBIAS - 1)) {
  1239. dev_err(component->dev, "%s: Invalid micbias index, micb_ind:%d\n",
  1240. __func__, micb_index);
  1241. return -EINVAL;
  1242. }
  1243. switch (micb_num) {
  1244. case MIC_BIAS_1:
  1245. micb_reg = WCD937X_ANA_MICB1;
  1246. break;
  1247. case MIC_BIAS_2:
  1248. micb_reg = WCD937X_ANA_MICB2;
  1249. pre_off_event = WCD_EVENT_PRE_MICBIAS_2_OFF;
  1250. post_off_event = WCD_EVENT_POST_MICBIAS_2_OFF;
  1251. post_on_event = WCD_EVENT_POST_MICBIAS_2_ON;
  1252. post_dapm_on = WCD_EVENT_POST_DAPM_MICBIAS_2_ON;
  1253. post_dapm_off = WCD_EVENT_POST_DAPM_MICBIAS_2_OFF;
  1254. break;
  1255. case MIC_BIAS_3:
  1256. micb_reg = WCD937X_ANA_MICB3;
  1257. break;
  1258. default:
  1259. dev_err(component->dev, "%s: Invalid micbias number: %d\n",
  1260. __func__, micb_num);
  1261. return -EINVAL;
  1262. };
  1263. mutex_lock(&wcd937x->micb_lock);
  1264. switch (req) {
  1265. case MICB_PULLUP_ENABLE:
  1266. wcd937x->pullup_ref[micb_index]++;
  1267. if ((wcd937x->pullup_ref[micb_index] == 1) &&
  1268. (wcd937x->micb_ref[micb_index] == 0))
  1269. snd_soc_component_update_bits(component, micb_reg,
  1270. 0xC0, 0x80);
  1271. break;
  1272. case MICB_PULLUP_DISABLE:
  1273. if (wcd937x->pullup_ref[micb_index] > 0)
  1274. wcd937x->pullup_ref[micb_index]--;
  1275. if ((wcd937x->pullup_ref[micb_index] == 0) &&
  1276. (wcd937x->micb_ref[micb_index] == 0))
  1277. snd_soc_component_update_bits(component, micb_reg,
  1278. 0xC0, 0x00);
  1279. break;
  1280. case MICB_ENABLE:
  1281. wcd937x->micb_ref[micb_index]++;
  1282. mutex_lock(&wcd937x->ana_tx_clk_lock);
  1283. wcd937x->ana_clk_count++;
  1284. mutex_unlock(&wcd937x->ana_tx_clk_lock);
  1285. if (wcd937x->micb_ref[micb_index] == 1) {
  1286. snd_soc_component_update_bits(component,
  1287. WCD937X_DIGITAL_CDC_DIG_CLK_CTL, 0xE0, 0xE0);
  1288. snd_soc_component_update_bits(component,
  1289. WCD937X_DIGITAL_CDC_ANA_CLK_CTL, 0x10, 0x10);
  1290. snd_soc_component_update_bits(component,
  1291. WCD937X_MICB1_TEST_CTL_2, 0x01, 0x01);
  1292. snd_soc_component_update_bits(component,
  1293. WCD937X_MICB2_TEST_CTL_2, 0x01, 0x01);
  1294. snd_soc_component_update_bits(component,
  1295. WCD937X_MICB3_TEST_CTL_2, 0x01, 0x01);
  1296. snd_soc_component_update_bits(component,
  1297. micb_reg, 0xC0, 0x40);
  1298. if (post_on_event)
  1299. blocking_notifier_call_chain(
  1300. &wcd937x->mbhc->notifier, post_on_event,
  1301. &wcd937x->mbhc->wcd_mbhc);
  1302. }
  1303. if (is_dapm && post_dapm_on && wcd937x->mbhc)
  1304. blocking_notifier_call_chain(
  1305. &wcd937x->mbhc->notifier, post_dapm_on,
  1306. &wcd937x->mbhc->wcd_mbhc);
  1307. break;
  1308. case MICB_DISABLE:
  1309. mutex_lock(&wcd937x->ana_tx_clk_lock);
  1310. wcd937x->ana_clk_count--;
  1311. mutex_unlock(&wcd937x->ana_tx_clk_lock);
  1312. if (wcd937x->micb_ref[micb_index] > 0)
  1313. wcd937x->micb_ref[micb_index]--;
  1314. if ((wcd937x->micb_ref[micb_index] == 0) &&
  1315. (wcd937x->pullup_ref[micb_index] > 0))
  1316. snd_soc_component_update_bits(component, micb_reg,
  1317. 0xC0, 0x80);
  1318. else if ((wcd937x->micb_ref[micb_index] == 0) &&
  1319. (wcd937x->pullup_ref[micb_index] == 0)) {
  1320. if (pre_off_event && wcd937x->mbhc)
  1321. blocking_notifier_call_chain(
  1322. &wcd937x->mbhc->notifier, pre_off_event,
  1323. &wcd937x->mbhc->wcd_mbhc);
  1324. snd_soc_component_update_bits(component, micb_reg,
  1325. 0xC0, 0x00);
  1326. if (post_off_event && wcd937x->mbhc)
  1327. blocking_notifier_call_chain(
  1328. &wcd937x->mbhc->notifier,
  1329. post_off_event,
  1330. &wcd937x->mbhc->wcd_mbhc);
  1331. }
  1332. mutex_lock(&wcd937x->ana_tx_clk_lock);
  1333. if (wcd937x->ana_clk_count <= 0) {
  1334. snd_soc_component_update_bits(component,
  1335. WCD937X_DIGITAL_CDC_ANA_CLK_CTL,
  1336. 0x10, 0x00);
  1337. wcd937x->ana_clk_count = 0;
  1338. }
  1339. mutex_unlock(&wcd937x->ana_tx_clk_lock);
  1340. if (is_dapm && post_dapm_off && wcd937x->mbhc)
  1341. blocking_notifier_call_chain(
  1342. &wcd937x->mbhc->notifier, post_dapm_off,
  1343. &wcd937x->mbhc->wcd_mbhc);
  1344. break;
  1345. };
  1346. dev_dbg(component->dev, "%s: micb_num:%d, micb_ref: %d, pullup_ref: %d\n",
  1347. __func__, micb_num, wcd937x->micb_ref[micb_index],
  1348. wcd937x->pullup_ref[micb_index]);
  1349. mutex_unlock(&wcd937x->micb_lock);
  1350. return 0;
  1351. }
  1352. EXPORT_SYMBOL(wcd937x_micbias_control);
  1353. static int wcd937x_get_logical_addr(struct swr_device *swr_dev)
  1354. {
  1355. int ret = 0;
  1356. uint8_t devnum = 0;
  1357. ret = swr_get_logical_dev_num(swr_dev, swr_dev->addr, &devnum);
  1358. if (ret) {
  1359. dev_err(&swr_dev->dev,
  1360. "%s get devnum %d for dev addr %lx failed\n",
  1361. __func__, devnum, swr_dev->addr);
  1362. return ret;
  1363. }
  1364. swr_dev->dev_num = devnum;
  1365. return 0;
  1366. }
  1367. static int wcd937x_event_notify(struct notifier_block *block,
  1368. unsigned long val,
  1369. void *data)
  1370. {
  1371. u16 event = (val & 0xffff);
  1372. u16 amic = (val >> 0x10);
  1373. u16 mask = 0x40, reg = 0x0;
  1374. int ret = 0;
  1375. struct wcd937x_priv *wcd937x = dev_get_drvdata((struct device *)data);
  1376. struct snd_soc_component *component = wcd937x->component;
  1377. struct wcd_mbhc *mbhc;
  1378. switch (event) {
  1379. case BOLERO_WCD_EVT_TX_CH_HOLD_CLEAR:
  1380. if (amic == 0x1 || amic == 0x2)
  1381. reg = WCD937X_ANA_TX_CH2;
  1382. else if (amic == 0x3)
  1383. reg = WCD937X_ANA_TX_CH3_HPF;
  1384. else
  1385. return 0;
  1386. if (amic == 0x2)
  1387. mask = 0x20;
  1388. snd_soc_component_update_bits(component, reg, mask, 0x00);
  1389. break;
  1390. case BOLERO_WCD_EVT_PA_OFF_PRE_SSR:
  1391. snd_soc_component_update_bits(component, WCD937X_ANA_HPH,
  1392. 0xC0, 0x00);
  1393. snd_soc_component_update_bits(component, WCD937X_ANA_EAR,
  1394. 0x80, 0x00);
  1395. snd_soc_component_update_bits(component, WCD937X_AUX_AUXPA,
  1396. 0x80, 0x00);
  1397. break;
  1398. case BOLERO_WCD_EVT_SSR_DOWN:
  1399. mbhc = &wcd937x->mbhc->wcd_mbhc;
  1400. wcd937x_mbhc_ssr_down(wcd937x->mbhc, component);
  1401. wcd937x_reset_low(wcd937x->dev);
  1402. break;
  1403. case BOLERO_WCD_EVT_SSR_UP:
  1404. wcd937x_reset(wcd937x->dev);
  1405. wcd937x_get_logical_addr(wcd937x->tx_swr_dev);
  1406. wcd937x_get_logical_addr(wcd937x->rx_swr_dev);
  1407. regcache_mark_dirty(wcd937x->regmap);
  1408. regcache_sync(wcd937x->regmap);
  1409. /* Enable surge protection */
  1410. snd_soc_component_update_bits(component,
  1411. WCD937X_HPH_SURGE_HPHLR_SURGE_EN,
  1412. 0xFF, 0xD9);
  1413. /* Initialize MBHC module */
  1414. mbhc = &wcd937x->mbhc->wcd_mbhc;
  1415. ret = wcd937x_mbhc_post_ssr_init(wcd937x->mbhc, component);
  1416. if (ret) {
  1417. dev_err(component->dev, "%s: mbhc initialization failed\n",
  1418. __func__);
  1419. } else {
  1420. wcd937x_mbhc_hs_detect(component, mbhc->mbhc_cfg);
  1421. }
  1422. break;
  1423. default:
  1424. dev_err(component->dev, "%s: invalid event %d\n", __func__,
  1425. event);
  1426. break;
  1427. }
  1428. return 0;
  1429. }
  1430. static int __wcd937x_codec_enable_micbias(struct snd_soc_dapm_widget *w,
  1431. int event)
  1432. {
  1433. struct snd_soc_component *component =
  1434. snd_soc_dapm_to_component(w->dapm);
  1435. int micb_num;
  1436. dev_dbg(component->dev, "%s: wname: %s, event: %d\n",
  1437. __func__, w->name, event);
  1438. if (strnstr(w->name, "MIC BIAS1", sizeof("MIC BIAS1")))
  1439. micb_num = MIC_BIAS_1;
  1440. else if (strnstr(w->name, "MIC BIAS2", sizeof("MIC BIAS2")))
  1441. micb_num = MIC_BIAS_2;
  1442. else if (strnstr(w->name, "MIC BIAS3", sizeof("MIC BIAS3")))
  1443. micb_num = MIC_BIAS_3;
  1444. else
  1445. return -EINVAL;
  1446. switch (event) {
  1447. case SND_SOC_DAPM_PRE_PMU:
  1448. wcd937x_micbias_control(component, micb_num,
  1449. MICB_ENABLE, true);
  1450. break;
  1451. case SND_SOC_DAPM_POST_PMU:
  1452. usleep_range(1000, 1100);
  1453. break;
  1454. case SND_SOC_DAPM_POST_PMD:
  1455. wcd937x_micbias_control(component, micb_num,
  1456. MICB_DISABLE, true);
  1457. break;
  1458. };
  1459. return 0;
  1460. }
  1461. static int wcd937x_codec_enable_micbias(struct snd_soc_dapm_widget *w,
  1462. struct snd_kcontrol *kcontrol,
  1463. int event)
  1464. {
  1465. return __wcd937x_codec_enable_micbias(w, event);
  1466. }
  1467. static int wcd937x_rx_hph_mode_get(struct snd_kcontrol *kcontrol,
  1468. struct snd_ctl_elem_value *ucontrol)
  1469. {
  1470. struct snd_soc_component *component =
  1471. snd_soc_kcontrol_component(kcontrol);
  1472. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  1473. ucontrol->value.integer.value[0] = wcd937x->hph_mode;
  1474. return 0;
  1475. }
  1476. static int wcd937x_rx_hph_mode_put(struct snd_kcontrol *kcontrol,
  1477. struct snd_ctl_elem_value *ucontrol)
  1478. {
  1479. struct snd_soc_component *component =
  1480. snd_soc_kcontrol_component(kcontrol);
  1481. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  1482. u32 mode_val;
  1483. mode_val = ucontrol->value.enumerated.item[0];
  1484. dev_dbg(component->dev, "%s: mode: %d\n", __func__, mode_val);
  1485. if (mode_val == 0) {
  1486. dev_warn(component->dev, "%s:Invalid HPH Mode, default to class_AB\n",
  1487. __func__);
  1488. mode_val = 3; /* enum will be updated later */
  1489. }
  1490. wcd937x->hph_mode = mode_val;
  1491. return 0;
  1492. }
  1493. static int wcd937x_ear_pa_gain_get(struct snd_kcontrol *kcontrol,
  1494. struct snd_ctl_elem_value *ucontrol)
  1495. {
  1496. u8 ear_pa_gain = 0;
  1497. struct snd_soc_component *component =
  1498. snd_soc_kcontrol_component(kcontrol);
  1499. ear_pa_gain = snd_soc_component_read32(component,
  1500. WCD937X_ANA_EAR_COMPANDER_CTL);
  1501. ear_pa_gain = (ear_pa_gain & 0x7C) >> 2;
  1502. ucontrol->value.integer.value[0] = ear_pa_gain;
  1503. dev_dbg(component->dev, "%s: ear_pa_gain = 0x%x\n", __func__,
  1504. ear_pa_gain);
  1505. return 0;
  1506. }
  1507. static int wcd937x_ear_pa_gain_put(struct snd_kcontrol *kcontrol,
  1508. struct snd_ctl_elem_value *ucontrol)
  1509. {
  1510. u8 ear_pa_gain = 0;
  1511. struct snd_soc_component *component =
  1512. snd_soc_kcontrol_component(kcontrol);
  1513. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  1514. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  1515. __func__, ucontrol->value.integer.value[0]);
  1516. ear_pa_gain = ucontrol->value.integer.value[0] << 2;
  1517. if (!wcd937x->comp1_enable) {
  1518. snd_soc_component_update_bits(component,
  1519. WCD937X_ANA_EAR_COMPANDER_CTL,
  1520. 0x7C, ear_pa_gain);
  1521. }
  1522. return 0;
  1523. }
  1524. static int wcd937x_get_compander(struct snd_kcontrol *kcontrol,
  1525. struct snd_ctl_elem_value *ucontrol)
  1526. {
  1527. struct snd_soc_component *component =
  1528. snd_soc_kcontrol_component(kcontrol);
  1529. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  1530. bool hphr;
  1531. struct soc_multi_mixer_control *mc;
  1532. mc = (struct soc_multi_mixer_control *)(kcontrol->private_value);
  1533. hphr = mc->shift;
  1534. ucontrol->value.integer.value[0] = hphr ? wcd937x->comp2_enable :
  1535. wcd937x->comp1_enable;
  1536. return 0;
  1537. }
  1538. static int wcd937x_set_compander(struct snd_kcontrol *kcontrol,
  1539. struct snd_ctl_elem_value *ucontrol)
  1540. {
  1541. struct snd_soc_component *component =
  1542. snd_soc_kcontrol_component(kcontrol);
  1543. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  1544. int value = ucontrol->value.integer.value[0];
  1545. bool hphr;
  1546. struct soc_multi_mixer_control *mc;
  1547. mc = (struct soc_multi_mixer_control *)(kcontrol->private_value);
  1548. hphr = mc->shift;
  1549. if (hphr)
  1550. wcd937x->comp2_enable = value;
  1551. else
  1552. wcd937x->comp1_enable = value;
  1553. return 0;
  1554. }
  1555. static int wcd937x_codec_enable_vdd_buck(struct snd_soc_dapm_widget *w,
  1556. struct snd_kcontrol *kcontrol,
  1557. int event)
  1558. {
  1559. struct snd_soc_component *component =
  1560. snd_soc_dapm_to_component(w->dapm);
  1561. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  1562. struct wcd937x_pdata *pdata = NULL;
  1563. int ret = 0;
  1564. pdata = dev_get_platdata(wcd937x->dev);
  1565. if (!pdata) {
  1566. dev_err(component->dev, "%s: pdata is NULL\n", __func__);
  1567. return -EINVAL;
  1568. }
  1569. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  1570. w->name, event);
  1571. switch (event) {
  1572. case SND_SOC_DAPM_PRE_PMU:
  1573. if (test_bit(ALLOW_BUCK_DISABLE, &wcd937x->status_mask)) {
  1574. dev_dbg(component->dev,
  1575. "%s: buck already in enabled state\n",
  1576. __func__);
  1577. clear_bit(ALLOW_BUCK_DISABLE, &wcd937x->status_mask);
  1578. return 0;
  1579. }
  1580. ret = msm_cdc_enable_ondemand_supply(wcd937x->dev,
  1581. wcd937x->supplies,
  1582. pdata->regulator,
  1583. pdata->num_supplies,
  1584. "cdc-vdd-buck");
  1585. if (ret == -EINVAL) {
  1586. dev_err(component->dev, "%s: vdd buck is not enabled\n",
  1587. __func__);
  1588. return ret;
  1589. }
  1590. clear_bit(ALLOW_BUCK_DISABLE, &wcd937x->status_mask);
  1591. /*
  1592. * 200us sleep is required after LDO15 is enabled as per
  1593. * HW requirement
  1594. */
  1595. usleep_range(200, 250);
  1596. break;
  1597. case SND_SOC_DAPM_POST_PMD:
  1598. set_bit(ALLOW_BUCK_DISABLE, &wcd937x->status_mask);
  1599. break;
  1600. }
  1601. return 0;
  1602. }
  1603. static const char * const rx_hph_mode_mux_text[] = {
  1604. "CLS_H_INVALID", "CLS_H_HIFI", "CLS_H_LP", "CLS_AB", "CLS_H_LOHIFI",
  1605. "CLS_H_ULP", "CLS_AB_HIFI",
  1606. };
  1607. static const char * const wcd937x_ear_pa_gain_text[] = {
  1608. "G_6_DB", "G_4P5_DB", "G_3_DB", "G_1P5_DB", "G_0_DB",
  1609. "G_M1P5_DB", "G_M3_DB", "G_M4P5_DB",
  1610. "G_M6_DB", "G_7P5_DB", "G_M9_DB",
  1611. "G_M10P5_DB", "G_M12_DB", "G_M13P5_DB",
  1612. "G_M15_DB", "G_M16P5_DB", "G_M18_DB",
  1613. };
  1614. static const struct soc_enum rx_hph_mode_mux_enum =
  1615. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(rx_hph_mode_mux_text),
  1616. rx_hph_mode_mux_text);
  1617. static SOC_ENUM_SINGLE_EXT_DECL(wcd937x_ear_pa_gain_enum,
  1618. wcd937x_ear_pa_gain_text);
  1619. static const struct snd_kcontrol_new wcd937x_snd_controls[] = {
  1620. SOC_ENUM_EXT("EAR PA GAIN", wcd937x_ear_pa_gain_enum,
  1621. wcd937x_ear_pa_gain_get, wcd937x_ear_pa_gain_put),
  1622. SOC_ENUM_EXT("RX HPH Mode", rx_hph_mode_mux_enum,
  1623. wcd937x_rx_hph_mode_get, wcd937x_rx_hph_mode_put),
  1624. SOC_SINGLE_EXT("HPHL_COMP Switch", SND_SOC_NOPM, 0, 1, 0,
  1625. wcd937x_get_compander, wcd937x_set_compander),
  1626. SOC_SINGLE_EXT("HPHR_COMP Switch", SND_SOC_NOPM, 1, 1, 0,
  1627. wcd937x_get_compander, wcd937x_set_compander),
  1628. SOC_SINGLE_TLV("HPHL Volume", WCD937X_HPH_L_EN, 0, 20, 1, line_gain),
  1629. SOC_SINGLE_TLV("HPHR Volume", WCD937X_HPH_R_EN, 0, 20, 1, line_gain),
  1630. SOC_SINGLE_TLV("ADC1 Volume", WCD937X_ANA_TX_CH1, 0, 20, 0,
  1631. analog_gain),
  1632. SOC_SINGLE_TLV("ADC2 Volume", WCD937X_ANA_TX_CH2, 0, 20, 0,
  1633. analog_gain),
  1634. SOC_SINGLE_TLV("ADC3 Volume", WCD937X_ANA_TX_CH3, 0, 20, 0,
  1635. analog_gain),
  1636. };
  1637. static const struct snd_kcontrol_new adc1_switch[] = {
  1638. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1639. };
  1640. static const struct snd_kcontrol_new adc2_switch[] = {
  1641. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1642. };
  1643. static const struct snd_kcontrol_new adc3_switch[] = {
  1644. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1645. };
  1646. static const struct snd_kcontrol_new dmic1_switch[] = {
  1647. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1648. };
  1649. static const struct snd_kcontrol_new dmic2_switch[] = {
  1650. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1651. };
  1652. static const struct snd_kcontrol_new dmic3_switch[] = {
  1653. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1654. };
  1655. static const struct snd_kcontrol_new dmic4_switch[] = {
  1656. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1657. };
  1658. static const struct snd_kcontrol_new dmic5_switch[] = {
  1659. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1660. };
  1661. static const struct snd_kcontrol_new dmic6_switch[] = {
  1662. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1663. };
  1664. static const struct snd_kcontrol_new ear_rdac_switch[] = {
  1665. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1666. };
  1667. static const struct snd_kcontrol_new aux_rdac_switch[] = {
  1668. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1669. };
  1670. static const struct snd_kcontrol_new hphl_rdac_switch[] = {
  1671. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1672. };
  1673. static const struct snd_kcontrol_new hphr_rdac_switch[] = {
  1674. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  1675. };
  1676. static const char * const adc2_mux_text[] = {
  1677. "INP2", "INP3"
  1678. };
  1679. static const char * const rdac3_mux_text[] = {
  1680. "RX1", "RX3"
  1681. };
  1682. static const struct soc_enum adc2_enum =
  1683. SOC_ENUM_SINGLE(WCD937X_TX_NEW_TX_CH2_SEL, 7,
  1684. ARRAY_SIZE(adc2_mux_text), adc2_mux_text);
  1685. static const struct soc_enum rdac3_enum =
  1686. SOC_ENUM_SINGLE(WCD937X_DIGITAL_CDC_EAR_PATH_CTL, 0,
  1687. ARRAY_SIZE(rdac3_mux_text), rdac3_mux_text);
  1688. static const struct snd_kcontrol_new tx_adc2_mux =
  1689. SOC_DAPM_ENUM("ADC2 MUX Mux", adc2_enum);
  1690. static const struct snd_kcontrol_new rx_rdac3_mux =
  1691. SOC_DAPM_ENUM("RDAC3_MUX Mux", rdac3_enum);
  1692. static const struct snd_soc_dapm_widget wcd937x_dapm_widgets[] = {
  1693. /*input widgets*/
  1694. SND_SOC_DAPM_INPUT("AMIC1"),
  1695. SND_SOC_DAPM_INPUT("AMIC2"),
  1696. SND_SOC_DAPM_INPUT("AMIC3"),
  1697. SND_SOC_DAPM_INPUT("IN1_HPHL"),
  1698. SND_SOC_DAPM_INPUT("IN2_HPHR"),
  1699. SND_SOC_DAPM_INPUT("IN3_AUX"),
  1700. /*tx widgets*/
  1701. SND_SOC_DAPM_ADC_E("ADC1", NULL, SND_SOC_NOPM, 0, 0,
  1702. wcd937x_codec_enable_adc,
  1703. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1704. SND_SOC_DAPM_ADC_E("ADC2", NULL, SND_SOC_NOPM, 1, 0,
  1705. wcd937x_codec_enable_adc,
  1706. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1707. SND_SOC_DAPM_MIXER_E("ADC1 REQ", SND_SOC_NOPM, 0, 0,
  1708. NULL, 0, wcd937x_enable_req,
  1709. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1710. SND_SOC_DAPM_MIXER_E("ADC2 REQ", SND_SOC_NOPM, 0, 0,
  1711. NULL, 0, wcd937x_enable_req,
  1712. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1713. SND_SOC_DAPM_MUX("ADC2 MUX", SND_SOC_NOPM, 0, 0,
  1714. &tx_adc2_mux),
  1715. /*tx mixers*/
  1716. SND_SOC_DAPM_MIXER_E("ADC1_MIXER", SND_SOC_NOPM, 0, 0,
  1717. adc1_switch, ARRAY_SIZE(adc1_switch),
  1718. wcd937x_tx_swr_ctrl, SND_SOC_DAPM_PRE_PMU |
  1719. SND_SOC_DAPM_POST_PMD),
  1720. SND_SOC_DAPM_MIXER_E("ADC2_MIXER", SND_SOC_NOPM, 0, 0,
  1721. adc2_switch, ARRAY_SIZE(adc2_switch),
  1722. wcd937x_tx_swr_ctrl, SND_SOC_DAPM_PRE_PMU |
  1723. SND_SOC_DAPM_POST_PMD),
  1724. /* micbias widgets*/
  1725. SND_SOC_DAPM_MICBIAS_E("MIC BIAS1", SND_SOC_NOPM, 0, 0,
  1726. wcd937x_codec_enable_micbias,
  1727. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1728. SND_SOC_DAPM_POST_PMD),
  1729. SND_SOC_DAPM_MICBIAS_E("MIC BIAS2", SND_SOC_NOPM, 0, 0,
  1730. wcd937x_codec_enable_micbias,
  1731. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1732. SND_SOC_DAPM_POST_PMD),
  1733. SND_SOC_DAPM_MICBIAS_E("MIC BIAS3", SND_SOC_NOPM, 0, 0,
  1734. wcd937x_codec_enable_micbias,
  1735. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1736. SND_SOC_DAPM_POST_PMD),
  1737. SND_SOC_DAPM_SUPPLY("VDD_BUCK", SND_SOC_NOPM, 0, 0,
  1738. wcd937x_codec_enable_vdd_buck,
  1739. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1740. SND_SOC_DAPM_SUPPLY_S("CLS_H_PORT", 1, SND_SOC_NOPM, 0, 0,
  1741. wcd937x_enable_clsh,
  1742. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1743. /*rx widgets*/
  1744. SND_SOC_DAPM_PGA_E("EAR PGA", WCD937X_ANA_EAR, 7, 0, NULL, 0,
  1745. wcd937x_codec_enable_ear_pa,
  1746. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1747. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1748. SND_SOC_DAPM_PGA_E("AUX PGA", WCD937X_AUX_AUXPA, 7, 0, NULL, 0,
  1749. wcd937x_codec_enable_aux_pa,
  1750. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1751. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1752. SND_SOC_DAPM_PGA_E("HPHL PGA", WCD937X_ANA_HPH, 7, 0, NULL, 0,
  1753. wcd937x_codec_enable_hphl_pa,
  1754. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1755. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1756. SND_SOC_DAPM_PGA_E("HPHR PGA", WCD937X_ANA_HPH, 6, 0, NULL, 0,
  1757. wcd937x_codec_enable_hphr_pa,
  1758. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1759. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1760. SND_SOC_DAPM_DAC_E("RDAC1", NULL, SND_SOC_NOPM, 0, 0,
  1761. wcd937x_codec_hphl_dac_event,
  1762. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1763. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1764. SND_SOC_DAPM_DAC_E("RDAC2", NULL, SND_SOC_NOPM, 0, 0,
  1765. wcd937x_codec_hphr_dac_event,
  1766. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1767. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1768. SND_SOC_DAPM_DAC_E("RDAC3", NULL, SND_SOC_NOPM, 0, 0,
  1769. wcd937x_codec_ear_dac_event,
  1770. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1771. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1772. SND_SOC_DAPM_DAC_E("RDAC4", NULL, SND_SOC_NOPM, 0, 0,
  1773. wcd937x_codec_aux_dac_event,
  1774. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  1775. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  1776. SND_SOC_DAPM_MUX("RDAC3_MUX", SND_SOC_NOPM, 0, 0, &rx_rdac3_mux),
  1777. SND_SOC_DAPM_MIXER_E("RX1", SND_SOC_NOPM, 0, 0, NULL, 0,
  1778. wcd937x_enable_rx1, SND_SOC_DAPM_PRE_PMU |
  1779. SND_SOC_DAPM_POST_PMD),
  1780. SND_SOC_DAPM_MIXER_E("RX2", SND_SOC_NOPM, 0, 0, NULL, 0,
  1781. wcd937x_enable_rx2, SND_SOC_DAPM_PRE_PMU |
  1782. SND_SOC_DAPM_POST_PMD),
  1783. SND_SOC_DAPM_MIXER_E("RX3", SND_SOC_NOPM, 0, 0, NULL, 0,
  1784. wcd937x_enable_rx3, SND_SOC_DAPM_PRE_PMU |
  1785. SND_SOC_DAPM_POST_PMD),
  1786. /* rx mixer widgets*/
  1787. SND_SOC_DAPM_MIXER("EAR_RDAC", SND_SOC_NOPM, 0, 0,
  1788. ear_rdac_switch, ARRAY_SIZE(ear_rdac_switch)),
  1789. SND_SOC_DAPM_MIXER("AUX_RDAC", SND_SOC_NOPM, 0, 0,
  1790. aux_rdac_switch, ARRAY_SIZE(aux_rdac_switch)),
  1791. SND_SOC_DAPM_MIXER("HPHL_RDAC", SND_SOC_NOPM, 0, 0,
  1792. hphl_rdac_switch, ARRAY_SIZE(hphl_rdac_switch)),
  1793. SND_SOC_DAPM_MIXER("HPHR_RDAC", SND_SOC_NOPM, 0, 0,
  1794. hphr_rdac_switch, ARRAY_SIZE(hphr_rdac_switch)),
  1795. /*output widgets tx*/
  1796. SND_SOC_DAPM_OUTPUT("ADC1_OUTPUT"),
  1797. SND_SOC_DAPM_OUTPUT("ADC2_OUTPUT"),
  1798. /*output widgets rx*/
  1799. SND_SOC_DAPM_OUTPUT("EAR"),
  1800. SND_SOC_DAPM_OUTPUT("AUX"),
  1801. SND_SOC_DAPM_OUTPUT("HPHL"),
  1802. SND_SOC_DAPM_OUTPUT("HPHR"),
  1803. };
  1804. static const struct snd_soc_dapm_widget wcd9375_dapm_widgets[] = {
  1805. /*input widgets*/
  1806. SND_SOC_DAPM_INPUT("AMIC4"),
  1807. /*tx widgets*/
  1808. SND_SOC_DAPM_ADC_E("ADC3", NULL, SND_SOC_NOPM, 2, 0,
  1809. wcd937x_codec_enable_adc,
  1810. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1811. SND_SOC_DAPM_MIXER_E("ADC3 REQ", SND_SOC_NOPM, 0, 0,
  1812. NULL, 0, wcd937x_enable_req,
  1813. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1814. SND_SOC_DAPM_ADC_E("DMIC1", NULL, SND_SOC_NOPM, 0, 0,
  1815. wcd937x_codec_enable_dmic,
  1816. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1817. SND_SOC_DAPM_ADC_E("DMIC2", NULL, SND_SOC_NOPM, 1, 0,
  1818. wcd937x_codec_enable_dmic,
  1819. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1820. SND_SOC_DAPM_ADC_E("DMIC3", NULL, SND_SOC_NOPM, 2, 0,
  1821. wcd937x_codec_enable_dmic,
  1822. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1823. SND_SOC_DAPM_ADC_E("DMIC4", NULL, SND_SOC_NOPM, 3, 0,
  1824. wcd937x_codec_enable_dmic,
  1825. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1826. SND_SOC_DAPM_ADC_E("DMIC5", NULL, SND_SOC_NOPM, 4, 0,
  1827. wcd937x_codec_enable_dmic,
  1828. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1829. SND_SOC_DAPM_ADC_E("DMIC6", NULL, SND_SOC_NOPM, 5, 0,
  1830. wcd937x_codec_enable_dmic,
  1831. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1832. /*tx mixer widgets*/
  1833. SND_SOC_DAPM_MIXER_E("DMIC1_MIXER", SND_SOC_NOPM, 0,
  1834. 0, dmic1_switch, ARRAY_SIZE(dmic1_switch),
  1835. wcd937x_tx_swr_ctrl, SND_SOC_DAPM_PRE_PMU |
  1836. SND_SOC_DAPM_POST_PMD),
  1837. SND_SOC_DAPM_MIXER_E("DMIC2_MIXER", SND_SOC_NOPM, 0,
  1838. 0, dmic2_switch, ARRAY_SIZE(dmic2_switch),
  1839. wcd937x_tx_swr_ctrl, SND_SOC_DAPM_PRE_PMU |
  1840. SND_SOC_DAPM_POST_PMD),
  1841. SND_SOC_DAPM_MIXER_E("DMIC3_MIXER", SND_SOC_NOPM, 0,
  1842. 0, dmic3_switch, ARRAY_SIZE(dmic3_switch),
  1843. wcd937x_tx_swr_ctrl, SND_SOC_DAPM_PRE_PMU |
  1844. SND_SOC_DAPM_POST_PMD),
  1845. SND_SOC_DAPM_MIXER_E("DMIC4_MIXER", SND_SOC_NOPM, 0,
  1846. 0, dmic4_switch, ARRAY_SIZE(dmic4_switch),
  1847. wcd937x_tx_swr_ctrl, SND_SOC_DAPM_PRE_PMU |
  1848. SND_SOC_DAPM_POST_PMD),
  1849. SND_SOC_DAPM_MIXER_E("DMIC5_MIXER", SND_SOC_NOPM, 0,
  1850. 0, dmic5_switch, ARRAY_SIZE(dmic5_switch),
  1851. wcd937x_tx_swr_ctrl, SND_SOC_DAPM_PRE_PMU |
  1852. SND_SOC_DAPM_POST_PMD),
  1853. SND_SOC_DAPM_MIXER_E("DMIC6_MIXER", SND_SOC_NOPM, 0,
  1854. 0, dmic6_switch, ARRAY_SIZE(dmic6_switch),
  1855. wcd937x_tx_swr_ctrl, SND_SOC_DAPM_PRE_PMU |
  1856. SND_SOC_DAPM_POST_PMD),
  1857. SND_SOC_DAPM_MIXER_E("ADC3_MIXER", SND_SOC_NOPM, 0, 0, adc3_switch,
  1858. ARRAY_SIZE(adc3_switch), wcd937x_tx_swr_ctrl,
  1859. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  1860. /*output widgets*/
  1861. SND_SOC_DAPM_OUTPUT("DMIC1_OUTPUT"),
  1862. SND_SOC_DAPM_OUTPUT("DMIC2_OUTPUT"),
  1863. SND_SOC_DAPM_OUTPUT("DMIC3_OUTPUT"),
  1864. SND_SOC_DAPM_OUTPUT("DMIC4_OUTPUT"),
  1865. SND_SOC_DAPM_OUTPUT("DMIC5_OUTPUT"),
  1866. SND_SOC_DAPM_OUTPUT("DMIC6_OUTPUT"),
  1867. SND_SOC_DAPM_OUTPUT("ADC3_OUTPUT"),
  1868. };
  1869. static const struct snd_soc_dapm_route wcd937x_audio_map[] = {
  1870. {"ADC1_OUTPUT", NULL, "ADC1_MIXER"},
  1871. {"ADC1_MIXER", "Switch", "ADC1 REQ"},
  1872. {"ADC1 REQ", NULL, "ADC1"},
  1873. {"ADC1", NULL, "AMIC1"},
  1874. {"ADC2_OUTPUT", NULL, "ADC2_MIXER"},
  1875. {"ADC2_MIXER", "Switch", "ADC2 REQ"},
  1876. {"ADC2 REQ", NULL, "ADC2"},
  1877. {"ADC2", NULL, "ADC2 MUX"},
  1878. {"ADC2 MUX", "INP3", "AMIC3"},
  1879. {"ADC2 MUX", "INP2", "AMIC2"},
  1880. {"IN1_HPHL", NULL, "VDD_BUCK"},
  1881. {"IN1_HPHL", NULL, "CLS_H_PORT"},
  1882. {"RX1", NULL, "IN1_HPHL"},
  1883. {"RDAC1", NULL, "RX1"},
  1884. {"HPHL_RDAC", "Switch", "RDAC1"},
  1885. {"HPHL PGA", NULL, "HPHL_RDAC"},
  1886. {"HPHL", NULL, "HPHL PGA"},
  1887. {"IN2_HPHR", NULL, "VDD_BUCK"},
  1888. {"IN2_HPHR", NULL, "CLS_H_PORT"},
  1889. {"RX2", NULL, "IN2_HPHR"},
  1890. {"RDAC2", NULL, "RX2"},
  1891. {"HPHR_RDAC", "Switch", "RDAC2"},
  1892. {"HPHR PGA", NULL, "HPHR_RDAC"},
  1893. {"HPHR", NULL, "HPHR PGA"},
  1894. {"IN3_AUX", NULL, "VDD_BUCK"},
  1895. {"IN3_AUX", NULL, "CLS_H_PORT"},
  1896. {"RX3", NULL, "IN3_AUX"},
  1897. {"RDAC4", NULL, "RX3"},
  1898. {"AUX_RDAC", "Switch", "RDAC4"},
  1899. {"AUX PGA", NULL, "AUX_RDAC"},
  1900. {"AUX", NULL, "AUX PGA"},
  1901. {"RDAC3_MUX", "RX3", "RX3"},
  1902. {"RDAC3_MUX", "RX1", "RX1"},
  1903. {"RDAC3", NULL, "RDAC3_MUX"},
  1904. {"EAR_RDAC", "Switch", "RDAC3"},
  1905. {"EAR PGA", NULL, "EAR_RDAC"},
  1906. {"EAR", NULL, "EAR PGA"},
  1907. };
  1908. static const struct snd_soc_dapm_route wcd9375_audio_map[] = {
  1909. {"ADC3_OUTPUT", NULL, "ADC3_MIXER"},
  1910. {"ADC3_MIXER", "Switch", "ADC3 REQ"},
  1911. {"ADC3 REQ", NULL, "ADC3"},
  1912. {"ADC3", NULL, "AMIC4"},
  1913. {"DMIC1_OUTPUT", NULL, "DMIC1_MIXER"},
  1914. {"DMIC1_MIXER", "Switch", "DMIC1"},
  1915. {"DMIC2_OUTPUT", NULL, "DMIC2_MIXER"},
  1916. {"DMIC2_MIXER", "Switch", "DMIC2"},
  1917. {"DMIC3_OUTPUT", NULL, "DMIC3_MIXER"},
  1918. {"DMIC3_MIXER", "Switch", "DMIC3"},
  1919. {"DMIC4_OUTPUT", NULL, "DMIC4_MIXER"},
  1920. {"DMIC4_MIXER", "Switch", "DMIC4"},
  1921. {"DMIC5_OUTPUT", NULL, "DMIC5_MIXER"},
  1922. {"DMIC5_MIXER", "Switch", "DMIC5"},
  1923. {"DMIC6_OUTPUT", NULL, "DMIC6_MIXER"},
  1924. {"DMIC6_MIXER", "Switch", "DMIC6"},
  1925. };
  1926. static ssize_t wcd937x_version_read(struct snd_info_entry *entry,
  1927. void *file_private_data,
  1928. struct file *file,
  1929. char __user *buf, size_t count,
  1930. loff_t pos)
  1931. {
  1932. struct wcd937x_priv *priv;
  1933. char buffer[WCD937X_VERSION_ENTRY_SIZE];
  1934. int len = 0;
  1935. priv = (struct wcd937x_priv *) entry->private_data;
  1936. if (!priv) {
  1937. pr_err("%s: wcd937x priv is null\n", __func__);
  1938. return -EINVAL;
  1939. }
  1940. switch (priv->version) {
  1941. case WCD937X_VERSION_1_0:
  1942. len = snprintf(buffer, sizeof(buffer), "WCD937X_1_0\n");
  1943. break;
  1944. default:
  1945. len = snprintf(buffer, sizeof(buffer), "VER_UNDEFINED\n");
  1946. }
  1947. return simple_read_from_buffer(buf, count, &pos, buffer, len);
  1948. }
  1949. static struct snd_info_entry_ops wcd937x_info_ops = {
  1950. .read = wcd937x_version_read,
  1951. };
  1952. /*
  1953. * wcd937x_info_create_codec_entry - creates wcd937x module
  1954. * @codec_root: The parent directory
  1955. * @component: component instance
  1956. *
  1957. * Creates wcd937x module and version entry under the given
  1958. * parent directory.
  1959. *
  1960. * Return: 0 on success or negative error code on failure.
  1961. */
  1962. int wcd937x_info_create_codec_entry(struct snd_info_entry *codec_root,
  1963. struct snd_soc_component *component)
  1964. {
  1965. struct snd_info_entry *version_entry;
  1966. struct wcd937x_priv *priv;
  1967. struct snd_soc_card *card;
  1968. if (!codec_root || !component)
  1969. return -EINVAL;
  1970. priv = snd_soc_component_get_drvdata(component);
  1971. if (priv->entry) {
  1972. dev_dbg(priv->dev,
  1973. "%s:wcd937x module already created\n", __func__);
  1974. return 0;
  1975. }
  1976. card = component->card;
  1977. priv->entry = snd_info_create_subdir(codec_root->module,
  1978. "wcd937x", codec_root);
  1979. if (!priv->entry) {
  1980. dev_dbg(component->dev, "%s: failed to create wcd937x entry\n",
  1981. __func__);
  1982. return -ENOMEM;
  1983. }
  1984. version_entry = snd_info_create_card_entry(card->snd_card,
  1985. "version",
  1986. priv->entry);
  1987. if (!version_entry) {
  1988. dev_dbg(component->dev, "%s: failed to create wcd937x version entry\n",
  1989. __func__);
  1990. return -ENOMEM;
  1991. }
  1992. version_entry->private_data = priv;
  1993. version_entry->size = WCD937X_VERSION_ENTRY_SIZE;
  1994. version_entry->content = SNDRV_INFO_CONTENT_DATA;
  1995. version_entry->c.ops = &wcd937x_info_ops;
  1996. if (snd_info_register(version_entry) < 0) {
  1997. snd_info_free_entry(version_entry);
  1998. return -ENOMEM;
  1999. }
  2000. priv->version_entry = version_entry;
  2001. return 0;
  2002. }
  2003. EXPORT_SYMBOL(wcd937x_info_create_codec_entry);
  2004. static int wcd937x_set_micbias_data(struct wcd937x_priv *wcd937x,
  2005. struct wcd937x_pdata *pdata)
  2006. {
  2007. int vout_ctl_1 = 0, vout_ctl_2 = 0, vout_ctl_3 = 0;
  2008. int rc = 0;
  2009. if (!pdata) {
  2010. dev_err(wcd937x->dev, "%s: NULL pdata\n", __func__);
  2011. return -ENODEV;
  2012. }
  2013. /* set micbias voltage */
  2014. vout_ctl_1 = wcd937x_get_micb_vout_ctl_val(pdata->micbias.micb1_mv);
  2015. vout_ctl_2 = wcd937x_get_micb_vout_ctl_val(pdata->micbias.micb2_mv);
  2016. vout_ctl_3 = wcd937x_get_micb_vout_ctl_val(pdata->micbias.micb3_mv);
  2017. if (vout_ctl_1 < 0 || vout_ctl_2 < 0 || vout_ctl_3 < 0) {
  2018. rc = -EINVAL;
  2019. goto done;
  2020. }
  2021. regmap_update_bits(wcd937x->regmap, WCD937X_ANA_MICB1, 0x3F,
  2022. vout_ctl_1);
  2023. regmap_update_bits(wcd937x->regmap, WCD937X_ANA_MICB2, 0x3F,
  2024. vout_ctl_2);
  2025. regmap_update_bits(wcd937x->regmap, WCD937X_ANA_MICB3, 0x3F,
  2026. vout_ctl_3);
  2027. done:
  2028. return rc;
  2029. }
  2030. static int wcd937x_soc_codec_probe(struct snd_soc_component *component)
  2031. {
  2032. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  2033. struct snd_soc_dapm_context *dapm =
  2034. snd_soc_component_get_dapm(component);
  2035. int variant;
  2036. int ret = -EINVAL;
  2037. dev_info(component->dev, "%s()\n", __func__);
  2038. wcd937x = snd_soc_component_get_drvdata(component);
  2039. if (!wcd937x)
  2040. return -EINVAL;
  2041. wcd937x->component = component;
  2042. variant = (snd_soc_component_read32(
  2043. component, WCD937X_DIGITAL_EFUSE_REG_0) & 0x1E) >> 1;
  2044. wcd937x->variant = variant;
  2045. wcd937x->fw_data = devm_kzalloc(component->dev,
  2046. sizeof(*(wcd937x->fw_data)),
  2047. GFP_KERNEL);
  2048. if (!wcd937x->fw_data) {
  2049. dev_err(component->dev, "Failed to allocate fw_data\n");
  2050. ret = -ENOMEM;
  2051. goto err;
  2052. }
  2053. set_bit(WCD9XXX_MBHC_CAL, wcd937x->fw_data->cal_bit);
  2054. ret = wcd_cal_create_hwdep(wcd937x->fw_data,
  2055. WCD9XXX_CODEC_HWDEP_NODE, component);
  2056. if (ret < 0) {
  2057. dev_err(component->dev, "%s hwdep failed %d\n", __func__, ret);
  2058. goto err_hwdep;
  2059. }
  2060. ret = wcd937x_mbhc_init(&wcd937x->mbhc, component, wcd937x->fw_data);
  2061. if (ret) {
  2062. pr_err("%s: mbhc initialization failed\n", __func__);
  2063. goto err_hwdep;
  2064. }
  2065. snd_soc_dapm_ignore_suspend(dapm, "AMIC1");
  2066. snd_soc_dapm_ignore_suspend(dapm, "AMIC2");
  2067. snd_soc_dapm_ignore_suspend(dapm, "AMIC3");
  2068. snd_soc_dapm_ignore_suspend(dapm, "IN1_HPHL");
  2069. snd_soc_dapm_ignore_suspend(dapm, "IN2_HPHR");
  2070. snd_soc_dapm_ignore_suspend(dapm, "IN3_AUX");
  2071. snd_soc_dapm_ignore_suspend(dapm, "ADC1_OUTPUT");
  2072. snd_soc_dapm_ignore_suspend(dapm, "ADC2_OUTPUT");
  2073. snd_soc_dapm_ignore_suspend(dapm, "EAR");
  2074. snd_soc_dapm_ignore_suspend(dapm, "AUX");
  2075. snd_soc_dapm_ignore_suspend(dapm, "HPHL");
  2076. snd_soc_dapm_ignore_suspend(dapm, "HPHR");
  2077. snd_soc_dapm_sync(dapm);
  2078. wcd_cls_h_init(&wcd937x->clsh_info);
  2079. wcd937x_init_reg(component);
  2080. if (wcd937x->variant == WCD9375_VARIANT) {
  2081. ret = snd_soc_dapm_new_controls(dapm, wcd9375_dapm_widgets,
  2082. ARRAY_SIZE(wcd9375_dapm_widgets));
  2083. if (ret < 0) {
  2084. dev_err(component->dev, "%s: Failed to add snd_ctls\n",
  2085. __func__);
  2086. goto err_hwdep;
  2087. }
  2088. ret = snd_soc_dapm_add_routes(dapm, wcd9375_audio_map,
  2089. ARRAY_SIZE(wcd9375_audio_map));
  2090. if (ret < 0) {
  2091. dev_err(component->dev, "%s: Failed to add routes\n",
  2092. __func__);
  2093. goto err_hwdep;
  2094. }
  2095. snd_soc_dapm_ignore_suspend(dapm, "AMIC4");
  2096. snd_soc_dapm_ignore_suspend(dapm, "DMIC1_OUTPUT");
  2097. snd_soc_dapm_ignore_suspend(dapm, "DMIC2_OUTPUT");
  2098. snd_soc_dapm_ignore_suspend(dapm, "DMIC3_OUTPUT");
  2099. snd_soc_dapm_ignore_suspend(dapm, "DMIC4_OUTPUT");
  2100. snd_soc_dapm_ignore_suspend(dapm, "DMIC5_OUTPUT");
  2101. snd_soc_dapm_ignore_suspend(dapm, "DMIC6_OUTPUT");
  2102. snd_soc_dapm_ignore_suspend(dapm, "ADC3_OUTPUT");
  2103. snd_soc_dapm_sync(dapm);
  2104. }
  2105. wcd937x->version = WCD937X_VERSION_1_0;
  2106. /* Register event notifier */
  2107. wcd937x->nblock.notifier_call = wcd937x_event_notify;
  2108. if (wcd937x->register_notifier) {
  2109. ret = wcd937x->register_notifier(wcd937x->handle,
  2110. &wcd937x->nblock,
  2111. true);
  2112. if (ret) {
  2113. dev_err(component->dev,
  2114. "%s: Failed to register notifier %d\n",
  2115. __func__, ret);
  2116. return ret;
  2117. }
  2118. }
  2119. return ret;
  2120. err_hwdep:
  2121. wcd937x->fw_data = NULL;
  2122. err:
  2123. return ret;
  2124. }
  2125. static void wcd937x_soc_codec_remove(struct snd_soc_component *component)
  2126. {
  2127. struct wcd937x_priv *wcd937x = snd_soc_component_get_drvdata(component);
  2128. if (!wcd937x)
  2129. return;
  2130. if (wcd937x->register_notifier)
  2131. wcd937x->register_notifier(wcd937x->handle,
  2132. &wcd937x->nblock,
  2133. false);
  2134. return;
  2135. }
  2136. static const struct snd_soc_component_driver soc_codec_dev_wcd937x = {
  2137. .name = DRV_NAME,
  2138. .probe = wcd937x_soc_codec_probe,
  2139. .remove = wcd937x_soc_codec_remove,
  2140. .controls = wcd937x_snd_controls,
  2141. .num_controls = ARRAY_SIZE(wcd937x_snd_controls),
  2142. .dapm_widgets = wcd937x_dapm_widgets,
  2143. .num_dapm_widgets = ARRAY_SIZE(wcd937x_dapm_widgets),
  2144. .dapm_routes = wcd937x_audio_map,
  2145. .num_dapm_routes = ARRAY_SIZE(wcd937x_audio_map),
  2146. };
  2147. #ifdef CONFIG_PM_SLEEP
  2148. static int wcd937x_suspend(struct device *dev)
  2149. {
  2150. struct wcd937x_priv *wcd937x = NULL;
  2151. int ret = 0;
  2152. struct wcd937x_pdata *pdata = NULL;
  2153. if (!dev)
  2154. return -ENODEV;
  2155. wcd937x = dev_get_drvdata(dev);
  2156. if (!wcd937x)
  2157. return -EINVAL;
  2158. pdata = dev_get_platdata(wcd937x->dev);
  2159. if (!pdata) {
  2160. dev_err(dev, "%s: pdata is NULL\n", __func__);
  2161. return -EINVAL;
  2162. }
  2163. if (test_bit(ALLOW_BUCK_DISABLE, &wcd937x->status_mask)) {
  2164. ret = msm_cdc_disable_ondemand_supply(wcd937x->dev,
  2165. wcd937x->supplies,
  2166. pdata->regulator,
  2167. pdata->num_supplies,
  2168. "cdc-vdd-buck");
  2169. if (ret == -EINVAL) {
  2170. dev_err(dev, "%s: vdd buck is not disabled\n",
  2171. __func__);
  2172. return 0;
  2173. }
  2174. clear_bit(ALLOW_BUCK_DISABLE, &wcd937x->status_mask);
  2175. }
  2176. return 0;
  2177. }
  2178. static int wcd937x_resume(struct device *dev)
  2179. {
  2180. return 0;
  2181. }
  2182. #endif
  2183. static int wcd937x_reset(struct device *dev)
  2184. {
  2185. struct wcd937x_priv *wcd937x = NULL;
  2186. int rc = 0;
  2187. int value = 0;
  2188. if (!dev)
  2189. return -ENODEV;
  2190. wcd937x = dev_get_drvdata(dev);
  2191. if (!wcd937x)
  2192. return -EINVAL;
  2193. if (!wcd937x->rst_np) {
  2194. dev_err(dev, "%s: reset gpio device node not specified\n",
  2195. __func__);
  2196. return -EINVAL;
  2197. }
  2198. value = msm_cdc_pinctrl_get_state(wcd937x->rst_np);
  2199. if (value > 0)
  2200. return 0;
  2201. rc = msm_cdc_pinctrl_select_sleep_state(wcd937x->rst_np);
  2202. if (rc) {
  2203. dev_err(dev, "%s: wcd sleep state request fail!\n",
  2204. __func__);
  2205. return rc;
  2206. }
  2207. /* 20ms sleep required after pulling the reset gpio to LOW */
  2208. usleep_range(20, 30);
  2209. rc = msm_cdc_pinctrl_select_active_state(wcd937x->rst_np);
  2210. if (rc) {
  2211. dev_err(dev, "%s: wcd active state request fail!\n",
  2212. __func__);
  2213. return rc;
  2214. }
  2215. /* 20ms sleep required after pulling the reset gpio to HIGH */
  2216. usleep_range(20, 30);
  2217. return rc;
  2218. }
  2219. static int wcd937x_read_of_property_u32(struct device *dev, const char *name,
  2220. u32 *val)
  2221. {
  2222. int rc = 0;
  2223. rc = of_property_read_u32(dev->of_node, name, val);
  2224. if (rc)
  2225. dev_err(dev, "%s: Looking up %s property in node %s failed\n",
  2226. __func__, name, dev->of_node->full_name);
  2227. return rc;
  2228. }
  2229. static void wcd937x_dt_parse_micbias_info(struct device *dev,
  2230. struct wcd937x_micbias_setting *mb)
  2231. {
  2232. u32 prop_val = 0;
  2233. int rc = 0;
  2234. /* MB1 */
  2235. if (of_find_property(dev->of_node, "qcom,cdc-micbias1-mv",
  2236. NULL)) {
  2237. rc = wcd937x_read_of_property_u32(dev,
  2238. "qcom,cdc-micbias1-mv",
  2239. &prop_val);
  2240. if (!rc)
  2241. mb->micb1_mv = prop_val;
  2242. } else {
  2243. dev_info(dev, "%s: Micbias1 DT property not found\n",
  2244. __func__);
  2245. }
  2246. /* MB2 */
  2247. if (of_find_property(dev->of_node, "qcom,cdc-micbias2-mv",
  2248. NULL)) {
  2249. rc = wcd937x_read_of_property_u32(dev,
  2250. "qcom,cdc-micbias2-mv",
  2251. &prop_val);
  2252. if (!rc)
  2253. mb->micb2_mv = prop_val;
  2254. } else {
  2255. dev_info(dev, "%s: Micbias2 DT property not found\n",
  2256. __func__);
  2257. }
  2258. /* MB3 */
  2259. if (of_find_property(dev->of_node, "qcom,cdc-micbias3-mv",
  2260. NULL)) {
  2261. rc = wcd937x_read_of_property_u32(dev,
  2262. "qcom,cdc-micbias3-mv",
  2263. &prop_val);
  2264. if (!rc)
  2265. mb->micb3_mv = prop_val;
  2266. } else {
  2267. dev_info(dev, "%s: Micbias3 DT property not found\n",
  2268. __func__);
  2269. }
  2270. }
  2271. static int wcd937x_reset_low(struct device *dev)
  2272. {
  2273. struct wcd937x_priv *wcd937x = NULL;
  2274. int rc = 0;
  2275. if (!dev)
  2276. return -ENODEV;
  2277. wcd937x = dev_get_drvdata(dev);
  2278. if (!wcd937x)
  2279. return -EINVAL;
  2280. if (!wcd937x->rst_np) {
  2281. dev_err(dev, "%s: reset gpio device node not specified\n",
  2282. __func__);
  2283. return -EINVAL;
  2284. }
  2285. rc = msm_cdc_pinctrl_select_sleep_state(wcd937x->rst_np);
  2286. if (rc) {
  2287. dev_err(dev, "%s: wcd sleep state request fail!\n",
  2288. __func__);
  2289. return rc;
  2290. }
  2291. /* 20ms sleep required after pulling the reset gpio to LOW */
  2292. usleep_range(20, 30);
  2293. return rc;
  2294. }
  2295. struct wcd937x_pdata *wcd937x_populate_dt_data(struct device *dev)
  2296. {
  2297. struct wcd937x_pdata *pdata = NULL;
  2298. pdata = devm_kzalloc(dev, sizeof(struct wcd937x_pdata),
  2299. GFP_KERNEL);
  2300. if (!pdata)
  2301. return NULL;
  2302. pdata->rst_np = of_parse_phandle(dev->of_node,
  2303. "qcom,wcd-rst-gpio-node", 0);
  2304. if (!pdata->rst_np) {
  2305. dev_err(dev, "%s: Looking up %s property in node %s failed\n",
  2306. __func__, "qcom,wcd-rst-gpio-node",
  2307. dev->of_node->full_name);
  2308. return NULL;
  2309. }
  2310. /* Parse power supplies */
  2311. msm_cdc_get_power_supplies(dev, &pdata->regulator,
  2312. &pdata->num_supplies);
  2313. if (!pdata->regulator || (pdata->num_supplies <= 0)) {
  2314. dev_err(dev, "%s: no power supplies defined for codec\n",
  2315. __func__);
  2316. return NULL;
  2317. }
  2318. pdata->rx_slave = of_parse_phandle(dev->of_node, "qcom,rx-slave", 0);
  2319. pdata->tx_slave = of_parse_phandle(dev->of_node, "qcom,tx-slave", 0);
  2320. wcd937x_dt_parse_micbias_info(dev, &pdata->micbias);
  2321. return pdata;
  2322. }
  2323. static int wcd937x_wakeup(void *handle, bool enable)
  2324. {
  2325. struct wcd937x_priv *priv;
  2326. if (!handle) {
  2327. pr_err("%s: NULL handle\n", __func__);
  2328. return -EINVAL;
  2329. }
  2330. priv = (struct wcd937x_priv *)handle;
  2331. if (!priv->tx_swr_dev) {
  2332. pr_err("%s: tx swr dev is NULL\n", __func__);
  2333. return -EINVAL;
  2334. }
  2335. if (enable)
  2336. return swr_device_wakeup_vote(priv->tx_swr_dev);
  2337. else
  2338. return swr_device_wakeup_unvote(priv->tx_swr_dev);
  2339. }
  2340. static irqreturn_t wcd937x_wd_handle_irq(int irq, void *data)
  2341. {
  2342. pr_err_ratelimited("%s: Watchdog interrupt for irq =%d triggered\n",
  2343. __func__, irq);
  2344. return IRQ_HANDLED;
  2345. }
  2346. static int wcd937x_bind(struct device *dev)
  2347. {
  2348. int ret = 0, i = 0;
  2349. struct wcd937x_priv *wcd937x = NULL;
  2350. struct wcd937x_pdata *pdata = NULL;
  2351. struct wcd_ctrl_platform_data *plat_data = NULL;
  2352. wcd937x = devm_kzalloc(dev, sizeof(struct wcd937x_priv), GFP_KERNEL);
  2353. if (!wcd937x)
  2354. return -ENOMEM;
  2355. dev_set_drvdata(dev, wcd937x);
  2356. pdata = wcd937x_populate_dt_data(dev);
  2357. if (!pdata) {
  2358. dev_err(dev, "%s: Fail to obtain platform data\n", __func__);
  2359. return -EINVAL;
  2360. }
  2361. wcd937x->dev = dev;
  2362. wcd937x->dev->platform_data = pdata;
  2363. wcd937x->rst_np = pdata->rst_np;
  2364. ret = msm_cdc_init_supplies(dev, &wcd937x->supplies,
  2365. pdata->regulator, pdata->num_supplies);
  2366. if (!wcd937x->supplies) {
  2367. dev_err(dev, "%s: Cannot init wcd supplies\n",
  2368. __func__);
  2369. return ret;
  2370. }
  2371. plat_data = dev_get_platdata(dev->parent);
  2372. if (!plat_data) {
  2373. dev_err(dev, "%s: platform data from parent is NULL\n",
  2374. __func__);
  2375. return -EINVAL;
  2376. }
  2377. wcd937x->handle = (void *)plat_data->handle;
  2378. if (!wcd937x->handle) {
  2379. dev_err(dev, "%s: handle is NULL\n", __func__);
  2380. return -EINVAL;
  2381. }
  2382. wcd937x->update_wcd_event = plat_data->update_wcd_event;
  2383. if (!wcd937x->update_wcd_event) {
  2384. dev_err(dev, "%s: update_wcd_event api is null!\n",
  2385. __func__);
  2386. return -EINVAL;
  2387. }
  2388. wcd937x->register_notifier = plat_data->register_notifier;
  2389. if (!wcd937x->register_notifier) {
  2390. dev_err(dev, "%s: register_notifier api is null!\n",
  2391. __func__);
  2392. return -EINVAL;
  2393. }
  2394. ret = msm_cdc_enable_static_supplies(dev, wcd937x->supplies,
  2395. pdata->regulator,
  2396. pdata->num_supplies);
  2397. if (ret) {
  2398. dev_err(dev, "%s: wcd static supply enable failed!\n",
  2399. __func__);
  2400. return ret;
  2401. }
  2402. wcd937x_reset(dev);
  2403. /*
  2404. * Add 5msec delay to provide sufficient time for
  2405. * soundwire auto enumeration of slave devices as
  2406. * as per HW requirement.
  2407. */
  2408. usleep_range(5000, 5010);
  2409. wcd937x->wakeup = wcd937x_wakeup;
  2410. ret = component_bind_all(dev, wcd937x);
  2411. if (ret) {
  2412. dev_err(dev, "%s: Slave bind failed, ret = %d\n",
  2413. __func__, ret);
  2414. return ret;
  2415. }
  2416. ret = wcd937x_parse_port_mapping(dev, "qcom,rx_swr_ch_map", CODEC_RX);
  2417. ret |= wcd937x_parse_port_mapping(dev, "qcom,tx_swr_ch_map", CODEC_TX);
  2418. if (ret) {
  2419. dev_err(dev, "Failed to read port mapping\n");
  2420. goto err;
  2421. }
  2422. wcd937x->rx_swr_dev = get_matching_swr_slave_device(pdata->rx_slave);
  2423. if (!wcd937x->rx_swr_dev) {
  2424. dev_err(dev, "%s: Could not find RX swr slave device\n",
  2425. __func__);
  2426. ret = -ENODEV;
  2427. goto err;
  2428. }
  2429. wcd937x->tx_swr_dev = get_matching_swr_slave_device(pdata->tx_slave);
  2430. if (!wcd937x->tx_swr_dev) {
  2431. dev_err(dev, "%s: Could not find TX swr slave device\n",
  2432. __func__);
  2433. ret = -ENODEV;
  2434. goto err;
  2435. }
  2436. wcd937x->regmap = devm_regmap_init_swr(wcd937x->tx_swr_dev,
  2437. &wcd937x_regmap_config);
  2438. if (!wcd937x->regmap) {
  2439. dev_err(dev, "%s: Regmap init failed\n",
  2440. __func__);
  2441. goto err;
  2442. }
  2443. /* Set all interupts as edge triggered */
  2444. for (i = 0; i < wcd937x_regmap_irq_chip.num_regs; i++)
  2445. regmap_write(wcd937x->regmap,
  2446. (WCD937X_DIGITAL_INTR_LEVEL_0 + i), 0);
  2447. wcd937x_regmap_irq_chip.irq_drv_data = wcd937x;
  2448. wcd937x->irq_info.wcd_regmap_irq_chip = &wcd937x_regmap_irq_chip;
  2449. wcd937x->irq_info.codec_name = "WCD937X";
  2450. wcd937x->irq_info.regmap = wcd937x->regmap;
  2451. wcd937x->irq_info.dev = dev;
  2452. ret = wcd_irq_init(&wcd937x->irq_info, &wcd937x->virq);
  2453. if (ret) {
  2454. dev_err(dev, "%s: IRQ init failed: %d\n",
  2455. __func__, ret);
  2456. goto err;
  2457. }
  2458. wcd937x->tx_swr_dev->slave_irq = wcd937x->virq;
  2459. ret = wcd937x_set_micbias_data(wcd937x, pdata);
  2460. if (ret < 0) {
  2461. dev_err(dev, "%s: bad micbias pdata\n", __func__);
  2462. goto err_irq;
  2463. }
  2464. mutex_init(&wcd937x->micb_lock);
  2465. mutex_init(&wcd937x->ana_tx_clk_lock);
  2466. /* Request for watchdog interrupt */
  2467. wcd_request_irq(&wcd937x->irq_info, WCD937X_IRQ_HPHR_PDM_WD_INT,
  2468. "HPHR PDM WD INT", wcd937x_wd_handle_irq, NULL);
  2469. wcd_request_irq(&wcd937x->irq_info, WCD937X_IRQ_HPHL_PDM_WD_INT,
  2470. "HPHL PDM WD INT", wcd937x_wd_handle_irq, NULL);
  2471. wcd_request_irq(&wcd937x->irq_info, WCD937X_IRQ_AUX_PDM_WD_INT,
  2472. "AUX PDM WD INT", wcd937x_wd_handle_irq, NULL);
  2473. /* Enable watchdog interrupt for HPH and AUX */
  2474. wcd_enable_irq(&wcd937x->irq_info, WCD937X_IRQ_HPHR_PDM_WD_INT);
  2475. wcd_enable_irq(&wcd937x->irq_info, WCD937X_IRQ_HPHL_PDM_WD_INT);
  2476. wcd_enable_irq(&wcd937x->irq_info, WCD937X_IRQ_AUX_PDM_WD_INT);
  2477. ret = snd_soc_register_component(dev, &soc_codec_dev_wcd937x,
  2478. NULL, 0);
  2479. if (ret) {
  2480. dev_err(dev, "%s: Codec registration failed\n",
  2481. __func__);
  2482. goto err_irq;
  2483. }
  2484. return ret;
  2485. err_irq:
  2486. wcd_irq_exit(&wcd937x->irq_info, wcd937x->virq);
  2487. err:
  2488. component_unbind_all(dev, wcd937x);
  2489. return ret;
  2490. }
  2491. static void wcd937x_unbind(struct device *dev)
  2492. {
  2493. struct wcd937x_priv *wcd937x = dev_get_drvdata(dev);
  2494. wcd_irq_exit(&wcd937x->irq_info, wcd937x->virq);
  2495. snd_soc_unregister_component(dev);
  2496. component_unbind_all(dev, wcd937x);
  2497. mutex_destroy(&wcd937x->micb_lock);
  2498. mutex_destroy(&wcd937x->ana_tx_clk_lock);
  2499. }
  2500. static const struct of_device_id wcd937x_dt_match[] = {
  2501. { .compatible = "qcom,wcd937x-codec" },
  2502. {}
  2503. };
  2504. static const struct component_master_ops wcd937x_comp_ops = {
  2505. .bind = wcd937x_bind,
  2506. .unbind = wcd937x_unbind,
  2507. };
  2508. static int wcd937x_compare_of(struct device *dev, void *data)
  2509. {
  2510. return dev->of_node == data;
  2511. }
  2512. static void wcd937x_release_of(struct device *dev, void *data)
  2513. {
  2514. of_node_put(data);
  2515. }
  2516. static int wcd937x_add_slave_components(struct device *dev,
  2517. struct component_match **matchptr)
  2518. {
  2519. struct device_node *np, *rx_node, *tx_node;
  2520. np = dev->of_node;
  2521. rx_node = of_parse_phandle(np, "qcom,rx-slave", 0);
  2522. if (!rx_node) {
  2523. dev_err(dev, "%s: Rx-slave node not defined\n", __func__);
  2524. return -ENODEV;
  2525. }
  2526. of_node_get(rx_node);
  2527. component_match_add_release(dev, matchptr,
  2528. wcd937x_release_of,
  2529. wcd937x_compare_of,
  2530. rx_node);
  2531. tx_node = of_parse_phandle(np, "qcom,tx-slave", 0);
  2532. if (!tx_node) {
  2533. dev_err(dev, "%s: Tx-slave node not defined\n", __func__);
  2534. return -ENODEV;
  2535. }
  2536. of_node_get(tx_node);
  2537. component_match_add_release(dev, matchptr,
  2538. wcd937x_release_of,
  2539. wcd937x_compare_of,
  2540. tx_node);
  2541. return 0;
  2542. }
  2543. static int wcd937x_probe(struct platform_device *pdev)
  2544. {
  2545. struct component_match *match = NULL;
  2546. int ret;
  2547. ret = wcd937x_add_slave_components(&pdev->dev, &match);
  2548. if (ret)
  2549. return ret;
  2550. return component_master_add_with_match(&pdev->dev,
  2551. &wcd937x_comp_ops, match);
  2552. }
  2553. static int wcd937x_remove(struct platform_device *pdev)
  2554. {
  2555. component_master_del(&pdev->dev, &wcd937x_comp_ops);
  2556. return 0;
  2557. }
  2558. #ifdef CONFIG_PM_SLEEP
  2559. static const struct dev_pm_ops wcd937x_dev_pm_ops = {
  2560. SET_SYSTEM_SLEEP_PM_OPS(
  2561. wcd937x_suspend,
  2562. wcd937x_resume
  2563. )
  2564. };
  2565. #endif
  2566. static struct platform_driver wcd937x_codec_driver = {
  2567. .probe = wcd937x_probe,
  2568. .remove = wcd937x_remove,
  2569. .driver = {
  2570. .name = "wcd937x_codec",
  2571. .owner = THIS_MODULE,
  2572. .of_match_table = of_match_ptr(wcd937x_dt_match),
  2573. #ifdef CONFIG_PM_SLEEP
  2574. .pm = &wcd937x_dev_pm_ops,
  2575. #endif
  2576. },
  2577. };
  2578. module_platform_driver(wcd937x_codec_driver);
  2579. MODULE_DESCRIPTION("WCD937X Codec driver");
  2580. MODULE_LICENSE("GPL v2");