rx-macro.c 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/module.h>
  5. #include <linux/init.h>
  6. #include <linux/io.h>
  7. #include <linux/platform_device.h>
  8. #include <linux/clk.h>
  9. #include <linux/pm_runtime.h>
  10. #include <sound/soc.h>
  11. #include <sound/pcm.h>
  12. #include <sound/pcm_params.h>
  13. #include <sound/soc-dapm.h>
  14. #include <sound/tlv.h>
  15. #include <soc/swr-common.h>
  16. #include <soc/swr-wcd.h>
  17. #include <asoc/msm-cdc-pinctrl.h>
  18. #include "bolero-cdc.h"
  19. #include "bolero-cdc-registers.h"
  20. #include "bolero-clk-rsc.h"
  21. #define AUTO_SUSPEND_DELAY 50 /* delay in msec */
  22. #define RX_MACRO_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
  23. SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000 |\
  24. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000 |\
  25. SNDRV_PCM_RATE_384000)
  26. /* Fractional Rates */
  27. #define RX_MACRO_FRAC_RATES (SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_88200 |\
  28. SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_352800)
  29. #define RX_MACRO_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
  30. SNDRV_PCM_FMTBIT_S24_LE |\
  31. SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
  32. #define RX_MACRO_ECHO_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
  33. SNDRV_PCM_RATE_48000)
  34. #define RX_MACRO_ECHO_FORMATS (SNDRV_PCM_FMTBIT_S16_LE |\
  35. SNDRV_PCM_FMTBIT_S24_LE |\
  36. SNDRV_PCM_FMTBIT_S24_3LE)
  37. #define SAMPLING_RATE_44P1KHZ 44100
  38. #define SAMPLING_RATE_88P2KHZ 88200
  39. #define SAMPLING_RATE_176P4KHZ 176400
  40. #define SAMPLING_RATE_352P8KHZ 352800
  41. #define RX_MACRO_MAX_OFFSET 0x1000
  42. #define RX_MACRO_MAX_DMA_CH_PER_PORT 2
  43. #define RX_SWR_STRING_LEN 80
  44. #define RX_MACRO_CHILD_DEVICES_MAX 3
  45. #define RX_MACRO_INTERP_MUX_NUM_INPUTS 3
  46. #define RX_MACRO_SIDETONE_IIR_COEFF_MAX 5
  47. #define STRING(name) #name
  48. #define RX_MACRO_DAPM_ENUM(name, reg, offset, text) \
  49. static SOC_ENUM_SINGLE_DECL(name##_enum, reg, offset, text); \
  50. static const struct snd_kcontrol_new name##_mux = \
  51. SOC_DAPM_ENUM(STRING(name), name##_enum)
  52. #define RX_MACRO_DAPM_ENUM_EXT(name, reg, offset, text, getname, putname) \
  53. static SOC_ENUM_SINGLE_DECL(name##_enum, reg, offset, text); \
  54. static const struct snd_kcontrol_new name##_mux = \
  55. SOC_DAPM_ENUM_EXT(STRING(name), name##_enum, getname, putname)
  56. #define RX_MACRO_DAPM_MUX(name, shift, kctl) \
  57. SND_SOC_DAPM_MUX(name, SND_SOC_NOPM, shift, 0, &kctl##_mux)
  58. #define RX_MACRO_RX_PATH_OFFSET 0x80
  59. #define RX_MACRO_COMP_OFFSET 0x40
  60. #define MAX_IMPED_PARAMS 6
  61. #define RX_MACRO_EC_MIX_TX0_MASK 0xf0
  62. #define RX_MACRO_EC_MIX_TX1_MASK 0x0f
  63. #define RX_MACRO_EC_MIX_TX2_MASK 0x0f
  64. #define COMP_MAX_COEFF 25
  65. struct wcd_imped_val {
  66. u32 imped_val;
  67. u8 index;
  68. };
  69. static const struct wcd_imped_val imped_index[] = {
  70. {4, 0},
  71. {5, 1},
  72. {6, 2},
  73. {7, 3},
  74. {8, 4},
  75. {9, 5},
  76. {10, 6},
  77. {11, 7},
  78. {12, 8},
  79. {13, 9},
  80. };
  81. struct comp_coeff_val {
  82. u8 lsb;
  83. u8 msb;
  84. };
  85. enum {
  86. HPH_ULP,
  87. HPH_LOHIFI,
  88. HPH_MODE_MAX,
  89. };
  90. static const struct comp_coeff_val
  91. comp_coeff_table [HPH_MODE_MAX][COMP_MAX_COEFF] = {
  92. {
  93. {0x40, 0x00},
  94. {0x4C, 0x00},
  95. {0x5A, 0x00},
  96. {0x6B, 0x00},
  97. {0x7F, 0x00},
  98. {0x97, 0x00},
  99. {0xB3, 0x00},
  100. {0xD5, 0x00},
  101. {0xFD, 0x00},
  102. {0x2D, 0x01},
  103. {0x66, 0x01},
  104. {0xA7, 0x01},
  105. {0xF8, 0x01},
  106. {0x57, 0x02},
  107. {0xC7, 0x02},
  108. {0x4B, 0x03},
  109. {0xE9, 0x03},
  110. {0xA3, 0x04},
  111. {0x7D, 0x05},
  112. {0x90, 0x06},
  113. {0xD1, 0x07},
  114. {0x49, 0x09},
  115. {0x00, 0x0B},
  116. {0x01, 0x0D},
  117. {0x59, 0x0F},
  118. },
  119. {
  120. {0x40, 0x00},
  121. {0x4C, 0x00},
  122. {0x5A, 0x00},
  123. {0x6B, 0x00},
  124. {0x80, 0x00},
  125. {0x98, 0x00},
  126. {0xB4, 0x00},
  127. {0xD5, 0x00},
  128. {0xFE, 0x00},
  129. {0x2E, 0x01},
  130. {0x66, 0x01},
  131. {0xA9, 0x01},
  132. {0xF8, 0x01},
  133. {0x56, 0x02},
  134. {0xC4, 0x02},
  135. {0x4F, 0x03},
  136. {0xF0, 0x03},
  137. {0xAE, 0x04},
  138. {0x8B, 0x05},
  139. {0x8E, 0x06},
  140. {0xBC, 0x07},
  141. {0x56, 0x09},
  142. {0x0F, 0x0B},
  143. {0x13, 0x0D},
  144. {0x6F, 0x0F},
  145. },
  146. };
  147. struct rx_macro_reg_mask_val {
  148. u16 reg;
  149. u8 mask;
  150. u8 val;
  151. };
  152. static const struct rx_macro_reg_mask_val imped_table[][MAX_IMPED_PARAMS] = {
  153. {
  154. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xf2},
  155. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xf2},
  156. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x00},
  157. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xf2},
  158. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xf2},
  159. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x00},
  160. },
  161. {
  162. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xf4},
  163. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xf4},
  164. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x00},
  165. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xf4},
  166. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xf4},
  167. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x00},
  168. },
  169. {
  170. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xf7},
  171. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xf7},
  172. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x01},
  173. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xf7},
  174. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xf7},
  175. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x01},
  176. },
  177. {
  178. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xf9},
  179. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xf9},
  180. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x00},
  181. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xf9},
  182. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xf9},
  183. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x00},
  184. },
  185. {
  186. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xfa},
  187. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xfa},
  188. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x00},
  189. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xfa},
  190. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xfa},
  191. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x00},
  192. },
  193. {
  194. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xfb},
  195. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xfb},
  196. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x00},
  197. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xfb},
  198. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xfb},
  199. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x00},
  200. },
  201. {
  202. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xfc},
  203. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xfc},
  204. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x00},
  205. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xfc},
  206. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xfc},
  207. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x00},
  208. },
  209. {
  210. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xfd},
  211. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xfd},
  212. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x00},
  213. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xfd},
  214. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xfd},
  215. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x00},
  216. },
  217. {
  218. {BOLERO_CDC_RX_RX0_RX_VOL_CTL, 0xff, 0xfd},
  219. {BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0xff, 0xfd},
  220. {BOLERO_CDC_RX_RX0_RX_PATH_SEC1, 0x01, 0x01},
  221. {BOLERO_CDC_RX_RX1_RX_VOL_CTL, 0xff, 0xfd},
  222. {BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0xff, 0xfd},
  223. {BOLERO_CDC_RX_RX1_RX_PATH_SEC1, 0x01, 0x01},
  224. },
  225. };
  226. enum {
  227. INTERP_HPHL,
  228. INTERP_HPHR,
  229. INTERP_AUX,
  230. INTERP_MAX
  231. };
  232. enum {
  233. RX_MACRO_RX0,
  234. RX_MACRO_RX1,
  235. RX_MACRO_RX2,
  236. RX_MACRO_RX3,
  237. RX_MACRO_RX4,
  238. RX_MACRO_RX5,
  239. RX_MACRO_PORTS_MAX
  240. };
  241. enum {
  242. RX_MACRO_COMP1, /* HPH_L */
  243. RX_MACRO_COMP2, /* HPH_R */
  244. RX_MACRO_COMP_MAX
  245. };
  246. enum {
  247. RX_MACRO_EC0_MUX = 0,
  248. RX_MACRO_EC1_MUX,
  249. RX_MACRO_EC2_MUX,
  250. RX_MACRO_EC_MUX_MAX,
  251. };
  252. enum {
  253. INTn_1_INP_SEL_ZERO = 0,
  254. INTn_1_INP_SEL_DEC0,
  255. INTn_1_INP_SEL_DEC1,
  256. INTn_1_INP_SEL_IIR0,
  257. INTn_1_INP_SEL_IIR1,
  258. INTn_1_INP_SEL_RX0,
  259. INTn_1_INP_SEL_RX1,
  260. INTn_1_INP_SEL_RX2,
  261. INTn_1_INP_SEL_RX3,
  262. INTn_1_INP_SEL_RX4,
  263. INTn_1_INP_SEL_RX5,
  264. };
  265. enum {
  266. INTn_2_INP_SEL_ZERO = 0,
  267. INTn_2_INP_SEL_RX0,
  268. INTn_2_INP_SEL_RX1,
  269. INTn_2_INP_SEL_RX2,
  270. INTn_2_INP_SEL_RX3,
  271. INTn_2_INP_SEL_RX4,
  272. INTn_2_INP_SEL_RX5,
  273. };
  274. enum {
  275. INTERP_MAIN_PATH,
  276. INTERP_MIX_PATH,
  277. };
  278. /* Codec supports 2 IIR filters */
  279. enum {
  280. IIR0 = 0,
  281. IIR1,
  282. IIR_MAX,
  283. };
  284. /* Each IIR has 5 Filter Stages */
  285. enum {
  286. BAND1 = 0,
  287. BAND2,
  288. BAND3,
  289. BAND4,
  290. BAND5,
  291. BAND_MAX,
  292. };
  293. struct rx_macro_idle_detect_config {
  294. u8 hph_idle_thr;
  295. u8 hph_idle_detect_en;
  296. };
  297. struct interp_sample_rate {
  298. int sample_rate;
  299. int rate_val;
  300. };
  301. static struct interp_sample_rate sr_val_tbl[] = {
  302. {8000, 0x0}, {16000, 0x1}, {32000, 0x3}, {48000, 0x4}, {96000, 0x5},
  303. {192000, 0x6}, {384000, 0x7}, {44100, 0x9}, {88200, 0xA},
  304. {176400, 0xB}, {352800, 0xC},
  305. };
  306. struct rx_macro_bcl_pmic_params {
  307. u8 id;
  308. u8 sid;
  309. u8 ppid;
  310. };
  311. static int rx_macro_hw_params(struct snd_pcm_substream *substream,
  312. struct snd_pcm_hw_params *params,
  313. struct snd_soc_dai *dai);
  314. static int rx_macro_get_channel_map(struct snd_soc_dai *dai,
  315. unsigned int *tx_num, unsigned int *tx_slot,
  316. unsigned int *rx_num, unsigned int *rx_slot);
  317. static int rx_macro_digital_mute(struct snd_soc_dai *dai, int mute);
  318. static int rx_macro_int_dem_inp_mux_put(struct snd_kcontrol *kcontrol,
  319. struct snd_ctl_elem_value *ucontrol);
  320. static int rx_macro_mux_get(struct snd_kcontrol *kcontrol,
  321. struct snd_ctl_elem_value *ucontrol);
  322. static int rx_macro_mux_put(struct snd_kcontrol *kcontrol,
  323. struct snd_ctl_elem_value *ucontrol);
  324. static int rx_macro_enable_interp_clk(struct snd_soc_component *component,
  325. int event, int interp_idx);
  326. /* Hold instance to soundwire platform device */
  327. struct rx_swr_ctrl_data {
  328. struct platform_device *rx_swr_pdev;
  329. };
  330. struct rx_swr_ctrl_platform_data {
  331. void *handle; /* holds codec private data */
  332. int (*read)(void *handle, int reg);
  333. int (*write)(void *handle, int reg, int val);
  334. int (*bulk_write)(void *handle, u32 *reg, u32 *val, size_t len);
  335. int (*clk)(void *handle, bool enable);
  336. int (*core_vote)(void *handle, bool enable);
  337. int (*handle_irq)(void *handle,
  338. irqreturn_t (*swrm_irq_handler)(int irq,
  339. void *data),
  340. void *swrm_handle,
  341. int action);
  342. };
  343. enum {
  344. RX_MACRO_AIF_INVALID = 0,
  345. RX_MACRO_AIF1_PB,
  346. RX_MACRO_AIF2_PB,
  347. RX_MACRO_AIF3_PB,
  348. RX_MACRO_AIF4_PB,
  349. RX_MACRO_AIF_ECHO,
  350. RX_MACRO_MAX_DAIS,
  351. };
  352. enum {
  353. RX_MACRO_AIF1_CAP = 0,
  354. RX_MACRO_AIF2_CAP,
  355. RX_MACRO_AIF3_CAP,
  356. RX_MACRO_MAX_AIF_CAP_DAIS
  357. };
  358. /*
  359. * @dev: rx macro device pointer
  360. * @comp_enabled: compander enable mixer value set
  361. * @prim_int_users: Users of interpolator
  362. * @rx_mclk_users: RX MCLK users count
  363. * @vi_feed_value: VI sense mask
  364. * @swr_clk_lock: to lock swr master clock operations
  365. * @swr_ctrl_data: SoundWire data structure
  366. * @swr_plat_data: Soundwire platform data
  367. * @rx_macro_add_child_devices_work: work for adding child devices
  368. * @rx_swr_gpio_p: used by pinctrl API
  369. * @component: codec handle
  370. */
  371. struct rx_macro_priv {
  372. struct device *dev;
  373. int comp_enabled[RX_MACRO_COMP_MAX];
  374. /* Main path clock users count */
  375. int main_clk_users[INTERP_MAX];
  376. int rx_port_value[RX_MACRO_PORTS_MAX];
  377. u16 prim_int_users[INTERP_MAX];
  378. int rx_mclk_users;
  379. int swr_clk_users;
  380. bool dapm_mclk_enable;
  381. bool reset_swr;
  382. int clsh_users;
  383. int rx_mclk_cnt;
  384. bool is_native_on;
  385. bool is_ear_mode_on;
  386. bool dev_up;
  387. bool hph_pwr_mode;
  388. bool hph_hd2_mode;
  389. struct mutex mclk_lock;
  390. struct mutex swr_clk_lock;
  391. struct rx_swr_ctrl_data *swr_ctrl_data;
  392. struct rx_swr_ctrl_platform_data swr_plat_data;
  393. struct work_struct rx_macro_add_child_devices_work;
  394. struct device_node *rx_swr_gpio_p;
  395. struct snd_soc_component *component;
  396. unsigned long active_ch_mask[RX_MACRO_MAX_DAIS];
  397. unsigned long active_ch_cnt[RX_MACRO_MAX_DAIS];
  398. u16 bit_width[RX_MACRO_MAX_DAIS];
  399. char __iomem *rx_io_base;
  400. char __iomem *rx_mclk_mode_muxsel;
  401. struct rx_macro_idle_detect_config idle_det_cfg;
  402. u8 sidetone_coeff_array[IIR_MAX][BAND_MAX]
  403. [RX_MACRO_SIDETONE_IIR_COEFF_MAX * 4];
  404. struct platform_device *pdev_child_devices
  405. [RX_MACRO_CHILD_DEVICES_MAX];
  406. int child_count;
  407. int is_softclip_on;
  408. int is_aux_hpf_on;
  409. int softclip_clk_users;
  410. struct rx_macro_bcl_pmic_params bcl_pmic_params;
  411. u16 clk_id;
  412. u16 default_clk_id;
  413. };
  414. static struct snd_soc_dai_driver rx_macro_dai[];
  415. static const DECLARE_TLV_DB_SCALE(digital_gain, 0, 1, 0);
  416. static const char * const rx_int_mix_mux_text[] = {
  417. "ZERO", "RX0", "RX1", "RX2", "RX3", "RX4", "RX5"
  418. };
  419. static const char * const rx_prim_mix_text[] = {
  420. "ZERO", "DEC0", "DEC1", "IIR0", "IIR1", "RX0", "RX1", "RX2",
  421. "RX3", "RX4", "RX5"
  422. };
  423. static const char * const rx_sidetone_mix_text[] = {
  424. "ZERO", "SRC0", "SRC1", "SRC_SUM"
  425. };
  426. static const char * const iir_inp_mux_text[] = {
  427. "ZERO", "DEC0", "DEC1", "DEC2", "DEC3",
  428. "RX0", "RX1", "RX2", "RX3", "RX4", "RX5"
  429. };
  430. static const char * const rx_int_dem_inp_mux_text[] = {
  431. "NORMAL_DSM_OUT", "CLSH_DSM_OUT",
  432. };
  433. static const char * const rx_int0_1_interp_mux_text[] = {
  434. "ZERO", "RX INT0_1 MIX1",
  435. };
  436. static const char * const rx_int1_1_interp_mux_text[] = {
  437. "ZERO", "RX INT1_1 MIX1",
  438. };
  439. static const char * const rx_int2_1_interp_mux_text[] = {
  440. "ZERO", "RX INT2_1 MIX1",
  441. };
  442. static const char * const rx_int0_2_interp_mux_text[] = {
  443. "ZERO", "RX INT0_2 MUX",
  444. };
  445. static const char * const rx_int1_2_interp_mux_text[] = {
  446. "ZERO", "RX INT1_2 MUX",
  447. };
  448. static const char * const rx_int2_2_interp_mux_text[] = {
  449. "ZERO", "RX INT2_2 MUX",
  450. };
  451. static const char *const rx_macro_mux_text[] = {
  452. "ZERO", "AIF1_PB", "AIF2_PB", "AIF3_PB", "AIF4_PB"
  453. };
  454. static const char *const rx_macro_ear_mode_text[] = {"OFF", "ON"};
  455. static const struct soc_enum rx_macro_ear_mode_enum =
  456. SOC_ENUM_SINGLE_EXT(2, rx_macro_ear_mode_text);
  457. static const char *const rx_macro_hph_hd2_mode_text[] = {"OFF", "ON"};
  458. static const struct soc_enum rx_macro_hph_hd2_mode_enum =
  459. SOC_ENUM_SINGLE_EXT(2, rx_macro_hph_hd2_mode_text);
  460. static const char *const rx_macro_hph_pwr_mode_text[] = {"ULP", "LOHIFI"};
  461. static const struct soc_enum rx_macro_hph_pwr_mode_enum =
  462. SOC_ENUM_SINGLE_EXT(2, rx_macro_hph_pwr_mode_text);
  463. static const char * const rx_macro_vbat_bcl_gsm_mode_text[] = {"OFF", "ON"};
  464. static const struct soc_enum rx_macro_vbat_bcl_gsm_mode_enum =
  465. SOC_ENUM_SINGLE_EXT(2, rx_macro_vbat_bcl_gsm_mode_text);
  466. static const struct snd_kcontrol_new rx_int2_1_vbat_mix_switch[] = {
  467. SOC_DAPM_SINGLE("RX AUX VBAT Enable", SND_SOC_NOPM, 0, 1, 0)
  468. };
  469. static const char * const hph_idle_detect_text[] = {"OFF", "ON"};
  470. static SOC_ENUM_SINGLE_EXT_DECL(hph_idle_detect_enum, hph_idle_detect_text);
  471. RX_MACRO_DAPM_ENUM(rx_int0_2, BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG1, 0,
  472. rx_int_mix_mux_text);
  473. RX_MACRO_DAPM_ENUM(rx_int1_2, BOLERO_CDC_RX_INP_MUX_RX_INT1_CFG1, 0,
  474. rx_int_mix_mux_text);
  475. RX_MACRO_DAPM_ENUM(rx_int2_2, BOLERO_CDC_RX_INP_MUX_RX_INT2_CFG1, 0,
  476. rx_int_mix_mux_text);
  477. RX_MACRO_DAPM_ENUM(rx_int0_1_mix_inp0, BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG0, 0,
  478. rx_prim_mix_text);
  479. RX_MACRO_DAPM_ENUM(rx_int0_1_mix_inp1, BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG0, 4,
  480. rx_prim_mix_text);
  481. RX_MACRO_DAPM_ENUM(rx_int0_1_mix_inp2, BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG1, 4,
  482. rx_prim_mix_text);
  483. RX_MACRO_DAPM_ENUM(rx_int1_1_mix_inp0, BOLERO_CDC_RX_INP_MUX_RX_INT1_CFG0, 0,
  484. rx_prim_mix_text);
  485. RX_MACRO_DAPM_ENUM(rx_int1_1_mix_inp1, BOLERO_CDC_RX_INP_MUX_RX_INT1_CFG0, 4,
  486. rx_prim_mix_text);
  487. RX_MACRO_DAPM_ENUM(rx_int1_1_mix_inp2, BOLERO_CDC_RX_INP_MUX_RX_INT1_CFG1, 4,
  488. rx_prim_mix_text);
  489. RX_MACRO_DAPM_ENUM(rx_int2_1_mix_inp0, BOLERO_CDC_RX_INP_MUX_RX_INT2_CFG0, 0,
  490. rx_prim_mix_text);
  491. RX_MACRO_DAPM_ENUM(rx_int2_1_mix_inp1, BOLERO_CDC_RX_INP_MUX_RX_INT2_CFG0, 4,
  492. rx_prim_mix_text);
  493. RX_MACRO_DAPM_ENUM(rx_int2_1_mix_inp2, BOLERO_CDC_RX_INP_MUX_RX_INT2_CFG1, 4,
  494. rx_prim_mix_text);
  495. RX_MACRO_DAPM_ENUM(rx_int0_mix2_inp, BOLERO_CDC_RX_INP_MUX_SIDETONE_SRC_CFG0, 2,
  496. rx_sidetone_mix_text);
  497. RX_MACRO_DAPM_ENUM(rx_int1_mix2_inp, BOLERO_CDC_RX_INP_MUX_SIDETONE_SRC_CFG0, 4,
  498. rx_sidetone_mix_text);
  499. RX_MACRO_DAPM_ENUM(rx_int2_mix2_inp, BOLERO_CDC_RX_INP_MUX_SIDETONE_SRC_CFG0, 6,
  500. rx_sidetone_mix_text);
  501. RX_MACRO_DAPM_ENUM(iir0_inp0, BOLERO_CDC_RX_IIR_INP_MUX_IIR0_MIX_CFG0, 0,
  502. iir_inp_mux_text);
  503. RX_MACRO_DAPM_ENUM(iir0_inp1, BOLERO_CDC_RX_IIR_INP_MUX_IIR0_MIX_CFG1, 0,
  504. iir_inp_mux_text);
  505. RX_MACRO_DAPM_ENUM(iir0_inp2, BOLERO_CDC_RX_IIR_INP_MUX_IIR0_MIX_CFG2, 0,
  506. iir_inp_mux_text);
  507. RX_MACRO_DAPM_ENUM(iir0_inp3, BOLERO_CDC_RX_IIR_INP_MUX_IIR0_MIX_CFG3, 0,
  508. iir_inp_mux_text);
  509. RX_MACRO_DAPM_ENUM(iir1_inp0, BOLERO_CDC_RX_IIR_INP_MUX_IIR1_MIX_CFG0, 0,
  510. iir_inp_mux_text);
  511. RX_MACRO_DAPM_ENUM(iir1_inp1, BOLERO_CDC_RX_IIR_INP_MUX_IIR1_MIX_CFG1, 0,
  512. iir_inp_mux_text);
  513. RX_MACRO_DAPM_ENUM(iir1_inp2, BOLERO_CDC_RX_IIR_INP_MUX_IIR1_MIX_CFG2, 0,
  514. iir_inp_mux_text);
  515. RX_MACRO_DAPM_ENUM(iir1_inp3, BOLERO_CDC_RX_IIR_INP_MUX_IIR1_MIX_CFG3, 0,
  516. iir_inp_mux_text);
  517. RX_MACRO_DAPM_ENUM(rx_int0_1_interp, SND_SOC_NOPM, 0,
  518. rx_int0_1_interp_mux_text);
  519. RX_MACRO_DAPM_ENUM(rx_int1_1_interp, SND_SOC_NOPM, 0,
  520. rx_int1_1_interp_mux_text);
  521. RX_MACRO_DAPM_ENUM(rx_int2_1_interp, SND_SOC_NOPM, 0,
  522. rx_int2_1_interp_mux_text);
  523. RX_MACRO_DAPM_ENUM(rx_int0_2_interp, SND_SOC_NOPM, 0,
  524. rx_int0_2_interp_mux_text);
  525. RX_MACRO_DAPM_ENUM(rx_int1_2_interp, SND_SOC_NOPM, 0,
  526. rx_int1_2_interp_mux_text);
  527. RX_MACRO_DAPM_ENUM(rx_int2_2_interp, SND_SOC_NOPM, 0,
  528. rx_int2_2_interp_mux_text);
  529. RX_MACRO_DAPM_ENUM_EXT(rx_int0_dem_inp, BOLERO_CDC_RX_RX0_RX_PATH_CFG1, 0,
  530. rx_int_dem_inp_mux_text, snd_soc_dapm_get_enum_double,
  531. rx_macro_int_dem_inp_mux_put);
  532. RX_MACRO_DAPM_ENUM_EXT(rx_int1_dem_inp, BOLERO_CDC_RX_RX1_RX_PATH_CFG1, 0,
  533. rx_int_dem_inp_mux_text, snd_soc_dapm_get_enum_double,
  534. rx_macro_int_dem_inp_mux_put);
  535. RX_MACRO_DAPM_ENUM_EXT(rx_macro_rx0, SND_SOC_NOPM, 0, rx_macro_mux_text,
  536. rx_macro_mux_get, rx_macro_mux_put);
  537. RX_MACRO_DAPM_ENUM_EXT(rx_macro_rx1, SND_SOC_NOPM, 0, rx_macro_mux_text,
  538. rx_macro_mux_get, rx_macro_mux_put);
  539. RX_MACRO_DAPM_ENUM_EXT(rx_macro_rx2, SND_SOC_NOPM, 0, rx_macro_mux_text,
  540. rx_macro_mux_get, rx_macro_mux_put);
  541. RX_MACRO_DAPM_ENUM_EXT(rx_macro_rx3, SND_SOC_NOPM, 0, rx_macro_mux_text,
  542. rx_macro_mux_get, rx_macro_mux_put);
  543. RX_MACRO_DAPM_ENUM_EXT(rx_macro_rx4, SND_SOC_NOPM, 0, rx_macro_mux_text,
  544. rx_macro_mux_get, rx_macro_mux_put);
  545. RX_MACRO_DAPM_ENUM_EXT(rx_macro_rx5, SND_SOC_NOPM, 0, rx_macro_mux_text,
  546. rx_macro_mux_get, rx_macro_mux_put);
  547. static const char * const rx_echo_mux_text[] = {
  548. "ZERO", "RX_MIX0", "RX_MIX1", "RX_MIX2"
  549. };
  550. static const struct soc_enum rx_mix_tx2_mux_enum =
  551. SOC_ENUM_SINGLE(BOLERO_CDC_RX_INP_MUX_RX_MIX_CFG5, 0, 4,
  552. rx_echo_mux_text);
  553. static const struct snd_kcontrol_new rx_mix_tx2_mux =
  554. SOC_DAPM_ENUM("RX MIX TX2_MUX Mux", rx_mix_tx2_mux_enum);
  555. static const struct soc_enum rx_mix_tx1_mux_enum =
  556. SOC_ENUM_SINGLE(BOLERO_CDC_RX_INP_MUX_RX_MIX_CFG4, 0, 4,
  557. rx_echo_mux_text);
  558. static const struct snd_kcontrol_new rx_mix_tx1_mux =
  559. SOC_DAPM_ENUM("RX MIX TX1_MUX Mux", rx_mix_tx1_mux_enum);
  560. static const struct soc_enum rx_mix_tx0_mux_enum =
  561. SOC_ENUM_SINGLE(BOLERO_CDC_RX_INP_MUX_RX_MIX_CFG4, 4, 4,
  562. rx_echo_mux_text);
  563. static const struct snd_kcontrol_new rx_mix_tx0_mux =
  564. SOC_DAPM_ENUM("RX MIX TX0_MUX Mux", rx_mix_tx0_mux_enum);
  565. static struct snd_soc_dai_ops rx_macro_dai_ops = {
  566. .hw_params = rx_macro_hw_params,
  567. .get_channel_map = rx_macro_get_channel_map,
  568. .digital_mute = rx_macro_digital_mute,
  569. };
  570. static struct snd_soc_dai_driver rx_macro_dai[] = {
  571. {
  572. .name = "rx_macro_rx1",
  573. .id = RX_MACRO_AIF1_PB,
  574. .playback = {
  575. .stream_name = "RX_MACRO_AIF1 Playback",
  576. .rates = RX_MACRO_RATES | RX_MACRO_FRAC_RATES,
  577. .formats = RX_MACRO_FORMATS,
  578. .rate_max = 384000,
  579. .rate_min = 8000,
  580. .channels_min = 1,
  581. .channels_max = 2,
  582. },
  583. .ops = &rx_macro_dai_ops,
  584. },
  585. {
  586. .name = "rx_macro_rx2",
  587. .id = RX_MACRO_AIF2_PB,
  588. .playback = {
  589. .stream_name = "RX_MACRO_AIF2 Playback",
  590. .rates = RX_MACRO_RATES | RX_MACRO_FRAC_RATES,
  591. .formats = RX_MACRO_FORMATS,
  592. .rate_max = 384000,
  593. .rate_min = 8000,
  594. .channels_min = 1,
  595. .channels_max = 2,
  596. },
  597. .ops = &rx_macro_dai_ops,
  598. },
  599. {
  600. .name = "rx_macro_rx3",
  601. .id = RX_MACRO_AIF3_PB,
  602. .playback = {
  603. .stream_name = "RX_MACRO_AIF3 Playback",
  604. .rates = RX_MACRO_RATES | RX_MACRO_FRAC_RATES,
  605. .formats = RX_MACRO_FORMATS,
  606. .rate_max = 384000,
  607. .rate_min = 8000,
  608. .channels_min = 1,
  609. .channels_max = 2,
  610. },
  611. .ops = &rx_macro_dai_ops,
  612. },
  613. {
  614. .name = "rx_macro_rx4",
  615. .id = RX_MACRO_AIF4_PB,
  616. .playback = {
  617. .stream_name = "RX_MACRO_AIF4 Playback",
  618. .rates = RX_MACRO_RATES | RX_MACRO_FRAC_RATES,
  619. .formats = RX_MACRO_FORMATS,
  620. .rate_max = 384000,
  621. .rate_min = 8000,
  622. .channels_min = 1,
  623. .channels_max = 2,
  624. },
  625. .ops = &rx_macro_dai_ops,
  626. },
  627. {
  628. .name = "rx_macro_echo",
  629. .id = RX_MACRO_AIF_ECHO,
  630. .capture = {
  631. .stream_name = "RX_AIF_ECHO Capture",
  632. .rates = RX_MACRO_ECHO_RATES,
  633. .formats = RX_MACRO_ECHO_FORMATS,
  634. .rate_max = 48000,
  635. .rate_min = 8000,
  636. .channels_min = 1,
  637. .channels_max = 3,
  638. },
  639. .ops = &rx_macro_dai_ops,
  640. },
  641. };
  642. static int get_impedance_index(int imped)
  643. {
  644. int i = 0;
  645. if (imped < imped_index[i].imped_val) {
  646. pr_debug("%s, detected impedance is less than %d Ohm\n",
  647. __func__, imped_index[i].imped_val);
  648. i = 0;
  649. goto ret;
  650. }
  651. if (imped >= imped_index[ARRAY_SIZE(imped_index) - 1].imped_val) {
  652. pr_debug("%s, detected impedance is greater than %d Ohm\n",
  653. __func__,
  654. imped_index[ARRAY_SIZE(imped_index) - 1].imped_val);
  655. i = ARRAY_SIZE(imped_index) - 1;
  656. goto ret;
  657. }
  658. for (i = 0; i < ARRAY_SIZE(imped_index) - 1; i++) {
  659. if (imped >= imped_index[i].imped_val &&
  660. imped < imped_index[i + 1].imped_val)
  661. break;
  662. }
  663. ret:
  664. pr_debug("%s: selected impedance index = %d\n",
  665. __func__, imped_index[i].index);
  666. return imped_index[i].index;
  667. }
  668. /*
  669. * rx_macro_wcd_clsh_imped_config -
  670. * This function updates HPHL and HPHR gain settings
  671. * according to the impedance value.
  672. *
  673. * @component: codec pointer handle
  674. * @imped: impedance value of HPHL/R
  675. * @reset: bool variable to reset registers when teardown
  676. */
  677. static void rx_macro_wcd_clsh_imped_config(struct snd_soc_component *component,
  678. int imped, bool reset)
  679. {
  680. int i;
  681. int index = 0;
  682. int table_size;
  683. static const struct rx_macro_reg_mask_val
  684. (*imped_table_ptr)[MAX_IMPED_PARAMS];
  685. table_size = ARRAY_SIZE(imped_table);
  686. imped_table_ptr = imped_table;
  687. /* reset = 1, which means request is to reset the register values */
  688. if (reset) {
  689. for (i = 0; i < MAX_IMPED_PARAMS; i++)
  690. snd_soc_component_update_bits(component,
  691. imped_table_ptr[index][i].reg,
  692. imped_table_ptr[index][i].mask, 0);
  693. return;
  694. }
  695. index = get_impedance_index(imped);
  696. if (index >= (ARRAY_SIZE(imped_index) - 1)) {
  697. pr_debug("%s, impedance not in range = %d\n", __func__, imped);
  698. return;
  699. }
  700. if (index >= table_size) {
  701. pr_debug("%s, impedance index not in range = %d\n", __func__,
  702. index);
  703. return;
  704. }
  705. for (i = 0; i < MAX_IMPED_PARAMS; i++)
  706. snd_soc_component_update_bits(component,
  707. imped_table_ptr[index][i].reg,
  708. imped_table_ptr[index][i].mask,
  709. imped_table_ptr[index][i].val);
  710. }
  711. static bool rx_macro_get_data(struct snd_soc_component *component,
  712. struct device **rx_dev,
  713. struct rx_macro_priv **rx_priv,
  714. const char *func_name)
  715. {
  716. *rx_dev = bolero_get_device_ptr(component->dev, RX_MACRO);
  717. if (!(*rx_dev)) {
  718. dev_err(component->dev,
  719. "%s: null device for macro!\n", func_name);
  720. return false;
  721. }
  722. *rx_priv = dev_get_drvdata((*rx_dev));
  723. if (!(*rx_priv)) {
  724. dev_err(component->dev,
  725. "%s: priv is null for macro!\n", func_name);
  726. return false;
  727. }
  728. if (!(*rx_priv)->component) {
  729. dev_err(component->dev,
  730. "%s: rx_priv component is not initialized!\n", func_name);
  731. return false;
  732. }
  733. return true;
  734. }
  735. static int rx_macro_set_port_map(struct snd_soc_component *component,
  736. u32 usecase, u32 size, void *data)
  737. {
  738. struct device *rx_dev = NULL;
  739. struct rx_macro_priv *rx_priv = NULL;
  740. struct swrm_port_config port_cfg;
  741. int ret = 0;
  742. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  743. return -EINVAL;
  744. memset(&port_cfg, 0, sizeof(port_cfg));
  745. port_cfg.uc = usecase;
  746. port_cfg.size = size;
  747. port_cfg.params = data;
  748. if (rx_priv->swr_ctrl_data)
  749. ret = swrm_wcd_notify(
  750. rx_priv->swr_ctrl_data[0].rx_swr_pdev,
  751. SWR_SET_PORT_MAP, &port_cfg);
  752. return ret;
  753. }
  754. static int rx_macro_int_dem_inp_mux_put(struct snd_kcontrol *kcontrol,
  755. struct snd_ctl_elem_value *ucontrol)
  756. {
  757. struct snd_soc_dapm_widget *widget =
  758. snd_soc_dapm_kcontrol_widget(kcontrol);
  759. struct snd_soc_component *component =
  760. snd_soc_dapm_to_component(widget->dapm);
  761. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  762. unsigned int val = 0;
  763. unsigned short look_ahead_dly_reg =
  764. BOLERO_CDC_RX_RX0_RX_PATH_CFG0;
  765. val = ucontrol->value.enumerated.item[0];
  766. if (val >= e->items)
  767. return -EINVAL;
  768. dev_dbg(component->dev, "%s: wname: %s, val: 0x%x\n", __func__,
  769. widget->name, val);
  770. if (e->reg == BOLERO_CDC_RX_RX0_RX_PATH_CFG1)
  771. look_ahead_dly_reg = BOLERO_CDC_RX_RX0_RX_PATH_CFG0;
  772. else if (e->reg == BOLERO_CDC_RX_RX1_RX_PATH_CFG1)
  773. look_ahead_dly_reg = BOLERO_CDC_RX_RX1_RX_PATH_CFG0;
  774. /* Set Look Ahead Delay */
  775. snd_soc_component_update_bits(component, look_ahead_dly_reg,
  776. 0x08, (val ? 0x08 : 0x00));
  777. /* Set DEM INP Select */
  778. return snd_soc_dapm_put_enum_double(kcontrol, ucontrol);
  779. }
  780. static int rx_macro_set_prim_interpolator_rate(struct snd_soc_dai *dai,
  781. u8 rate_reg_val,
  782. u32 sample_rate)
  783. {
  784. u8 int_1_mix1_inp = 0;
  785. u32 j = 0, port = 0;
  786. u16 int_mux_cfg0 = 0, int_mux_cfg1 = 0;
  787. u16 int_fs_reg = 0;
  788. u8 int_mux_cfg0_val = 0, int_mux_cfg1_val = 0;
  789. u8 inp0_sel = 0, inp1_sel = 0, inp2_sel = 0;
  790. struct snd_soc_component *component = dai->component;
  791. struct device *rx_dev = NULL;
  792. struct rx_macro_priv *rx_priv = NULL;
  793. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  794. return -EINVAL;
  795. for_each_set_bit(port, &rx_priv->active_ch_mask[dai->id],
  796. RX_MACRO_PORTS_MAX) {
  797. int_1_mix1_inp = port;
  798. if ((int_1_mix1_inp < RX_MACRO_RX0) ||
  799. (int_1_mix1_inp > RX_MACRO_PORTS_MAX)) {
  800. pr_err("%s: Invalid RX port, Dai ID is %d\n",
  801. __func__, dai->id);
  802. return -EINVAL;
  803. }
  804. int_mux_cfg0 = BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG0;
  805. /*
  806. * Loop through all interpolator MUX inputs and find out
  807. * to which interpolator input, the rx port
  808. * is connected
  809. */
  810. for (j = 0; j < INTERP_MAX; j++) {
  811. int_mux_cfg1 = int_mux_cfg0 + 4;
  812. int_mux_cfg0_val = snd_soc_component_read32(
  813. component, int_mux_cfg0);
  814. int_mux_cfg1_val = snd_soc_component_read32(
  815. component, int_mux_cfg1);
  816. inp0_sel = int_mux_cfg0_val & 0x0F;
  817. inp1_sel = (int_mux_cfg0_val >> 4) & 0x0F;
  818. inp2_sel = (int_mux_cfg1_val >> 4) & 0x0F;
  819. if ((inp0_sel == int_1_mix1_inp + INTn_1_INP_SEL_RX0) ||
  820. (inp1_sel == int_1_mix1_inp + INTn_1_INP_SEL_RX0) ||
  821. (inp2_sel == int_1_mix1_inp + INTn_1_INP_SEL_RX0)) {
  822. int_fs_reg = BOLERO_CDC_RX_RX0_RX_PATH_CTL +
  823. 0x80 * j;
  824. pr_debug("%s: AIF_PB DAI(%d) connected to INT%u_1\n",
  825. __func__, dai->id, j);
  826. pr_debug("%s: set INT%u_1 sample rate to %u\n",
  827. __func__, j, sample_rate);
  828. /* sample_rate is in Hz */
  829. snd_soc_component_update_bits(component,
  830. int_fs_reg,
  831. 0x0F, rate_reg_val);
  832. }
  833. int_mux_cfg0 += 8;
  834. }
  835. }
  836. return 0;
  837. }
  838. static int rx_macro_set_mix_interpolator_rate(struct snd_soc_dai *dai,
  839. u8 rate_reg_val,
  840. u32 sample_rate)
  841. {
  842. u8 int_2_inp = 0;
  843. u32 j = 0, port = 0;
  844. u16 int_mux_cfg1 = 0, int_fs_reg = 0;
  845. u8 int_mux_cfg1_val = 0;
  846. struct snd_soc_component *component = dai->component;
  847. struct device *rx_dev = NULL;
  848. struct rx_macro_priv *rx_priv = NULL;
  849. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  850. return -EINVAL;
  851. for_each_set_bit(port, &rx_priv->active_ch_mask[dai->id],
  852. RX_MACRO_PORTS_MAX) {
  853. int_2_inp = port;
  854. if ((int_2_inp < RX_MACRO_RX0) ||
  855. (int_2_inp > RX_MACRO_PORTS_MAX)) {
  856. pr_err("%s: Invalid RX port, Dai ID is %d\n",
  857. __func__, dai->id);
  858. return -EINVAL;
  859. }
  860. int_mux_cfg1 = BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG1;
  861. for (j = 0; j < INTERP_MAX; j++) {
  862. int_mux_cfg1_val = snd_soc_component_read32(
  863. component, int_mux_cfg1) &
  864. 0x0F;
  865. if (int_mux_cfg1_val == int_2_inp +
  866. INTn_2_INP_SEL_RX0) {
  867. int_fs_reg = BOLERO_CDC_RX_RX0_RX_PATH_MIX_CTL +
  868. 0x80 * j;
  869. pr_debug("%s: AIF_PB DAI(%d) connected to INT%u_2\n",
  870. __func__, dai->id, j);
  871. pr_debug("%s: set INT%u_2 sample rate to %u\n",
  872. __func__, j, sample_rate);
  873. snd_soc_component_update_bits(
  874. component, int_fs_reg,
  875. 0x0F, rate_reg_val);
  876. }
  877. int_mux_cfg1 += 8;
  878. }
  879. }
  880. return 0;
  881. }
  882. static bool rx_macro_is_fractional_sample_rate(u32 sample_rate)
  883. {
  884. switch (sample_rate) {
  885. case SAMPLING_RATE_44P1KHZ:
  886. case SAMPLING_RATE_88P2KHZ:
  887. case SAMPLING_RATE_176P4KHZ:
  888. case SAMPLING_RATE_352P8KHZ:
  889. return true;
  890. default:
  891. return false;
  892. }
  893. return false;
  894. }
  895. static int rx_macro_set_interpolator_rate(struct snd_soc_dai *dai,
  896. u32 sample_rate)
  897. {
  898. struct snd_soc_component *component = dai->component;
  899. int rate_val = 0;
  900. int i = 0, ret = 0;
  901. struct device *rx_dev = NULL;
  902. struct rx_macro_priv *rx_priv = NULL;
  903. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  904. return -EINVAL;
  905. for (i = 0; i < ARRAY_SIZE(sr_val_tbl); i++) {
  906. if (sample_rate == sr_val_tbl[i].sample_rate) {
  907. rate_val = sr_val_tbl[i].rate_val;
  908. if (rx_macro_is_fractional_sample_rate(sample_rate))
  909. rx_priv->is_native_on = true;
  910. else
  911. rx_priv->is_native_on = false;
  912. break;
  913. }
  914. }
  915. if ((i == ARRAY_SIZE(sr_val_tbl)) || (rate_val < 0)) {
  916. dev_err(component->dev, "%s: Unsupported sample rate: %d\n",
  917. __func__, sample_rate);
  918. return -EINVAL;
  919. }
  920. ret = rx_macro_set_prim_interpolator_rate(dai, (u8)rate_val, sample_rate);
  921. if (ret)
  922. return ret;
  923. ret = rx_macro_set_mix_interpolator_rate(dai, (u8)rate_val, sample_rate);
  924. if (ret)
  925. return ret;
  926. return ret;
  927. }
  928. static int rx_macro_hw_params(struct snd_pcm_substream *substream,
  929. struct snd_pcm_hw_params *params,
  930. struct snd_soc_dai *dai)
  931. {
  932. struct snd_soc_component *component = dai->component;
  933. int ret = 0;
  934. struct device *rx_dev = NULL;
  935. struct rx_macro_priv *rx_priv = NULL;
  936. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  937. return -EINVAL;
  938. dev_dbg(component->dev,
  939. "%s: dai_name = %s DAI-ID %x rate %d num_ch %d\n", __func__,
  940. dai->name, dai->id, params_rate(params),
  941. params_channels(params));
  942. switch (substream->stream) {
  943. case SNDRV_PCM_STREAM_PLAYBACK:
  944. ret = rx_macro_set_interpolator_rate(dai, params_rate(params));
  945. if (ret) {
  946. pr_err("%s: cannot set sample rate: %u\n",
  947. __func__, params_rate(params));
  948. return ret;
  949. }
  950. rx_priv->bit_width[dai->id] = params_width(params);
  951. break;
  952. case SNDRV_PCM_STREAM_CAPTURE:
  953. default:
  954. break;
  955. }
  956. return 0;
  957. }
  958. static int rx_macro_get_channel_map(struct snd_soc_dai *dai,
  959. unsigned int *tx_num, unsigned int *tx_slot,
  960. unsigned int *rx_num, unsigned int *rx_slot)
  961. {
  962. struct snd_soc_component *component = dai->component;
  963. struct device *rx_dev = NULL;
  964. struct rx_macro_priv *rx_priv = NULL;
  965. unsigned int temp = 0, ch_mask = 0;
  966. u16 val = 0, mask = 0, cnt = 0, i = 0;
  967. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  968. return -EINVAL;
  969. switch (dai->id) {
  970. case RX_MACRO_AIF1_PB:
  971. case RX_MACRO_AIF2_PB:
  972. case RX_MACRO_AIF3_PB:
  973. case RX_MACRO_AIF4_PB:
  974. for_each_set_bit(temp, &rx_priv->active_ch_mask[dai->id],
  975. RX_MACRO_PORTS_MAX) {
  976. ch_mask |= (1 << temp);
  977. if (++i == RX_MACRO_MAX_DMA_CH_PER_PORT)
  978. break;
  979. }
  980. /*
  981. * CDC_DMA_RX_0 port drives RX0/RX1 -- ch_mask 0x1/0x2/0x3
  982. * CDC_DMA_RX_1 port drives RX2/RX3 -- ch_mask 0x1/0x2/0x3
  983. * CDC_DMA_RX_2 port drives RX4 -- ch_mask 0x1
  984. * CDC_DMA_RX_3 port drives RX5 -- ch_mask 0x1
  985. * AIFn can pair to any CDC_DMA_RX_n port.
  986. * In general, below convention is used::
  987. * CDC_DMA_RX_0(AIF1)/CDC_DMA_RX_1(AIF2)/
  988. * CDC_DMA_RX_2(AIF3)/CDC_DMA_RX_3(AIF4)
  989. * Above is reflected in machine driver BE dailink
  990. */
  991. if (ch_mask & 0x0C)
  992. ch_mask = ch_mask >> 2;
  993. if ((ch_mask & 0x10) || (ch_mask & 0x20))
  994. ch_mask = 0x1;
  995. *rx_slot = ch_mask;
  996. *rx_num = rx_priv->active_ch_cnt[dai->id];
  997. dev_dbg(rx_priv->dev,
  998. "%s: dai->id:%d, ch_mask:0x%x, active_ch_cnt:%d active_mask: 0x%x\n",
  999. __func__, dai->id, *rx_slot, *rx_num, rx_priv->active_ch_mask[dai->id]);
  1000. break;
  1001. case RX_MACRO_AIF_ECHO:
  1002. val = snd_soc_component_read32(component,
  1003. BOLERO_CDC_RX_INP_MUX_RX_MIX_CFG4);
  1004. if (val & RX_MACRO_EC_MIX_TX0_MASK) {
  1005. mask |= 0x1;
  1006. cnt++;
  1007. }
  1008. if (val & RX_MACRO_EC_MIX_TX1_MASK) {
  1009. mask |= 0x2;
  1010. cnt++;
  1011. }
  1012. val = snd_soc_component_read32(component,
  1013. BOLERO_CDC_RX_INP_MUX_RX_MIX_CFG5);
  1014. if (val & RX_MACRO_EC_MIX_TX2_MASK) {
  1015. mask |= 0x4;
  1016. cnt++;
  1017. }
  1018. *tx_slot = mask;
  1019. *tx_num = cnt;
  1020. break;
  1021. default:
  1022. dev_err(rx_dev, "%s: Invalid AIF\n", __func__);
  1023. break;
  1024. }
  1025. return 0;
  1026. }
  1027. static int rx_macro_digital_mute(struct snd_soc_dai *dai, int mute)
  1028. {
  1029. struct snd_soc_component *component = dai->component;
  1030. struct device *rx_dev = NULL;
  1031. struct rx_macro_priv *rx_priv = NULL;
  1032. uint16_t j = 0, reg = 0, mix_reg = 0, dsm_reg = 0;
  1033. u16 int_mux_cfg0 = 0, int_mux_cfg1 = 0;
  1034. u8 int_mux_cfg0_val = 0, int_mux_cfg1_val = 0;
  1035. if (mute)
  1036. return 0;
  1037. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1038. return -EINVAL;
  1039. switch (dai->id) {
  1040. case RX_MACRO_AIF1_PB:
  1041. case RX_MACRO_AIF2_PB:
  1042. case RX_MACRO_AIF3_PB:
  1043. case RX_MACRO_AIF4_PB:
  1044. for (j = 0; j < INTERP_MAX; j++) {
  1045. reg = BOLERO_CDC_RX_RX0_RX_PATH_CTL +
  1046. (j * RX_MACRO_RX_PATH_OFFSET);
  1047. mix_reg = BOLERO_CDC_RX_RX0_RX_PATH_MIX_CTL +
  1048. (j * RX_MACRO_RX_PATH_OFFSET);
  1049. dsm_reg = BOLERO_CDC_RX_RX0_RX_PATH_DSM_CTL +
  1050. (j * RX_MACRO_RX_PATH_OFFSET);
  1051. if (j == INTERP_AUX)
  1052. dsm_reg = BOLERO_CDC_RX_RX2_RX_PATH_DSM_CTL;
  1053. int_mux_cfg0 = BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG0 + j * 8;
  1054. int_mux_cfg1 = int_mux_cfg0 + 4;
  1055. int_mux_cfg0_val = snd_soc_component_read32(component,
  1056. int_mux_cfg0);
  1057. int_mux_cfg1_val = snd_soc_component_read32(component,
  1058. int_mux_cfg1);
  1059. if (snd_soc_component_read32(component, dsm_reg) & 0x01) {
  1060. if (int_mux_cfg0_val || (int_mux_cfg1_val & 0xF0))
  1061. snd_soc_component_update_bits(component,
  1062. reg, 0x20, 0x20);
  1063. if (int_mux_cfg1_val & 0x0F) {
  1064. snd_soc_component_update_bits(component,
  1065. reg, 0x20, 0x20);
  1066. snd_soc_component_update_bits(component,
  1067. mix_reg, 0x20, 0x20);
  1068. }
  1069. }
  1070. }
  1071. break;
  1072. default:
  1073. break;
  1074. }
  1075. return 0;
  1076. }
  1077. static int rx_macro_mclk_enable(struct rx_macro_priv *rx_priv,
  1078. bool mclk_enable, bool dapm)
  1079. {
  1080. struct regmap *regmap = dev_get_regmap(rx_priv->dev->parent, NULL);
  1081. int ret = 0;
  1082. if (regmap == NULL) {
  1083. dev_err(rx_priv->dev, "%s: regmap is NULL\n", __func__);
  1084. return -EINVAL;
  1085. }
  1086. dev_dbg(rx_priv->dev, "%s: mclk_enable = %u, dapm = %d clk_users= %d\n",
  1087. __func__, mclk_enable, dapm, rx_priv->rx_mclk_users);
  1088. mutex_lock(&rx_priv->mclk_lock);
  1089. if (mclk_enable) {
  1090. if (rx_priv->rx_mclk_users == 0) {
  1091. if (rx_priv->is_native_on)
  1092. rx_priv->clk_id = RX_CORE_CLK;
  1093. ret = bolero_clk_rsc_request_clock(rx_priv->dev,
  1094. rx_priv->default_clk_id,
  1095. rx_priv->clk_id,
  1096. true);
  1097. if (ret < 0) {
  1098. dev_err(rx_priv->dev,
  1099. "%s: rx request clock enable failed\n",
  1100. __func__);
  1101. goto exit;
  1102. }
  1103. bolero_clk_rsc_fs_gen_request(rx_priv->dev,
  1104. true);
  1105. regcache_mark_dirty(regmap);
  1106. regcache_sync_region(regmap,
  1107. RX_START_OFFSET,
  1108. RX_MAX_OFFSET);
  1109. regmap_update_bits(regmap,
  1110. BOLERO_CDC_RX_CLK_RST_CTRL_MCLK_CONTROL,
  1111. 0x01, 0x01);
  1112. regmap_update_bits(regmap,
  1113. BOLERO_CDC_RX_CLK_RST_CTRL_MCLK_CONTROL,
  1114. 0x02, 0x02);
  1115. regmap_update_bits(regmap,
  1116. BOLERO_CDC_RX_CLK_RST_CTRL_FS_CNT_CONTROL,
  1117. 0x02, 0x00);
  1118. regmap_update_bits(regmap,
  1119. BOLERO_CDC_RX_CLK_RST_CTRL_FS_CNT_CONTROL,
  1120. 0x01, 0x01);
  1121. }
  1122. rx_priv->rx_mclk_users++;
  1123. } else {
  1124. if (rx_priv->rx_mclk_users <= 0) {
  1125. dev_err(rx_priv->dev, "%s: clock already disabled\n",
  1126. __func__);
  1127. rx_priv->rx_mclk_users = 0;
  1128. goto exit;
  1129. }
  1130. rx_priv->rx_mclk_users--;
  1131. if (rx_priv->rx_mclk_users == 0) {
  1132. regmap_update_bits(regmap,
  1133. BOLERO_CDC_RX_CLK_RST_CTRL_FS_CNT_CONTROL,
  1134. 0x01, 0x00);
  1135. regmap_update_bits(regmap,
  1136. BOLERO_CDC_RX_CLK_RST_CTRL_FS_CNT_CONTROL,
  1137. 0x02, 0x02);
  1138. regmap_update_bits(regmap,
  1139. BOLERO_CDC_RX_CLK_RST_CTRL_MCLK_CONTROL,
  1140. 0x02, 0x00);
  1141. regmap_update_bits(regmap,
  1142. BOLERO_CDC_RX_CLK_RST_CTRL_MCLK_CONTROL,
  1143. 0x01, 0x00);
  1144. bolero_clk_rsc_fs_gen_request(rx_priv->dev,
  1145. false);
  1146. bolero_clk_rsc_request_clock(rx_priv->dev,
  1147. rx_priv->default_clk_id,
  1148. rx_priv->clk_id,
  1149. false);
  1150. rx_priv->clk_id = rx_priv->default_clk_id;
  1151. }
  1152. }
  1153. exit:
  1154. mutex_unlock(&rx_priv->mclk_lock);
  1155. return ret;
  1156. }
  1157. static int rx_macro_mclk_event(struct snd_soc_dapm_widget *w,
  1158. struct snd_kcontrol *kcontrol, int event)
  1159. {
  1160. struct snd_soc_component *component =
  1161. snd_soc_dapm_to_component(w->dapm);
  1162. int ret = 0;
  1163. struct device *rx_dev = NULL;
  1164. struct rx_macro_priv *rx_priv = NULL;
  1165. int mclk_freq = MCLK_FREQ;
  1166. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1167. return -EINVAL;
  1168. dev_dbg(rx_dev, "%s: event = %d\n", __func__, event);
  1169. switch (event) {
  1170. case SND_SOC_DAPM_PRE_PMU:
  1171. if (rx_priv->is_native_on)
  1172. mclk_freq = MCLK_FREQ_NATIVE;
  1173. if (rx_priv->swr_ctrl_data)
  1174. swrm_wcd_notify(
  1175. rx_priv->swr_ctrl_data[0].rx_swr_pdev,
  1176. SWR_CLK_FREQ, &mclk_freq);
  1177. ret = rx_macro_mclk_enable(rx_priv, 1, true);
  1178. if (ret)
  1179. rx_priv->dapm_mclk_enable = false;
  1180. else
  1181. rx_priv->dapm_mclk_enable = true;
  1182. break;
  1183. case SND_SOC_DAPM_POST_PMD:
  1184. if (rx_priv->dapm_mclk_enable)
  1185. ret = rx_macro_mclk_enable(rx_priv, 0, true);
  1186. break;
  1187. default:
  1188. dev_err(rx_priv->dev,
  1189. "%s: invalid DAPM event %d\n", __func__, event);
  1190. ret = -EINVAL;
  1191. }
  1192. return ret;
  1193. }
  1194. static int rx_macro_event_handler(struct snd_soc_component *component,
  1195. u16 event, u32 data)
  1196. {
  1197. u16 reg = 0, reg_mix = 0, rx_idx = 0, mute = 0x0, val = 0;
  1198. struct device *rx_dev = NULL;
  1199. struct rx_macro_priv *rx_priv = NULL;
  1200. int ret = 0;
  1201. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1202. return -EINVAL;
  1203. switch (event) {
  1204. case BOLERO_MACRO_EVT_RX_MUTE:
  1205. rx_idx = data >> 0x10;
  1206. mute = data & 0xffff;
  1207. val = mute ? 0x10 : 0x00;
  1208. reg = BOLERO_CDC_RX_RX0_RX_PATH_CTL + (rx_idx *
  1209. RX_MACRO_RX_PATH_OFFSET);
  1210. reg_mix = BOLERO_CDC_RX_RX0_RX_PATH_MIX_CTL + (rx_idx *
  1211. RX_MACRO_RX_PATH_OFFSET);
  1212. snd_soc_component_update_bits(component, reg,
  1213. 0x10, val);
  1214. snd_soc_component_update_bits(component, reg_mix,
  1215. 0x10, val);
  1216. break;
  1217. case BOLERO_MACRO_EVT_RX_COMPANDER_SOFT_RST:
  1218. rx_idx = data >> 0x10;
  1219. if (rx_idx == INTERP_AUX)
  1220. goto done;
  1221. reg = BOLERO_CDC_RX_COMPANDER0_CTL0 +
  1222. (rx_idx * RX_MACRO_COMP_OFFSET);
  1223. snd_soc_component_write(component, reg,
  1224. snd_soc_component_read32(component, reg));
  1225. break;
  1226. case BOLERO_MACRO_EVT_IMPED_TRUE:
  1227. rx_macro_wcd_clsh_imped_config(component, data, true);
  1228. break;
  1229. case BOLERO_MACRO_EVT_IMPED_FALSE:
  1230. rx_macro_wcd_clsh_imped_config(component, data, false);
  1231. break;
  1232. case BOLERO_MACRO_EVT_SSR_DOWN:
  1233. rx_priv->dev_up = false;
  1234. if (rx_priv->swr_ctrl_data) {
  1235. swrm_wcd_notify(
  1236. rx_priv->swr_ctrl_data[0].rx_swr_pdev,
  1237. SWR_DEVICE_DOWN, NULL);
  1238. swrm_wcd_notify(
  1239. rx_priv->swr_ctrl_data[0].rx_swr_pdev,
  1240. SWR_DEVICE_SSR_DOWN, NULL);
  1241. }
  1242. if ((!pm_runtime_enabled(rx_dev) ||
  1243. !pm_runtime_suspended(rx_dev))) {
  1244. ret = bolero_runtime_suspend(rx_dev);
  1245. if (!ret) {
  1246. pm_runtime_disable(rx_dev);
  1247. pm_runtime_set_suspended(rx_dev);
  1248. pm_runtime_enable(rx_dev);
  1249. }
  1250. }
  1251. break;
  1252. case BOLERO_MACRO_EVT_SSR_UP:
  1253. rx_priv->dev_up = true;
  1254. /* reset swr after ssr/pdr */
  1255. rx_priv->reset_swr = true;
  1256. /* enable&disable RX_CORE_CLK to reset GFMUX reg */
  1257. ret = bolero_clk_rsc_request_clock(rx_priv->dev,
  1258. rx_priv->default_clk_id,
  1259. RX_CORE_CLK, true);
  1260. if (ret < 0)
  1261. dev_err_ratelimited(rx_priv->dev,
  1262. "%s, failed to enable clk, ret:%d\n",
  1263. __func__, ret);
  1264. else
  1265. bolero_clk_rsc_request_clock(rx_priv->dev,
  1266. rx_priv->default_clk_id,
  1267. RX_CORE_CLK, false);
  1268. if (rx_priv->swr_ctrl_data)
  1269. swrm_wcd_notify(
  1270. rx_priv->swr_ctrl_data[0].rx_swr_pdev,
  1271. SWR_DEVICE_SSR_UP, NULL);
  1272. break;
  1273. case BOLERO_MACRO_EVT_CLK_RESET:
  1274. bolero_rsc_clk_reset(rx_dev, RX_CORE_CLK);
  1275. break;
  1276. }
  1277. done:
  1278. return ret;
  1279. }
  1280. static int rx_macro_find_playback_dai_id_for_port(int port_id,
  1281. struct rx_macro_priv *rx_priv)
  1282. {
  1283. int i = 0;
  1284. for (i = RX_MACRO_AIF1_PB; i < RX_MACRO_MAX_DAIS; i++) {
  1285. if (test_bit(port_id, &rx_priv->active_ch_mask[i]))
  1286. return i;
  1287. }
  1288. return -EINVAL;
  1289. }
  1290. static int rx_macro_set_idle_detect_thr(struct snd_soc_component *component,
  1291. struct rx_macro_priv *rx_priv,
  1292. int interp, int path_type)
  1293. {
  1294. int port_id[4] = { 0, 0, 0, 0 };
  1295. int *port_ptr = NULL;
  1296. int num_ports = 0;
  1297. int bit_width = 0, i = 0;
  1298. int mux_reg = 0, mux_reg_val = 0;
  1299. int dai_id = 0, idle_thr = 0;
  1300. if ((interp != INTERP_HPHL) && (interp != INTERP_HPHR))
  1301. return 0;
  1302. if (!rx_priv->idle_det_cfg.hph_idle_detect_en)
  1303. return 0;
  1304. port_ptr = &port_id[0];
  1305. num_ports = 0;
  1306. /*
  1307. * Read interpolator MUX input registers and find
  1308. * which cdc_dma port is connected and store the port
  1309. * numbers in port_id array.
  1310. */
  1311. if (path_type == INTERP_MIX_PATH) {
  1312. mux_reg = BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG1 +
  1313. 2 * interp;
  1314. mux_reg_val = snd_soc_component_read32(component, mux_reg) &
  1315. 0x0f;
  1316. if ((mux_reg_val >= INTn_2_INP_SEL_RX0) &&
  1317. (mux_reg_val <= INTn_2_INP_SEL_RX5)) {
  1318. *port_ptr++ = mux_reg_val - 1;
  1319. num_ports++;
  1320. }
  1321. }
  1322. if (path_type == INTERP_MAIN_PATH) {
  1323. mux_reg = BOLERO_CDC_RX_INP_MUX_RX_INT1_CFG0 +
  1324. 2 * (interp - 1);
  1325. mux_reg_val = snd_soc_component_read32(component, mux_reg) &
  1326. 0x0f;
  1327. i = RX_MACRO_INTERP_MUX_NUM_INPUTS;
  1328. while (i) {
  1329. if ((mux_reg_val >= INTn_1_INP_SEL_RX0) &&
  1330. (mux_reg_val <= INTn_1_INP_SEL_RX5)) {
  1331. *port_ptr++ = mux_reg_val -
  1332. INTn_1_INP_SEL_RX0;
  1333. num_ports++;
  1334. }
  1335. mux_reg_val =
  1336. (snd_soc_component_read32(component, mux_reg) &
  1337. 0xf0) >> 4;
  1338. mux_reg += 1;
  1339. i--;
  1340. }
  1341. }
  1342. dev_dbg(component->dev, "%s: num_ports: %d, ports[%d %d %d %d]\n",
  1343. __func__, num_ports, port_id[0], port_id[1],
  1344. port_id[2], port_id[3]);
  1345. i = 0;
  1346. while (num_ports) {
  1347. dai_id = rx_macro_find_playback_dai_id_for_port(port_id[i++],
  1348. rx_priv);
  1349. if ((dai_id >= 0) && (dai_id < RX_MACRO_MAX_DAIS)) {
  1350. dev_dbg(component->dev, "%s: dai_id: %d bit_width: %d\n",
  1351. __func__, dai_id,
  1352. rx_priv->bit_width[dai_id]);
  1353. if (rx_priv->bit_width[dai_id] > bit_width)
  1354. bit_width = rx_priv->bit_width[dai_id];
  1355. }
  1356. num_ports--;
  1357. }
  1358. switch (bit_width) {
  1359. case 16:
  1360. idle_thr = 0xff; /* F16 */
  1361. break;
  1362. case 24:
  1363. case 32:
  1364. idle_thr = 0x03; /* F22 */
  1365. break;
  1366. default:
  1367. idle_thr = 0x00;
  1368. break;
  1369. }
  1370. dev_dbg(component->dev, "%s: (new) idle_thr: %d, (cur) idle_thr: %d\n",
  1371. __func__, idle_thr, rx_priv->idle_det_cfg.hph_idle_thr);
  1372. if ((rx_priv->idle_det_cfg.hph_idle_thr == 0) ||
  1373. (idle_thr < rx_priv->idle_det_cfg.hph_idle_thr)) {
  1374. snd_soc_component_write(component,
  1375. BOLERO_CDC_RX_IDLE_DETECT_CFG3, idle_thr);
  1376. rx_priv->idle_det_cfg.hph_idle_thr = idle_thr;
  1377. }
  1378. return 0;
  1379. }
  1380. static int rx_macro_enable_mix_path(struct snd_soc_dapm_widget *w,
  1381. struct snd_kcontrol *kcontrol, int event)
  1382. {
  1383. struct snd_soc_component *component =
  1384. snd_soc_dapm_to_component(w->dapm);
  1385. u16 gain_reg = 0, mix_reg = 0;
  1386. struct device *rx_dev = NULL;
  1387. struct rx_macro_priv *rx_priv = NULL;
  1388. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1389. return -EINVAL;
  1390. if (w->shift >= INTERP_MAX) {
  1391. dev_err(component->dev, "%s: Invalid Interpolator value %d for name %s\n",
  1392. __func__, w->shift, w->name);
  1393. return -EINVAL;
  1394. }
  1395. gain_reg = BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL +
  1396. (w->shift * RX_MACRO_RX_PATH_OFFSET);
  1397. mix_reg = BOLERO_CDC_RX_RX0_RX_PATH_MIX_CTL +
  1398. (w->shift * RX_MACRO_RX_PATH_OFFSET);
  1399. dev_dbg(component->dev, "%s %d %s\n", __func__, event, w->name);
  1400. switch (event) {
  1401. case SND_SOC_DAPM_PRE_PMU:
  1402. rx_macro_set_idle_detect_thr(component, rx_priv, w->shift,
  1403. INTERP_MIX_PATH);
  1404. rx_macro_enable_interp_clk(component, event, w->shift);
  1405. break;
  1406. case SND_SOC_DAPM_POST_PMU:
  1407. snd_soc_component_write(component, gain_reg,
  1408. snd_soc_component_read32(component, gain_reg));
  1409. break;
  1410. case SND_SOC_DAPM_POST_PMD:
  1411. /* Clk Disable */
  1412. snd_soc_component_update_bits(component, mix_reg, 0x20, 0x00);
  1413. rx_macro_enable_interp_clk(component, event, w->shift);
  1414. /* Reset enable and disable */
  1415. snd_soc_component_update_bits(component, mix_reg, 0x40, 0x40);
  1416. snd_soc_component_update_bits(component, mix_reg, 0x40, 0x00);
  1417. break;
  1418. }
  1419. return 0;
  1420. }
  1421. static bool rx_macro_adie_lb(struct snd_soc_component *component,
  1422. int interp_idx)
  1423. {
  1424. u16 int_mux_cfg0 = 0, int_mux_cfg1 = 0;
  1425. u8 int_mux_cfg0_val = 0, int_mux_cfg1_val = 0;
  1426. u8 int_n_inp0 = 0, int_n_inp1 = 0, int_n_inp2 = 0;
  1427. int_mux_cfg0 = BOLERO_CDC_RX_INP_MUX_RX_INT0_CFG0 + interp_idx * 8;
  1428. int_mux_cfg1 = int_mux_cfg0 + 4;
  1429. int_mux_cfg0_val = snd_soc_component_read32(component, int_mux_cfg0);
  1430. int_mux_cfg1_val = snd_soc_component_read32(component, int_mux_cfg1);
  1431. int_n_inp0 = int_mux_cfg0_val & 0x0F;
  1432. if (int_n_inp0 == INTn_1_INP_SEL_DEC0 ||
  1433. int_n_inp0 == INTn_1_INP_SEL_DEC1 ||
  1434. int_n_inp0 == INTn_1_INP_SEL_IIR0 ||
  1435. int_n_inp0 == INTn_1_INP_SEL_IIR1)
  1436. return true;
  1437. int_n_inp1 = int_mux_cfg0_val >> 4;
  1438. if (int_n_inp1 == INTn_1_INP_SEL_DEC0 ||
  1439. int_n_inp1 == INTn_1_INP_SEL_DEC1 ||
  1440. int_n_inp1 == INTn_1_INP_SEL_IIR0 ||
  1441. int_n_inp1 == INTn_1_INP_SEL_IIR1)
  1442. return true;
  1443. int_n_inp2 = int_mux_cfg1_val >> 4;
  1444. if (int_n_inp2 == INTn_1_INP_SEL_DEC0 ||
  1445. int_n_inp2 == INTn_1_INP_SEL_DEC1 ||
  1446. int_n_inp2 == INTn_1_INP_SEL_IIR0 ||
  1447. int_n_inp2 == INTn_1_INP_SEL_IIR1)
  1448. return true;
  1449. return false;
  1450. }
  1451. static int rx_macro_enable_main_path(struct snd_soc_dapm_widget *w,
  1452. struct snd_kcontrol *kcontrol,
  1453. int event)
  1454. {
  1455. struct snd_soc_component *component =
  1456. snd_soc_dapm_to_component(w->dapm);
  1457. u16 gain_reg = 0;
  1458. u16 reg = 0;
  1459. struct device *rx_dev = NULL;
  1460. struct rx_macro_priv *rx_priv = NULL;
  1461. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1462. return -EINVAL;
  1463. dev_dbg(component->dev, "%s %d %s\n", __func__, event, w->name);
  1464. if (w->shift >= INTERP_MAX) {
  1465. dev_err(component->dev, "%s: Invalid Interpolator value %d for name %s\n",
  1466. __func__, w->shift, w->name);
  1467. return -EINVAL;
  1468. }
  1469. reg = BOLERO_CDC_RX_RX0_RX_PATH_CTL + (w->shift *
  1470. RX_MACRO_RX_PATH_OFFSET);
  1471. gain_reg = BOLERO_CDC_RX_RX0_RX_VOL_CTL + (w->shift *
  1472. RX_MACRO_RX_PATH_OFFSET);
  1473. switch (event) {
  1474. case SND_SOC_DAPM_PRE_PMU:
  1475. rx_macro_set_idle_detect_thr(component, rx_priv, w->shift,
  1476. INTERP_MAIN_PATH);
  1477. rx_macro_enable_interp_clk(component, event, w->shift);
  1478. if (rx_macro_adie_lb(component, w->shift))
  1479. snd_soc_component_update_bits(component,
  1480. reg, 0x20, 0x20);
  1481. break;
  1482. case SND_SOC_DAPM_POST_PMU:
  1483. snd_soc_component_write(component, gain_reg,
  1484. snd_soc_component_read32(component, gain_reg));
  1485. break;
  1486. case SND_SOC_DAPM_POST_PMD:
  1487. rx_macro_enable_interp_clk(component, event, w->shift);
  1488. break;
  1489. }
  1490. return 0;
  1491. }
  1492. static int rx_macro_config_compander(struct snd_soc_component *component,
  1493. struct rx_macro_priv *rx_priv,
  1494. int interp_n, int event)
  1495. {
  1496. int comp = 0;
  1497. u16 comp_ctl0_reg = 0, rx_path_cfg0_reg = 0, rx_path_cfg3_reg = 0;
  1498. u16 rx0_path_ctl_reg = 0;
  1499. u8 pcm_rate = 0, val = 0;
  1500. /* AUX does not have compander */
  1501. if (interp_n == INTERP_AUX)
  1502. return 0;
  1503. comp = interp_n;
  1504. dev_dbg(component->dev, "%s: event %d compander %d, enabled %d\n",
  1505. __func__, event, comp + 1, rx_priv->comp_enabled[comp]);
  1506. if (!rx_priv->comp_enabled[comp])
  1507. return 0;
  1508. comp_ctl0_reg = BOLERO_CDC_RX_COMPANDER0_CTL0 +
  1509. (comp * RX_MACRO_COMP_OFFSET);
  1510. rx_path_cfg0_reg = BOLERO_CDC_RX_RX0_RX_PATH_CFG0 +
  1511. (comp * RX_MACRO_RX_PATH_OFFSET);
  1512. rx_path_cfg3_reg = BOLERO_CDC_RX_RX0_RX_PATH_CFG3 +
  1513. (comp * RX_MACRO_RX_PATH_OFFSET);
  1514. rx0_path_ctl_reg = BOLERO_CDC_RX_RX0_RX_PATH_CTL +
  1515. (comp * RX_MACRO_RX_PATH_OFFSET);
  1516. pcm_rate = (snd_soc_component_read32(component, rx0_path_ctl_reg)
  1517. & 0x0F);
  1518. if (pcm_rate < 0x06)
  1519. val = 0x03;
  1520. else if (pcm_rate < 0x08)
  1521. val = 0x01;
  1522. else if (pcm_rate < 0x0B)
  1523. val = 0x02;
  1524. else
  1525. val = 0x00;
  1526. if (SND_SOC_DAPM_EVENT_ON(event)) {
  1527. /* Enable Compander Clock */
  1528. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1529. 0x01, 0x01);
  1530. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1531. 0x02, 0x02);
  1532. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1533. 0x02, 0x00);
  1534. snd_soc_component_update_bits(component, rx_path_cfg0_reg,
  1535. 0x02, 0x02);
  1536. snd_soc_component_update_bits(component, rx_path_cfg3_reg,
  1537. 0x03, val);
  1538. }
  1539. if (SND_SOC_DAPM_EVENT_OFF(event)) {
  1540. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1541. 0x04, 0x04);
  1542. snd_soc_component_update_bits(component, rx_path_cfg0_reg,
  1543. 0x02, 0x00);
  1544. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1545. 0x01, 0x00);
  1546. snd_soc_component_update_bits(component, comp_ctl0_reg,
  1547. 0x04, 0x00);
  1548. snd_soc_component_update_bits(component, rx_path_cfg3_reg,
  1549. 0x03, 0x03);
  1550. }
  1551. return 0;
  1552. }
  1553. static int rx_macro_load_compander_coeff(struct snd_soc_component *component,
  1554. struct rx_macro_priv *rx_priv,
  1555. int interp_n, int event)
  1556. {
  1557. int comp = 0;
  1558. u16 comp_coeff_lsb_reg = 0, comp_coeff_msb_reg = 0;
  1559. int i = 0;
  1560. int hph_pwr_mode = HPH_LOHIFI;
  1561. if (!rx_priv->comp_enabled[comp])
  1562. return 0;
  1563. if (interp_n == INTERP_HPHL) {
  1564. comp_coeff_lsb_reg = BOLERO_CDC_RX_TOP_HPHL_COMP_WR_LSB;
  1565. comp_coeff_msb_reg = BOLERO_CDC_RX_TOP_HPHL_COMP_WR_MSB;
  1566. } else if (interp_n == INTERP_HPHR) {
  1567. comp_coeff_lsb_reg = BOLERO_CDC_RX_TOP_HPHR_COMP_WR_LSB;
  1568. comp_coeff_msb_reg = BOLERO_CDC_RX_TOP_HPHR_COMP_WR_MSB;
  1569. } else {
  1570. /* compander coefficients are loaded only for hph path */
  1571. return 0;
  1572. }
  1573. comp = interp_n;
  1574. hph_pwr_mode = rx_priv->hph_pwr_mode;
  1575. dev_dbg(component->dev, "%s: event %d compander %d, enabled %d\n",
  1576. __func__, event, comp + 1, rx_priv->comp_enabled[comp]);
  1577. if (SND_SOC_DAPM_EVENT_ON(event)) {
  1578. /* Load Compander Coeff */
  1579. for (i = 0; i < COMP_MAX_COEFF; i++) {
  1580. snd_soc_component_write(component, comp_coeff_lsb_reg,
  1581. comp_coeff_table[hph_pwr_mode][i].lsb);
  1582. snd_soc_component_write(component, comp_coeff_msb_reg,
  1583. comp_coeff_table[hph_pwr_mode][i].msb);
  1584. }
  1585. }
  1586. return 0;
  1587. }
  1588. static void rx_macro_enable_softclip_clk(struct snd_soc_component *component,
  1589. struct rx_macro_priv *rx_priv,
  1590. bool enable)
  1591. {
  1592. if (enable) {
  1593. if (rx_priv->softclip_clk_users == 0)
  1594. snd_soc_component_update_bits(component,
  1595. BOLERO_CDC_RX_SOFTCLIP_CRC,
  1596. 0x01, 0x01);
  1597. rx_priv->softclip_clk_users++;
  1598. } else {
  1599. rx_priv->softclip_clk_users--;
  1600. if (rx_priv->softclip_clk_users == 0)
  1601. snd_soc_component_update_bits(component,
  1602. BOLERO_CDC_RX_SOFTCLIP_CRC,
  1603. 0x01, 0x00);
  1604. }
  1605. }
  1606. static int rx_macro_config_softclip(struct snd_soc_component *component,
  1607. struct rx_macro_priv *rx_priv,
  1608. int event)
  1609. {
  1610. dev_dbg(component->dev, "%s: event %d, enabled %d\n",
  1611. __func__, event, rx_priv->is_softclip_on);
  1612. if (!rx_priv->is_softclip_on)
  1613. return 0;
  1614. if (SND_SOC_DAPM_EVENT_ON(event)) {
  1615. /* Enable Softclip clock */
  1616. rx_macro_enable_softclip_clk(component, rx_priv, true);
  1617. /* Enable Softclip control */
  1618. snd_soc_component_update_bits(component,
  1619. BOLERO_CDC_RX_SOFTCLIP_SOFTCLIP_CTRL, 0x01, 0x01);
  1620. }
  1621. if (SND_SOC_DAPM_EVENT_OFF(event)) {
  1622. snd_soc_component_update_bits(component,
  1623. BOLERO_CDC_RX_SOFTCLIP_SOFTCLIP_CTRL, 0x01, 0x00);
  1624. rx_macro_enable_softclip_clk(component, rx_priv, false);
  1625. }
  1626. return 0;
  1627. }
  1628. static int rx_macro_config_aux_hpf(struct snd_soc_component *component,
  1629. struct rx_macro_priv *rx_priv,
  1630. int event)
  1631. {
  1632. dev_dbg(component->dev, "%s: event %d, enabled %d\n",
  1633. __func__, event, rx_priv->is_aux_hpf_on);
  1634. if (SND_SOC_DAPM_EVENT_ON(event)) {
  1635. /* Update Aux HPF control */
  1636. if (!rx_priv->is_aux_hpf_on)
  1637. snd_soc_component_update_bits(component,
  1638. BOLERO_CDC_RX_RX2_RX_PATH_CFG1, 0x04, 0x00);
  1639. }
  1640. if (SND_SOC_DAPM_EVENT_OFF(event)) {
  1641. /* Reset to default (HPF=ON) */
  1642. snd_soc_component_update_bits(component,
  1643. BOLERO_CDC_RX_RX2_RX_PATH_CFG1, 0x04, 0x04);
  1644. }
  1645. return 0;
  1646. }
  1647. static inline void
  1648. rx_macro_enable_clsh_block(struct rx_macro_priv *rx_priv, bool enable)
  1649. {
  1650. if ((enable && ++rx_priv->clsh_users == 1) ||
  1651. (!enable && --rx_priv->clsh_users == 0))
  1652. snd_soc_component_update_bits(rx_priv->component,
  1653. BOLERO_CDC_RX_CLSH_CRC, 0x01,
  1654. (u8) enable);
  1655. if (rx_priv->clsh_users < 0)
  1656. rx_priv->clsh_users = 0;
  1657. dev_dbg(rx_priv->dev, "%s: clsh_users %d, enable %d", __func__,
  1658. rx_priv->clsh_users, enable);
  1659. }
  1660. static int rx_macro_config_classh(struct snd_soc_component *component,
  1661. struct rx_macro_priv *rx_priv,
  1662. int interp_n, int event)
  1663. {
  1664. if (SND_SOC_DAPM_EVENT_OFF(event)) {
  1665. rx_macro_enable_clsh_block(rx_priv, false);
  1666. return 0;
  1667. }
  1668. if (!SND_SOC_DAPM_EVENT_ON(event))
  1669. return 0;
  1670. rx_macro_enable_clsh_block(rx_priv, true);
  1671. if (interp_n == INTERP_HPHL ||
  1672. interp_n == INTERP_HPHR) {
  1673. /*
  1674. * These K1 values depend on the Headphone Impedance
  1675. * For now it is assumed to be 16 ohm
  1676. */
  1677. snd_soc_component_update_bits(component,
  1678. BOLERO_CDC_RX_CLSH_K1_LSB,
  1679. 0xFF, 0xC0);
  1680. snd_soc_component_update_bits(component,
  1681. BOLERO_CDC_RX_CLSH_K1_MSB,
  1682. 0x0F, 0x00);
  1683. }
  1684. switch (interp_n) {
  1685. case INTERP_HPHL:
  1686. if (rx_priv->is_ear_mode_on)
  1687. snd_soc_component_update_bits(component,
  1688. BOLERO_CDC_RX_CLSH_HPH_V_PA,
  1689. 0x3F, 0x39);
  1690. else
  1691. snd_soc_component_update_bits(component,
  1692. BOLERO_CDC_RX_CLSH_HPH_V_PA,
  1693. 0x3F, 0x1C);
  1694. snd_soc_component_update_bits(component,
  1695. BOLERO_CDC_RX_CLSH_DECAY_CTRL,
  1696. 0x07, 0x00);
  1697. snd_soc_component_update_bits(component,
  1698. BOLERO_CDC_RX_RX0_RX_PATH_CFG0,
  1699. 0x40, 0x40);
  1700. break;
  1701. case INTERP_HPHR:
  1702. snd_soc_component_update_bits(component,
  1703. BOLERO_CDC_RX_CLSH_HPH_V_PA,
  1704. 0x3F, 0x1C);
  1705. snd_soc_component_update_bits(component,
  1706. BOLERO_CDC_RX_CLSH_DECAY_CTRL,
  1707. 0x07, 0x00);
  1708. snd_soc_component_update_bits(component,
  1709. BOLERO_CDC_RX_RX1_RX_PATH_CFG0,
  1710. 0x40, 0x40);
  1711. break;
  1712. case INTERP_AUX:
  1713. snd_soc_component_update_bits(component,
  1714. BOLERO_CDC_RX_RX2_RX_PATH_CFG0,
  1715. 0x08, 0x08);
  1716. snd_soc_component_update_bits(component,
  1717. BOLERO_CDC_RX_RX2_RX_PATH_CFG0,
  1718. 0x10, 0x10);
  1719. break;
  1720. }
  1721. return 0;
  1722. }
  1723. static void rx_macro_hd2_control(struct snd_soc_component *component,
  1724. u16 interp_idx, int event)
  1725. {
  1726. u16 hd2_scale_reg = 0;
  1727. u16 hd2_enable_reg = 0;
  1728. switch (interp_idx) {
  1729. case INTERP_HPHL:
  1730. hd2_scale_reg = BOLERO_CDC_RX_RX0_RX_PATH_SEC3;
  1731. hd2_enable_reg = BOLERO_CDC_RX_RX0_RX_PATH_CFG0;
  1732. break;
  1733. case INTERP_HPHR:
  1734. hd2_scale_reg = BOLERO_CDC_RX_RX1_RX_PATH_SEC3;
  1735. hd2_enable_reg = BOLERO_CDC_RX_RX1_RX_PATH_CFG0;
  1736. break;
  1737. }
  1738. if (hd2_enable_reg && SND_SOC_DAPM_EVENT_ON(event)) {
  1739. snd_soc_component_update_bits(component, hd2_scale_reg,
  1740. 0x3C, 0x14);
  1741. snd_soc_component_update_bits(component, hd2_enable_reg,
  1742. 0x04, 0x04);
  1743. }
  1744. if (hd2_enable_reg && SND_SOC_DAPM_EVENT_OFF(event)) {
  1745. snd_soc_component_update_bits(component, hd2_enable_reg,
  1746. 0x04, 0x00);
  1747. snd_soc_component_update_bits(component, hd2_scale_reg,
  1748. 0x3C, 0x00);
  1749. }
  1750. }
  1751. static int rx_macro_hph_idle_detect_get(struct snd_kcontrol *kcontrol,
  1752. struct snd_ctl_elem_value *ucontrol)
  1753. {
  1754. struct snd_soc_component *component =
  1755. snd_soc_kcontrol_component(kcontrol);
  1756. struct rx_macro_priv *rx_priv = NULL;
  1757. struct device *rx_dev = NULL;
  1758. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1759. return -EINVAL;
  1760. ucontrol->value.integer.value[0] =
  1761. rx_priv->idle_det_cfg.hph_idle_detect_en;
  1762. return 0;
  1763. }
  1764. static int rx_macro_hph_idle_detect_put(struct snd_kcontrol *kcontrol,
  1765. struct snd_ctl_elem_value *ucontrol)
  1766. {
  1767. struct snd_soc_component *component =
  1768. snd_soc_kcontrol_component(kcontrol);
  1769. struct rx_macro_priv *rx_priv = NULL;
  1770. struct device *rx_dev = NULL;
  1771. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1772. return -EINVAL;
  1773. rx_priv->idle_det_cfg.hph_idle_detect_en =
  1774. ucontrol->value.integer.value[0];
  1775. return 0;
  1776. }
  1777. static int rx_macro_get_compander(struct snd_kcontrol *kcontrol,
  1778. struct snd_ctl_elem_value *ucontrol)
  1779. {
  1780. struct snd_soc_component *component =
  1781. snd_soc_kcontrol_component(kcontrol);
  1782. int comp = ((struct soc_multi_mixer_control *)
  1783. kcontrol->private_value)->shift;
  1784. struct device *rx_dev = NULL;
  1785. struct rx_macro_priv *rx_priv = NULL;
  1786. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1787. return -EINVAL;
  1788. ucontrol->value.integer.value[0] = rx_priv->comp_enabled[comp];
  1789. return 0;
  1790. }
  1791. static int rx_macro_set_compander(struct snd_kcontrol *kcontrol,
  1792. struct snd_ctl_elem_value *ucontrol)
  1793. {
  1794. struct snd_soc_component *component =
  1795. snd_soc_kcontrol_component(kcontrol);
  1796. int comp = ((struct soc_multi_mixer_control *)
  1797. kcontrol->private_value)->shift;
  1798. int value = ucontrol->value.integer.value[0];
  1799. struct device *rx_dev = NULL;
  1800. struct rx_macro_priv *rx_priv = NULL;
  1801. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1802. return -EINVAL;
  1803. dev_dbg(component->dev, "%s: Compander %d enable current %d, new %d\n",
  1804. __func__, comp + 1, rx_priv->comp_enabled[comp], value);
  1805. rx_priv->comp_enabled[comp] = value;
  1806. return 0;
  1807. }
  1808. static int rx_macro_mux_get(struct snd_kcontrol *kcontrol,
  1809. struct snd_ctl_elem_value *ucontrol)
  1810. {
  1811. struct snd_soc_dapm_widget *widget =
  1812. snd_soc_dapm_kcontrol_widget(kcontrol);
  1813. struct snd_soc_component *component =
  1814. snd_soc_dapm_to_component(widget->dapm);
  1815. struct device *rx_dev = NULL;
  1816. struct rx_macro_priv *rx_priv = NULL;
  1817. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1818. return -EINVAL;
  1819. ucontrol->value.integer.value[0] =
  1820. rx_priv->rx_port_value[widget->shift];
  1821. return 0;
  1822. }
  1823. static int rx_macro_mux_put(struct snd_kcontrol *kcontrol,
  1824. struct snd_ctl_elem_value *ucontrol)
  1825. {
  1826. struct snd_soc_dapm_widget *widget =
  1827. snd_soc_dapm_kcontrol_widget(kcontrol);
  1828. struct snd_soc_component *component =
  1829. snd_soc_dapm_to_component(widget->dapm);
  1830. struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
  1831. struct snd_soc_dapm_update *update = NULL;
  1832. u32 rx_port_value = ucontrol->value.integer.value[0];
  1833. u32 aif_rst = 0;
  1834. struct device *rx_dev = NULL;
  1835. struct rx_macro_priv *rx_priv = NULL;
  1836. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1837. return -EINVAL;
  1838. aif_rst = rx_priv->rx_port_value[widget->shift];
  1839. if (!rx_port_value) {
  1840. if (aif_rst == 0) {
  1841. dev_err(rx_dev, "%s:AIF reset already\n", __func__);
  1842. return 0;
  1843. }
  1844. if (aif_rst > RX_MACRO_AIF4_PB) {
  1845. dev_err(rx_dev, "%s: Invalid AIF reset\n", __func__);
  1846. return 0;
  1847. }
  1848. }
  1849. rx_priv->rx_port_value[widget->shift] = rx_port_value;
  1850. dev_dbg(rx_dev, "%s: mux input: %d, mux output: %d, aif_rst: %d\n",
  1851. __func__, rx_port_value, widget->shift, aif_rst);
  1852. switch (rx_port_value) {
  1853. case 0:
  1854. if (rx_priv->active_ch_cnt[aif_rst]) {
  1855. clear_bit(widget->shift,
  1856. &rx_priv->active_ch_mask[aif_rst]);
  1857. rx_priv->active_ch_cnt[aif_rst]--;
  1858. }
  1859. break;
  1860. case 1:
  1861. case 2:
  1862. case 3:
  1863. case 4:
  1864. set_bit(widget->shift,
  1865. &rx_priv->active_ch_mask[rx_port_value]);
  1866. rx_priv->active_ch_cnt[rx_port_value]++;
  1867. break;
  1868. default:
  1869. dev_err(component->dev,
  1870. "%s:Invalid AIF_ID for RX_MACRO MUX %d\n",
  1871. __func__, rx_port_value);
  1872. goto err;
  1873. }
  1874. snd_soc_dapm_mux_update_power(widget->dapm, kcontrol,
  1875. rx_port_value, e, update);
  1876. return 0;
  1877. err:
  1878. return -EINVAL;
  1879. }
  1880. static int rx_macro_get_ear_mode(struct snd_kcontrol *kcontrol,
  1881. struct snd_ctl_elem_value *ucontrol)
  1882. {
  1883. struct snd_soc_component *component =
  1884. snd_soc_kcontrol_component(kcontrol);
  1885. struct device *rx_dev = NULL;
  1886. struct rx_macro_priv *rx_priv = NULL;
  1887. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1888. return -EINVAL;
  1889. ucontrol->value.integer.value[0] = rx_priv->is_ear_mode_on;
  1890. return 0;
  1891. }
  1892. static int rx_macro_put_ear_mode(struct snd_kcontrol *kcontrol,
  1893. struct snd_ctl_elem_value *ucontrol)
  1894. {
  1895. struct snd_soc_component *component =
  1896. snd_soc_kcontrol_component(kcontrol);
  1897. struct device *rx_dev = NULL;
  1898. struct rx_macro_priv *rx_priv = NULL;
  1899. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1900. return -EINVAL;
  1901. rx_priv->is_ear_mode_on =
  1902. (!ucontrol->value.integer.value[0] ? false : true);
  1903. return 0;
  1904. }
  1905. static int rx_macro_get_hph_hd2_mode(struct snd_kcontrol *kcontrol,
  1906. struct snd_ctl_elem_value *ucontrol)
  1907. {
  1908. struct snd_soc_component *component =
  1909. snd_soc_kcontrol_component(kcontrol);
  1910. struct device *rx_dev = NULL;
  1911. struct rx_macro_priv *rx_priv = NULL;
  1912. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1913. return -EINVAL;
  1914. ucontrol->value.integer.value[0] = rx_priv->hph_hd2_mode;
  1915. return 0;
  1916. }
  1917. static int rx_macro_put_hph_hd2_mode(struct snd_kcontrol *kcontrol,
  1918. struct snd_ctl_elem_value *ucontrol)
  1919. {
  1920. struct snd_soc_component *component =
  1921. snd_soc_kcontrol_component(kcontrol);
  1922. struct device *rx_dev = NULL;
  1923. struct rx_macro_priv *rx_priv = NULL;
  1924. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1925. return -EINVAL;
  1926. rx_priv->hph_hd2_mode = ucontrol->value.integer.value[0];
  1927. return 0;
  1928. }
  1929. static int rx_macro_get_hph_pwr_mode(struct snd_kcontrol *kcontrol,
  1930. struct snd_ctl_elem_value *ucontrol)
  1931. {
  1932. struct snd_soc_component *component =
  1933. snd_soc_kcontrol_component(kcontrol);
  1934. struct device *rx_dev = NULL;
  1935. struct rx_macro_priv *rx_priv = NULL;
  1936. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1937. return -EINVAL;
  1938. ucontrol->value.integer.value[0] = rx_priv->hph_pwr_mode;
  1939. return 0;
  1940. }
  1941. static int rx_macro_put_hph_pwr_mode(struct snd_kcontrol *kcontrol,
  1942. struct snd_ctl_elem_value *ucontrol)
  1943. {
  1944. struct snd_soc_component *component =
  1945. snd_soc_kcontrol_component(kcontrol);
  1946. struct device *rx_dev = NULL;
  1947. struct rx_macro_priv *rx_priv = NULL;
  1948. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1949. return -EINVAL;
  1950. rx_priv->hph_pwr_mode = ucontrol->value.integer.value[0];
  1951. return 0;
  1952. }
  1953. static int rx_macro_vbat_bcl_gsm_mode_func_get(struct snd_kcontrol *kcontrol,
  1954. struct snd_ctl_elem_value *ucontrol)
  1955. {
  1956. struct snd_soc_component *component =
  1957. snd_soc_kcontrol_component(kcontrol);
  1958. ucontrol->value.integer.value[0] =
  1959. ((snd_soc_component_read32(
  1960. component, BOLERO_CDC_RX_BCL_VBAT_CFG) & 0x04) ?
  1961. 1 : 0);
  1962. dev_dbg(component->dev, "%s: value: %lu\n", __func__,
  1963. ucontrol->value.integer.value[0]);
  1964. return 0;
  1965. }
  1966. static int rx_macro_vbat_bcl_gsm_mode_func_put(struct snd_kcontrol *kcontrol,
  1967. struct snd_ctl_elem_value *ucontrol)
  1968. {
  1969. struct snd_soc_component *component =
  1970. snd_soc_kcontrol_component(kcontrol);
  1971. dev_dbg(component->dev, "%s: value: %lu\n", __func__,
  1972. ucontrol->value.integer.value[0]);
  1973. /* Set Vbat register configuration for GSM mode bit based on value */
  1974. if (ucontrol->value.integer.value[0])
  1975. snd_soc_component_update_bits(component,
  1976. BOLERO_CDC_RX_BCL_VBAT_CFG,
  1977. 0x04, 0x04);
  1978. else
  1979. snd_soc_component_update_bits(component,
  1980. BOLERO_CDC_RX_BCL_VBAT_CFG,
  1981. 0x04, 0x00);
  1982. return 0;
  1983. }
  1984. static int rx_macro_soft_clip_enable_get(struct snd_kcontrol *kcontrol,
  1985. struct snd_ctl_elem_value *ucontrol)
  1986. {
  1987. struct snd_soc_component *component =
  1988. snd_soc_kcontrol_component(kcontrol);
  1989. struct device *rx_dev = NULL;
  1990. struct rx_macro_priv *rx_priv = NULL;
  1991. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  1992. return -EINVAL;
  1993. ucontrol->value.integer.value[0] = rx_priv->is_softclip_on;
  1994. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  1995. __func__, ucontrol->value.integer.value[0]);
  1996. return 0;
  1997. }
  1998. static int rx_macro_soft_clip_enable_put(struct snd_kcontrol *kcontrol,
  1999. struct snd_ctl_elem_value *ucontrol)
  2000. {
  2001. struct snd_soc_component *component =
  2002. snd_soc_kcontrol_component(kcontrol);
  2003. struct device *rx_dev = NULL;
  2004. struct rx_macro_priv *rx_priv = NULL;
  2005. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  2006. return -EINVAL;
  2007. rx_priv->is_softclip_on = ucontrol->value.integer.value[0];
  2008. dev_dbg(component->dev, "%s: soft clip enable = %d\n", __func__,
  2009. rx_priv->is_softclip_on);
  2010. return 0;
  2011. }
  2012. static int rx_macro_aux_hpf_mode_get(struct snd_kcontrol *kcontrol,
  2013. struct snd_ctl_elem_value *ucontrol)
  2014. {
  2015. struct snd_soc_component *component =
  2016. snd_soc_kcontrol_component(kcontrol);
  2017. struct device *rx_dev = NULL;
  2018. struct rx_macro_priv *rx_priv = NULL;
  2019. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  2020. return -EINVAL;
  2021. ucontrol->value.integer.value[0] = rx_priv->is_aux_hpf_on;
  2022. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  2023. __func__, ucontrol->value.integer.value[0]);
  2024. return 0;
  2025. }
  2026. static int rx_macro_aux_hpf_mode_put(struct snd_kcontrol *kcontrol,
  2027. struct snd_ctl_elem_value *ucontrol)
  2028. {
  2029. struct snd_soc_component *component =
  2030. snd_soc_kcontrol_component(kcontrol);
  2031. struct device *rx_dev = NULL;
  2032. struct rx_macro_priv *rx_priv = NULL;
  2033. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  2034. return -EINVAL;
  2035. rx_priv->is_aux_hpf_on = ucontrol->value.integer.value[0];
  2036. dev_dbg(component->dev, "%s: aux hpf enable = %d\n", __func__,
  2037. rx_priv->is_aux_hpf_on);
  2038. return 0;
  2039. }
  2040. static int rx_macro_enable_vbat(struct snd_soc_dapm_widget *w,
  2041. struct snd_kcontrol *kcontrol,
  2042. int event)
  2043. {
  2044. struct snd_soc_component *component =
  2045. snd_soc_dapm_to_component(w->dapm);
  2046. struct device *rx_dev = NULL;
  2047. struct rx_macro_priv *rx_priv = NULL;
  2048. dev_dbg(component->dev, "%s %s %d\n", __func__, w->name, event);
  2049. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  2050. return -EINVAL;
  2051. switch (event) {
  2052. case SND_SOC_DAPM_PRE_PMU:
  2053. /* Enable clock for VBAT block */
  2054. snd_soc_component_update_bits(component,
  2055. BOLERO_CDC_RX_BCL_VBAT_PATH_CTL, 0x10, 0x10);
  2056. /* Enable VBAT block */
  2057. snd_soc_component_update_bits(component,
  2058. BOLERO_CDC_RX_BCL_VBAT_CFG, 0x01, 0x01);
  2059. /* Update interpolator with 384K path */
  2060. snd_soc_component_update_bits(component,
  2061. BOLERO_CDC_RX_RX2_RX_PATH_CFG1, 0x80, 0x80);
  2062. /* Update DSM FS rate */
  2063. snd_soc_component_update_bits(component,
  2064. BOLERO_CDC_RX_RX2_RX_PATH_SEC7, 0x02, 0x02);
  2065. /* Use attenuation mode */
  2066. snd_soc_component_update_bits(component,
  2067. BOLERO_CDC_RX_BCL_VBAT_CFG, 0x02, 0x00);
  2068. /* BCL block needs softclip clock to be enabled */
  2069. rx_macro_enable_softclip_clk(component, rx_priv, true);
  2070. /* Enable VBAT at channel level */
  2071. snd_soc_component_update_bits(component,
  2072. BOLERO_CDC_RX_RX2_RX_PATH_CFG1, 0x02, 0x02);
  2073. /* Set the ATTK1 gain */
  2074. snd_soc_component_update_bits(component,
  2075. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD1,
  2076. 0xFF, 0xFF);
  2077. snd_soc_component_update_bits(component,
  2078. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD2,
  2079. 0xFF, 0x03);
  2080. snd_soc_component_update_bits(component,
  2081. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD3,
  2082. 0xFF, 0x00);
  2083. /* Set the ATTK2 gain */
  2084. snd_soc_component_update_bits(component,
  2085. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD4,
  2086. 0xFF, 0xFF);
  2087. snd_soc_component_update_bits(component,
  2088. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD5,
  2089. 0xFF, 0x03);
  2090. snd_soc_component_update_bits(component,
  2091. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD6,
  2092. 0xFF, 0x00);
  2093. /* Set the ATTK3 gain */
  2094. snd_soc_component_update_bits(component,
  2095. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD7,
  2096. 0xFF, 0xFF);
  2097. snd_soc_component_update_bits(component,
  2098. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD8,
  2099. 0xFF, 0x03);
  2100. snd_soc_component_update_bits(component,
  2101. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD9,
  2102. 0xFF, 0x00);
  2103. break;
  2104. case SND_SOC_DAPM_POST_PMD:
  2105. snd_soc_component_update_bits(component,
  2106. BOLERO_CDC_RX_RX2_RX_PATH_CFG1,
  2107. 0x80, 0x00);
  2108. snd_soc_component_update_bits(component,
  2109. BOLERO_CDC_RX_RX2_RX_PATH_SEC7,
  2110. 0x02, 0x00);
  2111. snd_soc_component_update_bits(component,
  2112. BOLERO_CDC_RX_BCL_VBAT_CFG,
  2113. 0x02, 0x02);
  2114. snd_soc_component_update_bits(component,
  2115. BOLERO_CDC_RX_RX2_RX_PATH_CFG1,
  2116. 0x02, 0x00);
  2117. snd_soc_component_update_bits(component,
  2118. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD1,
  2119. 0xFF, 0x00);
  2120. snd_soc_component_update_bits(component,
  2121. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD2,
  2122. 0xFF, 0x00);
  2123. snd_soc_component_update_bits(component,
  2124. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD3,
  2125. 0xFF, 0x00);
  2126. snd_soc_component_update_bits(component,
  2127. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD4,
  2128. 0xFF, 0x00);
  2129. snd_soc_component_update_bits(component,
  2130. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD5,
  2131. 0xFF, 0x00);
  2132. snd_soc_component_update_bits(component,
  2133. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD6,
  2134. 0xFF, 0x00);
  2135. snd_soc_component_update_bits(component,
  2136. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD7,
  2137. 0xFF, 0x00);
  2138. snd_soc_component_update_bits(component,
  2139. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD8,
  2140. 0xFF, 0x00);
  2141. snd_soc_component_update_bits(component,
  2142. BOLERO_CDC_RX_BCL_VBAT_BCL_GAIN_UPD9,
  2143. 0xFF, 0x00);
  2144. rx_macro_enable_softclip_clk(component, rx_priv, false);
  2145. snd_soc_component_update_bits(component,
  2146. BOLERO_CDC_RX_BCL_VBAT_CFG, 0x01, 0x00);
  2147. snd_soc_component_update_bits(component,
  2148. BOLERO_CDC_RX_BCL_VBAT_PATH_CTL, 0x10, 0x00);
  2149. break;
  2150. default:
  2151. dev_err(rx_dev, "%s: Invalid event %d\n", __func__, event);
  2152. break;
  2153. }
  2154. return 0;
  2155. }
  2156. static void rx_macro_idle_detect_control(struct snd_soc_component *component,
  2157. struct rx_macro_priv *rx_priv,
  2158. int interp, int event)
  2159. {
  2160. int reg = 0, mask = 0, val = 0;
  2161. if (!rx_priv->idle_det_cfg.hph_idle_detect_en)
  2162. return;
  2163. if (interp == INTERP_HPHL) {
  2164. reg = BOLERO_CDC_RX_IDLE_DETECT_PATH_CTL;
  2165. mask = 0x01;
  2166. val = 0x01;
  2167. }
  2168. if (interp == INTERP_HPHR) {
  2169. reg = BOLERO_CDC_RX_IDLE_DETECT_PATH_CTL;
  2170. mask = 0x02;
  2171. val = 0x02;
  2172. }
  2173. if (reg && SND_SOC_DAPM_EVENT_ON(event))
  2174. snd_soc_component_update_bits(component, reg, mask, val);
  2175. if (reg && SND_SOC_DAPM_EVENT_OFF(event)) {
  2176. snd_soc_component_update_bits(component, reg, mask, 0x00);
  2177. rx_priv->idle_det_cfg.hph_idle_thr = 0;
  2178. snd_soc_component_write(component,
  2179. BOLERO_CDC_RX_IDLE_DETECT_CFG3, 0x0);
  2180. }
  2181. }
  2182. static void rx_macro_hphdelay_lutbypass(struct snd_soc_component *component,
  2183. struct rx_macro_priv *rx_priv,
  2184. u16 interp_idx, int event)
  2185. {
  2186. u16 hph_lut_bypass_reg = 0;
  2187. u16 hph_comp_ctrl7 = 0;
  2188. switch (interp_idx) {
  2189. case INTERP_HPHL:
  2190. hph_lut_bypass_reg = BOLERO_CDC_RX_TOP_HPHL_COMP_LUT;
  2191. hph_comp_ctrl7 = BOLERO_CDC_RX_COMPANDER0_CTL7;
  2192. break;
  2193. case INTERP_HPHR:
  2194. hph_lut_bypass_reg = BOLERO_CDC_RX_TOP_HPHR_COMP_LUT;
  2195. hph_comp_ctrl7 = BOLERO_CDC_RX_COMPANDER1_CTL7;
  2196. break;
  2197. default:
  2198. break;
  2199. }
  2200. if (hph_lut_bypass_reg && SND_SOC_DAPM_EVENT_ON(event)) {
  2201. if (interp_idx == INTERP_HPHL) {
  2202. if (rx_priv->is_ear_mode_on)
  2203. snd_soc_component_update_bits(component,
  2204. BOLERO_CDC_RX_RX0_RX_PATH_CFG1,
  2205. 0x02, 0x02);
  2206. else
  2207. snd_soc_component_update_bits(component,
  2208. hph_lut_bypass_reg,
  2209. 0x80, 0x80);
  2210. } else {
  2211. snd_soc_component_update_bits(component,
  2212. hph_lut_bypass_reg,
  2213. 0x80, 0x80);
  2214. }
  2215. if (rx_priv->hph_pwr_mode)
  2216. snd_soc_component_update_bits(component,
  2217. hph_comp_ctrl7,
  2218. 0x20, 0x00);
  2219. }
  2220. if (hph_lut_bypass_reg && SND_SOC_DAPM_EVENT_OFF(event)) {
  2221. snd_soc_component_update_bits(component,
  2222. BOLERO_CDC_RX_RX0_RX_PATH_CFG1,
  2223. 0x02, 0x00);
  2224. snd_soc_component_update_bits(component, hph_lut_bypass_reg,
  2225. 0x80, 0x00);
  2226. snd_soc_component_update_bits(component, hph_comp_ctrl7,
  2227. 0x20, 0x20);
  2228. }
  2229. }
  2230. static int rx_macro_enable_interp_clk(struct snd_soc_component *component,
  2231. int event, int interp_idx)
  2232. {
  2233. u16 main_reg = 0, dsm_reg = 0, rx_cfg2_reg = 0;
  2234. struct device *rx_dev = NULL;
  2235. struct rx_macro_priv *rx_priv = NULL;
  2236. if (!component) {
  2237. pr_err("%s: component is NULL\n", __func__);
  2238. return -EINVAL;
  2239. }
  2240. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  2241. return -EINVAL;
  2242. main_reg = BOLERO_CDC_RX_RX0_RX_PATH_CTL +
  2243. (interp_idx * RX_MACRO_RX_PATH_OFFSET);
  2244. dsm_reg = BOLERO_CDC_RX_RX0_RX_PATH_DSM_CTL +
  2245. (interp_idx * RX_MACRO_RX_PATH_OFFSET);
  2246. if (interp_idx == INTERP_AUX)
  2247. dsm_reg = BOLERO_CDC_RX_RX2_RX_PATH_DSM_CTL;
  2248. rx_cfg2_reg = BOLERO_CDC_RX_RX0_RX_PATH_CFG2 +
  2249. (interp_idx * RX_MACRO_RX_PATH_OFFSET);
  2250. if (SND_SOC_DAPM_EVENT_ON(event)) {
  2251. if (rx_priv->main_clk_users[interp_idx] == 0) {
  2252. /* Main path PGA mute enable */
  2253. snd_soc_component_update_bits(component, main_reg,
  2254. 0x10, 0x10);
  2255. snd_soc_component_update_bits(component, dsm_reg,
  2256. 0x01, 0x01);
  2257. snd_soc_component_update_bits(component, rx_cfg2_reg,
  2258. 0x03, 0x03);
  2259. rx_macro_load_compander_coeff(component, rx_priv,
  2260. interp_idx, event);
  2261. rx_macro_idle_detect_control(component, rx_priv,
  2262. interp_idx, event);
  2263. if (rx_priv->hph_hd2_mode)
  2264. rx_macro_hd2_control(
  2265. component, interp_idx, event);
  2266. rx_macro_hphdelay_lutbypass(component, rx_priv,
  2267. interp_idx, event);
  2268. rx_macro_config_compander(component, rx_priv,
  2269. interp_idx, event);
  2270. if (interp_idx == INTERP_AUX) {
  2271. rx_macro_config_softclip(component, rx_priv,
  2272. event);
  2273. rx_macro_config_aux_hpf(component, rx_priv,
  2274. event);
  2275. }
  2276. rx_macro_config_classh(component, rx_priv,
  2277. interp_idx, event);
  2278. }
  2279. rx_priv->main_clk_users[interp_idx]++;
  2280. }
  2281. if (SND_SOC_DAPM_EVENT_OFF(event)) {
  2282. rx_priv->main_clk_users[interp_idx]--;
  2283. if (rx_priv->main_clk_users[interp_idx] <= 0) {
  2284. rx_priv->main_clk_users[interp_idx] = 0;
  2285. /* Main path PGA mute enable */
  2286. snd_soc_component_update_bits(component, main_reg,
  2287. 0x10, 0x10);
  2288. /* Clk Disable */
  2289. snd_soc_component_update_bits(component, dsm_reg,
  2290. 0x01, 0x00);
  2291. snd_soc_component_update_bits(component, main_reg,
  2292. 0x20, 0x00);
  2293. /* Reset enable and disable */
  2294. snd_soc_component_update_bits(component, main_reg,
  2295. 0x40, 0x40);
  2296. snd_soc_component_update_bits(component, main_reg,
  2297. 0x40, 0x00);
  2298. /* Reset rate to 48K*/
  2299. snd_soc_component_update_bits(component, main_reg,
  2300. 0x0F, 0x04);
  2301. snd_soc_component_update_bits(component, rx_cfg2_reg,
  2302. 0x03, 0x00);
  2303. rx_macro_config_classh(component, rx_priv,
  2304. interp_idx, event);
  2305. rx_macro_config_compander(component, rx_priv,
  2306. interp_idx, event);
  2307. if (interp_idx == INTERP_AUX) {
  2308. rx_macro_config_softclip(component, rx_priv,
  2309. event);
  2310. rx_macro_config_aux_hpf(component, rx_priv,
  2311. event);
  2312. }
  2313. rx_macro_hphdelay_lutbypass(component, rx_priv,
  2314. interp_idx, event);
  2315. if (rx_priv->hph_hd2_mode)
  2316. rx_macro_hd2_control(component, interp_idx,
  2317. event);
  2318. rx_macro_idle_detect_control(component, rx_priv,
  2319. interp_idx, event);
  2320. }
  2321. }
  2322. dev_dbg(component->dev, "%s event %d main_clk_users %d\n",
  2323. __func__, event, rx_priv->main_clk_users[interp_idx]);
  2324. return rx_priv->main_clk_users[interp_idx];
  2325. }
  2326. static int rx_macro_enable_rx_path_clk(struct snd_soc_dapm_widget *w,
  2327. struct snd_kcontrol *kcontrol, int event)
  2328. {
  2329. struct snd_soc_component *component =
  2330. snd_soc_dapm_to_component(w->dapm);
  2331. u16 sidetone_reg = 0, fs_reg = 0;
  2332. dev_dbg(component->dev, "%s %d %d\n", __func__, event, w->shift);
  2333. sidetone_reg = BOLERO_CDC_RX_RX0_RX_PATH_CFG1 +
  2334. RX_MACRO_RX_PATH_OFFSET * (w->shift);
  2335. fs_reg = BOLERO_CDC_RX_RX0_RX_PATH_CTL +
  2336. RX_MACRO_RX_PATH_OFFSET * (w->shift);
  2337. switch (event) {
  2338. case SND_SOC_DAPM_PRE_PMU:
  2339. rx_macro_enable_interp_clk(component, event, w->shift);
  2340. snd_soc_component_update_bits(component, sidetone_reg,
  2341. 0x10, 0x10);
  2342. snd_soc_component_update_bits(component, fs_reg,
  2343. 0x20, 0x20);
  2344. break;
  2345. case SND_SOC_DAPM_POST_PMD:
  2346. snd_soc_component_update_bits(component, sidetone_reg,
  2347. 0x10, 0x00);
  2348. rx_macro_enable_interp_clk(component, event, w->shift);
  2349. break;
  2350. default:
  2351. break;
  2352. };
  2353. return 0;
  2354. }
  2355. static void rx_macro_restore_iir_coeff(struct rx_macro_priv *rx_priv, int iir_idx,
  2356. int band_idx)
  2357. {
  2358. u16 reg_add = 0, coeff_idx = 0, idx = 0;
  2359. struct regmap *regmap = dev_get_regmap(rx_priv->dev->parent, NULL);
  2360. if (regmap == NULL) {
  2361. dev_err(rx_priv->dev, "%s: regmap is NULL\n", __func__);
  2362. return;
  2363. }
  2364. regmap_write(regmap,
  2365. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B1_CTL + 0x80 * iir_idx),
  2366. (band_idx * BAND_MAX * sizeof(uint32_t)) & 0x7F);
  2367. reg_add = BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL + 0x80 * iir_idx;
  2368. /* 5 coefficients per band and 4 writes per coefficient */
  2369. for (coeff_idx = 0; coeff_idx < RX_MACRO_SIDETONE_IIR_COEFF_MAX;
  2370. coeff_idx++) {
  2371. /* Four 8 bit values(one 32 bit) per coefficient */
  2372. regmap_write(regmap, reg_add,
  2373. rx_priv->sidetone_coeff_array[iir_idx][band_idx][idx++]);
  2374. regmap_write(regmap, reg_add,
  2375. rx_priv->sidetone_coeff_array[iir_idx][band_idx][idx++]);
  2376. regmap_write(regmap, reg_add,
  2377. rx_priv->sidetone_coeff_array[iir_idx][band_idx][idx++]);
  2378. regmap_write(regmap, reg_add,
  2379. rx_priv->sidetone_coeff_array[iir_idx][band_idx][idx++]);
  2380. }
  2381. }
  2382. static int rx_macro_iir_enable_audio_mixer_get(struct snd_kcontrol *kcontrol,
  2383. struct snd_ctl_elem_value *ucontrol)
  2384. {
  2385. struct snd_soc_component *component =
  2386. snd_soc_kcontrol_component(kcontrol);
  2387. int iir_idx = ((struct soc_multi_mixer_control *)
  2388. kcontrol->private_value)->reg;
  2389. int band_idx = ((struct soc_multi_mixer_control *)
  2390. kcontrol->private_value)->shift;
  2391. /* IIR filter band registers are at integer multiples of 0x80 */
  2392. u16 iir_reg = BOLERO_CDC_RX_SIDETONE_IIR0_IIR_CTL + 0x80 * iir_idx;
  2393. ucontrol->value.integer.value[0] = (
  2394. snd_soc_component_read32(component, iir_reg) &
  2395. (1 << band_idx)) != 0;
  2396. dev_dbg(component->dev, "%s: IIR #%d band #%d enable %d\n", __func__,
  2397. iir_idx, band_idx,
  2398. (uint32_t)ucontrol->value.integer.value[0]);
  2399. return 0;
  2400. }
  2401. static int rx_macro_iir_enable_audio_mixer_put(struct snd_kcontrol *kcontrol,
  2402. struct snd_ctl_elem_value *ucontrol)
  2403. {
  2404. struct snd_soc_component *component =
  2405. snd_soc_kcontrol_component(kcontrol);
  2406. int iir_idx = ((struct soc_multi_mixer_control *)
  2407. kcontrol->private_value)->reg;
  2408. int band_idx = ((struct soc_multi_mixer_control *)
  2409. kcontrol->private_value)->shift;
  2410. bool iir_band_en_status = 0;
  2411. int value = ucontrol->value.integer.value[0];
  2412. u16 iir_reg = BOLERO_CDC_RX_SIDETONE_IIR0_IIR_CTL + 0x80 * iir_idx;
  2413. struct device *rx_dev = NULL;
  2414. struct rx_macro_priv *rx_priv = NULL;
  2415. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  2416. return -EINVAL;
  2417. rx_macro_restore_iir_coeff(rx_priv, iir_idx, band_idx);
  2418. /* Mask first 5 bits, 6-8 are reserved */
  2419. snd_soc_component_update_bits(component, iir_reg, (1 << band_idx),
  2420. (value << band_idx));
  2421. iir_band_en_status = ((snd_soc_component_read32(component, iir_reg) &
  2422. (1 << band_idx)) != 0);
  2423. dev_dbg(component->dev, "%s: IIR #%d band #%d enable %d\n", __func__,
  2424. iir_idx, band_idx, iir_band_en_status);
  2425. return 0;
  2426. }
  2427. static uint32_t get_iir_band_coeff(struct snd_soc_component *component,
  2428. int iir_idx, int band_idx,
  2429. int coeff_idx)
  2430. {
  2431. uint32_t value = 0;
  2432. /* Address does not automatically update if reading */
  2433. snd_soc_component_write(component,
  2434. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B1_CTL + 0x80 * iir_idx),
  2435. ((band_idx * BAND_MAX + coeff_idx)
  2436. * sizeof(uint32_t)) & 0x7F);
  2437. value |= snd_soc_component_read32(component,
  2438. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL + 0x80 * iir_idx));
  2439. snd_soc_component_write(component,
  2440. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B1_CTL + 0x80 * iir_idx),
  2441. ((band_idx * BAND_MAX + coeff_idx)
  2442. * sizeof(uint32_t) + 1) & 0x7F);
  2443. value |= (snd_soc_component_read32(component,
  2444. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL +
  2445. 0x80 * iir_idx)) << 8);
  2446. snd_soc_component_write(component,
  2447. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B1_CTL + 0x80 * iir_idx),
  2448. ((band_idx * BAND_MAX + coeff_idx)
  2449. * sizeof(uint32_t) + 2) & 0x7F);
  2450. value |= (snd_soc_component_read32(component,
  2451. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL +
  2452. 0x80 * iir_idx)) << 16);
  2453. snd_soc_component_write(component,
  2454. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B1_CTL + 0x80 * iir_idx),
  2455. ((band_idx * BAND_MAX + coeff_idx)
  2456. * sizeof(uint32_t) + 3) & 0x7F);
  2457. /* Mask bits top 2 bits since they are reserved */
  2458. value |= ((snd_soc_component_read32(component,
  2459. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL +
  2460. 16 * iir_idx)) & 0x3F) << 24);
  2461. return value;
  2462. }
  2463. static int rx_macro_iir_band_audio_mixer_get(struct snd_kcontrol *kcontrol,
  2464. struct snd_ctl_elem_value *ucontrol)
  2465. {
  2466. struct snd_soc_component *component =
  2467. snd_soc_kcontrol_component(kcontrol);
  2468. int iir_idx = ((struct soc_multi_mixer_control *)
  2469. kcontrol->private_value)->reg;
  2470. int band_idx = ((struct soc_multi_mixer_control *)
  2471. kcontrol->private_value)->shift;
  2472. ucontrol->value.integer.value[0] =
  2473. get_iir_band_coeff(component, iir_idx, band_idx, 0);
  2474. ucontrol->value.integer.value[1] =
  2475. get_iir_band_coeff(component, iir_idx, band_idx, 1);
  2476. ucontrol->value.integer.value[2] =
  2477. get_iir_band_coeff(component, iir_idx, band_idx, 2);
  2478. ucontrol->value.integer.value[3] =
  2479. get_iir_band_coeff(component, iir_idx, band_idx, 3);
  2480. ucontrol->value.integer.value[4] =
  2481. get_iir_band_coeff(component, iir_idx, band_idx, 4);
  2482. dev_dbg(component->dev, "%s: IIR #%d band #%d b0 = 0x%x\n"
  2483. "%s: IIR #%d band #%d b1 = 0x%x\n"
  2484. "%s: IIR #%d band #%d b2 = 0x%x\n"
  2485. "%s: IIR #%d band #%d a1 = 0x%x\n"
  2486. "%s: IIR #%d band #%d a2 = 0x%x\n",
  2487. __func__, iir_idx, band_idx,
  2488. (uint32_t)ucontrol->value.integer.value[0],
  2489. __func__, iir_idx, band_idx,
  2490. (uint32_t)ucontrol->value.integer.value[1],
  2491. __func__, iir_idx, band_idx,
  2492. (uint32_t)ucontrol->value.integer.value[2],
  2493. __func__, iir_idx, band_idx,
  2494. (uint32_t)ucontrol->value.integer.value[3],
  2495. __func__, iir_idx, band_idx,
  2496. (uint32_t)ucontrol->value.integer.value[4]);
  2497. return 0;
  2498. }
  2499. static void set_iir_band_coeff(struct snd_soc_component *component,
  2500. int iir_idx, int band_idx,
  2501. uint32_t value)
  2502. {
  2503. snd_soc_component_write(component,
  2504. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL + 0x80 * iir_idx),
  2505. (value & 0xFF));
  2506. snd_soc_component_write(component,
  2507. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL + 0x80 * iir_idx),
  2508. (value >> 8) & 0xFF);
  2509. snd_soc_component_write(component,
  2510. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL + 0x80 * iir_idx),
  2511. (value >> 16) & 0xFF);
  2512. /* Mask top 2 bits, 7-8 are reserved */
  2513. snd_soc_component_write(component,
  2514. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B2_CTL + 0x80 * iir_idx),
  2515. (value >> 24) & 0x3F);
  2516. }
  2517. static int rx_macro_iir_band_audio_mixer_put(struct snd_kcontrol *kcontrol,
  2518. struct snd_ctl_elem_value *ucontrol)
  2519. {
  2520. struct snd_soc_component *component =
  2521. snd_soc_kcontrol_component(kcontrol);
  2522. int iir_idx = ((struct soc_multi_mixer_control *)
  2523. kcontrol->private_value)->reg;
  2524. int band_idx = ((struct soc_multi_mixer_control *)
  2525. kcontrol->private_value)->shift;
  2526. int coeff_idx, idx = 0;
  2527. struct device *rx_dev = NULL;
  2528. struct rx_macro_priv *rx_priv = NULL;
  2529. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  2530. return -EINVAL;
  2531. /*
  2532. * Mask top bit it is reserved
  2533. * Updates addr automatically for each B2 write
  2534. */
  2535. snd_soc_component_write(component,
  2536. (BOLERO_CDC_RX_SIDETONE_IIR0_IIR_COEF_B1_CTL + 16 * iir_idx),
  2537. (band_idx * BAND_MAX * sizeof(uint32_t)) & 0x7F);
  2538. /* Store the coefficients in sidetone coeff array */
  2539. for (coeff_idx = 0; coeff_idx < RX_MACRO_SIDETONE_IIR_COEFF_MAX;
  2540. coeff_idx++) {
  2541. uint32_t value = ucontrol->value.integer.value[coeff_idx];
  2542. set_iir_band_coeff(component, iir_idx, band_idx, value);
  2543. /* Four 8 bit values(one 32 bit) per coefficient */
  2544. rx_priv->sidetone_coeff_array[iir_idx][band_idx][idx++] =
  2545. (value & 0xFF);
  2546. rx_priv->sidetone_coeff_array[iir_idx][band_idx][idx++] =
  2547. (value >> 8) & 0xFF;
  2548. rx_priv->sidetone_coeff_array[iir_idx][band_idx][idx++] =
  2549. (value >> 16) & 0xFF;
  2550. rx_priv->sidetone_coeff_array[iir_idx][band_idx][idx++] =
  2551. (value >> 24) & 0xFF;
  2552. }
  2553. pr_debug("%s: IIR #%d band #%d b0 = 0x%x\n"
  2554. "%s: IIR #%d band #%d b1 = 0x%x\n"
  2555. "%s: IIR #%d band #%d b2 = 0x%x\n"
  2556. "%s: IIR #%d band #%d a1 = 0x%x\n"
  2557. "%s: IIR #%d band #%d a2 = 0x%x\n",
  2558. __func__, iir_idx, band_idx,
  2559. get_iir_band_coeff(component, iir_idx, band_idx, 0),
  2560. __func__, iir_idx, band_idx,
  2561. get_iir_band_coeff(component, iir_idx, band_idx, 1),
  2562. __func__, iir_idx, band_idx,
  2563. get_iir_band_coeff(component, iir_idx, band_idx, 2),
  2564. __func__, iir_idx, band_idx,
  2565. get_iir_band_coeff(component, iir_idx, band_idx, 3),
  2566. __func__, iir_idx, band_idx,
  2567. get_iir_band_coeff(component, iir_idx, band_idx, 4));
  2568. return 0;
  2569. }
  2570. static int rx_macro_set_iir_gain(struct snd_soc_dapm_widget *w,
  2571. struct snd_kcontrol *kcontrol, int event)
  2572. {
  2573. struct snd_soc_component *component =
  2574. snd_soc_dapm_to_component(w->dapm);
  2575. dev_dbg(component->dev, "%s: event = %d\n", __func__, event);
  2576. switch (event) {
  2577. case SND_SOC_DAPM_POST_PMU: /* fall through */
  2578. case SND_SOC_DAPM_PRE_PMD:
  2579. if (strnstr(w->name, "IIR0", sizeof("IIR0"))) {
  2580. snd_soc_component_write(component,
  2581. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B1_CTL,
  2582. snd_soc_component_read32(component,
  2583. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B1_CTL));
  2584. snd_soc_component_write(component,
  2585. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B2_CTL,
  2586. snd_soc_component_read32(component,
  2587. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B2_CTL));
  2588. snd_soc_component_write(component,
  2589. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B3_CTL,
  2590. snd_soc_component_read32(component,
  2591. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B3_CTL));
  2592. snd_soc_component_write(component,
  2593. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B4_CTL,
  2594. snd_soc_component_read32(component,
  2595. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B4_CTL));
  2596. } else {
  2597. snd_soc_component_write(component,
  2598. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B1_CTL,
  2599. snd_soc_component_read32(component,
  2600. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B1_CTL));
  2601. snd_soc_component_write(component,
  2602. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B2_CTL,
  2603. snd_soc_component_read32(component,
  2604. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B2_CTL));
  2605. snd_soc_component_write(component,
  2606. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B3_CTL,
  2607. snd_soc_component_read32(component,
  2608. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B3_CTL));
  2609. snd_soc_component_write(component,
  2610. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B4_CTL,
  2611. snd_soc_component_read32(component,
  2612. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B4_CTL));
  2613. }
  2614. break;
  2615. }
  2616. return 0;
  2617. }
  2618. static const struct snd_kcontrol_new rx_macro_snd_controls[] = {
  2619. SOC_SINGLE_SX_TLV("RX_RX0 Digital Volume",
  2620. BOLERO_CDC_RX_RX0_RX_VOL_CTL,
  2621. 0, -84, 40, digital_gain),
  2622. SOC_SINGLE_SX_TLV("RX_RX1 Digital Volume",
  2623. BOLERO_CDC_RX_RX1_RX_VOL_CTL,
  2624. 0, -84, 40, digital_gain),
  2625. SOC_SINGLE_SX_TLV("RX_RX2 Digital Volume",
  2626. BOLERO_CDC_RX_RX2_RX_VOL_CTL,
  2627. 0, -84, 40, digital_gain),
  2628. SOC_SINGLE_SX_TLV("RX_RX0 Mix Digital Volume",
  2629. BOLERO_CDC_RX_RX0_RX_VOL_MIX_CTL, 0, -84, 40, digital_gain),
  2630. SOC_SINGLE_SX_TLV("RX_RX1 Mix Digital Volume",
  2631. BOLERO_CDC_RX_RX1_RX_VOL_MIX_CTL, 0, -84, 40, digital_gain),
  2632. SOC_SINGLE_SX_TLV("RX_RX2 Mix Digital Volume",
  2633. BOLERO_CDC_RX_RX2_RX_VOL_MIX_CTL, 0, -84, 40, digital_gain),
  2634. SOC_SINGLE_EXT("RX_COMP1 Switch", SND_SOC_NOPM, RX_MACRO_COMP1, 1, 0,
  2635. rx_macro_get_compander, rx_macro_set_compander),
  2636. SOC_SINGLE_EXT("RX_COMP2 Switch", SND_SOC_NOPM, RX_MACRO_COMP2, 1, 0,
  2637. rx_macro_get_compander, rx_macro_set_compander),
  2638. SOC_ENUM_EXT("HPH Idle Detect", hph_idle_detect_enum,
  2639. rx_macro_hph_idle_detect_get, rx_macro_hph_idle_detect_put),
  2640. SOC_ENUM_EXT("RX_EAR Mode", rx_macro_ear_mode_enum,
  2641. rx_macro_get_ear_mode, rx_macro_put_ear_mode),
  2642. SOC_ENUM_EXT("RX_HPH HD2 Mode", rx_macro_hph_hd2_mode_enum,
  2643. rx_macro_get_hph_hd2_mode, rx_macro_put_hph_hd2_mode),
  2644. SOC_ENUM_EXT("RX_HPH_PWR_MODE", rx_macro_hph_pwr_mode_enum,
  2645. rx_macro_get_hph_pwr_mode, rx_macro_put_hph_pwr_mode),
  2646. SOC_ENUM_EXT("RX_GSM mode Enable", rx_macro_vbat_bcl_gsm_mode_enum,
  2647. rx_macro_vbat_bcl_gsm_mode_func_get,
  2648. rx_macro_vbat_bcl_gsm_mode_func_put),
  2649. SOC_SINGLE_EXT("RX_Softclip Enable", SND_SOC_NOPM, 0, 1, 0,
  2650. rx_macro_soft_clip_enable_get,
  2651. rx_macro_soft_clip_enable_put),
  2652. SOC_SINGLE_EXT("AUX_HPF Enable", SND_SOC_NOPM, 0, 1, 0,
  2653. rx_macro_aux_hpf_mode_get,
  2654. rx_macro_aux_hpf_mode_put),
  2655. SOC_SINGLE_SX_TLV("IIR0 INP0 Volume",
  2656. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B1_CTL, 0, -84, 40,
  2657. digital_gain),
  2658. SOC_SINGLE_SX_TLV("IIR0 INP1 Volume",
  2659. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B2_CTL, 0, -84, 40,
  2660. digital_gain),
  2661. SOC_SINGLE_SX_TLV("IIR0 INP2 Volume",
  2662. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B3_CTL, 0, -84, 40,
  2663. digital_gain),
  2664. SOC_SINGLE_SX_TLV("IIR0 INP3 Volume",
  2665. BOLERO_CDC_RX_SIDETONE_IIR0_IIR_GAIN_B4_CTL, 0, -84, 40,
  2666. digital_gain),
  2667. SOC_SINGLE_SX_TLV("IIR1 INP0 Volume",
  2668. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B1_CTL, 0, -84, 40,
  2669. digital_gain),
  2670. SOC_SINGLE_SX_TLV("IIR1 INP1 Volume",
  2671. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B2_CTL, 0, -84, 40,
  2672. digital_gain),
  2673. SOC_SINGLE_SX_TLV("IIR1 INP2 Volume",
  2674. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B3_CTL, 0, -84, 40,
  2675. digital_gain),
  2676. SOC_SINGLE_SX_TLV("IIR1 INP3 Volume",
  2677. BOLERO_CDC_RX_SIDETONE_IIR1_IIR_GAIN_B4_CTL, 0, -84, 40,
  2678. digital_gain),
  2679. SOC_SINGLE_EXT("IIR0 Enable Band1", IIR0, BAND1, 1, 0,
  2680. rx_macro_iir_enable_audio_mixer_get,
  2681. rx_macro_iir_enable_audio_mixer_put),
  2682. SOC_SINGLE_EXT("IIR0 Enable Band2", IIR0, BAND2, 1, 0,
  2683. rx_macro_iir_enable_audio_mixer_get,
  2684. rx_macro_iir_enable_audio_mixer_put),
  2685. SOC_SINGLE_EXT("IIR0 Enable Band3", IIR0, BAND3, 1, 0,
  2686. rx_macro_iir_enable_audio_mixer_get,
  2687. rx_macro_iir_enable_audio_mixer_put),
  2688. SOC_SINGLE_EXT("IIR0 Enable Band4", IIR0, BAND4, 1, 0,
  2689. rx_macro_iir_enable_audio_mixer_get,
  2690. rx_macro_iir_enable_audio_mixer_put),
  2691. SOC_SINGLE_EXT("IIR0 Enable Band5", IIR0, BAND5, 1, 0,
  2692. rx_macro_iir_enable_audio_mixer_get,
  2693. rx_macro_iir_enable_audio_mixer_put),
  2694. SOC_SINGLE_EXT("IIR1 Enable Band1", IIR1, BAND1, 1, 0,
  2695. rx_macro_iir_enable_audio_mixer_get,
  2696. rx_macro_iir_enable_audio_mixer_put),
  2697. SOC_SINGLE_EXT("IIR1 Enable Band2", IIR1, BAND2, 1, 0,
  2698. rx_macro_iir_enable_audio_mixer_get,
  2699. rx_macro_iir_enable_audio_mixer_put),
  2700. SOC_SINGLE_EXT("IIR1 Enable Band3", IIR1, BAND3, 1, 0,
  2701. rx_macro_iir_enable_audio_mixer_get,
  2702. rx_macro_iir_enable_audio_mixer_put),
  2703. SOC_SINGLE_EXT("IIR1 Enable Band4", IIR1, BAND4, 1, 0,
  2704. rx_macro_iir_enable_audio_mixer_get,
  2705. rx_macro_iir_enable_audio_mixer_put),
  2706. SOC_SINGLE_EXT("IIR1 Enable Band5", IIR1, BAND5, 1, 0,
  2707. rx_macro_iir_enable_audio_mixer_get,
  2708. rx_macro_iir_enable_audio_mixer_put),
  2709. SOC_SINGLE_MULTI_EXT("IIR0 Band1", IIR0, BAND1, 255, 0, 5,
  2710. rx_macro_iir_band_audio_mixer_get,
  2711. rx_macro_iir_band_audio_mixer_put),
  2712. SOC_SINGLE_MULTI_EXT("IIR0 Band2", IIR0, BAND2, 255, 0, 5,
  2713. rx_macro_iir_band_audio_mixer_get,
  2714. rx_macro_iir_band_audio_mixer_put),
  2715. SOC_SINGLE_MULTI_EXT("IIR0 Band3", IIR0, BAND3, 255, 0, 5,
  2716. rx_macro_iir_band_audio_mixer_get,
  2717. rx_macro_iir_band_audio_mixer_put),
  2718. SOC_SINGLE_MULTI_EXT("IIR0 Band4", IIR0, BAND4, 255, 0, 5,
  2719. rx_macro_iir_band_audio_mixer_get,
  2720. rx_macro_iir_band_audio_mixer_put),
  2721. SOC_SINGLE_MULTI_EXT("IIR0 Band5", IIR0, BAND5, 255, 0, 5,
  2722. rx_macro_iir_band_audio_mixer_get,
  2723. rx_macro_iir_band_audio_mixer_put),
  2724. SOC_SINGLE_MULTI_EXT("IIR1 Band1", IIR1, BAND1, 255, 0, 5,
  2725. rx_macro_iir_band_audio_mixer_get,
  2726. rx_macro_iir_band_audio_mixer_put),
  2727. SOC_SINGLE_MULTI_EXT("IIR1 Band2", IIR1, BAND2, 255, 0, 5,
  2728. rx_macro_iir_band_audio_mixer_get,
  2729. rx_macro_iir_band_audio_mixer_put),
  2730. SOC_SINGLE_MULTI_EXT("IIR1 Band3", IIR1, BAND3, 255, 0, 5,
  2731. rx_macro_iir_band_audio_mixer_get,
  2732. rx_macro_iir_band_audio_mixer_put),
  2733. SOC_SINGLE_MULTI_EXT("IIR1 Band4", IIR1, BAND4, 255, 0, 5,
  2734. rx_macro_iir_band_audio_mixer_get,
  2735. rx_macro_iir_band_audio_mixer_put),
  2736. SOC_SINGLE_MULTI_EXT("IIR1 Band5", IIR1, BAND5, 255, 0, 5,
  2737. rx_macro_iir_band_audio_mixer_get,
  2738. rx_macro_iir_band_audio_mixer_put),
  2739. };
  2740. static int rx_macro_enable_echo(struct snd_soc_dapm_widget *w,
  2741. struct snd_kcontrol *kcontrol,
  2742. int event)
  2743. {
  2744. struct snd_soc_component *component =
  2745. snd_soc_dapm_to_component(w->dapm);
  2746. struct device *rx_dev = NULL;
  2747. struct rx_macro_priv *rx_priv = NULL;
  2748. u16 val = 0, ec_hq_reg = 0;
  2749. int ec_tx = 0;
  2750. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  2751. return -EINVAL;
  2752. dev_dbg(rx_dev, "%s %d %s\n", __func__, event, w->name);
  2753. val = snd_soc_component_read32(component,
  2754. BOLERO_CDC_RX_INP_MUX_RX_MIX_CFG4);
  2755. if (!(strcmp(w->name, "RX MIX TX0 MUX")))
  2756. ec_tx = ((val & 0xf0) >> 0x4) - 1;
  2757. else if (!(strcmp(w->name, "RX MIX TX1 MUX")))
  2758. ec_tx = (val & 0x0f) - 1;
  2759. val = snd_soc_component_read32(component,
  2760. BOLERO_CDC_RX_INP_MUX_RX_MIX_CFG5);
  2761. if (!(strcmp(w->name, "RX MIX TX2 MUX")))
  2762. ec_tx = (val & 0x0f) - 1;
  2763. if (ec_tx < 0 || (ec_tx >= RX_MACRO_EC_MUX_MAX)) {
  2764. dev_err(rx_dev, "%s: EC mix control not set correctly\n",
  2765. __func__);
  2766. return -EINVAL;
  2767. }
  2768. ec_hq_reg = BOLERO_CDC_RX_EC_REF_HQ0_EC_REF_HQ_PATH_CTL +
  2769. 0x40 * ec_tx;
  2770. snd_soc_component_update_bits(component, ec_hq_reg, 0x01, 0x01);
  2771. ec_hq_reg = BOLERO_CDC_RX_EC_REF_HQ0_EC_REF_HQ_CFG0 +
  2772. 0x40 * ec_tx;
  2773. /* default set to 48k */
  2774. snd_soc_component_update_bits(component, ec_hq_reg, 0x1E, 0x08);
  2775. return 0;
  2776. }
  2777. static const struct snd_soc_dapm_widget rx_macro_dapm_widgets[] = {
  2778. SND_SOC_DAPM_AIF_IN("RX AIF1 PB", "RX_MACRO_AIF1 Playback", 0,
  2779. SND_SOC_NOPM, 0, 0),
  2780. SND_SOC_DAPM_AIF_IN("RX AIF2 PB", "RX_MACRO_AIF2 Playback", 0,
  2781. SND_SOC_NOPM, 0, 0),
  2782. SND_SOC_DAPM_AIF_IN("RX AIF3 PB", "RX_MACRO_AIF3 Playback", 0,
  2783. SND_SOC_NOPM, 0, 0),
  2784. SND_SOC_DAPM_AIF_IN("RX AIF4 PB", "RX_MACRO_AIF4 Playback", 0,
  2785. SND_SOC_NOPM, 0, 0),
  2786. SND_SOC_DAPM_AIF_OUT("RX AIF_ECHO", "RX_AIF_ECHO Capture", 0,
  2787. SND_SOC_NOPM, 0, 0),
  2788. RX_MACRO_DAPM_MUX("RX_MACRO RX0 MUX", RX_MACRO_RX0, rx_macro_rx0),
  2789. RX_MACRO_DAPM_MUX("RX_MACRO RX1 MUX", RX_MACRO_RX1, rx_macro_rx1),
  2790. RX_MACRO_DAPM_MUX("RX_MACRO RX2 MUX", RX_MACRO_RX2, rx_macro_rx2),
  2791. RX_MACRO_DAPM_MUX("RX_MACRO RX3 MUX", RX_MACRO_RX3, rx_macro_rx3),
  2792. RX_MACRO_DAPM_MUX("RX_MACRO RX4 MUX", RX_MACRO_RX4, rx_macro_rx4),
  2793. RX_MACRO_DAPM_MUX("RX_MACRO RX5 MUX", RX_MACRO_RX5, rx_macro_rx5),
  2794. SND_SOC_DAPM_MIXER("RX_RX0", SND_SOC_NOPM, 0, 0, NULL, 0),
  2795. SND_SOC_DAPM_MIXER("RX_RX1", SND_SOC_NOPM, 0, 0, NULL, 0),
  2796. SND_SOC_DAPM_MIXER("RX_RX2", SND_SOC_NOPM, 0, 0, NULL, 0),
  2797. SND_SOC_DAPM_MIXER("RX_RX3", SND_SOC_NOPM, 0, 0, NULL, 0),
  2798. SND_SOC_DAPM_MIXER("RX_RX4", SND_SOC_NOPM, 0, 0, NULL, 0),
  2799. SND_SOC_DAPM_MIXER("RX_RX5", SND_SOC_NOPM, 0, 0, NULL, 0),
  2800. RX_MACRO_DAPM_MUX("IIR0 INP0 MUX", 0, iir0_inp0),
  2801. RX_MACRO_DAPM_MUX("IIR0 INP1 MUX", 0, iir0_inp1),
  2802. RX_MACRO_DAPM_MUX("IIR0 INP2 MUX", 0, iir0_inp2),
  2803. RX_MACRO_DAPM_MUX("IIR0 INP3 MUX", 0, iir0_inp3),
  2804. RX_MACRO_DAPM_MUX("IIR1 INP0 MUX", 0, iir1_inp0),
  2805. RX_MACRO_DAPM_MUX("IIR1 INP1 MUX", 0, iir1_inp1),
  2806. RX_MACRO_DAPM_MUX("IIR1 INP2 MUX", 0, iir1_inp2),
  2807. RX_MACRO_DAPM_MUX("IIR1 INP3 MUX", 0, iir1_inp3),
  2808. SND_SOC_DAPM_MUX_E("RX MIX TX0 MUX", SND_SOC_NOPM,
  2809. RX_MACRO_EC0_MUX, 0,
  2810. &rx_mix_tx0_mux, rx_macro_enable_echo,
  2811. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2812. SND_SOC_DAPM_MUX_E("RX MIX TX1 MUX", SND_SOC_NOPM,
  2813. RX_MACRO_EC1_MUX, 0,
  2814. &rx_mix_tx1_mux, rx_macro_enable_echo,
  2815. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2816. SND_SOC_DAPM_MUX_E("RX MIX TX2 MUX", SND_SOC_NOPM,
  2817. RX_MACRO_EC2_MUX, 0,
  2818. &rx_mix_tx2_mux, rx_macro_enable_echo,
  2819. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2820. SND_SOC_DAPM_MIXER_E("IIR0", BOLERO_CDC_RX_SIDETONE_IIR0_IIR_PATH_CTL,
  2821. 4, 0, NULL, 0, rx_macro_set_iir_gain,
  2822. SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
  2823. SND_SOC_DAPM_MIXER_E("IIR1", BOLERO_CDC_RX_SIDETONE_IIR1_IIR_PATH_CTL,
  2824. 4, 0, NULL, 0, rx_macro_set_iir_gain,
  2825. SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
  2826. SND_SOC_DAPM_MIXER("SRC0", BOLERO_CDC_RX_SIDETONE_SRC0_ST_SRC_PATH_CTL,
  2827. 4, 0, NULL, 0),
  2828. SND_SOC_DAPM_MIXER("SRC1", BOLERO_CDC_RX_SIDETONE_SRC1_ST_SRC_PATH_CTL,
  2829. 4, 0, NULL, 0),
  2830. RX_MACRO_DAPM_MUX("RX INT0 DEM MUX", 0, rx_int0_dem_inp),
  2831. RX_MACRO_DAPM_MUX("RX INT1 DEM MUX", 0, rx_int1_dem_inp),
  2832. SND_SOC_DAPM_MUX_E("RX INT0_2 MUX", SND_SOC_NOPM, INTERP_HPHL, 0,
  2833. &rx_int0_2_mux, rx_macro_enable_mix_path,
  2834. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2835. SND_SOC_DAPM_POST_PMD),
  2836. SND_SOC_DAPM_MUX_E("RX INT1_2 MUX", SND_SOC_NOPM, INTERP_HPHR, 0,
  2837. &rx_int1_2_mux, rx_macro_enable_mix_path,
  2838. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2839. SND_SOC_DAPM_POST_PMD),
  2840. SND_SOC_DAPM_MUX_E("RX INT2_2 MUX", SND_SOC_NOPM, INTERP_AUX, 0,
  2841. &rx_int2_2_mux, rx_macro_enable_mix_path,
  2842. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2843. SND_SOC_DAPM_POST_PMD),
  2844. RX_MACRO_DAPM_MUX("RX INT0_1 MIX1 INP0", 0, rx_int0_1_mix_inp0),
  2845. RX_MACRO_DAPM_MUX("RX INT0_1 MIX1 INP1", 0, rx_int0_1_mix_inp1),
  2846. RX_MACRO_DAPM_MUX("RX INT0_1 MIX1 INP2", 0, rx_int0_1_mix_inp2),
  2847. RX_MACRO_DAPM_MUX("RX INT1_1 MIX1 INP0", 0, rx_int1_1_mix_inp0),
  2848. RX_MACRO_DAPM_MUX("RX INT1_1 MIX1 INP1", 0, rx_int1_1_mix_inp1),
  2849. RX_MACRO_DAPM_MUX("RX INT1_1 MIX1 INP2", 0, rx_int1_1_mix_inp2),
  2850. RX_MACRO_DAPM_MUX("RX INT2_1 MIX1 INP0", 0, rx_int2_1_mix_inp0),
  2851. RX_MACRO_DAPM_MUX("RX INT2_1 MIX1 INP1", 0, rx_int2_1_mix_inp1),
  2852. RX_MACRO_DAPM_MUX("RX INT2_1 MIX1 INP2", 0, rx_int2_1_mix_inp2),
  2853. SND_SOC_DAPM_MUX_E("RX INT0_1 INTERP", SND_SOC_NOPM, INTERP_HPHL, 0,
  2854. &rx_int0_1_interp_mux, rx_macro_enable_main_path,
  2855. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2856. SND_SOC_DAPM_POST_PMD),
  2857. SND_SOC_DAPM_MUX_E("RX INT1_1 INTERP", SND_SOC_NOPM, INTERP_HPHR, 0,
  2858. &rx_int1_1_interp_mux, rx_macro_enable_main_path,
  2859. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2860. SND_SOC_DAPM_POST_PMD),
  2861. SND_SOC_DAPM_MUX_E("RX INT2_1 INTERP", SND_SOC_NOPM, INTERP_AUX, 0,
  2862. &rx_int2_1_interp_mux, rx_macro_enable_main_path,
  2863. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  2864. SND_SOC_DAPM_POST_PMD),
  2865. RX_MACRO_DAPM_MUX("RX INT0_2 INTERP", 0, rx_int0_2_interp),
  2866. RX_MACRO_DAPM_MUX("RX INT1_2 INTERP", 0, rx_int1_2_interp),
  2867. RX_MACRO_DAPM_MUX("RX INT2_2 INTERP", 0, rx_int2_2_interp),
  2868. SND_SOC_DAPM_MIXER("RX INT0_1 MIX1", SND_SOC_NOPM, 0, 0, NULL, 0),
  2869. SND_SOC_DAPM_MIXER("RX INT0 SEC MIX", SND_SOC_NOPM, 0, 0, NULL, 0),
  2870. SND_SOC_DAPM_MIXER("RX INT1_1 MIX1", SND_SOC_NOPM, 0, 0, NULL, 0),
  2871. SND_SOC_DAPM_MIXER("RX INT1 SEC MIX", SND_SOC_NOPM, 0, 0, NULL, 0),
  2872. SND_SOC_DAPM_MIXER("RX INT2_1 MIX1", SND_SOC_NOPM, 0, 0, NULL, 0),
  2873. SND_SOC_DAPM_MIXER("RX INT2 SEC MIX", SND_SOC_NOPM, 0, 0, NULL, 0),
  2874. SND_SOC_DAPM_MUX_E("RX INT0 MIX2 INP", SND_SOC_NOPM, INTERP_HPHL,
  2875. 0, &rx_int0_mix2_inp_mux, rx_macro_enable_rx_path_clk,
  2876. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2877. SND_SOC_DAPM_MUX_E("RX INT1 MIX2 INP", SND_SOC_NOPM, INTERP_HPHR,
  2878. 0, &rx_int1_mix2_inp_mux, rx_macro_enable_rx_path_clk,
  2879. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2880. SND_SOC_DAPM_MUX_E("RX INT2 MIX2 INP", SND_SOC_NOPM, INTERP_AUX,
  2881. 0, &rx_int2_mix2_inp_mux, rx_macro_enable_rx_path_clk,
  2882. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2883. SND_SOC_DAPM_MIXER_E("RX INT2_1 VBAT", SND_SOC_NOPM,
  2884. 0, 0, rx_int2_1_vbat_mix_switch,
  2885. ARRAY_SIZE(rx_int2_1_vbat_mix_switch),
  2886. rx_macro_enable_vbat,
  2887. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2888. SND_SOC_DAPM_MIXER("RX INT0 MIX2", SND_SOC_NOPM, 0, 0, NULL, 0),
  2889. SND_SOC_DAPM_MIXER("RX INT1 MIX2", SND_SOC_NOPM, 0, 0, NULL, 0),
  2890. SND_SOC_DAPM_MIXER("RX INT2 MIX2", SND_SOC_NOPM, 0, 0, NULL, 0),
  2891. SND_SOC_DAPM_OUTPUT("HPHL_OUT"),
  2892. SND_SOC_DAPM_OUTPUT("HPHR_OUT"),
  2893. SND_SOC_DAPM_OUTPUT("AUX_OUT"),
  2894. SND_SOC_DAPM_INPUT("RX_TX DEC0_INP"),
  2895. SND_SOC_DAPM_INPUT("RX_TX DEC1_INP"),
  2896. SND_SOC_DAPM_INPUT("RX_TX DEC2_INP"),
  2897. SND_SOC_DAPM_INPUT("RX_TX DEC3_INP"),
  2898. SND_SOC_DAPM_SUPPLY_S("RX_MCLK", 0, SND_SOC_NOPM, 0, 0,
  2899. rx_macro_mclk_event, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  2900. };
  2901. static const struct snd_soc_dapm_route rx_audio_map[] = {
  2902. {"RX AIF1 PB", NULL, "RX_MCLK"},
  2903. {"RX AIF2 PB", NULL, "RX_MCLK"},
  2904. {"RX AIF3 PB", NULL, "RX_MCLK"},
  2905. {"RX AIF4 PB", NULL, "RX_MCLK"},
  2906. {"RX_MACRO RX0 MUX", "AIF1_PB", "RX AIF1 PB"},
  2907. {"RX_MACRO RX1 MUX", "AIF1_PB", "RX AIF1 PB"},
  2908. {"RX_MACRO RX2 MUX", "AIF1_PB", "RX AIF1 PB"},
  2909. {"RX_MACRO RX3 MUX", "AIF1_PB", "RX AIF1 PB"},
  2910. {"RX_MACRO RX4 MUX", "AIF1_PB", "RX AIF1 PB"},
  2911. {"RX_MACRO RX5 MUX", "AIF1_PB", "RX AIF1 PB"},
  2912. {"RX_MACRO RX0 MUX", "AIF2_PB", "RX AIF2 PB"},
  2913. {"RX_MACRO RX1 MUX", "AIF2_PB", "RX AIF2 PB"},
  2914. {"RX_MACRO RX2 MUX", "AIF2_PB", "RX AIF2 PB"},
  2915. {"RX_MACRO RX3 MUX", "AIF2_PB", "RX AIF2 PB"},
  2916. {"RX_MACRO RX4 MUX", "AIF2_PB", "RX AIF2 PB"},
  2917. {"RX_MACRO RX5 MUX", "AIF2_PB", "RX AIF2 PB"},
  2918. {"RX_MACRO RX0 MUX", "AIF3_PB", "RX AIF3 PB"},
  2919. {"RX_MACRO RX1 MUX", "AIF3_PB", "RX AIF3 PB"},
  2920. {"RX_MACRO RX2 MUX", "AIF3_PB", "RX AIF3 PB"},
  2921. {"RX_MACRO RX3 MUX", "AIF3_PB", "RX AIF3 PB"},
  2922. {"RX_MACRO RX4 MUX", "AIF3_PB", "RX AIF3 PB"},
  2923. {"RX_MACRO RX5 MUX", "AIF3_PB", "RX AIF3 PB"},
  2924. {"RX_MACRO RX0 MUX", "AIF4_PB", "RX AIF4 PB"},
  2925. {"RX_MACRO RX1 MUX", "AIF4_PB", "RX AIF4 PB"},
  2926. {"RX_MACRO RX2 MUX", "AIF4_PB", "RX AIF4 PB"},
  2927. {"RX_MACRO RX3 MUX", "AIF4_PB", "RX AIF4 PB"},
  2928. {"RX_MACRO RX4 MUX", "AIF4_PB", "RX AIF4 PB"},
  2929. {"RX_MACRO RX5 MUX", "AIF4_PB", "RX AIF4 PB"},
  2930. {"RX_RX0", NULL, "RX_MACRO RX0 MUX"},
  2931. {"RX_RX1", NULL, "RX_MACRO RX1 MUX"},
  2932. {"RX_RX2", NULL, "RX_MACRO RX2 MUX"},
  2933. {"RX_RX3", NULL, "RX_MACRO RX3 MUX"},
  2934. {"RX_RX4", NULL, "RX_MACRO RX4 MUX"},
  2935. {"RX_RX5", NULL, "RX_MACRO RX5 MUX"},
  2936. {"RX INT0_1 MIX1 INP0", "RX0", "RX_RX0"},
  2937. {"RX INT0_1 MIX1 INP0", "RX1", "RX_RX1"},
  2938. {"RX INT0_1 MIX1 INP0", "RX2", "RX_RX2"},
  2939. {"RX INT0_1 MIX1 INP0", "RX3", "RX_RX3"},
  2940. {"RX INT0_1 MIX1 INP0", "RX4", "RX_RX4"},
  2941. {"RX INT0_1 MIX1 INP0", "RX5", "RX_RX5"},
  2942. {"RX INT0_1 MIX1 INP0", "IIR0", "IIR0"},
  2943. {"RX INT0_1 MIX1 INP0", "IIR1", "IIR1"},
  2944. {"RX INT0_1 MIX1 INP0", "DEC0", "RX_TX DEC0_INP"},
  2945. {"RX INT0_1 MIX1 INP0", "DEC1", "RX_TX DEC1_INP"},
  2946. {"RX INT0_1 MIX1 INP1", "RX0", "RX_RX0"},
  2947. {"RX INT0_1 MIX1 INP1", "RX1", "RX_RX1"},
  2948. {"RX INT0_1 MIX1 INP1", "RX2", "RX_RX2"},
  2949. {"RX INT0_1 MIX1 INP1", "RX3", "RX_RX3"},
  2950. {"RX INT0_1 MIX1 INP1", "RX4", "RX_RX4"},
  2951. {"RX INT0_1 MIX1 INP1", "RX5", "RX_RX5"},
  2952. {"RX INT0_1 MIX1 INP1", "IIR0", "IIR0"},
  2953. {"RX INT0_1 MIX1 INP1", "IIR1", "IIR1"},
  2954. {"RX INT0_1 MIX1 INP1", "DEC0", "RX_TX DEC0_INP"},
  2955. {"RX INT0_1 MIX1 INP1", "DEC1", "RX_TX DEC1_INP"},
  2956. {"RX INT0_1 MIX1 INP2", "RX0", "RX_RX0"},
  2957. {"RX INT0_1 MIX1 INP2", "RX1", "RX_RX1"},
  2958. {"RX INT0_1 MIX1 INP2", "RX2", "RX_RX2"},
  2959. {"RX INT0_1 MIX1 INP2", "RX3", "RX_RX3"},
  2960. {"RX INT0_1 MIX1 INP2", "RX4", "RX_RX4"},
  2961. {"RX INT0_1 MIX1 INP2", "RX5", "RX_RX5"},
  2962. {"RX INT0_1 MIX1 INP2", "IIR0", "IIR0"},
  2963. {"RX INT0_1 MIX1 INP2", "IIR1", "IIR1"},
  2964. {"RX INT0_1 MIX1 INP2", "DEC0", "RX_TX DEC0_INP"},
  2965. {"RX INT0_1 MIX1 INP2", "DEC1", "RX_TX DEC1_INP"},
  2966. {"RX INT1_1 MIX1 INP0", "RX0", "RX_RX0"},
  2967. {"RX INT1_1 MIX1 INP0", "RX1", "RX_RX1"},
  2968. {"RX INT1_1 MIX1 INP0", "RX2", "RX_RX2"},
  2969. {"RX INT1_1 MIX1 INP0", "RX3", "RX_RX3"},
  2970. {"RX INT1_1 MIX1 INP0", "RX4", "RX_RX4"},
  2971. {"RX INT1_1 MIX1 INP0", "RX5", "RX_RX5"},
  2972. {"RX INT1_1 MIX1 INP0", "IIR0", "IIR0"},
  2973. {"RX INT1_1 MIX1 INP0", "IIR1", "IIR1"},
  2974. {"RX INT1_1 MIX1 INP0", "DEC0", "RX_TX DEC0_INP"},
  2975. {"RX INT1_1 MIX1 INP0", "DEC1", "RX_TX DEC1_INP"},
  2976. {"RX INT1_1 MIX1 INP1", "RX0", "RX_RX0"},
  2977. {"RX INT1_1 MIX1 INP1", "RX1", "RX_RX1"},
  2978. {"RX INT1_1 MIX1 INP1", "RX2", "RX_RX2"},
  2979. {"RX INT1_1 MIX1 INP1", "RX3", "RX_RX3"},
  2980. {"RX INT1_1 MIX1 INP1", "RX4", "RX_RX4"},
  2981. {"RX INT1_1 MIX1 INP1", "RX5", "RX_RX5"},
  2982. {"RX INT1_1 MIX1 INP1", "IIR0", "IIR0"},
  2983. {"RX INT1_1 MIX1 INP1", "IIR1", "IIR1"},
  2984. {"RX INT1_1 MIX1 INP1", "DEC0", "RX_TX DEC0_INP"},
  2985. {"RX INT1_1 MIX1 INP1", "DEC1", "RX_TX DEC1_INP"},
  2986. {"RX INT1_1 MIX1 INP2", "RX0", "RX_RX0"},
  2987. {"RX INT1_1 MIX1 INP2", "RX1", "RX_RX1"},
  2988. {"RX INT1_1 MIX1 INP2", "RX2", "RX_RX2"},
  2989. {"RX INT1_1 MIX1 INP2", "RX3", "RX_RX3"},
  2990. {"RX INT1_1 MIX1 INP2", "RX4", "RX_RX4"},
  2991. {"RX INT1_1 MIX1 INP2", "RX5", "RX_RX5"},
  2992. {"RX INT1_1 MIX1 INP2", "IIR0", "IIR0"},
  2993. {"RX INT1_1 MIX1 INP2", "IIR1", "IIR1"},
  2994. {"RX INT1_1 MIX1 INP2", "DEC0", "RX_TX DEC0_INP"},
  2995. {"RX INT1_1 MIX1 INP2", "DEC1", "RX_TX DEC1_INP"},
  2996. {"RX INT2_1 MIX1 INP0", "RX0", "RX_RX0"},
  2997. {"RX INT2_1 MIX1 INP0", "RX1", "RX_RX1"},
  2998. {"RX INT2_1 MIX1 INP0", "RX2", "RX_RX2"},
  2999. {"RX INT2_1 MIX1 INP0", "RX3", "RX_RX3"},
  3000. {"RX INT2_1 MIX1 INP0", "RX4", "RX_RX4"},
  3001. {"RX INT2_1 MIX1 INP0", "RX5", "RX_RX5"},
  3002. {"RX INT2_1 MIX1 INP0", "IIR0", "IIR0"},
  3003. {"RX INT2_1 MIX1 INP0", "IIR1", "IIR1"},
  3004. {"RX INT2_1 MIX1 INP0", "DEC0", "RX_TX DEC0_INP"},
  3005. {"RX INT2_1 MIX1 INP0", "DEC1", "RX_TX DEC1_INP"},
  3006. {"RX INT2_1 MIX1 INP1", "RX0", "RX_RX0"},
  3007. {"RX INT2_1 MIX1 INP1", "RX1", "RX_RX1"},
  3008. {"RX INT2_1 MIX1 INP1", "RX2", "RX_RX2"},
  3009. {"RX INT2_1 MIX1 INP1", "RX3", "RX_RX3"},
  3010. {"RX INT2_1 MIX1 INP1", "RX4", "RX_RX4"},
  3011. {"RX INT2_1 MIX1 INP1", "RX5", "RX_RX5"},
  3012. {"RX INT2_1 MIX1 INP1", "IIR0", "IIR0"},
  3013. {"RX INT2_1 MIX1 INP1", "IIR1", "IIR1"},
  3014. {"RX INT2_1 MIX1 INP1", "DEC0", "RX_TX DEC0_INP"},
  3015. {"RX INT2_1 MIX1 INP1", "DEC1", "RX_TX DEC1_INP"},
  3016. {"RX INT2_1 MIX1 INP2", "RX0", "RX_RX0"},
  3017. {"RX INT2_1 MIX1 INP2", "RX1", "RX_RX1"},
  3018. {"RX INT2_1 MIX1 INP2", "RX2", "RX_RX2"},
  3019. {"RX INT2_1 MIX1 INP2", "RX3", "RX_RX3"},
  3020. {"RX INT2_1 MIX1 INP2", "RX4", "RX_RX4"},
  3021. {"RX INT2_1 MIX1 INP2", "RX5", "RX_RX5"},
  3022. {"RX INT2_1 MIX1 INP2", "IIR0", "IIR0"},
  3023. {"RX INT2_1 MIX1 INP2", "IIR1", "IIR1"},
  3024. {"RX INT2_1 MIX1 INP2", "DEC0", "RX_TX DEC0_INP"},
  3025. {"RX INT2_1 MIX1 INP2", "DEC1", "RX_TX DEC1_INP"},
  3026. {"RX INT0_1 MIX1", NULL, "RX INT0_1 MIX1 INP0"},
  3027. {"RX INT0_1 MIX1", NULL, "RX INT0_1 MIX1 INP1"},
  3028. {"RX INT0_1 MIX1", NULL, "RX INT0_1 MIX1 INP2"},
  3029. {"RX INT1_1 MIX1", NULL, "RX INT1_1 MIX1 INP0"},
  3030. {"RX INT1_1 MIX1", NULL, "RX INT1_1 MIX1 INP1"},
  3031. {"RX INT1_1 MIX1", NULL, "RX INT1_1 MIX1 INP2"},
  3032. {"RX INT2_1 MIX1", NULL, "RX INT2_1 MIX1 INP0"},
  3033. {"RX INT2_1 MIX1", NULL, "RX INT2_1 MIX1 INP1"},
  3034. {"RX INT2_1 MIX1", NULL, "RX INT2_1 MIX1 INP2"},
  3035. {"RX MIX TX0 MUX", "RX_MIX0", "RX INT0 SEC MIX"},
  3036. {"RX MIX TX0 MUX", "RX_MIX1", "RX INT1 SEC MIX"},
  3037. {"RX MIX TX0 MUX", "RX_MIX2", "RX INT2 SEC MIX"},
  3038. {"RX MIX TX1 MUX", "RX_MIX0", "RX INT0 SEC MIX"},
  3039. {"RX MIX TX1 MUX", "RX_MIX1", "RX INT1 SEC MIX"},
  3040. {"RX MIX TX1 MUX", "RX_MIX2", "RX INT2 SEC MIX"},
  3041. {"RX MIX TX2 MUX", "RX_MIX0", "RX INT0 SEC MIX"},
  3042. {"RX MIX TX2 MUX", "RX_MIX1", "RX INT1 SEC MIX"},
  3043. {"RX MIX TX2 MUX", "RX_MIX2", "RX INT2 SEC MIX"},
  3044. {"RX AIF_ECHO", NULL, "RX MIX TX0 MUX"},
  3045. {"RX AIF_ECHO", NULL, "RX MIX TX1 MUX"},
  3046. {"RX AIF_ECHO", NULL, "RX MIX TX2 MUX"},
  3047. {"RX AIF_ECHO", NULL, "RX_MCLK"},
  3048. /* Mixing path INT0 */
  3049. {"RX INT0_2 MUX", "RX0", "RX_RX0"},
  3050. {"RX INT0_2 MUX", "RX1", "RX_RX1"},
  3051. {"RX INT0_2 MUX", "RX2", "RX_RX2"},
  3052. {"RX INT0_2 MUX", "RX3", "RX_RX3"},
  3053. {"RX INT0_2 MUX", "RX4", "RX_RX4"},
  3054. {"RX INT0_2 MUX", "RX5", "RX_RX5"},
  3055. {"RX INT0_2 INTERP", NULL, "RX INT0_2 MUX"},
  3056. {"RX INT0 SEC MIX", NULL, "RX INT0_2 INTERP"},
  3057. /* Mixing path INT1 */
  3058. {"RX INT1_2 MUX", "RX0", "RX_RX0"},
  3059. {"RX INT1_2 MUX", "RX1", "RX_RX1"},
  3060. {"RX INT1_2 MUX", "RX2", "RX_RX2"},
  3061. {"RX INT1_2 MUX", "RX3", "RX_RX3"},
  3062. {"RX INT1_2 MUX", "RX4", "RX_RX4"},
  3063. {"RX INT1_2 MUX", "RX5", "RX_RX5"},
  3064. {"RX INT1_2 INTERP", NULL, "RX INT1_2 MUX"},
  3065. {"RX INT1 SEC MIX", NULL, "RX INT1_2 INTERP"},
  3066. /* Mixing path INT2 */
  3067. {"RX INT2_2 MUX", "RX0", "RX_RX0"},
  3068. {"RX INT2_2 MUX", "RX1", "RX_RX1"},
  3069. {"RX INT2_2 MUX", "RX2", "RX_RX2"},
  3070. {"RX INT2_2 MUX", "RX3", "RX_RX3"},
  3071. {"RX INT2_2 MUX", "RX4", "RX_RX4"},
  3072. {"RX INT2_2 MUX", "RX5", "RX_RX5"},
  3073. {"RX INT2_2 INTERP", NULL, "RX INT2_2 MUX"},
  3074. {"RX INT2 SEC MIX", NULL, "RX INT2_2 INTERP"},
  3075. {"RX INT0_1 INTERP", NULL, "RX INT0_1 MIX1"},
  3076. {"RX INT0 SEC MIX", NULL, "RX INT0_1 INTERP"},
  3077. {"RX INT0 MIX2", NULL, "RX INT0 SEC MIX"},
  3078. {"RX INT0 MIX2", NULL, "RX INT0 MIX2 INP"},
  3079. {"RX INT0 DEM MUX", "CLSH_DSM_OUT", "RX INT0 MIX2"},
  3080. {"HPHL_OUT", NULL, "RX INT0 DEM MUX"},
  3081. {"HPHL_OUT", NULL, "RX_MCLK"},
  3082. {"RX INT1_1 INTERP", NULL, "RX INT1_1 MIX1"},
  3083. {"RX INT1 SEC MIX", NULL, "RX INT1_1 INTERP"},
  3084. {"RX INT1 MIX2", NULL, "RX INT1 SEC MIX"},
  3085. {"RX INT1 MIX2", NULL, "RX INT1 MIX2 INP"},
  3086. {"RX INT1 DEM MUX", "CLSH_DSM_OUT", "RX INT1 MIX2"},
  3087. {"HPHR_OUT", NULL, "RX INT1 DEM MUX"},
  3088. {"HPHR_OUT", NULL, "RX_MCLK"},
  3089. {"RX INT2_1 INTERP", NULL, "RX INT2_1 MIX1"},
  3090. {"RX INT2_1 VBAT", "RX AUX VBAT Enable", "RX INT2_1 INTERP"},
  3091. {"RX INT2 SEC MIX", NULL, "RX INT2_1 VBAT"},
  3092. {"RX INT2 SEC MIX", NULL, "RX INT2_1 INTERP"},
  3093. {"RX INT2 MIX2", NULL, "RX INT2 SEC MIX"},
  3094. {"RX INT2 MIX2", NULL, "RX INT2 MIX2 INP"},
  3095. {"AUX_OUT", NULL, "RX INT2 MIX2"},
  3096. {"AUX_OUT", NULL, "RX_MCLK"},
  3097. {"IIR0", NULL, "RX_MCLK"},
  3098. {"IIR0", NULL, "IIR0 INP0 MUX"},
  3099. {"IIR0 INP0 MUX", "DEC0", "RX_TX DEC0_INP"},
  3100. {"IIR0 INP0 MUX", "DEC1", "RX_TX DEC1_INP"},
  3101. {"IIR0 INP0 MUX", "DEC2", "RX_TX DEC2_INP"},
  3102. {"IIR0 INP0 MUX", "DEC3", "RX_TX DEC3_INP"},
  3103. {"IIR0 INP0 MUX", "RX0", "RX_RX0"},
  3104. {"IIR0 INP0 MUX", "RX1", "RX_RX1"},
  3105. {"IIR0 INP0 MUX", "RX2", "RX_RX2"},
  3106. {"IIR0 INP0 MUX", "RX3", "RX_RX3"},
  3107. {"IIR0 INP0 MUX", "RX4", "RX_RX4"},
  3108. {"IIR0 INP0 MUX", "RX5", "RX_RX5"},
  3109. {"IIR0", NULL, "IIR0 INP1 MUX"},
  3110. {"IIR0 INP1 MUX", "DEC0", "RX_TX DEC0_INP"},
  3111. {"IIR0 INP1 MUX", "DEC1", "RX_TX DEC1_INP"},
  3112. {"IIR0 INP1 MUX", "DEC2", "RX_TX DEC2_INP"},
  3113. {"IIR0 INP1 MUX", "DEC3", "RX_TX DEC3_INP"},
  3114. {"IIR0 INP1 MUX", "RX0", "RX_RX0"},
  3115. {"IIR0 INP1 MUX", "RX1", "RX_RX1"},
  3116. {"IIR0 INP1 MUX", "RX2", "RX_RX2"},
  3117. {"IIR0 INP1 MUX", "RX3", "RX_RX3"},
  3118. {"IIR0 INP1 MUX", "RX4", "RX_RX4"},
  3119. {"IIR0 INP1 MUX", "RX5", "RX_RX5"},
  3120. {"IIR0", NULL, "IIR0 INP2 MUX"},
  3121. {"IIR0 INP2 MUX", "DEC0", "RX_TX DEC0_INP"},
  3122. {"IIR0 INP2 MUX", "DEC1", "RX_TX DEC1_INP"},
  3123. {"IIR0 INP2 MUX", "DEC2", "RX_TX DEC2_INP"},
  3124. {"IIR0 INP2 MUX", "DEC3", "RX_TX DEC3_INP"},
  3125. {"IIR0 INP2 MUX", "RX0", "RX_RX0"},
  3126. {"IIR0 INP2 MUX", "RX1", "RX_RX1"},
  3127. {"IIR0 INP2 MUX", "RX2", "RX_RX2"},
  3128. {"IIR0 INP2 MUX", "RX3", "RX_RX3"},
  3129. {"IIR0 INP2 MUX", "RX4", "RX_RX4"},
  3130. {"IIR0 INP2 MUX", "RX5", "RX_RX5"},
  3131. {"IIR0", NULL, "IIR0 INP3 MUX"},
  3132. {"IIR0 INP3 MUX", "DEC0", "RX_TX DEC0_INP"},
  3133. {"IIR0 INP3 MUX", "DEC1", "RX_TX DEC1_INP"},
  3134. {"IIR0 INP3 MUX", "DEC2", "RX_TX DEC2_INP"},
  3135. {"IIR0 INP3 MUX", "DEC3", "RX_TX DEC3_INP"},
  3136. {"IIR0 INP3 MUX", "RX0", "RX_RX0"},
  3137. {"IIR0 INP3 MUX", "RX1", "RX_RX1"},
  3138. {"IIR0 INP3 MUX", "RX2", "RX_RX2"},
  3139. {"IIR0 INP3 MUX", "RX3", "RX_RX3"},
  3140. {"IIR0 INP3 MUX", "RX4", "RX_RX4"},
  3141. {"IIR0 INP3 MUX", "RX5", "RX_RX5"},
  3142. {"IIR1", NULL, "RX_MCLK"},
  3143. {"IIR1", NULL, "IIR1 INP0 MUX"},
  3144. {"IIR1 INP0 MUX", "DEC0", "RX_TX DEC0_INP"},
  3145. {"IIR1 INP0 MUX", "DEC1", "RX_TX DEC1_INP"},
  3146. {"IIR1 INP0 MUX", "DEC2", "RX_TX DEC2_INP"},
  3147. {"IIR1 INP0 MUX", "DEC3", "RX_TX DEC3_INP"},
  3148. {"IIR1 INP0 MUX", "RX0", "RX_RX0"},
  3149. {"IIR1 INP0 MUX", "RX1", "RX_RX1"},
  3150. {"IIR1 INP0 MUX", "RX2", "RX_RX2"},
  3151. {"IIR1 INP0 MUX", "RX3", "RX_RX3"},
  3152. {"IIR1 INP0 MUX", "RX4", "RX_RX4"},
  3153. {"IIR1 INP0 MUX", "RX5", "RX_RX5"},
  3154. {"IIR1", NULL, "IIR1 INP1 MUX"},
  3155. {"IIR1 INP1 MUX", "DEC0", "RX_TX DEC0_INP"},
  3156. {"IIR1 INP1 MUX", "DEC1", "RX_TX DEC1_INP"},
  3157. {"IIR1 INP1 MUX", "DEC2", "RX_TX DEC2_INP"},
  3158. {"IIR1 INP1 MUX", "DEC3", "RX_TX DEC3_INP"},
  3159. {"IIR1 INP1 MUX", "RX0", "RX_RX0"},
  3160. {"IIR1 INP1 MUX", "RX1", "RX_RX1"},
  3161. {"IIR1 INP1 MUX", "RX2", "RX_RX2"},
  3162. {"IIR1 INP1 MUX", "RX3", "RX_RX3"},
  3163. {"IIR1 INP1 MUX", "RX4", "RX_RX4"},
  3164. {"IIR1 INP1 MUX", "RX5", "RX_RX5"},
  3165. {"IIR1", NULL, "IIR1 INP2 MUX"},
  3166. {"IIR1 INP2 MUX", "DEC0", "RX_TX DEC0_INP"},
  3167. {"IIR1 INP2 MUX", "DEC1", "RX_TX DEC1_INP"},
  3168. {"IIR1 INP2 MUX", "DEC2", "RX_TX DEC2_INP"},
  3169. {"IIR1 INP2 MUX", "DEC3", "RX_TX DEC3_INP"},
  3170. {"IIR1 INP2 MUX", "RX0", "RX_RX0"},
  3171. {"IIR1 INP2 MUX", "RX1", "RX_RX1"},
  3172. {"IIR1 INP2 MUX", "RX2", "RX_RX2"},
  3173. {"IIR1 INP2 MUX", "RX3", "RX_RX3"},
  3174. {"IIR1 INP2 MUX", "RX4", "RX_RX4"},
  3175. {"IIR1 INP2 MUX", "RX5", "RX_RX5"},
  3176. {"IIR1", NULL, "IIR1 INP3 MUX"},
  3177. {"IIR1 INP3 MUX", "DEC0", "RX_TX DEC0_INP"},
  3178. {"IIR1 INP3 MUX", "DEC1", "RX_TX DEC1_INP"},
  3179. {"IIR1 INP3 MUX", "DEC2", "RX_TX DEC2_INP"},
  3180. {"IIR1 INP3 MUX", "DEC3", "RX_TX DEC3_INP"},
  3181. {"IIR1 INP3 MUX", "RX0", "RX_RX0"},
  3182. {"IIR1 INP3 MUX", "RX1", "RX_RX1"},
  3183. {"IIR1 INP3 MUX", "RX2", "RX_RX2"},
  3184. {"IIR1 INP3 MUX", "RX3", "RX_RX3"},
  3185. {"IIR1 INP3 MUX", "RX4", "RX_RX4"},
  3186. {"IIR1 INP3 MUX", "RX5", "RX_RX5"},
  3187. {"SRC0", NULL, "IIR0"},
  3188. {"SRC1", NULL, "IIR1"},
  3189. {"RX INT0 MIX2 INP", "SRC0", "SRC0"},
  3190. {"RX INT0 MIX2 INP", "SRC1", "SRC1"},
  3191. {"RX INT1 MIX2 INP", "SRC0", "SRC0"},
  3192. {"RX INT1 MIX2 INP", "SRC1", "SRC1"},
  3193. {"RX INT2 MIX2 INP", "SRC0", "SRC0"},
  3194. {"RX INT2 MIX2 INP", "SRC1", "SRC1"},
  3195. };
  3196. static int rx_macro_core_vote(void *handle, bool enable)
  3197. {
  3198. struct rx_macro_priv *rx_priv = (struct rx_macro_priv *) handle;
  3199. if (rx_priv == NULL) {
  3200. pr_err("%s: rx priv data is NULL\n", __func__);
  3201. return -EINVAL;
  3202. }
  3203. if (enable) {
  3204. pm_runtime_get_sync(rx_priv->dev);
  3205. pm_runtime_put_autosuspend(rx_priv->dev);
  3206. pm_runtime_mark_last_busy(rx_priv->dev);
  3207. }
  3208. if (bolero_check_core_votes(rx_priv->dev))
  3209. return 0;
  3210. else
  3211. return -EINVAL;
  3212. }
  3213. static int rx_swrm_clock(void *handle, bool enable)
  3214. {
  3215. struct rx_macro_priv *rx_priv = (struct rx_macro_priv *) handle;
  3216. struct regmap *regmap = dev_get_regmap(rx_priv->dev->parent, NULL);
  3217. int ret = 0;
  3218. if (regmap == NULL) {
  3219. dev_err(rx_priv->dev, "%s: regmap is NULL\n", __func__);
  3220. return -EINVAL;
  3221. }
  3222. mutex_lock(&rx_priv->swr_clk_lock);
  3223. dev_dbg(rx_priv->dev, "%s: swrm clock %s\n",
  3224. __func__, (enable ? "enable" : "disable"));
  3225. if (enable) {
  3226. pm_runtime_get_sync(rx_priv->dev);
  3227. if (rx_priv->swr_clk_users == 0) {
  3228. ret = msm_cdc_pinctrl_select_active_state(
  3229. rx_priv->rx_swr_gpio_p);
  3230. if (ret < 0) {
  3231. dev_err(rx_priv->dev,
  3232. "%s: rx swr pinctrl enable failed\n",
  3233. __func__);
  3234. pm_runtime_mark_last_busy(rx_priv->dev);
  3235. pm_runtime_put_autosuspend(rx_priv->dev);
  3236. goto exit;
  3237. }
  3238. ret = rx_macro_mclk_enable(rx_priv, 1, true);
  3239. if (ret < 0) {
  3240. msm_cdc_pinctrl_select_sleep_state(
  3241. rx_priv->rx_swr_gpio_p);
  3242. dev_err(rx_priv->dev,
  3243. "%s: rx request clock enable failed\n",
  3244. __func__);
  3245. pm_runtime_mark_last_busy(rx_priv->dev);
  3246. pm_runtime_put_autosuspend(rx_priv->dev);
  3247. goto exit;
  3248. }
  3249. if (rx_priv->reset_swr)
  3250. regmap_update_bits(regmap,
  3251. BOLERO_CDC_RX_CLK_RST_CTRL_SWR_CONTROL,
  3252. 0x02, 0x02);
  3253. regmap_update_bits(regmap,
  3254. BOLERO_CDC_RX_CLK_RST_CTRL_SWR_CONTROL,
  3255. 0x01, 0x01);
  3256. if (rx_priv->reset_swr)
  3257. regmap_update_bits(regmap,
  3258. BOLERO_CDC_RX_CLK_RST_CTRL_SWR_CONTROL,
  3259. 0x02, 0x00);
  3260. rx_priv->reset_swr = false;
  3261. }
  3262. pm_runtime_mark_last_busy(rx_priv->dev);
  3263. pm_runtime_put_autosuspend(rx_priv->dev);
  3264. rx_priv->swr_clk_users++;
  3265. } else {
  3266. if (rx_priv->swr_clk_users <= 0) {
  3267. dev_err(rx_priv->dev,
  3268. "%s: rx swrm clock users already reset\n",
  3269. __func__);
  3270. rx_priv->swr_clk_users = 0;
  3271. goto exit;
  3272. }
  3273. rx_priv->swr_clk_users--;
  3274. if (rx_priv->swr_clk_users == 0) {
  3275. regmap_update_bits(regmap,
  3276. BOLERO_CDC_RX_CLK_RST_CTRL_SWR_CONTROL,
  3277. 0x01, 0x00);
  3278. rx_macro_mclk_enable(rx_priv, 0, true);
  3279. ret = msm_cdc_pinctrl_select_sleep_state(
  3280. rx_priv->rx_swr_gpio_p);
  3281. if (ret < 0) {
  3282. dev_err(rx_priv->dev,
  3283. "%s: rx swr pinctrl disable failed\n",
  3284. __func__);
  3285. goto exit;
  3286. }
  3287. }
  3288. }
  3289. dev_dbg(rx_priv->dev, "%s: swrm clock users %d\n",
  3290. __func__, rx_priv->swr_clk_users);
  3291. exit:
  3292. mutex_unlock(&rx_priv->swr_clk_lock);
  3293. return ret;
  3294. }
  3295. static const struct rx_macro_reg_mask_val rx_macro_reg_init[] = {
  3296. {BOLERO_CDC_RX_RX0_RX_PATH_SEC7, 0x07, 0x02},
  3297. {BOLERO_CDC_RX_RX1_RX_PATH_SEC7, 0x07, 0x02},
  3298. {BOLERO_CDC_RX_RX2_RX_PATH_SEC7, 0x07, 0x02},
  3299. {BOLERO_CDC_RX_RX0_RX_PATH_CFG3, 0x03, 0x02},
  3300. {BOLERO_CDC_RX_RX1_RX_PATH_CFG3, 0x03, 0x02},
  3301. {BOLERO_CDC_RX_RX2_RX_PATH_CFG3, 0x03, 0x02},
  3302. };
  3303. static void rx_macro_init_bcl_pmic_reg(struct snd_soc_component *component)
  3304. {
  3305. struct device *rx_dev = NULL;
  3306. struct rx_macro_priv *rx_priv = NULL;
  3307. if (!component) {
  3308. pr_err("%s: NULL component pointer!\n", __func__);
  3309. return;
  3310. }
  3311. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  3312. return;
  3313. switch (rx_priv->bcl_pmic_params.id) {
  3314. case 0:
  3315. /* Enable ID0 to listen to respective PMIC group interrupts */
  3316. snd_soc_component_update_bits(component,
  3317. BOLERO_CDC_RX_BCL_VBAT_DECODE_CTL1, 0x02, 0x02);
  3318. /* Update MC_SID0 */
  3319. snd_soc_component_update_bits(component,
  3320. BOLERO_CDC_RX_BCL_VBAT_DECODE_CFG1, 0x0F,
  3321. rx_priv->bcl_pmic_params.sid);
  3322. /* Update MC_PPID0 */
  3323. snd_soc_component_update_bits(component,
  3324. BOLERO_CDC_RX_BCL_VBAT_DECODE_CFG2, 0xFF,
  3325. rx_priv->bcl_pmic_params.ppid);
  3326. break;
  3327. case 1:
  3328. /* Enable ID1 to listen to respective PMIC group interrupts */
  3329. snd_soc_component_update_bits(component,
  3330. BOLERO_CDC_RX_BCL_VBAT_DECODE_CTL1, 0x01, 0x01);
  3331. /* Update MC_SID1 */
  3332. snd_soc_component_update_bits(component,
  3333. BOLERO_CDC_RX_BCL_VBAT_DECODE_CFG3, 0x0F,
  3334. rx_priv->bcl_pmic_params.sid);
  3335. /* Update MC_PPID1 */
  3336. snd_soc_component_update_bits(component,
  3337. BOLERO_CDC_RX_BCL_VBAT_DECODE_CFG1, 0xFF,
  3338. rx_priv->bcl_pmic_params.ppid);
  3339. break;
  3340. default:
  3341. dev_err(rx_dev, "%s: PMIC ID is invalid %d\n",
  3342. __func__, rx_priv->bcl_pmic_params.id);
  3343. break;
  3344. }
  3345. }
  3346. static int rx_macro_init(struct snd_soc_component *component)
  3347. {
  3348. struct snd_soc_dapm_context *dapm =
  3349. snd_soc_component_get_dapm(component);
  3350. int ret = 0;
  3351. struct device *rx_dev = NULL;
  3352. struct rx_macro_priv *rx_priv = NULL;
  3353. int i;
  3354. rx_dev = bolero_get_device_ptr(component->dev, RX_MACRO);
  3355. if (!rx_dev) {
  3356. dev_err(component->dev,
  3357. "%s: null device for macro!\n", __func__);
  3358. return -EINVAL;
  3359. }
  3360. rx_priv = dev_get_drvdata(rx_dev);
  3361. if (!rx_priv) {
  3362. dev_err(component->dev,
  3363. "%s: priv is null for macro!\n", __func__);
  3364. return -EINVAL;
  3365. }
  3366. ret = snd_soc_dapm_new_controls(dapm, rx_macro_dapm_widgets,
  3367. ARRAY_SIZE(rx_macro_dapm_widgets));
  3368. if (ret < 0) {
  3369. dev_err(rx_dev, "%s: failed to add controls\n", __func__);
  3370. return ret;
  3371. }
  3372. ret = snd_soc_dapm_add_routes(dapm, rx_audio_map,
  3373. ARRAY_SIZE(rx_audio_map));
  3374. if (ret < 0) {
  3375. dev_err(rx_dev, "%s: failed to add routes\n", __func__);
  3376. return ret;
  3377. }
  3378. ret = snd_soc_dapm_new_widgets(dapm->card);
  3379. if (ret < 0) {
  3380. dev_err(rx_dev, "%s: failed to add widgets\n", __func__);
  3381. return ret;
  3382. }
  3383. ret = snd_soc_add_component_controls(component, rx_macro_snd_controls,
  3384. ARRAY_SIZE(rx_macro_snd_controls));
  3385. if (ret < 0) {
  3386. dev_err(rx_dev, "%s: failed to add snd_ctls\n", __func__);
  3387. return ret;
  3388. }
  3389. rx_priv->dev_up = true;
  3390. snd_soc_dapm_ignore_suspend(dapm, "RX_MACRO_AIF1 Playback");
  3391. snd_soc_dapm_ignore_suspend(dapm, "RX_MACRO_AIF2 Playback");
  3392. snd_soc_dapm_ignore_suspend(dapm, "RX_MACRO_AIF3 Playback");
  3393. snd_soc_dapm_ignore_suspend(dapm, "RX_MACRO_AIF4 Playback");
  3394. snd_soc_dapm_ignore_suspend(dapm, "HPHL_OUT");
  3395. snd_soc_dapm_ignore_suspend(dapm, "HPHR_OUT");
  3396. snd_soc_dapm_ignore_suspend(dapm, "AUX_OUT");
  3397. snd_soc_dapm_ignore_suspend(dapm, "RX_TX DEC0_INP");
  3398. snd_soc_dapm_ignore_suspend(dapm, "RX_TX DEC1_INP");
  3399. snd_soc_dapm_ignore_suspend(dapm, "RX_TX DEC2_INP");
  3400. snd_soc_dapm_ignore_suspend(dapm, "RX_TX DEC3_INP");
  3401. snd_soc_dapm_sync(dapm);
  3402. for (i = 0; i < ARRAY_SIZE(rx_macro_reg_init); i++)
  3403. snd_soc_component_update_bits(component,
  3404. rx_macro_reg_init[i].reg,
  3405. rx_macro_reg_init[i].mask,
  3406. rx_macro_reg_init[i].val);
  3407. rx_priv->component = component;
  3408. rx_macro_init_bcl_pmic_reg(component);
  3409. return 0;
  3410. }
  3411. static int rx_macro_deinit(struct snd_soc_component *component)
  3412. {
  3413. struct device *rx_dev = NULL;
  3414. struct rx_macro_priv *rx_priv = NULL;
  3415. if (!rx_macro_get_data(component, &rx_dev, &rx_priv, __func__))
  3416. return -EINVAL;
  3417. rx_priv->component = NULL;
  3418. return 0;
  3419. }
  3420. static void rx_macro_add_child_devices(struct work_struct *work)
  3421. {
  3422. struct rx_macro_priv *rx_priv = NULL;
  3423. struct platform_device *pdev = NULL;
  3424. struct device_node *node = NULL;
  3425. struct rx_swr_ctrl_data *swr_ctrl_data = NULL, *temp = NULL;
  3426. int ret = 0;
  3427. u16 count = 0, ctrl_num = 0;
  3428. struct rx_swr_ctrl_platform_data *platdata = NULL;
  3429. char plat_dev_name[RX_SWR_STRING_LEN] = "";
  3430. bool rx_swr_master_node = false;
  3431. rx_priv = container_of(work, struct rx_macro_priv,
  3432. rx_macro_add_child_devices_work);
  3433. if (!rx_priv) {
  3434. pr_err("%s: Memory for rx_priv does not exist\n",
  3435. __func__);
  3436. return;
  3437. }
  3438. if (!rx_priv->dev) {
  3439. pr_err("%s: RX device does not exist\n", __func__);
  3440. return;
  3441. }
  3442. if(!rx_priv->dev->of_node) {
  3443. dev_err(rx_priv->dev,
  3444. "%s: DT node for RX dev does not exist\n", __func__);
  3445. return;
  3446. }
  3447. platdata = &rx_priv->swr_plat_data;
  3448. rx_priv->child_count = 0;
  3449. for_each_available_child_of_node(rx_priv->dev->of_node, node) {
  3450. rx_swr_master_node = false;
  3451. if (strnstr(node->name, "rx_swr_master",
  3452. strlen("rx_swr_master")) != NULL)
  3453. rx_swr_master_node = true;
  3454. if(rx_swr_master_node)
  3455. strlcpy(plat_dev_name, "rx_swr_ctrl",
  3456. (RX_SWR_STRING_LEN - 1));
  3457. else
  3458. strlcpy(plat_dev_name, node->name,
  3459. (RX_SWR_STRING_LEN - 1));
  3460. pdev = platform_device_alloc(plat_dev_name, -1);
  3461. if (!pdev) {
  3462. dev_err(rx_priv->dev, "%s: pdev memory alloc failed\n",
  3463. __func__);
  3464. ret = -ENOMEM;
  3465. goto err;
  3466. }
  3467. pdev->dev.parent = rx_priv->dev;
  3468. pdev->dev.of_node = node;
  3469. if (rx_swr_master_node) {
  3470. ret = platform_device_add_data(pdev, platdata,
  3471. sizeof(*platdata));
  3472. if (ret) {
  3473. dev_err(&pdev->dev,
  3474. "%s: cannot add plat data ctrl:%d\n",
  3475. __func__, ctrl_num);
  3476. goto fail_pdev_add;
  3477. }
  3478. }
  3479. ret = platform_device_add(pdev);
  3480. if (ret) {
  3481. dev_err(&pdev->dev,
  3482. "%s: Cannot add platform device\n",
  3483. __func__);
  3484. goto fail_pdev_add;
  3485. }
  3486. if (rx_swr_master_node) {
  3487. temp = krealloc(swr_ctrl_data,
  3488. (ctrl_num + 1) * sizeof(
  3489. struct rx_swr_ctrl_data),
  3490. GFP_KERNEL);
  3491. if (!temp) {
  3492. ret = -ENOMEM;
  3493. goto fail_pdev_add;
  3494. }
  3495. swr_ctrl_data = temp;
  3496. swr_ctrl_data[ctrl_num].rx_swr_pdev = pdev;
  3497. ctrl_num++;
  3498. dev_dbg(&pdev->dev,
  3499. "%s: Added soundwire ctrl device(s)\n",
  3500. __func__);
  3501. rx_priv->swr_ctrl_data = swr_ctrl_data;
  3502. }
  3503. if (rx_priv->child_count < RX_MACRO_CHILD_DEVICES_MAX)
  3504. rx_priv->pdev_child_devices[
  3505. rx_priv->child_count++] = pdev;
  3506. else
  3507. goto err;
  3508. }
  3509. return;
  3510. fail_pdev_add:
  3511. for (count = 0; count < rx_priv->child_count; count++)
  3512. platform_device_put(rx_priv->pdev_child_devices[count]);
  3513. err:
  3514. return;
  3515. }
  3516. static void rx_macro_init_ops(struct macro_ops *ops, char __iomem *rx_io_base)
  3517. {
  3518. memset(ops, 0, sizeof(struct macro_ops));
  3519. ops->init = rx_macro_init;
  3520. ops->exit = rx_macro_deinit;
  3521. ops->io_base = rx_io_base;
  3522. ops->dai_ptr = rx_macro_dai;
  3523. ops->num_dais = ARRAY_SIZE(rx_macro_dai);
  3524. ops->event_handler = rx_macro_event_handler;
  3525. ops->set_port_map = rx_macro_set_port_map;
  3526. }
  3527. static int rx_macro_probe(struct platform_device *pdev)
  3528. {
  3529. struct macro_ops ops = {0};
  3530. struct rx_macro_priv *rx_priv = NULL;
  3531. u32 rx_base_addr = 0, muxsel = 0;
  3532. char __iomem *rx_io_base = NULL, *muxsel_io = NULL;
  3533. int ret = 0;
  3534. u8 bcl_pmic_params[3];
  3535. u32 default_clk_id = 0;
  3536. u32 is_used_rx_swr_gpio = 1;
  3537. const char *is_used_rx_swr_gpio_dt = "qcom,is-used-swr-gpio";
  3538. rx_priv = devm_kzalloc(&pdev->dev, sizeof(struct rx_macro_priv),
  3539. GFP_KERNEL);
  3540. if (!rx_priv)
  3541. return -ENOMEM;
  3542. rx_priv->dev = &pdev->dev;
  3543. ret = of_property_read_u32(pdev->dev.of_node, "reg",
  3544. &rx_base_addr);
  3545. if (ret) {
  3546. dev_err(&pdev->dev, "%s: could not find %s entry in dt\n",
  3547. __func__, "reg");
  3548. return ret;
  3549. }
  3550. ret = of_property_read_u32(pdev->dev.of_node, "qcom,rx_mclk_mode_muxsel",
  3551. &muxsel);
  3552. if (ret) {
  3553. dev_err(&pdev->dev, "%s: could not find %s entry in dt\n",
  3554. __func__, "reg");
  3555. return ret;
  3556. }
  3557. ret = of_property_read_u32(pdev->dev.of_node, "qcom,default-clk-id",
  3558. &default_clk_id);
  3559. if (ret) {
  3560. dev_err(&pdev->dev, "%s: could not find %s entry in dt\n",
  3561. __func__, "qcom,default-clk-id");
  3562. default_clk_id = RX_CORE_CLK;
  3563. }
  3564. if (of_find_property(pdev->dev.of_node, is_used_rx_swr_gpio_dt,
  3565. NULL)) {
  3566. ret = of_property_read_u32(pdev->dev.of_node,
  3567. is_used_rx_swr_gpio_dt,
  3568. &is_used_rx_swr_gpio);
  3569. if (ret) {
  3570. dev_err(&pdev->dev, "%s: error reading %s in dt\n",
  3571. __func__, is_used_rx_swr_gpio_dt);
  3572. is_used_rx_swr_gpio = 1;
  3573. }
  3574. }
  3575. rx_priv->rx_swr_gpio_p = of_parse_phandle(pdev->dev.of_node,
  3576. "qcom,rx-swr-gpios", 0);
  3577. if (!rx_priv->rx_swr_gpio_p && is_used_rx_swr_gpio) {
  3578. dev_err(&pdev->dev, "%s: swr_gpios handle not provided!\n",
  3579. __func__);
  3580. return -EINVAL;
  3581. }
  3582. if (msm_cdc_pinctrl_get_state(rx_priv->rx_swr_gpio_p) < 0 &&
  3583. is_used_rx_swr_gpio) {
  3584. dev_err(&pdev->dev, "%s: failed to get swr pin state\n",
  3585. __func__);
  3586. return -EPROBE_DEFER;
  3587. }
  3588. rx_io_base = devm_ioremap(&pdev->dev, rx_base_addr,
  3589. RX_MACRO_MAX_OFFSET);
  3590. if (!rx_io_base) {
  3591. dev_err(&pdev->dev, "%s: ioremap failed\n", __func__);
  3592. return -ENOMEM;
  3593. }
  3594. rx_priv->rx_io_base = rx_io_base;
  3595. muxsel_io = devm_ioremap(&pdev->dev, muxsel, 0x4);
  3596. if (!muxsel_io) {
  3597. dev_err(&pdev->dev, "%s: ioremap failed for muxsel\n",
  3598. __func__);
  3599. return -ENOMEM;
  3600. }
  3601. rx_priv->rx_mclk_mode_muxsel = muxsel_io;
  3602. rx_priv->reset_swr = true;
  3603. INIT_WORK(&rx_priv->rx_macro_add_child_devices_work,
  3604. rx_macro_add_child_devices);
  3605. rx_priv->swr_plat_data.handle = (void *) rx_priv;
  3606. rx_priv->swr_plat_data.read = NULL;
  3607. rx_priv->swr_plat_data.write = NULL;
  3608. rx_priv->swr_plat_data.bulk_write = NULL;
  3609. rx_priv->swr_plat_data.clk = rx_swrm_clock;
  3610. rx_priv->swr_plat_data.core_vote = rx_macro_core_vote;
  3611. rx_priv->swr_plat_data.handle_irq = NULL;
  3612. ret = of_property_read_u8_array(pdev->dev.of_node,
  3613. "qcom,rx-bcl-pmic-params", bcl_pmic_params,
  3614. sizeof(bcl_pmic_params));
  3615. if (ret) {
  3616. dev_dbg(&pdev->dev, "%s: could not find %s entry in dt\n",
  3617. __func__, "qcom,rx-bcl-pmic-params");
  3618. } else {
  3619. rx_priv->bcl_pmic_params.id = bcl_pmic_params[0];
  3620. rx_priv->bcl_pmic_params.sid = bcl_pmic_params[1];
  3621. rx_priv->bcl_pmic_params.ppid = bcl_pmic_params[2];
  3622. }
  3623. rx_priv->clk_id = default_clk_id;
  3624. rx_priv->default_clk_id = default_clk_id;
  3625. ops.clk_id_req = rx_priv->clk_id;
  3626. ops.default_clk_id = default_clk_id;
  3627. rx_priv->is_aux_hpf_on = 1;
  3628. dev_set_drvdata(&pdev->dev, rx_priv);
  3629. mutex_init(&rx_priv->mclk_lock);
  3630. mutex_init(&rx_priv->swr_clk_lock);
  3631. rx_macro_init_ops(&ops, rx_io_base);
  3632. ret = bolero_register_macro(&pdev->dev, RX_MACRO, &ops);
  3633. if (ret) {
  3634. dev_err(&pdev->dev,
  3635. "%s: register macro failed\n", __func__);
  3636. goto err_reg_macro;
  3637. }
  3638. schedule_work(&rx_priv->rx_macro_add_child_devices_work);
  3639. pm_runtime_set_autosuspend_delay(&pdev->dev, AUTO_SUSPEND_DELAY);
  3640. pm_runtime_use_autosuspend(&pdev->dev);
  3641. pm_runtime_set_suspended(&pdev->dev);
  3642. pm_suspend_ignore_children(&pdev->dev, true);
  3643. pm_runtime_enable(&pdev->dev);
  3644. return 0;
  3645. err_reg_macro:
  3646. mutex_destroy(&rx_priv->mclk_lock);
  3647. mutex_destroy(&rx_priv->swr_clk_lock);
  3648. return ret;
  3649. }
  3650. static int rx_macro_remove(struct platform_device *pdev)
  3651. {
  3652. struct rx_macro_priv *rx_priv = NULL;
  3653. u16 count = 0;
  3654. rx_priv = dev_get_drvdata(&pdev->dev);
  3655. if (!rx_priv)
  3656. return -EINVAL;
  3657. for (count = 0; count < rx_priv->child_count &&
  3658. count < RX_MACRO_CHILD_DEVICES_MAX; count++)
  3659. platform_device_unregister(rx_priv->pdev_child_devices[count]);
  3660. pm_runtime_disable(&pdev->dev);
  3661. pm_runtime_set_suspended(&pdev->dev);
  3662. bolero_unregister_macro(&pdev->dev, RX_MACRO);
  3663. mutex_destroy(&rx_priv->mclk_lock);
  3664. mutex_destroy(&rx_priv->swr_clk_lock);
  3665. kfree(rx_priv->swr_ctrl_data);
  3666. return 0;
  3667. }
  3668. static const struct of_device_id rx_macro_dt_match[] = {
  3669. {.compatible = "qcom,rx-macro"},
  3670. {}
  3671. };
  3672. static const struct dev_pm_ops bolero_dev_pm_ops = {
  3673. SET_RUNTIME_PM_OPS(
  3674. bolero_runtime_suspend,
  3675. bolero_runtime_resume,
  3676. NULL
  3677. )
  3678. };
  3679. static struct platform_driver rx_macro_driver = {
  3680. .driver = {
  3681. .name = "rx_macro",
  3682. .owner = THIS_MODULE,
  3683. .pm = &bolero_dev_pm_ops,
  3684. .of_match_table = rx_macro_dt_match,
  3685. .suppress_bind_attrs = true,
  3686. },
  3687. .probe = rx_macro_probe,
  3688. .remove = rx_macro_remove,
  3689. };
  3690. module_platform_driver(rx_macro_driver);
  3691. MODULE_DESCRIPTION("RX macro driver");
  3692. MODULE_LICENSE("GPL v2");