wcd937x.c 92 KB

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