wcd937x.c 85 KB

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