rx-macro.c 123 KB

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