wcd937x.c 82 KB

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