rx-macro.c 124 KB

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