rx-macro.c 119 KB

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