q6adm.c 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/slab.h>
  7. #include <linux/wait.h>
  8. #include <linux/sched.h>
  9. #include <linux/jiffies.h>
  10. #include <linux/uaccess.h>
  11. #include <linux/atomic.h>
  12. #include <dsp/msm-dts-srs-tm-config.h>
  13. #include <dsp/apr_audio-v2.h>
  14. #include <dsp/q6adm-v2.h>
  15. #include <dsp/q6audio-v2.h>
  16. #include <dsp/q6afe-v2.h>
  17. #include <dsp/q6core.h>
  18. #include <dsp/audio_cal_utils.h>
  19. #include <dsp/q6common.h>
  20. #include <ipc/apr.h>
  21. #include "adsp_err.h"
  22. #include <soc/qcom/secure_buffer.h>
  23. #define TIMEOUT_MS 1000
  24. #define RESET_COPP_ID 99
  25. #define INVALID_COPP_ID 0xFF
  26. /* Used for inband payload copy, max size is 4k */
  27. /* 3 is to account for module, instance & param ID in payload */
  28. #define ADM_GET_PARAMETER_LENGTH (4096 - APR_HDR_SIZE - 3 * sizeof(uint32_t))
  29. #define ULL_SUPPORTED_BITS_PER_SAMPLE 16
  30. #define ULL_SUPPORTED_SAMPLE_RATE 48000
  31. #ifndef CONFIG_DOLBY_DAP
  32. #undef DOLBY_ADM_COPP_TOPOLOGY_ID
  33. #define DOLBY_ADM_COPP_TOPOLOGY_ID 0xFFFFFFFE
  34. #endif
  35. #ifndef CONFIG_DOLBY_DS2
  36. #undef DS2_ADM_COPP_TOPOLOGY_ID
  37. #define DS2_ADM_COPP_TOPOLOGY_ID 0xFFFFFFFF
  38. #endif
  39. #define SESSION_TYPE_RX 0
  40. /* ENUM for adm_status */
  41. enum adm_cal_status {
  42. ADM_STATUS_CALIBRATION_REQUIRED = 0,
  43. ADM_STATUS_MAX,
  44. };
  45. struct adm_copp {
  46. atomic_t id[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  47. atomic_t cnt[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  48. atomic_t topology[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  49. atomic_t mode[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  50. atomic_t stat[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  51. atomic_t rate[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  52. atomic_t bit_width[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  53. atomic_t channels[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  54. atomic_t app_type[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  55. atomic_t acdb_id[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  56. atomic_t session_type[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  57. wait_queue_head_t wait[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  58. wait_queue_head_t adm_delay_wait[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  59. atomic_t adm_delay_stat[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  60. uint32_t adm_delay[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  61. unsigned long adm_status[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  62. atomic_t token[AFE_MAX_PORTS][MAX_COPPS_PER_PORT];
  63. };
  64. struct source_tracking_data {
  65. struct dma_buf *dma_buf;
  66. struct param_outband memmap;
  67. int apr_cmd_status;
  68. };
  69. struct adm_ctl {
  70. void *apr;
  71. struct adm_copp copp;
  72. atomic_t matrix_map_stat;
  73. wait_queue_head_t matrix_map_wait;
  74. atomic_t adm_stat;
  75. wait_queue_head_t adm_wait;
  76. struct cal_type_data *cal_data[ADM_MAX_CAL_TYPES];
  77. atomic_t mem_map_handles[ADM_MEM_MAP_INDEX_MAX];
  78. atomic_t mem_map_index;
  79. struct param_outband outband_memmap;
  80. struct source_tracking_data sourceTrackingData;
  81. int set_custom_topology;
  82. int ec_ref_rx;
  83. int num_ec_ref_rx_chans;
  84. int ec_ref_rx_bit_width;
  85. int ec_ref_rx_sampling_rate;
  86. int num_ec_ref_rx_chans_downmixed;
  87. uint16_t ec_ref_chmixer_weights[PCM_FORMAT_MAX_NUM_CHANNEL_V8]
  88. [PCM_FORMAT_MAX_NUM_CHANNEL_V8];
  89. int ffecns_port_id;
  90. int native_mode;
  91. uint32_t copp_token;
  92. int tx_port_id;
  93. bool hyp_assigned;
  94. };
  95. static struct adm_ctl this_adm;
  96. struct adm_multi_ch_map {
  97. bool set_channel_map;
  98. char channel_mapping[PCM_FORMAT_MAX_NUM_CHANNEL_V8];
  99. };
  100. #define ADM_MCH_MAP_IDX_PLAYBACK 0
  101. #define ADM_MCH_MAP_IDX_REC 1
  102. static struct adm_multi_ch_map multi_ch_maps[2] = {
  103. { false,
  104. {0, 0, 0, 0, 0, 0, 0, 0,
  105. 0, 0, 0, 0, 0, 0, 0, 0,
  106. 0, 0, 0, 0, 0, 0, 0, 0,
  107. 0, 0, 0, 0, 0, 0, 0, 0}
  108. },
  109. { false,
  110. {0, 0, 0, 0, 0, 0, 0, 0,
  111. 0, 0, 0, 0, 0, 0, 0, 0,
  112. 0, 0, 0, 0, 0, 0, 0, 0,
  113. 0, 0, 0, 0, 0, 0, 0, 0}
  114. }
  115. };
  116. static struct adm_multi_ch_map port_channel_map[AFE_MAX_PORTS];
  117. static int adm_get_parameters[MAX_COPPS_PER_PORT * ADM_GET_PARAMETER_LENGTH];
  118. static int adm_module_topo_list[MAX_COPPS_PER_PORT *
  119. ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH];
  120. static struct mutex dts_srs_lock;
  121. void msm_dts_srs_acquire_lock(void)
  122. {
  123. mutex_lock(&dts_srs_lock);
  124. }
  125. void msm_dts_srs_release_lock(void)
  126. {
  127. mutex_unlock(&dts_srs_lock);
  128. }
  129. static int adm_arrange_mch_map_v8(
  130. struct adm_device_endpoint_payload *ep_payload,
  131. int path,
  132. int channel_mode,
  133. int port_idx);
  134. /**
  135. * adm_validate_and_get_port_index -
  136. * validate given port id
  137. *
  138. * @port_id: Port ID number
  139. *
  140. * Returns valid index on success or error on failure
  141. */
  142. int adm_validate_and_get_port_index(int port_id)
  143. {
  144. int index;
  145. int ret;
  146. ret = q6audio_validate_port(port_id);
  147. if (ret < 0) {
  148. pr_err("%s: port validation failed id 0x%x ret %d\n",
  149. __func__, port_id, ret);
  150. return -EINVAL;
  151. }
  152. index = afe_get_port_index(port_id);
  153. if (index < 0 || index >= AFE_MAX_PORTS) {
  154. pr_err("%s: Invalid port idx %d port_id 0x%x\n",
  155. __func__, index,
  156. port_id);
  157. return -EINVAL;
  158. }
  159. pr_debug("%s: port_idx- %d\n", __func__, index);
  160. return index;
  161. }
  162. EXPORT_SYMBOL(adm_validate_and_get_port_index);
  163. /**
  164. * adm_get_default_copp_idx -
  165. * retrieve default copp_idx for given port
  166. *
  167. * @port_id: Port ID number
  168. *
  169. * Returns valid value on success or error on failure
  170. */
  171. int adm_get_default_copp_idx(int port_id)
  172. {
  173. int port_idx = adm_validate_and_get_port_index(port_id), idx;
  174. if (port_idx < 0) {
  175. pr_err("%s: Invalid port id: 0x%x", __func__, port_id);
  176. return -EINVAL;
  177. }
  178. pr_debug("%s: port_idx:%d\n", __func__, port_idx);
  179. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++) {
  180. if (atomic_read(&this_adm.copp.id[port_idx][idx]) !=
  181. RESET_COPP_ID)
  182. return idx;
  183. }
  184. return -EINVAL;
  185. }
  186. EXPORT_SYMBOL(adm_get_default_copp_idx);
  187. int adm_get_topology_for_port_from_copp_id(int port_id, int copp_id)
  188. {
  189. int port_idx = adm_validate_and_get_port_index(port_id), idx;
  190. if (port_idx < 0) {
  191. pr_err("%s: Invalid port id: 0x%x", __func__, port_id);
  192. return 0;
  193. }
  194. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++)
  195. if (atomic_read(&this_adm.copp.id[port_idx][idx]) == copp_id)
  196. return atomic_read(&this_adm.copp.topology[port_idx]
  197. [idx]);
  198. pr_err("%s: Invalid copp_id %d port_id 0x%x\n",
  199. __func__, copp_id, port_id);
  200. return 0;
  201. }
  202. /**
  203. * adm_get_topology_for_port_copp_idx -
  204. * retrieve topology of given port/copp_idx
  205. *
  206. * @port_id: Port ID number
  207. * @copp_idx: copp index of ADM copp
  208. *
  209. * Returns valid value on success or 0 on failure
  210. */
  211. int adm_get_topology_for_port_copp_idx(int port_id, int copp_idx)
  212. {
  213. int port_idx = adm_validate_and_get_port_index(port_id);
  214. if (port_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  215. pr_err("%s: Invalid port: 0x%x copp id: 0x%x",
  216. __func__, port_id, copp_idx);
  217. return 0;
  218. }
  219. return atomic_read(&this_adm.copp.topology[port_idx][copp_idx]);
  220. }
  221. EXPORT_SYMBOL(adm_get_topology_for_port_copp_idx);
  222. int adm_get_indexes_from_copp_id(int copp_id, int *copp_idx, int *port_idx)
  223. {
  224. int p_idx, c_idx;
  225. for (p_idx = 0; p_idx < AFE_MAX_PORTS; p_idx++) {
  226. for (c_idx = 0; c_idx < MAX_COPPS_PER_PORT; c_idx++) {
  227. if (atomic_read(&this_adm.copp.id[p_idx][c_idx])
  228. == copp_id) {
  229. if (copp_idx != NULL)
  230. *copp_idx = c_idx;
  231. if (port_idx != NULL)
  232. *port_idx = p_idx;
  233. return 0;
  234. }
  235. }
  236. }
  237. return -EINVAL;
  238. }
  239. static int adm_get_copp_id(int port_idx, int copp_idx)
  240. {
  241. pr_debug("%s: port_idx:%d copp_idx:%d\n", __func__, port_idx, copp_idx);
  242. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  243. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  244. return -EINVAL;
  245. }
  246. return atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  247. }
  248. static int adm_get_idx_if_single_copp_exists(int port_idx,
  249. int topology, int mode,
  250. int rate, int bit_width,
  251. uint32_t copp_token)
  252. {
  253. int idx;
  254. pr_debug("%s: copp_token %d\n", __func__, copp_token);
  255. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++)
  256. if ((topology ==
  257. atomic_read(&this_adm.copp.topology[port_idx][idx])) &&
  258. (mode ==
  259. atomic_read(&this_adm.copp.mode[port_idx][idx])) &&
  260. (rate ==
  261. atomic_read(&this_adm.copp.rate[port_idx][idx])) &&
  262. (bit_width ==
  263. atomic_read(&this_adm.copp.bit_width[port_idx][idx])) &&
  264. (copp_token ==
  265. atomic_read(&this_adm.copp.token[port_idx][idx])))
  266. return idx;
  267. return -EINVAL;
  268. }
  269. static int adm_get_idx_if_copp_exists(int port_idx, int topology, int mode,
  270. int rate, int bit_width, int app_type,
  271. int session_type, uint32_t copp_token)
  272. {
  273. int idx;
  274. pr_debug("%s: port_idx-%d, topology-0x%x, mode-%d, rate-%d, bit_width-%d\n",
  275. __func__, port_idx, topology, mode, rate, bit_width);
  276. if (copp_token)
  277. return adm_get_idx_if_single_copp_exists(port_idx,
  278. topology, mode,
  279. rate, bit_width,
  280. copp_token);
  281. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++)
  282. if ((topology ==
  283. atomic_read(&this_adm.copp.topology[port_idx][idx])) &&
  284. (mode == atomic_read(&this_adm.copp.mode[port_idx][idx])) &&
  285. (rate == atomic_read(&this_adm.copp.rate[port_idx][idx])) &&
  286. (bit_width ==
  287. atomic_read(&this_adm.copp.bit_width[port_idx][idx])) &&
  288. (session_type ==
  289. atomic_read(
  290. &this_adm.copp.session_type[port_idx][idx])) &&
  291. (app_type ==
  292. atomic_read(&this_adm.copp.app_type[port_idx][idx])))
  293. return idx;
  294. return -EINVAL;
  295. }
  296. static int adm_get_next_available_copp(int port_idx)
  297. {
  298. int idx;
  299. pr_debug("%s:\n", __func__);
  300. for (idx = 0; idx < MAX_COPPS_PER_PORT; idx++) {
  301. pr_debug("%s: copp_id:0x%x port_idx:%d idx:%d\n", __func__,
  302. atomic_read(&this_adm.copp.id[port_idx][idx]),
  303. port_idx, idx);
  304. if (atomic_read(&this_adm.copp.id[port_idx][idx]) ==
  305. RESET_COPP_ID)
  306. break;
  307. }
  308. return idx;
  309. }
  310. /**
  311. * srs_trumedia_open -
  312. * command to set SRS trumedia open
  313. *
  314. * @port_id: Port ID number
  315. * @copp_idx: copp index of ADM copp
  316. * @srs_tech_id: SRS tech index
  317. * @srs_params: params pointer
  318. *
  319. * Returns 0 on success or error on failure
  320. */
  321. int srs_trumedia_open(int port_id, int copp_idx, __s32 srs_tech_id,
  322. void *srs_params)
  323. {
  324. struct param_hdr_v3 param_hdr;
  325. struct mem_mapping_hdr mem_hdr;
  326. u32 total_param_size = 0;
  327. bool outband = false;
  328. int port_idx;
  329. int ret = 0;
  330. pr_debug("SRS - %s", __func__);
  331. memset(&param_hdr, 0, sizeof(param_hdr));
  332. memset(&mem_hdr, 0, sizeof(mem_hdr));
  333. port_id = afe_convert_virtual_to_portid(port_id);
  334. port_idx = adm_validate_and_get_port_index(port_id);
  335. if (port_idx < 0) {
  336. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  337. return -EINVAL;
  338. }
  339. param_hdr.module_id = SRS_TRUMEDIA_MODULE_ID;
  340. param_hdr.instance_id = INSTANCE_ID_0;
  341. switch (srs_tech_id) {
  342. case SRS_ID_GLOBAL: {
  343. param_hdr.param_id = SRS_TRUMEDIA_PARAMS;
  344. param_hdr.param_size =
  345. sizeof(struct srs_trumedia_params_GLOBAL);
  346. break;
  347. }
  348. case SRS_ID_WOWHD: {
  349. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_WOWHD;
  350. param_hdr.param_size = sizeof(struct srs_trumedia_params_WOWHD);
  351. break;
  352. }
  353. case SRS_ID_CSHP: {
  354. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_CSHP;
  355. param_hdr.param_size = sizeof(struct srs_trumedia_params_CSHP);
  356. break;
  357. }
  358. case SRS_ID_HPF: {
  359. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_HPF;
  360. param_hdr.param_size = sizeof(struct srs_trumedia_params_HPF);
  361. break;
  362. }
  363. case SRS_ID_AEQ: {
  364. u8 *update_params_ptr = (u8 *) this_adm.outband_memmap.kvaddr;
  365. outband = true;
  366. if (update_params_ptr == NULL) {
  367. pr_err("ADM_SRS_TRUMEDIA - %s: null memmap for AEQ params\n",
  368. __func__);
  369. ret = -EINVAL;
  370. goto fail_cmd;
  371. }
  372. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_AEQ;
  373. param_hdr.param_size = sizeof(struct srs_trumedia_params_AEQ);
  374. ret = q6common_pack_pp_params(update_params_ptr, &param_hdr,
  375. srs_params, &total_param_size);
  376. if (ret) {
  377. pr_err("%s: Failed to pack param header and data, error %d\n",
  378. __func__, ret);
  379. goto fail_cmd;
  380. }
  381. break;
  382. }
  383. case SRS_ID_HL: {
  384. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_HL;
  385. param_hdr.param_size = sizeof(struct srs_trumedia_params_HL);
  386. break;
  387. }
  388. case SRS_ID_GEQ: {
  389. param_hdr.param_id = SRS_TRUMEDIA_PARAMS_GEQ;
  390. param_hdr.param_size = sizeof(struct srs_trumedia_params_GEQ);
  391. break;
  392. }
  393. default:
  394. goto fail_cmd;
  395. }
  396. if (outband && this_adm.outband_memmap.paddr) {
  397. mem_hdr.data_payload_addr_lsw =
  398. lower_32_bits(this_adm.outband_memmap.paddr);
  399. mem_hdr.data_payload_addr_msw =
  400. msm_audio_populate_upper_32_bits(
  401. this_adm.outband_memmap.paddr);
  402. mem_hdr.mem_map_handle = atomic_read(
  403. &this_adm.mem_map_handles[ADM_SRS_TRUMEDIA]);
  404. ret = adm_set_pp_params(port_id, copp_idx, &mem_hdr, NULL,
  405. total_param_size);
  406. } else {
  407. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx,
  408. param_hdr,
  409. (u8 *) srs_params);
  410. }
  411. if (ret < 0)
  412. pr_err("SRS - %s: ADM enable for port %d failed\n", __func__,
  413. port_id);
  414. fail_cmd:
  415. return ret;
  416. }
  417. EXPORT_SYMBOL(srs_trumedia_open);
  418. static int adm_populate_channel_weight(u16 *ptr,
  419. struct msm_pcm_channel_mixer *ch_mixer,
  420. int channel_index)
  421. {
  422. u16 i, j, start_index = 0;
  423. if (channel_index > ch_mixer->output_channel) {
  424. pr_err("%s: channel index %d is larger than output_channel %d\n",
  425. __func__, channel_index, ch_mixer->output_channel);
  426. return -EINVAL;
  427. }
  428. for (i = 0; i < ch_mixer->output_channel; i++) {
  429. pr_debug("%s: weight for output %d:", __func__, i);
  430. for (j = 0; j < ADM_MAX_CHANNELS; j++)
  431. pr_debug(" %d",
  432. ch_mixer->channel_weight[i][j]);
  433. pr_debug("\n");
  434. }
  435. for (i = 0; i < channel_index; ++i)
  436. start_index += ch_mixer->input_channels[i];
  437. for (i = 0; i < ch_mixer->output_channel; ++i) {
  438. for (j = start_index;
  439. j < start_index +
  440. ch_mixer->input_channels[channel_index]; j++) {
  441. *ptr = ch_mixer->channel_weight[i][j];
  442. pr_debug("%s: ptr[%d][%d] = %d\n",
  443. __func__, i, j, *ptr);
  444. ptr++;
  445. }
  446. }
  447. return 0;
  448. }
  449. /*
  450. * adm_programable_channel_mixer
  451. *
  452. * Receives port_id, copp_idx, session_id, session_type, ch_mixer
  453. * and channel_index to send ADM command to mix COPP data.
  454. *
  455. * port_id - Passed value, port_id for which backend is wanted
  456. * copp_idx - Passed value, copp_idx for which COPP is wanted
  457. * session_id - Passed value, session_id for which session is needed
  458. * session_type - Passed value, session_type for RX or TX
  459. * ch_mixer - Passed value, ch_mixer for which channel mixer config is needed
  460. * channel_index - Passed value, channel_index for which channel is needed
  461. */
  462. int adm_programable_channel_mixer(int port_id, int copp_idx, int session_id,
  463. int session_type,
  464. struct msm_pcm_channel_mixer *ch_mixer,
  465. int channel_index)
  466. {
  467. struct adm_cmd_set_pspd_mtmx_strtr_params_v5 *adm_params = NULL;
  468. struct param_hdr_v1 data_v5;
  469. int ret = 0, port_idx, sz = 0, param_size = 0;
  470. struct adm_device_endpoint_payload ep_params = {0, 0, 0, {0}};
  471. u16 *adm_pspd_params;
  472. u16 *ptr;
  473. int index = 0, i = 0, path_type = ADM_PATH_PLAYBACK;
  474. pr_debug("%s: port_id = %d\n", __func__, port_id);
  475. port_id = afe_convert_virtual_to_portid(port_id);
  476. port_idx = adm_validate_and_get_port_index(port_id);
  477. if (port_idx < 0) {
  478. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  479. return -EINVAL;
  480. }
  481. /*
  482. * check if PSPD is already configured
  483. * if it is configured already, return 0 without applying PSPD.
  484. */
  485. if (atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]) > 1) {
  486. pr_debug("%s: copp.cnt:%#x\n", __func__,
  487. atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]));
  488. return 0;
  489. }
  490. /*
  491. * First 8 bytes are 4 bytes as rule number, 2 bytes as output
  492. * channel and 2 bytes as input channel.
  493. * 2 * ch_mixer->output_channel means output channel mapping.
  494. * 2 * ch_mixer->input_channels[channel_index]) means input
  495. * channel mapping.
  496. * 2 * ch_mixer->input_channels[channel_index] *
  497. * ch_mixer->output_channel) means the channel mixer weighting
  498. * coefficients.
  499. * param_size needs to be a multiple of 4 bytes.
  500. */
  501. param_size = 2 * (4 + ch_mixer->output_channel +
  502. ch_mixer->input_channels[channel_index] +
  503. ch_mixer->input_channels[channel_index] *
  504. ch_mixer->output_channel);
  505. param_size = roundup(param_size, 4);
  506. sz = sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5) +
  507. sizeof(struct default_chmixer_param_id_coeff) +
  508. sizeof(struct param_hdr_v1) + param_size;
  509. pr_debug("%s: sz = %d\n", __func__, sz);
  510. adm_params = kzalloc(sz, GFP_KERNEL);
  511. if (!adm_params)
  512. return -ENOMEM;
  513. adm_params->payload_addr_lsw = 0;
  514. adm_params->payload_addr_msw = 0;
  515. adm_params->mem_map_handle = 0;
  516. adm_params->direction = session_type;
  517. adm_params->sessionid = session_id;
  518. pr_debug("%s: copp_id = %d, session id %d\n", __func__,
  519. atomic_read(&this_adm.copp.id[port_idx][copp_idx]),
  520. session_id);
  521. adm_params->deviceid = atomic_read(
  522. &this_adm.copp.id[port_idx][copp_idx]);
  523. adm_params->reserved = 0;
  524. /*
  525. * This module is internal to ADSP and cannot be configured with
  526. * an instance id
  527. */
  528. data_v5.module_id = MTMX_MODULE_ID_DEFAULT_CHMIXER;
  529. data_v5.param_id = DEFAULT_CHMIXER_PARAM_ID_COEFF;
  530. data_v5.reserved = 0;
  531. data_v5.param_size = param_size;
  532. adm_params->payload_size =
  533. sizeof(struct default_chmixer_param_id_coeff) +
  534. sizeof(struct param_hdr_v1) + data_v5.param_size;
  535. adm_pspd_params = (u16 *)((u8 *)adm_params +
  536. sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5));
  537. memcpy(adm_pspd_params, &data_v5, sizeof(data_v5));
  538. adm_pspd_params = (u16 *)((u8 *)adm_params +
  539. sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5)
  540. + sizeof(data_v5));
  541. adm_pspd_params[0] = ch_mixer->rule;
  542. adm_pspd_params[2] = ch_mixer->output_channel;
  543. adm_pspd_params[3] = ch_mixer->input_channels[channel_index];
  544. index = 4;
  545. path_type = (session_type == SESSION_TYPE_RX) ?
  546. ADM_PATH_PLAYBACK : ADM_PATH_LIVE_REC;
  547. if (ch_mixer->override_out_ch_map) {
  548. memcpy(&adm_pspd_params[index], &ch_mixer->out_ch_map,
  549. ch_mixer->output_channel * sizeof(uint16_t));
  550. index += ch_mixer->output_channel;
  551. } else {
  552. ep_params.dev_num_channel = ch_mixer->output_channel;
  553. adm_arrange_mch_map_v8(&ep_params, path_type,
  554. ep_params.dev_num_channel, port_idx);
  555. for (i = 0; i < ch_mixer->output_channel; i++)
  556. adm_pspd_params[index++] = ep_params.dev_channel_mapping[i];
  557. }
  558. if (ch_mixer->override_in_ch_map) {
  559. memcpy(&adm_pspd_params[index], &ch_mixer->in_ch_map,
  560. ch_mixer->input_channel * sizeof(uint16_t));
  561. index += ch_mixer->input_channel;
  562. } else {
  563. ep_params.dev_num_channel = ch_mixer->input_channels[channel_index];
  564. adm_arrange_mch_map_v8(&ep_params, path_type,
  565. ep_params.dev_num_channel, port_idx);
  566. for (i = 0; i < ch_mixer->input_channels[channel_index]; i++)
  567. adm_pspd_params[index++] = ep_params.dev_channel_mapping[i];
  568. }
  569. ret = adm_populate_channel_weight(&adm_pspd_params[index],
  570. ch_mixer, channel_index);
  571. if (ret) {
  572. pr_err("%s: fail to get channel weight with error %d\n",
  573. __func__, ret);
  574. goto fail_cmd;
  575. }
  576. adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  577. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  578. adm_params->hdr.src_svc = APR_SVC_ADM;
  579. adm_params->hdr.src_domain = APR_DOMAIN_APPS;
  580. adm_params->hdr.src_port = port_id;
  581. adm_params->hdr.dest_svc = APR_SVC_ADM;
  582. adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
  583. adm_params->hdr.dest_port =
  584. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  585. adm_params->hdr.token = port_idx << 16 | copp_idx;
  586. adm_params->hdr.opcode = ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5;
  587. adm_params->hdr.pkt_size = sz;
  588. adm_params->payload_addr_lsw = 0;
  589. adm_params->payload_addr_msw = 0;
  590. adm_params->mem_map_handle = 0;
  591. adm_params->reserved = 0;
  592. ptr = (u16 *)adm_params;
  593. for (index = 0; index < (sz / 2); index++)
  594. pr_debug("%s: adm_params[%d] = 0x%x\n",
  595. __func__, index, (unsigned int)ptr[index]);
  596. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], 0);
  597. ret = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
  598. if (ret < 0) {
  599. pr_err("%s: Set params failed port %d rc %d\n", __func__,
  600. port_id, ret);
  601. ret = -EINVAL;
  602. goto fail_cmd;
  603. }
  604. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  605. atomic_read(
  606. &this_adm.copp.stat[port_idx][copp_idx]) >= 0,
  607. msecs_to_jiffies(TIMEOUT_MS));
  608. if (!ret) {
  609. pr_err("%s: set params timed out port = %d\n",
  610. __func__, port_id);
  611. ret = -ETIMEDOUT;
  612. goto fail_cmd;
  613. }
  614. ret = 0;
  615. fail_cmd:
  616. kfree(adm_params);
  617. return ret;
  618. }
  619. EXPORT_SYMBOL(adm_programable_channel_mixer);
  620. /**
  621. * adm_set_stereo_to_custom_stereo -
  622. * command to update custom stereo
  623. *
  624. * @port_id: Port ID number
  625. * @copp_idx: copp index of ADM copp
  626. * @session_id: session id to be updated
  627. * @params: params pointer
  628. * @param_length: length of params
  629. *
  630. * Returns 0 on success or error on failure
  631. */
  632. int adm_set_stereo_to_custom_stereo(int port_id, int copp_idx,
  633. unsigned int session_id, char *params,
  634. uint32_t params_length)
  635. {
  636. struct adm_cmd_set_pspd_mtmx_strtr_params_v5 *adm_params = NULL;
  637. int sz, rc = 0, port_idx;
  638. pr_debug("%s:\n", __func__);
  639. port_id = afe_convert_virtual_to_portid(port_id);
  640. port_idx = adm_validate_and_get_port_index(port_id);
  641. if (port_idx < 0) {
  642. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  643. return -EINVAL;
  644. }
  645. sz = sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5) +
  646. params_length;
  647. adm_params = kzalloc(sz, GFP_KERNEL);
  648. if (!adm_params) {
  649. pr_err("%s, adm params memory alloc failed\n", __func__);
  650. return -ENOMEM;
  651. }
  652. memcpy(((u8 *)adm_params +
  653. sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v5)),
  654. params, params_length);
  655. adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  656. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  657. adm_params->hdr.pkt_size = sz;
  658. adm_params->hdr.src_svc = APR_SVC_ADM;
  659. adm_params->hdr.src_domain = APR_DOMAIN_APPS;
  660. adm_params->hdr.src_port = port_id;
  661. adm_params->hdr.dest_svc = APR_SVC_ADM;
  662. adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
  663. adm_params->hdr.dest_port = 0; /* Ignored */;
  664. adm_params->hdr.token = port_idx << 16 | copp_idx;
  665. adm_params->hdr.opcode = ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5;
  666. adm_params->payload_addr_lsw = 0;
  667. adm_params->payload_addr_msw = 0;
  668. adm_params->mem_map_handle = 0;
  669. adm_params->payload_size = params_length;
  670. /* direction RX as 0 */
  671. adm_params->direction = ADM_MATRIX_ID_AUDIO_RX;
  672. /* session id for this cmd to be applied on */
  673. adm_params->sessionid = session_id;
  674. adm_params->deviceid =
  675. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  676. adm_params->reserved = 0;
  677. pr_debug("%s: deviceid %d, session_id %d, src_port %d, dest_port %d\n",
  678. __func__, adm_params->deviceid, adm_params->sessionid,
  679. adm_params->hdr.src_port, adm_params->hdr.dest_port);
  680. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  681. rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
  682. if (rc < 0) {
  683. pr_err("%s: Set params failed port = 0x%x rc %d\n",
  684. __func__, port_id, rc);
  685. rc = -EINVAL;
  686. goto set_stereo_to_custom_stereo_return;
  687. }
  688. /* Wait for the callback */
  689. rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  690. atomic_read(&this_adm.copp.stat
  691. [port_idx][copp_idx]) >= 0,
  692. msecs_to_jiffies(TIMEOUT_MS));
  693. if (!rc) {
  694. pr_err("%s: Set params timed out port = 0x%x\n", __func__,
  695. port_id);
  696. rc = -EINVAL;
  697. goto set_stereo_to_custom_stereo_return;
  698. } else if (atomic_read(&this_adm.copp.stat
  699. [port_idx][copp_idx]) > 0) {
  700. pr_err("%s: DSP returned error[%s]\n", __func__,
  701. adsp_err_get_err_str(atomic_read(
  702. &this_adm.copp.stat
  703. [port_idx][copp_idx])));
  704. rc = adsp_err_get_lnx_err_code(
  705. atomic_read(&this_adm.copp.stat
  706. [port_idx][copp_idx]));
  707. goto set_stereo_to_custom_stereo_return;
  708. }
  709. rc = 0;
  710. set_stereo_to_custom_stereo_return:
  711. kfree(adm_params);
  712. return rc;
  713. }
  714. EXPORT_SYMBOL(adm_set_stereo_to_custom_stereo);
  715. /*
  716. * adm_set_custom_chmix_cfg:
  717. * Set the custom channel mixer configuration for ADM
  718. *
  719. * @port_id: Backend port id
  720. * @copp_idx: ADM copp index
  721. * @session_id: ID of the requesting session
  722. * @params: Expected packaged params for channel mixer
  723. * @params_length: Length of the params to be set
  724. * @direction: RX or TX direction
  725. * @stream_type: Audio or Listen stream type
  726. */
  727. int adm_set_custom_chmix_cfg(int port_id, int copp_idx,
  728. unsigned int session_id, char *params,
  729. uint32_t params_length, int direction,
  730. int stream_type)
  731. {
  732. struct adm_cmd_set_pspd_mtmx_strtr_params_v6 *adm_params = NULL;
  733. int sz, rc = 0, port_idx;
  734. port_id = afe_convert_virtual_to_portid(port_id);
  735. port_idx = adm_validate_and_get_port_index(port_id);
  736. if (port_idx < 0) {
  737. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  738. return -EINVAL;
  739. }
  740. sz = sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v6) +
  741. params_length;
  742. adm_params = kzalloc(sz, GFP_KERNEL);
  743. if (!adm_params) {
  744. pr_err("%s, adm params memory alloc failed\n", __func__);
  745. return -ENOMEM;
  746. }
  747. memcpy(((u8 *)adm_params +
  748. sizeof(struct adm_cmd_set_pspd_mtmx_strtr_params_v6)),
  749. params, params_length);
  750. adm_params->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  751. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  752. adm_params->hdr.pkt_size = sz;
  753. adm_params->hdr.src_svc = APR_SVC_ADM;
  754. adm_params->hdr.src_domain = APR_DOMAIN_APPS;
  755. adm_params->hdr.src_port = port_id;
  756. adm_params->hdr.dest_svc = APR_SVC_ADM;
  757. adm_params->hdr.dest_domain = APR_DOMAIN_ADSP;
  758. adm_params->hdr.dest_port = 0; /* Ignored */;
  759. adm_params->hdr.token = port_idx << 16 | copp_idx;
  760. adm_params->hdr.opcode = ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V6;
  761. adm_params->payload_addr_lsw = 0;
  762. adm_params->payload_addr_msw = 0;
  763. adm_params->mem_map_handle = 0;
  764. adm_params->payload_size = params_length;
  765. adm_params->direction = direction;
  766. /* session id for this cmd to be applied on */
  767. adm_params->sessionid = session_id;
  768. adm_params->deviceid =
  769. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  770. /* connecting stream type i.e. lsm or asm */
  771. adm_params->stream_type = stream_type;
  772. pr_debug("%s: deviceid %d, session_id %d, src_port %d, dest_port %d\n",
  773. __func__, adm_params->deviceid, adm_params->sessionid,
  774. adm_params->hdr.src_port, adm_params->hdr.dest_port);
  775. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  776. rc = apr_send_pkt(this_adm.apr, (uint32_t *)adm_params);
  777. if (rc < 0) {
  778. pr_err("%s: Set params failed port = 0x%x rc %d\n",
  779. __func__, port_id, rc);
  780. rc = -EINVAL;
  781. goto exit;
  782. }
  783. /* Wait for the callback */
  784. rc = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  785. atomic_read(&this_adm.copp.stat
  786. [port_idx][copp_idx]),
  787. msecs_to_jiffies(TIMEOUT_MS));
  788. if (!rc) {
  789. pr_err("%s: Set params timed out port = 0x%x\n", __func__,
  790. port_id);
  791. rc = -EINVAL;
  792. goto exit;
  793. } else if (atomic_read(&this_adm.copp.stat
  794. [port_idx][copp_idx]) > 0) {
  795. pr_err("%s: DSP returned error[%s]\n", __func__,
  796. adsp_err_get_err_str(atomic_read(
  797. &this_adm.copp.stat
  798. [port_idx][copp_idx])));
  799. rc = adsp_err_get_lnx_err_code(
  800. atomic_read(&this_adm.copp.stat
  801. [port_idx][copp_idx]));
  802. goto exit;
  803. }
  804. rc = 0;
  805. exit:
  806. kfree(adm_params);
  807. return rc;
  808. }
  809. EXPORT_SYMBOL(adm_set_custom_chmix_cfg);
  810. /*
  811. * With pre-packed data, only the opcode differes from V5 and V6.
  812. * Use q6common_pack_pp_params to pack the data correctly.
  813. */
  814. int adm_set_pp_params(int port_id, int copp_idx,
  815. struct mem_mapping_hdr *mem_hdr, u8 *param_data,
  816. u32 param_size)
  817. {
  818. struct adm_cmd_set_pp_params *adm_set_params = NULL;
  819. int size = 0;
  820. int port_idx = 0;
  821. atomic_t *copp_stat = NULL;
  822. int ret = 0;
  823. port_id = afe_convert_virtual_to_portid(port_id);
  824. port_idx = adm_validate_and_get_port_index(port_id);
  825. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  826. pr_err("%s: Invalid port_idx 0x%x\n", __func__, port_idx);
  827. return -EINVAL;
  828. } else if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  829. pr_err("%s: Invalid copp_idx 0x%x\n", __func__, copp_idx);
  830. return -EINVAL;
  831. }
  832. /* Only add params_size in inband case */
  833. size = sizeof(struct adm_cmd_set_pp_params);
  834. if (param_data != NULL)
  835. size += param_size;
  836. adm_set_params = kzalloc(size, GFP_KERNEL);
  837. if (!adm_set_params)
  838. return -ENOMEM;
  839. adm_set_params->apr_hdr.hdr_field =
  840. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  841. APR_PKT_VER);
  842. adm_set_params->apr_hdr.pkt_size = size;
  843. adm_set_params->apr_hdr.src_svc = APR_SVC_ADM;
  844. adm_set_params->apr_hdr.src_domain = APR_DOMAIN_APPS;
  845. adm_set_params->apr_hdr.src_port = port_id;
  846. adm_set_params->apr_hdr.dest_svc = APR_SVC_ADM;
  847. adm_set_params->apr_hdr.dest_domain = APR_DOMAIN_ADSP;
  848. adm_set_params->apr_hdr.dest_port =
  849. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  850. adm_set_params->apr_hdr.token = port_idx << 16 | copp_idx;
  851. if (q6common_is_instance_id_supported())
  852. adm_set_params->apr_hdr.opcode = ADM_CMD_SET_PP_PARAMS_V6;
  853. else
  854. adm_set_params->apr_hdr.opcode = ADM_CMD_SET_PP_PARAMS_V5;
  855. adm_set_params->payload_size = param_size;
  856. if (mem_hdr != NULL) {
  857. /* Out of Band Case */
  858. adm_set_params->mem_hdr = *mem_hdr;
  859. } else if (param_data != NULL) {
  860. /*
  861. * In band case. Parameter data must be pre-packed with its
  862. * header before calling this function. Use
  863. * q6common_pack_pp_params to pack parameter data and header
  864. * correctly.
  865. */
  866. memcpy(&adm_set_params->param_data, param_data, param_size);
  867. } else {
  868. pr_err("%s: Received NULL pointers for both memory header and param data\n",
  869. __func__);
  870. ret = -EINVAL;
  871. goto done;
  872. }
  873. copp_stat = &this_adm.copp.stat[port_idx][copp_idx];
  874. atomic_set(copp_stat, -1);
  875. ret = apr_send_pkt(this_adm.apr, (uint32_t *) adm_set_params);
  876. if (ret < 0) {
  877. pr_err("%s: Set params APR send failed port = 0x%x ret %d\n",
  878. __func__, port_id, ret);
  879. goto done;
  880. }
  881. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  882. atomic_read(copp_stat) >= 0,
  883. msecs_to_jiffies(TIMEOUT_MS));
  884. if (!ret) {
  885. pr_err("%s: Set params timed out port = 0x%x\n", __func__,
  886. port_id);
  887. ret = -ETIMEDOUT;
  888. goto done;
  889. }
  890. if (atomic_read(copp_stat) > 0) {
  891. pr_err("%s: DSP returned error[%s]\n", __func__,
  892. adsp_err_get_err_str(atomic_read(copp_stat)));
  893. ret = adsp_err_get_lnx_err_code(atomic_read(copp_stat));
  894. goto done;
  895. }
  896. ret = 0;
  897. done:
  898. kfree(adm_set_params);
  899. return ret;
  900. }
  901. EXPORT_SYMBOL(adm_set_pp_params);
  902. int adm_pack_and_set_one_pp_param(int port_id, int copp_idx,
  903. struct param_hdr_v3 param_hdr, u8 *param_data)
  904. {
  905. u8 *packed_data = NULL;
  906. u32 total_size = 0;
  907. int ret = 0;
  908. total_size = sizeof(union param_hdrs) + param_hdr.param_size;
  909. packed_data = kzalloc(total_size, GFP_KERNEL);
  910. if (!packed_data)
  911. return -ENOMEM;
  912. ret = q6common_pack_pp_params(packed_data, &param_hdr, param_data,
  913. &total_size);
  914. if (ret) {
  915. pr_err("%s: Failed to pack parameter data, error %d\n",
  916. __func__, ret);
  917. goto done;
  918. }
  919. ret = adm_set_pp_params(port_id, copp_idx, NULL, packed_data,
  920. total_size);
  921. if (ret)
  922. pr_err("%s: Failed to set parameter data, error %d\n", __func__,
  923. ret);
  924. done:
  925. kfree(packed_data);
  926. return ret;
  927. }
  928. EXPORT_SYMBOL(adm_pack_and_set_one_pp_param);
  929. /*
  930. * Only one parameter can be requested at a time. Therefore, packing and sending
  931. * the request can be handled locally.
  932. */
  933. int adm_get_pp_params(int port_id, int copp_idx, uint32_t client_id,
  934. struct mem_mapping_hdr *mem_hdr,
  935. struct param_hdr_v3 *param_hdr, u8 *returned_param_data)
  936. {
  937. struct adm_cmd_get_pp_params adm_get_params;
  938. int total_size = 0;
  939. int get_param_array_sz = ARRAY_SIZE(adm_get_parameters);
  940. int returned_param_size = 0;
  941. int returned_param_size_in_bytes = 0;
  942. int port_idx = 0;
  943. int idx = 0;
  944. atomic_t *copp_stat = NULL;
  945. int ret = 0;
  946. if (param_hdr == NULL) {
  947. pr_err("%s: Received NULL pointer for parameter header\n",
  948. __func__);
  949. return -EINVAL;
  950. }
  951. port_id = afe_convert_virtual_to_portid(port_id);
  952. port_idx = adm_validate_and_get_port_index(port_id);
  953. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  954. pr_err("%s: Invalid port_idx 0x%x\n", __func__, port_idx);
  955. return -EINVAL;
  956. }
  957. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  958. pr_err("%s: Invalid copp_idx 0x%x\n", __func__, copp_idx);
  959. return -EINVAL;
  960. }
  961. memset(&adm_get_params, 0, sizeof(adm_get_params));
  962. if (mem_hdr != NULL)
  963. adm_get_params.mem_hdr = *mem_hdr;
  964. q6common_pack_pp_params((u8 *) &adm_get_params.param_hdr, param_hdr,
  965. NULL, &total_size);
  966. /* Pack APR header after filling body so total_size has correct value */
  967. adm_get_params.apr_hdr.hdr_field =
  968. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  969. APR_PKT_VER);
  970. adm_get_params.apr_hdr.pkt_size = sizeof(adm_get_params);
  971. adm_get_params.apr_hdr.src_svc = APR_SVC_ADM;
  972. adm_get_params.apr_hdr.src_domain = APR_DOMAIN_APPS;
  973. adm_get_params.apr_hdr.src_port = port_id;
  974. adm_get_params.apr_hdr.dest_svc = APR_SVC_ADM;
  975. adm_get_params.apr_hdr.dest_domain = APR_DOMAIN_ADSP;
  976. adm_get_params.apr_hdr.dest_port =
  977. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  978. adm_get_params.apr_hdr.token =
  979. port_idx << 16 | client_id << 8 | copp_idx;
  980. if (q6common_is_instance_id_supported())
  981. adm_get_params.apr_hdr.opcode = ADM_CMD_GET_PP_PARAMS_V6;
  982. else
  983. adm_get_params.apr_hdr.opcode = ADM_CMD_GET_PP_PARAMS_V5;
  984. copp_stat = &this_adm.copp.stat[port_idx][copp_idx];
  985. atomic_set(copp_stat, -1);
  986. ret = apr_send_pkt(this_adm.apr, (uint32_t *) &adm_get_params);
  987. if (ret < 0) {
  988. pr_err("%s: Get params APR send failed port = 0x%x ret %d\n",
  989. __func__, port_id, ret);
  990. ret = -EINVAL;
  991. goto done;
  992. }
  993. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  994. atomic_read(copp_stat) >= 0,
  995. msecs_to_jiffies(TIMEOUT_MS));
  996. if (!ret) {
  997. pr_err("%s: Get params timed out port = 0x%x\n", __func__,
  998. port_id);
  999. ret = -ETIMEDOUT;
  1000. goto done;
  1001. }
  1002. if (atomic_read(copp_stat) > 0) {
  1003. pr_err("%s: DSP returned error[%s]\n", __func__,
  1004. adsp_err_get_err_str(atomic_read(copp_stat)));
  1005. ret = adsp_err_get_lnx_err_code(atomic_read(copp_stat));
  1006. goto done;
  1007. }
  1008. ret = 0;
  1009. /* Copy data to caller if sent in band */
  1010. if (!returned_param_data) {
  1011. pr_debug("%s: Received NULL pointer for param destination, not copying payload\n",
  1012. __func__);
  1013. return 0;
  1014. }
  1015. idx = ADM_GET_PARAMETER_LENGTH * copp_idx;
  1016. returned_param_size = adm_get_parameters[idx];
  1017. if (returned_param_size < 0 ||
  1018. returned_param_size + idx + 1 > get_param_array_sz) {
  1019. pr_err("%s: Invalid parameter size %d\n", __func__,
  1020. returned_param_size);
  1021. return -EINVAL;
  1022. }
  1023. returned_param_size_in_bytes = returned_param_size * sizeof(uint32_t);
  1024. if (param_hdr->param_size < returned_param_size_in_bytes) {
  1025. pr_err("%s: Provided buffer is not big enough, provided buffer size(%d) size needed(%d)\n",
  1026. __func__, param_hdr->param_size,
  1027. returned_param_size_in_bytes);
  1028. return -EINVAL;
  1029. }
  1030. memcpy(returned_param_data, &adm_get_parameters[idx + 1],
  1031. returned_param_size_in_bytes);
  1032. done:
  1033. return ret;
  1034. }
  1035. EXPORT_SYMBOL(adm_get_pp_params);
  1036. int adm_get_pp_topo_module_list_v2(int port_id, int copp_idx,
  1037. int32_t param_length,
  1038. int32_t *returned_params)
  1039. {
  1040. struct adm_cmd_get_pp_topo_module_list adm_get_module_list;
  1041. bool iid_supported = q6common_is_instance_id_supported();
  1042. int *topo_list;
  1043. int num_modules = 0;
  1044. int list_size = 0;
  1045. int port_idx, idx;
  1046. int i = 0;
  1047. atomic_t *copp_stat = NULL;
  1048. int ret = 0;
  1049. pr_debug("%s : port_id %x", __func__, port_id);
  1050. port_id = afe_convert_virtual_to_portid(port_id);
  1051. port_idx = adm_validate_and_get_port_index(port_id);
  1052. if (port_idx < 0) {
  1053. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  1054. return -EINVAL;
  1055. }
  1056. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  1057. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  1058. return -EINVAL;
  1059. }
  1060. memset(&adm_get_module_list, 0, sizeof(adm_get_module_list));
  1061. adm_get_module_list.apr_hdr.pkt_size = sizeof(adm_get_module_list);
  1062. adm_get_module_list.apr_hdr.src_svc = APR_SVC_ADM;
  1063. adm_get_module_list.apr_hdr.src_domain = APR_DOMAIN_APPS;
  1064. adm_get_module_list.apr_hdr.src_port = port_id;
  1065. adm_get_module_list.apr_hdr.dest_svc = APR_SVC_ADM;
  1066. adm_get_module_list.apr_hdr.dest_domain = APR_DOMAIN_ADSP;
  1067. adm_get_module_list.apr_hdr.dest_port =
  1068. atomic_read(&this_adm.copp.id[port_idx][copp_idx]);
  1069. adm_get_module_list.apr_hdr.token = port_idx << 16 | copp_idx;
  1070. /*
  1071. * Out of band functionality is not currently utilized.
  1072. * Assume in band.
  1073. */
  1074. if (iid_supported) {
  1075. adm_get_module_list.apr_hdr.opcode =
  1076. ADM_CMD_GET_PP_TOPO_MODULE_LIST_V2;
  1077. adm_get_module_list.param_max_size = param_length;
  1078. } else {
  1079. adm_get_module_list.apr_hdr.opcode =
  1080. ADM_CMD_GET_PP_TOPO_MODULE_LIST;
  1081. if (param_length > U16_MAX) {
  1082. pr_err("%s: Invalid param length for V1 %d\n", __func__,
  1083. param_length);
  1084. return -EINVAL;
  1085. }
  1086. adm_get_module_list.param_max_size = param_length << 16;
  1087. }
  1088. copp_stat = &this_adm.copp.stat[port_idx][copp_idx];
  1089. atomic_set(copp_stat, -1);
  1090. ret = apr_send_pkt(this_adm.apr, (uint32_t *) &adm_get_module_list);
  1091. if (ret < 0) {
  1092. pr_err("%s: APR send pkt failed for port_id: 0x%x failed ret %d\n",
  1093. __func__, port_id, ret);
  1094. ret = -EINVAL;
  1095. goto done;
  1096. }
  1097. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  1098. atomic_read(copp_stat) >= 0,
  1099. msecs_to_jiffies(TIMEOUT_MS));
  1100. if (!ret) {
  1101. pr_err("%s: Timeout for port_id: 0x%x\n", __func__, port_id);
  1102. ret = -ETIMEDOUT;
  1103. goto done;
  1104. }
  1105. if (atomic_read(copp_stat) > 0) {
  1106. pr_err("%s: DSP returned error[%s]\n", __func__,
  1107. adsp_err_get_err_str(atomic_read(copp_stat)));
  1108. ret = adsp_err_get_lnx_err_code(atomic_read(copp_stat));
  1109. goto done;
  1110. }
  1111. ret = 0;
  1112. if (returned_params) {
  1113. /*
  1114. * When processing ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST IID is
  1115. * added since it is not present. Therefore, there is no need to
  1116. * do anything different if IID is not supported here as it is
  1117. * already taken care of.
  1118. */
  1119. idx = ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH * copp_idx;
  1120. num_modules = adm_module_topo_list[idx];
  1121. if (num_modules < 0 || num_modules > MAX_MODULES_IN_TOPO) {
  1122. pr_err("%s: Invalid number of modules returned %d\n",
  1123. __func__, num_modules);
  1124. return -EINVAL;
  1125. }
  1126. list_size = num_modules * sizeof(struct module_instance_info);
  1127. if (param_length < list_size) {
  1128. pr_err("%s: Provided buffer not big enough to hold module-instance list, provided size %d, needed size %d\n",
  1129. __func__, param_length, list_size);
  1130. return -EINVAL;
  1131. }
  1132. topo_list = (int32_t *) (&adm_module_topo_list[idx]);
  1133. memcpy(returned_params, topo_list, list_size);
  1134. for (i = 1; i <= num_modules; i += 2) {
  1135. pr_debug("module = 0x%x instance = 0x%x\n",
  1136. returned_params[i], returned_params[i + 1]);
  1137. }
  1138. }
  1139. done:
  1140. return ret;
  1141. }
  1142. EXPORT_SYMBOL(adm_get_pp_topo_module_list_v2);
  1143. static void adm_callback_debug_print(struct apr_client_data *data)
  1144. {
  1145. uint32_t *payload;
  1146. payload = data->payload;
  1147. if (data->payload_size >= 8)
  1148. pr_debug("%s: code = 0x%x PL#0[0x%x], PL#1[0x%x], size = %d\n",
  1149. __func__, data->opcode, payload[0], payload[1],
  1150. data->payload_size);
  1151. else if (data->payload_size >= 4)
  1152. pr_debug("%s: code = 0x%x PL#0[0x%x], size = %d\n",
  1153. __func__, data->opcode, payload[0],
  1154. data->payload_size);
  1155. else
  1156. pr_debug("%s: code = 0x%x, size = %d\n",
  1157. __func__, data->opcode, data->payload_size);
  1158. }
  1159. /**
  1160. * adm_set_multi_ch_map -
  1161. * Update multi channel map info
  1162. *
  1163. * @channel_map: pointer with channel map info
  1164. * @path: direction or ADM path type
  1165. *
  1166. * Returns 0 on success or error on failure
  1167. */
  1168. int adm_set_multi_ch_map(char *channel_map, int path)
  1169. {
  1170. int idx;
  1171. if (path == ADM_PATH_PLAYBACK) {
  1172. idx = ADM_MCH_MAP_IDX_PLAYBACK;
  1173. } else if (path == ADM_PATH_LIVE_REC) {
  1174. idx = ADM_MCH_MAP_IDX_REC;
  1175. } else {
  1176. pr_err("%s: invalid attempt to set path %d\n", __func__, path);
  1177. return -EINVAL;
  1178. }
  1179. memcpy(multi_ch_maps[idx].channel_mapping, channel_map,
  1180. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  1181. multi_ch_maps[idx].set_channel_map = true;
  1182. return 0;
  1183. }
  1184. EXPORT_SYMBOL(adm_set_multi_ch_map);
  1185. /**
  1186. * adm_get_multi_ch_map -
  1187. * Retrieves multi channel map info
  1188. *
  1189. * @channel_map: pointer to be updated with channel map
  1190. * @path: direction or ADM path type
  1191. *
  1192. * Returns 0 on success or error on failure
  1193. */
  1194. int adm_get_multi_ch_map(char *channel_map, int path)
  1195. {
  1196. int idx;
  1197. if (path == ADM_PATH_PLAYBACK) {
  1198. idx = ADM_MCH_MAP_IDX_PLAYBACK;
  1199. } else if (path == ADM_PATH_LIVE_REC) {
  1200. idx = ADM_MCH_MAP_IDX_REC;
  1201. } else {
  1202. pr_err("%s: invalid attempt to get path %d\n", __func__, path);
  1203. return -EINVAL;
  1204. }
  1205. if (multi_ch_maps[idx].set_channel_map) {
  1206. memcpy(channel_map, multi_ch_maps[idx].channel_mapping,
  1207. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  1208. }
  1209. return 0;
  1210. }
  1211. EXPORT_SYMBOL(adm_get_multi_ch_map);
  1212. /**
  1213. * adm_set_port_multi_ch_map -
  1214. * Update port specific channel map info
  1215. *
  1216. * @channel_map: pointer with channel map info
  1217. * @port_id: port for which chmap is set
  1218. */
  1219. void adm_set_port_multi_ch_map(char *channel_map, int port_id)
  1220. {
  1221. int port_idx;
  1222. port_id = q6audio_convert_virtual_to_portid(port_id);
  1223. port_idx = adm_validate_and_get_port_index(port_id);
  1224. if (port_idx < 0) {
  1225. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  1226. return;
  1227. }
  1228. memcpy(port_channel_map[port_idx].channel_mapping, channel_map,
  1229. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  1230. port_channel_map[port_idx].set_channel_map = true;
  1231. }
  1232. EXPORT_SYMBOL(adm_set_port_multi_ch_map);
  1233. static int adm_process_get_param_response(u32 opcode, u32 idx, u32 *payload,
  1234. u32 payload_size)
  1235. {
  1236. struct adm_cmd_rsp_get_pp_params_v5 *v5_rsp = NULL;
  1237. struct adm_cmd_rsp_get_pp_params_v6 *v6_rsp = NULL;
  1238. u32 *param_data = NULL;
  1239. int data_size = 0;
  1240. int struct_size = 0;
  1241. if (payload == NULL) {
  1242. pr_err("%s: Payload is NULL\n", __func__);
  1243. return -EINVAL;
  1244. }
  1245. switch (opcode) {
  1246. case ADM_CMDRSP_GET_PP_PARAMS_V5:
  1247. struct_size = sizeof(struct adm_cmd_rsp_get_pp_params_v5);
  1248. if (payload_size < struct_size) {
  1249. pr_err("%s: payload size %d < expected size %d\n",
  1250. __func__, payload_size, struct_size);
  1251. break;
  1252. }
  1253. v5_rsp = (struct adm_cmd_rsp_get_pp_params_v5 *) payload;
  1254. data_size = v5_rsp->param_hdr.param_size;
  1255. param_data = v5_rsp->param_data;
  1256. break;
  1257. case ADM_CMDRSP_GET_PP_PARAMS_V6:
  1258. struct_size = sizeof(struct adm_cmd_rsp_get_pp_params_v6);
  1259. if (payload_size < struct_size) {
  1260. pr_err("%s: payload size %d < expected size %d\n",
  1261. __func__, payload_size, struct_size);
  1262. break;
  1263. }
  1264. v6_rsp = (struct adm_cmd_rsp_get_pp_params_v6 *) payload;
  1265. data_size = v6_rsp->param_hdr.param_size;
  1266. param_data = v6_rsp->param_data;
  1267. break;
  1268. default:
  1269. pr_err("%s: Invalid opcode %d\n", __func__, opcode);
  1270. return -EINVAL;
  1271. }
  1272. /*
  1273. * Just store the returned parameter data, not the header. The calling
  1274. * function is expected to know what it asked for. Therefore, there is
  1275. * no difference between V5 and V6.
  1276. */
  1277. if ((payload_size >= struct_size + data_size) &&
  1278. (ARRAY_SIZE(adm_get_parameters) > idx) &&
  1279. (ARRAY_SIZE(adm_get_parameters) > idx + 1 + data_size)) {
  1280. pr_debug("%s: Received parameter data in band\n",
  1281. __func__);
  1282. /*
  1283. * data_size is expressed in number of bytes, store in number of
  1284. * ints
  1285. */
  1286. adm_get_parameters[idx] =
  1287. data_size / sizeof(*adm_get_parameters);
  1288. pr_debug("%s: GET_PP PARAM: received parameter length: 0x%x\n",
  1289. __func__, adm_get_parameters[idx]);
  1290. /* store params after param_size */
  1291. memcpy(&adm_get_parameters[idx + 1], param_data, data_size);
  1292. } else if (payload_size == sizeof(uint32_t)) {
  1293. adm_get_parameters[idx] = -1;
  1294. pr_debug("%s: Out of band case, setting size to %d\n",
  1295. __func__, adm_get_parameters[idx]);
  1296. } else {
  1297. pr_err("%s: Invalid parameter combination, payload_size %d, idx %d\n",
  1298. __func__, payload_size, idx);
  1299. return -EINVAL;
  1300. }
  1301. return 0;
  1302. }
  1303. static int adm_process_get_topo_list_response(u32 opcode, int copp_idx,
  1304. u32 num_modules, u32 *payload,
  1305. u32 payload_size)
  1306. {
  1307. u32 *fill_list = NULL;
  1308. int idx = 0;
  1309. int i = 0;
  1310. int j = 0;
  1311. if (payload == NULL) {
  1312. pr_err("%s: Payload is NULL\n", __func__);
  1313. return -EINVAL;
  1314. } else if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  1315. pr_err("%s: Invalid COPP index %d\n", __func__, copp_idx);
  1316. return -EINVAL;
  1317. }
  1318. idx = ADM_GET_TOPO_MODULE_INSTANCE_LIST_LENGTH * copp_idx;
  1319. fill_list = adm_module_topo_list + idx;
  1320. *fill_list++ = num_modules;
  1321. for (i = 0; i < num_modules; i++) {
  1322. if (j > payload_size / sizeof(u32)) {
  1323. pr_err("%s: Invalid number of modules specified %d\n",
  1324. __func__, num_modules);
  1325. return -EINVAL;
  1326. }
  1327. /* store module ID */
  1328. *fill_list++ = payload[j];
  1329. j++;
  1330. switch (opcode) {
  1331. case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST_V2:
  1332. /* store instance ID */
  1333. *fill_list++ = payload[j];
  1334. j++;
  1335. break;
  1336. case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST:
  1337. /* Insert IID 0 when repacking */
  1338. *fill_list++ = INSTANCE_ID_0;
  1339. break;
  1340. default:
  1341. pr_err("%s: Invalid opcode %d\n", __func__, opcode);
  1342. return -EINVAL;
  1343. }
  1344. }
  1345. return 0;
  1346. }
  1347. static void adm_reset_data(void)
  1348. {
  1349. int i, j;
  1350. apr_reset(this_adm.apr);
  1351. for (i = 0; i < AFE_MAX_PORTS; i++) {
  1352. for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
  1353. atomic_set(&this_adm.copp.id[i][j],
  1354. RESET_COPP_ID);
  1355. atomic_set(&this_adm.copp.cnt[i][j], 0);
  1356. atomic_set(
  1357. &this_adm.copp.topology[i][j], 0);
  1358. atomic_set(&this_adm.copp.mode[i][j],
  1359. 0);
  1360. atomic_set(&this_adm.copp.stat[i][j],
  1361. 0);
  1362. atomic_set(&this_adm.copp.rate[i][j],
  1363. 0);
  1364. atomic_set(
  1365. &this_adm.copp.channels[i][j],
  1366. 0);
  1367. atomic_set(
  1368. &this_adm.copp.bit_width[i][j], 0);
  1369. atomic_set(
  1370. &this_adm.copp.app_type[i][j], 0);
  1371. atomic_set(
  1372. &this_adm.copp.acdb_id[i][j], 0);
  1373. atomic_set(
  1374. &this_adm.copp.session_type[i][j], 0);
  1375. this_adm.copp.adm_status[i][j] =
  1376. ADM_STATUS_CALIBRATION_REQUIRED;
  1377. }
  1378. }
  1379. this_adm.apr = NULL;
  1380. cal_utils_clear_cal_block_q6maps(ADM_MAX_CAL_TYPES,
  1381. this_adm.cal_data);
  1382. mutex_lock(&this_adm.cal_data
  1383. [ADM_CUSTOM_TOP_CAL]->lock);
  1384. this_adm.set_custom_topology = 1;
  1385. mutex_unlock(&this_adm.cal_data[
  1386. ADM_CUSTOM_TOP_CAL]->lock);
  1387. rtac_clear_mapping(ADM_RTAC_CAL);
  1388. /*
  1389. * Free the ION memory and clear the map handles
  1390. * for Source Tracking
  1391. */
  1392. if (this_adm.sourceTrackingData.memmap.paddr != 0) {
  1393. msm_audio_ion_free(
  1394. this_adm.sourceTrackingData.dma_buf);
  1395. this_adm.sourceTrackingData.dma_buf = NULL;
  1396. this_adm.sourceTrackingData.memmap.size = 0;
  1397. this_adm.sourceTrackingData.memmap.kvaddr =
  1398. NULL;
  1399. this_adm.sourceTrackingData.memmap.paddr = 0;
  1400. this_adm.sourceTrackingData.apr_cmd_status = -1;
  1401. atomic_set(&this_adm.mem_map_handles[
  1402. ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
  1403. }
  1404. }
  1405. static int32_t adm_callback(struct apr_client_data *data, void *priv)
  1406. {
  1407. uint32_t *payload;
  1408. int port_idx, copp_idx, idx, client_id;
  1409. int num_modules;
  1410. int ret;
  1411. if (data == NULL) {
  1412. pr_err("%s: data parameter is null\n", __func__);
  1413. return -EINVAL;
  1414. }
  1415. payload = data->payload;
  1416. if (data->opcode == RESET_EVENTS) {
  1417. pr_debug("%s: Reset event is received: %d %d apr[%pK]\n",
  1418. __func__,
  1419. data->reset_event, data->reset_proc, this_adm.apr);
  1420. if (this_adm.apr)
  1421. adm_reset_data();
  1422. return 0;
  1423. }
  1424. adm_callback_debug_print(data);
  1425. if (data->payload_size >= sizeof(uint32_t)) {
  1426. copp_idx = (data->token) & 0XFF;
  1427. port_idx = ((data->token) >> 16) & 0xFF;
  1428. client_id = ((data->token) >> 8) & 0xFF;
  1429. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  1430. pr_err("%s: Invalid port idx %d token %d\n",
  1431. __func__, port_idx, data->token);
  1432. return 0;
  1433. }
  1434. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  1435. pr_err("%s: Invalid copp idx %d token %d\n",
  1436. __func__, copp_idx, data->token);
  1437. return 0;
  1438. }
  1439. if (client_id < 0 || client_id >= ADM_CLIENT_ID_MAX) {
  1440. pr_err("%s: Invalid client id %d\n", __func__,
  1441. client_id);
  1442. return 0;
  1443. }
  1444. if (data->opcode == APR_BASIC_RSP_RESULT) {
  1445. pr_debug("%s: APR_BASIC_RSP_RESULT id 0x%x\n",
  1446. __func__, payload[0]);
  1447. if (!((client_id != ADM_CLIENT_ID_SOURCE_TRACKING) &&
  1448. ((payload[0] == ADM_CMD_SET_PP_PARAMS_V5) ||
  1449. (payload[0] == ADM_CMD_SET_PP_PARAMS_V6)))) {
  1450. if (data->payload_size <
  1451. (2 * sizeof(uint32_t))) {
  1452. pr_err("%s: Invalid payload size %d\n",
  1453. __func__, data->payload_size);
  1454. return 0;
  1455. }
  1456. }
  1457. if (payload[1] != 0) {
  1458. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  1459. __func__, payload[0], payload[1]);
  1460. }
  1461. switch (payload[0]) {
  1462. case ADM_CMD_SET_PP_PARAMS_V5:
  1463. case ADM_CMD_SET_PP_PARAMS_V6:
  1464. pr_debug("%s: ADM_CMD_SET_PP_PARAMS\n",
  1465. __func__);
  1466. if (client_id == ADM_CLIENT_ID_SOURCE_TRACKING)
  1467. this_adm.sourceTrackingData.
  1468. apr_cmd_status = payload[1];
  1469. else if (rtac_make_adm_callback(payload,
  1470. data->payload_size))
  1471. break;
  1472. /*
  1473. * if soft volume is called and already
  1474. * interrupted break out of the sequence here
  1475. */
  1476. case ADM_CMD_DEVICE_OPEN_V5:
  1477. case ADM_CMD_DEVICE_CLOSE_V5:
  1478. case ADM_CMD_DEVICE_OPEN_V6:
  1479. case ADM_CMD_DEVICE_OPEN_V8:
  1480. pr_debug("%s: Basic callback received, wake up.\n",
  1481. __func__);
  1482. atomic_set(&this_adm.copp.stat[port_idx]
  1483. [copp_idx], payload[1]);
  1484. wake_up(
  1485. &this_adm.copp.wait[port_idx][copp_idx]);
  1486. break;
  1487. case ADM_CMD_ADD_TOPOLOGIES:
  1488. pr_debug("%s: callback received, ADM_CMD_ADD_TOPOLOGIES.\n",
  1489. __func__);
  1490. atomic_set(&this_adm.adm_stat, payload[1]);
  1491. wake_up(&this_adm.adm_wait);
  1492. break;
  1493. case ADM_CMD_MATRIX_MAP_ROUTINGS_V5:
  1494. case ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5:
  1495. pr_debug("%s: Basic callback received, wake up.\n",
  1496. __func__);
  1497. atomic_set(&this_adm.matrix_map_stat,
  1498. payload[1]);
  1499. wake_up(&this_adm.matrix_map_wait);
  1500. break;
  1501. case ADM_CMD_SHARED_MEM_UNMAP_REGIONS:
  1502. pr_debug("%s: ADM_CMD_SHARED_MEM_UNMAP_REGIONS\n",
  1503. __func__);
  1504. atomic_set(&this_adm.adm_stat, payload[1]);
  1505. wake_up(&this_adm.adm_wait);
  1506. break;
  1507. case ADM_CMD_SHARED_MEM_MAP_REGIONS:
  1508. pr_debug("%s: ADM_CMD_SHARED_MEM_MAP_REGIONS\n",
  1509. __func__);
  1510. /* Should only come here if there is an APR */
  1511. /* error or malformed APR packet. Otherwise */
  1512. /* response will be returned as */
  1513. if (payload[1] != 0) {
  1514. pr_err("%s: ADM map error, resuming\n",
  1515. __func__);
  1516. atomic_set(&this_adm.adm_stat,
  1517. payload[1]);
  1518. wake_up(&this_adm.adm_wait);
  1519. }
  1520. break;
  1521. case ADM_CMD_GET_PP_PARAMS_V5:
  1522. case ADM_CMD_GET_PP_PARAMS_V6:
  1523. pr_debug("%s: ADM_CMD_GET_PP_PARAMS\n",
  1524. __func__);
  1525. /* Should only come here if there is an APR */
  1526. /* error or malformed APR packet. Otherwise */
  1527. /* response will be returned as */
  1528. /* ADM_CMDRSP_GET_PP_PARAMS_V5 */
  1529. if (client_id ==
  1530. ADM_CLIENT_ID_SOURCE_TRACKING) {
  1531. this_adm.sourceTrackingData.
  1532. apr_cmd_status = payload[1];
  1533. if (payload[1] != 0)
  1534. pr_err("%s: ADM get param error = %d\n",
  1535. __func__, payload[1]);
  1536. atomic_set(&this_adm.copp.stat
  1537. [port_idx][copp_idx],
  1538. payload[1]);
  1539. wake_up(&this_adm.copp.wait
  1540. [port_idx][copp_idx]);
  1541. } else {
  1542. if (payload[1] != 0) {
  1543. pr_err("%s: ADM get param error = %d, resuming\n",
  1544. __func__, payload[1]);
  1545. rtac_make_adm_callback(payload,
  1546. data->payload_size);
  1547. }
  1548. }
  1549. break;
  1550. case ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V5:
  1551. case ADM_CMD_SET_PSPD_MTMX_STRTR_PARAMS_V6:
  1552. pr_debug("%s:callback received PSPD MTMX, wake up\n",
  1553. __func__);
  1554. atomic_set(&this_adm.copp.stat[port_idx]
  1555. [copp_idx], payload[1]);
  1556. wake_up(
  1557. &this_adm.copp.wait[port_idx][copp_idx]);
  1558. break;
  1559. case ADM_CMD_GET_PP_TOPO_MODULE_LIST:
  1560. case ADM_CMD_GET_PP_TOPO_MODULE_LIST_V2:
  1561. pr_debug("%s:ADM_CMD_GET_PP_TOPO_MODULE_LIST\n",
  1562. __func__);
  1563. if (payload[1] != 0)
  1564. pr_err("%s: ADM get topo list error = %d\n",
  1565. __func__, payload[1]);
  1566. break;
  1567. default:
  1568. pr_err("%s: Unknown Cmd: 0x%x\n", __func__,
  1569. payload[0]);
  1570. break;
  1571. }
  1572. return 0;
  1573. }
  1574. switch (data->opcode) {
  1575. case ADM_CMDRSP_DEVICE_OPEN_V5:
  1576. case ADM_CMDRSP_DEVICE_OPEN_V6:
  1577. case ADM_CMDRSP_DEVICE_OPEN_V8: {
  1578. struct adm_cmd_rsp_device_open_v5 *open = NULL;
  1579. if (data->payload_size <
  1580. sizeof(struct adm_cmd_rsp_device_open_v5)) {
  1581. pr_err("%s: Invalid payload size %d\n", __func__,
  1582. data->payload_size);
  1583. return 0;
  1584. }
  1585. open = (struct adm_cmd_rsp_device_open_v5 *)data->payload;
  1586. if (open->copp_id == INVALID_COPP_ID) {
  1587. pr_err("%s: invalid coppid rxed %d\n",
  1588. __func__, open->copp_id);
  1589. atomic_set(&this_adm.copp.stat[port_idx]
  1590. [copp_idx], ADSP_EBADPARAM);
  1591. wake_up(
  1592. &this_adm.copp.wait[port_idx][copp_idx]);
  1593. break;
  1594. }
  1595. atomic_set(&this_adm.copp.stat
  1596. [port_idx][copp_idx], payload[0]);
  1597. atomic_set(&this_adm.copp.id[port_idx][copp_idx],
  1598. open->copp_id);
  1599. pr_debug("%s: coppid rxed=%d\n", __func__,
  1600. open->copp_id);
  1601. wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
  1602. }
  1603. break;
  1604. case ADM_CMDRSP_GET_PP_PARAMS_V5:
  1605. case ADM_CMDRSP_GET_PP_PARAMS_V6:
  1606. pr_debug("%s: ADM_CMDRSP_GET_PP_PARAMS\n", __func__);
  1607. if (client_id == ADM_CLIENT_ID_SOURCE_TRACKING)
  1608. this_adm.sourceTrackingData.apr_cmd_status =
  1609. payload[0];
  1610. else if (rtac_make_adm_callback(payload,
  1611. data->payload_size))
  1612. break;
  1613. idx = ADM_GET_PARAMETER_LENGTH * copp_idx;
  1614. if (payload[0] == 0 && data->payload_size > 0) {
  1615. ret = adm_process_get_param_response(
  1616. data->opcode, idx, payload,
  1617. data->payload_size);
  1618. if (ret)
  1619. pr_err("%s: Failed to process get param response, error %d\n",
  1620. __func__, ret);
  1621. } else {
  1622. adm_get_parameters[idx] = -1;
  1623. pr_err("%s: ADM_CMDRSP_GET_PP_PARAMS returned error 0x%x\n",
  1624. __func__, payload[0]);
  1625. }
  1626. atomic_set(&this_adm.copp.stat[port_idx][copp_idx],
  1627. payload[0]);
  1628. wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
  1629. break;
  1630. case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST:
  1631. case ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST_V2:
  1632. pr_debug("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST\n",
  1633. __func__);
  1634. if (data->payload_size >= (2 * sizeof(uint32_t))) {
  1635. num_modules = payload[1];
  1636. pr_debug("%s: Num modules %d\n", __func__,
  1637. num_modules);
  1638. if (payload[0]) {
  1639. pr_err("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST, error = %d\n",
  1640. __func__, payload[0]);
  1641. } else if (num_modules > MAX_MODULES_IN_TOPO) {
  1642. pr_err("%s: ADM_CMDRSP_GET_PP_TOPO_MODULE_LIST invalid num modules received, num modules = %d\n",
  1643. __func__, num_modules);
  1644. } else {
  1645. ret = adm_process_get_topo_list_response(
  1646. data->opcode, copp_idx,
  1647. num_modules, payload,
  1648. data->payload_size);
  1649. if (ret)
  1650. pr_err("%s: Failed to process get topo modules list response, error %d\n",
  1651. __func__, ret);
  1652. }
  1653. } else {
  1654. pr_err("%s: Invalid payload size %d\n",
  1655. __func__, data->payload_size);
  1656. }
  1657. atomic_set(&this_adm.copp.stat[port_idx][copp_idx],
  1658. payload[0]);
  1659. wake_up(&this_adm.copp.wait[port_idx][copp_idx]);
  1660. break;
  1661. case ADM_CMDRSP_SHARED_MEM_MAP_REGIONS:
  1662. pr_debug("%s: ADM_CMDRSP_SHARED_MEM_MAP_REGIONS\n",
  1663. __func__);
  1664. atomic_set(&this_adm.mem_map_handles[
  1665. atomic_read(&this_adm.mem_map_index)],
  1666. *payload);
  1667. atomic_set(&this_adm.adm_stat, 0);
  1668. wake_up(&this_adm.adm_wait);
  1669. break;
  1670. default:
  1671. pr_err("%s: Unknown cmd:0x%x\n", __func__,
  1672. data->opcode);
  1673. break;
  1674. }
  1675. }
  1676. return 0;
  1677. }
  1678. static int adm_memory_map_regions(phys_addr_t *buf_add, uint32_t mempool_id,
  1679. uint32_t *bufsz, uint32_t bufcnt)
  1680. {
  1681. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  1682. struct avs_shared_map_region_payload *mregions = NULL;
  1683. void *mmap_region_cmd = NULL;
  1684. void *payload = NULL;
  1685. int ret = 0;
  1686. int i = 0;
  1687. int cmd_size = 0;
  1688. pr_debug("%s:\n", __func__);
  1689. if (this_adm.apr == NULL) {
  1690. this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
  1691. 0xFFFFFFFF, &this_adm);
  1692. if (this_adm.apr == NULL) {
  1693. pr_err("%s: Unable to register ADM\n", __func__);
  1694. ret = -ENODEV;
  1695. return ret;
  1696. }
  1697. rtac_set_adm_handle(this_adm.apr);
  1698. }
  1699. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  1700. + sizeof(struct avs_shared_map_region_payload)
  1701. * bufcnt;
  1702. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  1703. if (!mmap_region_cmd)
  1704. return -ENOMEM;
  1705. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)mmap_region_cmd;
  1706. mmap_regions->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1707. APR_HDR_LEN(APR_HDR_SIZE),
  1708. APR_PKT_VER);
  1709. mmap_regions->hdr.pkt_size = cmd_size;
  1710. mmap_regions->hdr.src_port = 0;
  1711. mmap_regions->hdr.dest_port = 0;
  1712. mmap_regions->hdr.token = 0;
  1713. mmap_regions->hdr.opcode = ADM_CMD_SHARED_MEM_MAP_REGIONS;
  1714. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL & 0x00ff;
  1715. mmap_regions->num_regions = bufcnt & 0x00ff;
  1716. mmap_regions->property_flag = 0x00;
  1717. pr_debug("%s: map_regions->num_regions = %d\n", __func__,
  1718. mmap_regions->num_regions);
  1719. payload = ((u8 *) mmap_region_cmd +
  1720. sizeof(struct avs_cmd_shared_mem_map_regions));
  1721. mregions = (struct avs_shared_map_region_payload *)payload;
  1722. for (i = 0; i < bufcnt; i++) {
  1723. mregions->shm_addr_lsw = lower_32_bits(buf_add[i]);
  1724. mregions->shm_addr_msw =
  1725. msm_audio_populate_upper_32_bits(buf_add[i]);
  1726. mregions->mem_size_bytes = bufsz[i];
  1727. ++mregions;
  1728. }
  1729. atomic_set(&this_adm.adm_stat, -1);
  1730. ret = apr_send_pkt(this_adm.apr, (uint32_t *) mmap_region_cmd);
  1731. if (ret < 0) {
  1732. pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
  1733. mmap_regions->hdr.opcode, ret);
  1734. ret = -EINVAL;
  1735. goto fail_cmd;
  1736. }
  1737. ret = wait_event_timeout(this_adm.adm_wait,
  1738. atomic_read(&this_adm.adm_stat) >= 0,
  1739. msecs_to_jiffies(TIMEOUT_MS));
  1740. if (!ret) {
  1741. pr_err("%s: timeout. waited for memory_map\n", __func__);
  1742. ret = -EINVAL;
  1743. goto fail_cmd;
  1744. } else if (atomic_read(&this_adm.adm_stat) > 0) {
  1745. pr_err("%s: DSP returned error[%s]\n",
  1746. __func__, adsp_err_get_err_str(
  1747. atomic_read(&this_adm.adm_stat)));
  1748. ret = adsp_err_get_lnx_err_code(
  1749. atomic_read(&this_adm.adm_stat));
  1750. goto fail_cmd;
  1751. }
  1752. fail_cmd:
  1753. kfree(mmap_region_cmd);
  1754. return ret;
  1755. }
  1756. static int adm_memory_unmap_regions(void)
  1757. {
  1758. struct avs_cmd_shared_mem_unmap_regions unmap_regions;
  1759. int ret = 0;
  1760. pr_debug("%s:\n", __func__);
  1761. if (this_adm.apr == NULL) {
  1762. pr_err("%s: APR handle NULL\n", __func__);
  1763. return -EINVAL;
  1764. }
  1765. unmap_regions.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1766. APR_HDR_LEN(APR_HDR_SIZE),
  1767. APR_PKT_VER);
  1768. unmap_regions.hdr.pkt_size = sizeof(unmap_regions);
  1769. unmap_regions.hdr.src_port = 0;
  1770. unmap_regions.hdr.dest_port = 0;
  1771. unmap_regions.hdr.token = 0;
  1772. unmap_regions.hdr.opcode = ADM_CMD_SHARED_MEM_UNMAP_REGIONS;
  1773. unmap_regions.mem_map_handle = atomic_read(&this_adm.
  1774. mem_map_handles[atomic_read(&this_adm.mem_map_index)]);
  1775. atomic_set(&this_adm.adm_stat, -1);
  1776. ret = apr_send_pkt(this_adm.apr, (uint32_t *) &unmap_regions);
  1777. if (ret < 0) {
  1778. pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
  1779. unmap_regions.hdr.opcode, ret);
  1780. ret = -EINVAL;
  1781. goto fail_cmd;
  1782. }
  1783. ret = wait_event_timeout(this_adm.adm_wait,
  1784. atomic_read(&this_adm.adm_stat) >= 0,
  1785. msecs_to_jiffies(TIMEOUT_MS));
  1786. if (!ret) {
  1787. pr_err("%s: timeout. waited for memory_unmap\n",
  1788. __func__);
  1789. ret = -EINVAL;
  1790. goto fail_cmd;
  1791. } else if (atomic_read(&this_adm.adm_stat) > 0) {
  1792. pr_err("%s: DSP returned error[%s]\n",
  1793. __func__, adsp_err_get_err_str(
  1794. atomic_read(&this_adm.adm_stat)));
  1795. ret = adsp_err_get_lnx_err_code(
  1796. atomic_read(&this_adm.adm_stat));
  1797. goto fail_cmd;
  1798. } else {
  1799. pr_debug("%s: Unmap handle 0x%x succeeded\n", __func__,
  1800. unmap_regions.mem_map_handle);
  1801. }
  1802. fail_cmd:
  1803. return ret;
  1804. }
  1805. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index)
  1806. {
  1807. int ret = 0;
  1808. if (cal_block->map_data.dma_buf == NULL) {
  1809. pr_err("%s: No ION allocation for cal index %d!\n",
  1810. __func__, cal_index);
  1811. ret = -EINVAL;
  1812. goto done;
  1813. }
  1814. if ((cal_block->map_data.map_size > 0) &&
  1815. (cal_block->map_data.q6map_handle == 0)) {
  1816. atomic_set(&this_adm.mem_map_index, cal_index);
  1817. ret = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
  1818. (uint32_t *)&cal_block->map_data.map_size, 1);
  1819. if (ret < 0) {
  1820. pr_err("%s: ADM mmap did not work! size = %zd ret %d\n",
  1821. __func__,
  1822. cal_block->map_data.map_size, ret);
  1823. pr_debug("%s: ADM mmap did not work! addr = 0x%pK, size = %zd ret %d\n",
  1824. __func__,
  1825. &cal_block->cal_data.paddr,
  1826. cal_block->map_data.map_size, ret);
  1827. goto done;
  1828. }
  1829. cal_block->map_data.q6map_handle = atomic_read(&this_adm.
  1830. mem_map_handles[cal_index]);
  1831. }
  1832. done:
  1833. return ret;
  1834. }
  1835. static void send_adm_custom_topology(void)
  1836. {
  1837. struct cal_block_data *cal_block = NULL;
  1838. struct cmd_set_topologies adm_top;
  1839. int cal_index = ADM_CUSTOM_TOP_CAL;
  1840. int result;
  1841. if (this_adm.cal_data[cal_index] == NULL)
  1842. goto done;
  1843. mutex_lock(&this_adm.cal_data[cal_index]->lock);
  1844. if (!this_adm.set_custom_topology)
  1845. goto unlock;
  1846. this_adm.set_custom_topology = 0;
  1847. cal_block = cal_utils_get_only_cal_block(this_adm.cal_data[cal_index]);
  1848. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block, this_adm.cal_data[cal_index]))
  1849. goto unlock;
  1850. pr_debug("%s: Sending cal_index %d\n", __func__, cal_index);
  1851. result = remap_cal_data(cal_block, cal_index);
  1852. if (result) {
  1853. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  1854. __func__, cal_index);
  1855. goto unlock;
  1856. }
  1857. atomic_set(&this_adm.mem_map_index, cal_index);
  1858. atomic_set(&this_adm.mem_map_handles[cal_index],
  1859. cal_block->map_data.q6map_handle);
  1860. if (cal_block->cal_data.size == 0) {
  1861. pr_debug("%s: No ADM cal to send\n", __func__);
  1862. goto unlock;
  1863. }
  1864. adm_top.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1865. APR_HDR_LEN(20), APR_PKT_VER);
  1866. adm_top.hdr.pkt_size = sizeof(adm_top);
  1867. adm_top.hdr.src_svc = APR_SVC_ADM;
  1868. adm_top.hdr.src_domain = APR_DOMAIN_APPS;
  1869. adm_top.hdr.src_port = 0;
  1870. adm_top.hdr.dest_svc = APR_SVC_ADM;
  1871. adm_top.hdr.dest_domain = APR_DOMAIN_ADSP;
  1872. adm_top.hdr.dest_port = 0;
  1873. adm_top.hdr.token = 0;
  1874. adm_top.hdr.opcode = ADM_CMD_ADD_TOPOLOGIES;
  1875. adm_top.payload_addr_lsw = lower_32_bits(cal_block->cal_data.paddr);
  1876. adm_top.payload_addr_msw = msm_audio_populate_upper_32_bits(
  1877. cal_block->cal_data.paddr);
  1878. adm_top.mem_map_handle = cal_block->map_data.q6map_handle;
  1879. adm_top.payload_size = cal_block->cal_data.size;
  1880. atomic_set(&this_adm.adm_stat, -1);
  1881. pr_debug("%s: Sending ADM_CMD_ADD_TOPOLOGIES payload = 0x%pK, size = %d\n",
  1882. __func__, &cal_block->cal_data.paddr,
  1883. adm_top.payload_size);
  1884. result = apr_send_pkt(this_adm.apr, (uint32_t *)&adm_top);
  1885. if (result < 0) {
  1886. pr_err("%s: Set topologies failed payload size = %zd result %d\n",
  1887. __func__, cal_block->cal_data.size, result);
  1888. goto unlock;
  1889. }
  1890. /* Wait for the callback */
  1891. result = wait_event_timeout(this_adm.adm_wait,
  1892. atomic_read(&this_adm.adm_stat) >= 0,
  1893. msecs_to_jiffies(TIMEOUT_MS));
  1894. if (!result) {
  1895. pr_err("%s: Set topologies timed out payload size = %zd\n",
  1896. __func__, cal_block->cal_data.size);
  1897. goto unlock;
  1898. } else if (atomic_read(&this_adm.adm_stat) > 0) {
  1899. pr_err("%s: DSP returned error[%s]\n",
  1900. __func__, adsp_err_get_err_str(
  1901. atomic_read(&this_adm.adm_stat)));
  1902. result = adsp_err_get_lnx_err_code(
  1903. atomic_read(&this_adm.adm_stat));
  1904. goto unlock;
  1905. }
  1906. unlock:
  1907. mutex_unlock(&this_adm.cal_data[cal_index]->lock);
  1908. done:
  1909. return;
  1910. }
  1911. static int send_adm_cal_block(int port_id, int copp_idx,
  1912. struct cal_block_data *cal_block, int perf_mode)
  1913. {
  1914. struct mem_mapping_hdr mem_hdr;
  1915. int payload_size = 0;
  1916. int port_idx = 0;
  1917. int topology = 0;
  1918. int result = 0;
  1919. pr_debug("%s: Port id 0x%x,\n", __func__, port_id);
  1920. if (!cal_block) {
  1921. pr_debug("%s: No ADM cal to send for port_id = 0x%x!\n",
  1922. __func__, port_id);
  1923. result = -EINVAL;
  1924. goto done;
  1925. }
  1926. if (cal_block->cal_data.size <= 0) {
  1927. pr_debug("%s: No ADM cal sent for port_id = 0x%x!\n", __func__,
  1928. port_id);
  1929. result = -EINVAL;
  1930. goto done;
  1931. }
  1932. memset(&mem_hdr, 0, sizeof(mem_hdr));
  1933. port_id = afe_convert_virtual_to_portid(port_id);
  1934. port_idx = adm_validate_and_get_port_index(port_id);
  1935. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  1936. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  1937. return -EINVAL;
  1938. } else if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  1939. pr_err("%s: Invalid copp_idx 0x%x\n", __func__, copp_idx);
  1940. return -EINVAL;
  1941. }
  1942. topology = atomic_read(&this_adm.copp.topology[port_idx][copp_idx]);
  1943. if (perf_mode == LEGACY_PCM_MODE &&
  1944. topology == DS2_ADM_COPP_TOPOLOGY_ID) {
  1945. pr_err("%s: perf_mode %d, topology 0x%x\n", __func__, perf_mode,
  1946. topology);
  1947. goto done;
  1948. }
  1949. mem_hdr.data_payload_addr_lsw =
  1950. lower_32_bits(cal_block->cal_data.paddr);
  1951. mem_hdr.data_payload_addr_msw =
  1952. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1953. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  1954. payload_size = cal_block->cal_data.size;
  1955. adm_set_pp_params(port_id, copp_idx, &mem_hdr, NULL, payload_size);
  1956. done:
  1957. return result;
  1958. }
  1959. static struct cal_block_data *adm_find_cal_by_path(int cal_index, int path)
  1960. {
  1961. struct list_head *ptr, *next;
  1962. struct cal_block_data *cal_block = NULL;
  1963. struct audio_cal_info_audproc *audproc_cal_info = NULL;
  1964. struct audio_cal_info_audvol *audvol_cal_info = NULL;
  1965. pr_debug("%s:\n", __func__);
  1966. list_for_each_safe(ptr, next,
  1967. &this_adm.cal_data[cal_index]->cal_blocks) {
  1968. cal_block = list_entry(ptr,
  1969. struct cal_block_data, list);
  1970. if (cal_utils_is_cal_stale(cal_block, this_adm.cal_data[cal_index]))
  1971. continue;
  1972. if (cal_index == ADM_AUDPROC_CAL ||
  1973. cal_index == ADM_LSM_AUDPROC_CAL ||
  1974. cal_index == ADM_LSM_AUDPROC_PERSISTENT_CAL ||
  1975. cal_index == ADM_AUDPROC_PERSISTENT_CAL) {
  1976. audproc_cal_info = cal_block->cal_info;
  1977. if ((audproc_cal_info->path == path) &&
  1978. (cal_block->cal_data.size > 0))
  1979. return cal_block;
  1980. } else if (cal_index == ADM_AUDVOL_CAL) {
  1981. audvol_cal_info = cal_block->cal_info;
  1982. if ((audvol_cal_info->path == path) &&
  1983. (cal_block->cal_data.size > 0))
  1984. return cal_block;
  1985. }
  1986. }
  1987. pr_debug("%s: Can't find ADM cal for cal_index %d, path %d\n",
  1988. __func__, cal_index, path);
  1989. return NULL;
  1990. }
  1991. static struct cal_block_data *adm_find_cal_by_app_type(int cal_index, int path,
  1992. int app_type)
  1993. {
  1994. struct list_head *ptr, *next;
  1995. struct cal_block_data *cal_block = NULL;
  1996. struct audio_cal_info_audproc *audproc_cal_info = NULL;
  1997. struct audio_cal_info_audvol *audvol_cal_info = NULL;
  1998. pr_debug("%s\n", __func__);
  1999. list_for_each_safe(ptr, next,
  2000. &this_adm.cal_data[cal_index]->cal_blocks) {
  2001. cal_block = list_entry(ptr,
  2002. struct cal_block_data, list);
  2003. if (cal_utils_is_cal_stale(cal_block, this_adm.cal_data[cal_index]))
  2004. continue;
  2005. if (cal_index == ADM_AUDPROC_CAL ||
  2006. cal_index == ADM_LSM_AUDPROC_CAL ||
  2007. cal_index == ADM_LSM_AUDPROC_PERSISTENT_CAL ||
  2008. cal_index == ADM_AUDPROC_PERSISTENT_CAL) {
  2009. audproc_cal_info = cal_block->cal_info;
  2010. if ((audproc_cal_info->path == path) &&
  2011. (audproc_cal_info->app_type == app_type) &&
  2012. (cal_block->cal_data.size > 0))
  2013. return cal_block;
  2014. } else if (cal_index == ADM_AUDVOL_CAL) {
  2015. audvol_cal_info = cal_block->cal_info;
  2016. if ((audvol_cal_info->path == path) &&
  2017. (audvol_cal_info->app_type == app_type) &&
  2018. (cal_block->cal_data.size > 0))
  2019. return cal_block;
  2020. }
  2021. }
  2022. pr_debug("%s: Can't find ADM cali for cal_index %d, path %d, app %d, defaulting to search by path\n",
  2023. __func__, cal_index, path, app_type);
  2024. return adm_find_cal_by_path(cal_index, path);
  2025. }
  2026. static struct cal_block_data *adm_find_cal(int cal_index, int path,
  2027. int app_type, int acdb_id,
  2028. int sample_rate)
  2029. {
  2030. struct list_head *ptr, *next;
  2031. struct cal_block_data *cal_block = NULL;
  2032. struct audio_cal_info_audproc *audproc_cal_info = NULL;
  2033. struct audio_cal_info_audvol *audvol_cal_info = NULL;
  2034. pr_debug("%s:\n", __func__);
  2035. list_for_each_safe(ptr, next,
  2036. &this_adm.cal_data[cal_index]->cal_blocks) {
  2037. cal_block = list_entry(ptr,
  2038. struct cal_block_data, list);
  2039. if (cal_utils_is_cal_stale(cal_block, this_adm.cal_data[cal_index]))
  2040. continue;
  2041. if (cal_index == ADM_AUDPROC_CAL ||
  2042. cal_index == ADM_LSM_AUDPROC_CAL ||
  2043. cal_index == ADM_LSM_AUDPROC_PERSISTENT_CAL||
  2044. cal_index == ADM_AUDPROC_PERSISTENT_CAL) {
  2045. audproc_cal_info = cal_block->cal_info;
  2046. if ((audproc_cal_info->path == path) &&
  2047. (audproc_cal_info->app_type == app_type) &&
  2048. (audproc_cal_info->acdb_id == acdb_id) &&
  2049. (audproc_cal_info->sample_rate == sample_rate) &&
  2050. (cal_block->cal_data.size > 0))
  2051. return cal_block;
  2052. } else if (cal_index == ADM_AUDVOL_CAL) {
  2053. audvol_cal_info = cal_block->cal_info;
  2054. if ((audvol_cal_info->path == path) &&
  2055. (audvol_cal_info->app_type == app_type) &&
  2056. (audvol_cal_info->acdb_id == acdb_id) &&
  2057. (cal_block->cal_data.size > 0))
  2058. return cal_block;
  2059. }
  2060. }
  2061. pr_debug("%s: Can't find ADM cal for cal_index %d, path %d, app %d, acdb_id %d sample_rate %d defaulting to search by app type\n",
  2062. __func__, cal_index, path, app_type, acdb_id, sample_rate);
  2063. return adm_find_cal_by_app_type(cal_index, path, app_type);
  2064. }
  2065. static int adm_remap_and_send_cal_block(int cal_index, int port_id,
  2066. int copp_idx, struct cal_block_data *cal_block, int perf_mode,
  2067. int app_type, int acdb_id, int sample_rate)
  2068. {
  2069. int ret = 0;
  2070. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  2071. ret = remap_cal_data(cal_block, cal_index);
  2072. if (ret) {
  2073. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  2074. __func__, cal_index);
  2075. goto done;
  2076. }
  2077. ret = send_adm_cal_block(port_id, copp_idx, cal_block, perf_mode);
  2078. if (ret < 0)
  2079. pr_debug("%s: No cal sent for cal_index %d, port_id = 0x%x! ret %d sample_rate %d\n",
  2080. __func__, cal_index, port_id, ret, sample_rate);
  2081. done:
  2082. return ret;
  2083. }
  2084. static void send_adm_cal_type(int cal_index, int path, int port_id,
  2085. int copp_idx, int perf_mode, int app_type,
  2086. int acdb_id, int sample_rate)
  2087. {
  2088. struct cal_block_data *cal_block = NULL;
  2089. int ret;
  2090. int dest_perms[2] = {PERM_READ | PERM_WRITE, PERM_READ | PERM_WRITE};
  2091. int source_vm[1] = {VMID_HLOS};
  2092. int dest_vm[2] = {VMID_LPASS, VMID_ADSP_HEAP};
  2093. pr_debug("%s: cal index %d\n", __func__, cal_index);
  2094. if (this_adm.cal_data[cal_index] == NULL) {
  2095. pr_debug("%s: cal_index %d not allocated!\n",
  2096. __func__, cal_index);
  2097. goto done;
  2098. }
  2099. mutex_lock(&this_adm.cal_data[cal_index]->lock);
  2100. cal_block = adm_find_cal(cal_index, path, app_type, acdb_id,
  2101. sample_rate);
  2102. if (cal_block == NULL)
  2103. goto unlock;
  2104. if (cal_block->cma_mem) {
  2105. if (cal_block->cal_data.paddr == 0 ||
  2106. cal_block->map_data.map_size <= 0) {
  2107. pr_err("%s: No address to map!\n", __func__);
  2108. ret = -EINVAL;
  2109. goto unlock;
  2110. }
  2111. ret = hyp_assign_phys(cal_block->cal_data.paddr,
  2112. cal_block->map_data.map_size,
  2113. source_vm, 1, dest_vm, dest_perms, 2);
  2114. if (ret < 0) {
  2115. pr_err("%s: hyp_assign_phys failed result = %d addr = 0x%pK size = %d\n",
  2116. __func__, ret, cal_block->cal_data.paddr,
  2117. cal_block->map_data.map_size);
  2118. ret = -EINVAL;
  2119. goto unlock;
  2120. }
  2121. this_adm.tx_port_id = port_id;
  2122. this_adm.hyp_assigned = true;
  2123. pr_debug("%s: hyp_assign_phys success in tx_port_id 0x%x\n",
  2124. __func__, this_adm.tx_port_id);
  2125. }
  2126. ret = adm_remap_and_send_cal_block(cal_index, port_id, copp_idx,
  2127. cal_block, perf_mode, app_type, acdb_id, sample_rate);
  2128. cal_utils_mark_cal_used(cal_block);
  2129. unlock:
  2130. mutex_unlock(&this_adm.cal_data[cal_index]->lock);
  2131. done:
  2132. return;
  2133. }
  2134. static int get_cal_path(int path)
  2135. {
  2136. if (path == 0x1)
  2137. return RX_DEVICE;
  2138. else
  2139. return TX_DEVICE;
  2140. }
  2141. static void send_adm_cal(int port_id, int copp_idx, int path, int perf_mode,
  2142. int app_type, int acdb_id, int sample_rate,
  2143. int passthr_mode)
  2144. {
  2145. pr_debug("%s: port id 0x%x copp_idx %d\n", __func__, port_id, copp_idx);
  2146. if (passthr_mode != LISTEN) {
  2147. send_adm_cal_type(ADM_AUDPROC_CAL, path, port_id, copp_idx,
  2148. perf_mode, app_type, acdb_id, sample_rate);
  2149. send_adm_cal_type(ADM_AUDPROC_PERSISTENT_CAL, path,
  2150. port_id, copp_idx, perf_mode, app_type,
  2151. acdb_id, sample_rate);
  2152. } else {
  2153. send_adm_cal_type(ADM_LSM_AUDPROC_CAL, path, port_id, copp_idx,
  2154. perf_mode, app_type, acdb_id, sample_rate);
  2155. send_adm_cal_type(ADM_LSM_AUDPROC_PERSISTENT_CAL, path,
  2156. port_id, copp_idx, perf_mode, app_type,
  2157. acdb_id, sample_rate);
  2158. }
  2159. send_adm_cal_type(ADM_AUDVOL_CAL, path, port_id, copp_idx, perf_mode,
  2160. app_type, acdb_id, sample_rate);
  2161. }
  2162. /**
  2163. * adm_connect_afe_port -
  2164. * command to send ADM connect AFE port
  2165. *
  2166. * @mode: value of mode for ADM connect AFE
  2167. * @session_id: session active to connect
  2168. * @port_id: Port ID number
  2169. *
  2170. * Returns 0 on success or error on failure
  2171. */
  2172. int adm_connect_afe_port(int mode, int session_id, int port_id)
  2173. {
  2174. struct adm_cmd_connect_afe_port_v5 cmd;
  2175. int ret = 0;
  2176. int port_idx, copp_idx = 0;
  2177. pr_debug("%s: port_id: 0x%x session id:%d mode:%d\n", __func__,
  2178. port_id, session_id, mode);
  2179. port_id = afe_convert_virtual_to_portid(port_id);
  2180. port_idx = adm_validate_and_get_port_index(port_id);
  2181. if (port_idx < 0) {
  2182. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  2183. return -EINVAL;
  2184. }
  2185. if (this_adm.apr == NULL) {
  2186. this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
  2187. 0xFFFFFFFF, &this_adm);
  2188. if (this_adm.apr == NULL) {
  2189. pr_err("%s: Unable to register ADM\n", __func__);
  2190. ret = -ENODEV;
  2191. return ret;
  2192. }
  2193. rtac_set_adm_handle(this_adm.apr);
  2194. }
  2195. pr_debug("%s: Port ID 0x%x, index %d\n", __func__, port_id, port_idx);
  2196. cmd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2197. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2198. cmd.hdr.pkt_size = sizeof(cmd);
  2199. cmd.hdr.src_svc = APR_SVC_ADM;
  2200. cmd.hdr.src_domain = APR_DOMAIN_APPS;
  2201. cmd.hdr.src_port = port_id;
  2202. cmd.hdr.dest_svc = APR_SVC_ADM;
  2203. cmd.hdr.dest_domain = APR_DOMAIN_ADSP;
  2204. cmd.hdr.dest_port = 0; /* Ignored */
  2205. cmd.hdr.token = port_idx << 16 | copp_idx;
  2206. cmd.hdr.opcode = ADM_CMD_CONNECT_AFE_PORT_V5;
  2207. cmd.mode = mode;
  2208. cmd.session_id = session_id;
  2209. cmd.afe_port_id = port_id;
  2210. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  2211. ret = apr_send_pkt(this_adm.apr, (uint32_t *)&cmd);
  2212. if (ret < 0) {
  2213. pr_err("%s: ADM enable for port_id: 0x%x failed ret %d\n",
  2214. __func__, port_id, ret);
  2215. ret = -EINVAL;
  2216. goto fail_cmd;
  2217. }
  2218. /* Wait for the callback with copp id */
  2219. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  2220. atomic_read(&this_adm.copp.stat[port_idx][copp_idx]) >= 0,
  2221. msecs_to_jiffies(TIMEOUT_MS));
  2222. if (!ret) {
  2223. pr_err("%s: ADM connect timedout for port_id: 0x%x\n",
  2224. __func__, port_id);
  2225. ret = -EINVAL;
  2226. goto fail_cmd;
  2227. } else if (atomic_read(&this_adm.copp.stat
  2228. [port_idx][copp_idx]) > 0) {
  2229. pr_err("%s: DSP returned error[%s]\n",
  2230. __func__, adsp_err_get_err_str(
  2231. atomic_read(&this_adm.copp.stat
  2232. [port_idx][copp_idx])));
  2233. ret = adsp_err_get_lnx_err_code(
  2234. atomic_read(&this_adm.copp.stat
  2235. [port_idx][copp_idx]));
  2236. goto fail_cmd;
  2237. }
  2238. atomic_inc(&this_adm.copp.cnt[port_idx][copp_idx]);
  2239. return 0;
  2240. fail_cmd:
  2241. return ret;
  2242. }
  2243. EXPORT_SYMBOL(adm_connect_afe_port);
  2244. int adm_arrange_mch_map(struct adm_cmd_device_open_v5 *open, int path,
  2245. int channel_mode, int port_idx)
  2246. {
  2247. int rc = 0, idx;
  2248. pr_debug("%s: channel mode %d", __func__, channel_mode);
  2249. memset(open->dev_channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  2250. switch (path) {
  2251. case ADM_PATH_PLAYBACK:
  2252. idx = ADM_MCH_MAP_IDX_PLAYBACK;
  2253. break;
  2254. case ADM_PATH_LIVE_REC:
  2255. case ADM_PATH_NONLIVE_REC:
  2256. idx = ADM_MCH_MAP_IDX_REC;
  2257. break;
  2258. default:
  2259. goto non_mch_path;
  2260. };
  2261. if ((open->dev_num_channel > 2) &&
  2262. (port_channel_map[port_idx].set_channel_map ||
  2263. multi_ch_maps[idx].set_channel_map)) {
  2264. if (port_channel_map[port_idx].set_channel_map)
  2265. memcpy(open->dev_channel_mapping,
  2266. port_channel_map[port_idx].channel_mapping,
  2267. PCM_FORMAT_MAX_NUM_CHANNEL);
  2268. else
  2269. memcpy(open->dev_channel_mapping,
  2270. multi_ch_maps[idx].channel_mapping,
  2271. PCM_FORMAT_MAX_NUM_CHANNEL);
  2272. } else {
  2273. if (channel_mode == 1) {
  2274. open->dev_channel_mapping[0] = PCM_CHANNEL_FC;
  2275. } else if (channel_mode == 2) {
  2276. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2277. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2278. } else if (channel_mode == 3) {
  2279. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2280. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2281. open->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2282. } else if (channel_mode == 4) {
  2283. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2284. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2285. open->dev_channel_mapping[2] = PCM_CHANNEL_LS;
  2286. open->dev_channel_mapping[3] = PCM_CHANNEL_RS;
  2287. } else if (channel_mode == 5) {
  2288. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2289. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2290. open->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2291. open->dev_channel_mapping[3] = PCM_CHANNEL_LS;
  2292. open->dev_channel_mapping[4] = PCM_CHANNEL_RS;
  2293. } else if (channel_mode == 6) {
  2294. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2295. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2296. open->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2297. open->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2298. open->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2299. open->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2300. } else if (channel_mode == 7) {
  2301. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2302. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2303. open->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2304. open->dev_channel_mapping[3] = PCM_CHANNEL_LFE;
  2305. open->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2306. open->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2307. open->dev_channel_mapping[6] = PCM_CHANNEL_CS;
  2308. } else if (channel_mode == 8) {
  2309. open->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2310. open->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2311. open->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2312. open->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2313. open->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2314. open->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2315. open->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2316. open->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2317. } else {
  2318. pr_err("%s: invalid num_chan %d\n", __func__,
  2319. channel_mode);
  2320. rc = -EINVAL;
  2321. goto inval_ch_mod;
  2322. }
  2323. }
  2324. non_mch_path:
  2325. inval_ch_mod:
  2326. return rc;
  2327. }
  2328. int adm_arrange_mch_ep2_map(struct adm_cmd_device_open_v6 *open_v6,
  2329. int channel_mode)
  2330. {
  2331. int rc = 0;
  2332. memset(open_v6->dev_channel_mapping_eid2, 0,
  2333. PCM_FORMAT_MAX_NUM_CHANNEL);
  2334. if (channel_mode == 1) {
  2335. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FC;
  2336. } else if (channel_mode == 2) {
  2337. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2338. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2339. } else if (channel_mode == 3) {
  2340. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2341. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2342. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_FC;
  2343. } else if (channel_mode == 4) {
  2344. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2345. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2346. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_LS;
  2347. open_v6->dev_channel_mapping_eid2[3] = PCM_CHANNEL_RS;
  2348. } else if (channel_mode == 5) {
  2349. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2350. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2351. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_FC;
  2352. open_v6->dev_channel_mapping_eid2[3] = PCM_CHANNEL_LS;
  2353. open_v6->dev_channel_mapping_eid2[4] = PCM_CHANNEL_RS;
  2354. } else if (channel_mode == 6) {
  2355. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2356. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2357. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_LFE;
  2358. open_v6->dev_channel_mapping_eid2[3] = PCM_CHANNEL_FC;
  2359. open_v6->dev_channel_mapping_eid2[4] = PCM_CHANNEL_LS;
  2360. open_v6->dev_channel_mapping_eid2[5] = PCM_CHANNEL_RS;
  2361. } else if (channel_mode == 8) {
  2362. open_v6->dev_channel_mapping_eid2[0] = PCM_CHANNEL_FL;
  2363. open_v6->dev_channel_mapping_eid2[1] = PCM_CHANNEL_FR;
  2364. open_v6->dev_channel_mapping_eid2[2] = PCM_CHANNEL_LFE;
  2365. open_v6->dev_channel_mapping_eid2[3] = PCM_CHANNEL_FC;
  2366. open_v6->dev_channel_mapping_eid2[4] = PCM_CHANNEL_LS;
  2367. open_v6->dev_channel_mapping_eid2[5] = PCM_CHANNEL_RS;
  2368. open_v6->dev_channel_mapping_eid2[6] = PCM_CHANNEL_LB;
  2369. open_v6->dev_channel_mapping_eid2[7] = PCM_CHANNEL_RB;
  2370. } else {
  2371. pr_err("%s: invalid num_chan %d\n", __func__,
  2372. channel_mode);
  2373. rc = -EINVAL;
  2374. }
  2375. return rc;
  2376. }
  2377. static int adm_arrange_mch_map_v8(
  2378. struct adm_device_endpoint_payload *ep_payload,
  2379. int path, int channel_mode, int port_idx)
  2380. {
  2381. int rc = 0, idx;
  2382. memset(ep_payload->dev_channel_mapping,
  2383. 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  2384. switch (path) {
  2385. case ADM_PATH_PLAYBACK:
  2386. idx = ADM_MCH_MAP_IDX_PLAYBACK;
  2387. break;
  2388. case ADM_PATH_LIVE_REC:
  2389. case ADM_PATH_NONLIVE_REC:
  2390. idx = ADM_MCH_MAP_IDX_REC;
  2391. break;
  2392. default:
  2393. goto non_mch_path;
  2394. };
  2395. if ((ep_payload->dev_num_channel > 2) &&
  2396. (port_channel_map[port_idx].set_channel_map ||
  2397. multi_ch_maps[idx].set_channel_map)) {
  2398. if (port_channel_map[port_idx].set_channel_map)
  2399. memcpy(ep_payload->dev_channel_mapping,
  2400. port_channel_map[port_idx].channel_mapping,
  2401. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  2402. else
  2403. memcpy(ep_payload->dev_channel_mapping,
  2404. multi_ch_maps[idx].channel_mapping,
  2405. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  2406. } else {
  2407. if (channel_mode == 1) {
  2408. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FC;
  2409. } else if (channel_mode == 2) {
  2410. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2411. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2412. } else if (channel_mode == 3) {
  2413. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2414. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2415. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2416. } else if (channel_mode == 4) {
  2417. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2418. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2419. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LS;
  2420. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_RS;
  2421. } else if (channel_mode == 5) {
  2422. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2423. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2424. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2425. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_LS;
  2426. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_RS;
  2427. } else if (channel_mode == 6) {
  2428. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2429. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2430. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2431. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2432. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2433. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2434. } else if (channel_mode == 7) {
  2435. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2436. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2437. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2438. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_LFE;
  2439. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2440. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2441. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_CS;
  2442. } else if (channel_mode == 8) {
  2443. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2444. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2445. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2446. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2447. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2448. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2449. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2450. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2451. } else if (channel_mode == 10) {
  2452. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2453. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2454. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2455. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2456. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2457. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2458. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LS;
  2459. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RS;
  2460. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2461. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2462. } else if (channel_mode == 12) {
  2463. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2464. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2465. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2466. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2467. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2468. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2469. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LS;
  2470. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RS;
  2471. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2472. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2473. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_TSL;
  2474. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_TSR;
  2475. } else if (channel_mode == 14) {
  2476. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2477. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2478. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2479. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2480. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2481. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2482. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LS;
  2483. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RS;
  2484. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2485. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2486. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_TSL;
  2487. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_TSR;
  2488. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2489. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2490. } else if (channel_mode == 16) {
  2491. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2492. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2493. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2494. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2495. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LB;
  2496. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RB;
  2497. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LS;
  2498. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RS;
  2499. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2500. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2501. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_TSL;
  2502. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_TSR;
  2503. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2504. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2505. ep_payload->dev_channel_mapping[14] = PCM_CHANNEL_RLC;
  2506. ep_payload->dev_channel_mapping[15] = PCM_CHANNEL_RRC;
  2507. } else if (channel_mode == 32) {
  2508. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2509. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2510. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2511. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2512. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2513. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2514. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2515. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2516. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_CS;
  2517. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TS;
  2518. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_CVH;
  2519. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_MS;
  2520. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2521. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2522. ep_payload->dev_channel_mapping[14] = PCM_CHANNEL_RLC;
  2523. ep_payload->dev_channel_mapping[15] = PCM_CHANNEL_RRC;
  2524. ep_payload->dev_channel_mapping[16] = PCM_CHANNEL_LFE2;
  2525. ep_payload->dev_channel_mapping[17] = PCM_CHANNEL_SL;
  2526. ep_payload->dev_channel_mapping[18] = PCM_CHANNEL_SR;
  2527. ep_payload->dev_channel_mapping[19] = PCM_CHANNEL_TFL;
  2528. ep_payload->dev_channel_mapping[20] = PCM_CHANNEL_TFR;
  2529. ep_payload->dev_channel_mapping[21] = PCM_CHANNEL_TC;
  2530. ep_payload->dev_channel_mapping[22] = PCM_CHANNEL_TBL;
  2531. ep_payload->dev_channel_mapping[23] = PCM_CHANNEL_TBR;
  2532. ep_payload->dev_channel_mapping[24] = PCM_CHANNEL_TSL;
  2533. ep_payload->dev_channel_mapping[25] = PCM_CHANNEL_TSR;
  2534. ep_payload->dev_channel_mapping[26] = PCM_CHANNEL_TBC;
  2535. ep_payload->dev_channel_mapping[27] = PCM_CHANNEL_BFC;
  2536. ep_payload->dev_channel_mapping[28] = PCM_CHANNEL_BFL;
  2537. ep_payload->dev_channel_mapping[29] = PCM_CHANNEL_BFR;
  2538. ep_payload->dev_channel_mapping[30] = PCM_CHANNEL_LW;
  2539. ep_payload->dev_channel_mapping[31] = PCM_CHANNEL_RW;
  2540. } else {
  2541. pr_err("%s: invalid num_chan %d\n", __func__,
  2542. channel_mode);
  2543. rc = -EINVAL;
  2544. goto inval_ch_mod;
  2545. }
  2546. }
  2547. non_mch_path:
  2548. inval_ch_mod:
  2549. return rc;
  2550. }
  2551. static int adm_arrange_mch_ep2_map_v8(
  2552. struct adm_device_endpoint_payload *ep_payload,
  2553. int channel_mode)
  2554. {
  2555. int rc = 0;
  2556. memset(ep_payload->dev_channel_mapping, 0,
  2557. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  2558. if (channel_mode == 1) {
  2559. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FC;
  2560. } else if (channel_mode == 2) {
  2561. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2562. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2563. } else if (channel_mode == 3) {
  2564. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2565. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2566. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2567. } else if (channel_mode == 4) {
  2568. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2569. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2570. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LS;
  2571. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_RS;
  2572. } else if (channel_mode == 5) {
  2573. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2574. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2575. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_FC;
  2576. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_LS;
  2577. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_RS;
  2578. } else if (channel_mode == 6) {
  2579. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2580. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2581. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2582. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2583. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2584. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2585. } else if (channel_mode == 8) {
  2586. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2587. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2588. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2589. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2590. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2591. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2592. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2593. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2594. } else if (channel_mode == 10) {
  2595. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2596. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2597. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2598. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2599. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2600. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2601. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2602. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2603. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_CS;
  2604. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TS;
  2605. } else if (channel_mode == 12) {
  2606. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2607. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2608. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2609. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2610. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2611. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2612. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2613. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2614. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_TFL;
  2615. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TFR;
  2616. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_TSL;
  2617. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_TSR;
  2618. } else if (channel_mode == 16) {
  2619. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2620. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2621. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2622. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2623. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2624. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2625. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2626. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2627. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_CS;
  2628. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TS;
  2629. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_CVH;
  2630. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_MS;
  2631. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2632. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2633. ep_payload->dev_channel_mapping[14] = PCM_CHANNEL_RLC;
  2634. ep_payload->dev_channel_mapping[15] = PCM_CHANNEL_RRC;
  2635. } else if (channel_mode == 32) {
  2636. ep_payload->dev_channel_mapping[0] = PCM_CHANNEL_FL;
  2637. ep_payload->dev_channel_mapping[1] = PCM_CHANNEL_FR;
  2638. ep_payload->dev_channel_mapping[2] = PCM_CHANNEL_LFE;
  2639. ep_payload->dev_channel_mapping[3] = PCM_CHANNEL_FC;
  2640. ep_payload->dev_channel_mapping[4] = PCM_CHANNEL_LS;
  2641. ep_payload->dev_channel_mapping[5] = PCM_CHANNEL_RS;
  2642. ep_payload->dev_channel_mapping[6] = PCM_CHANNEL_LB;
  2643. ep_payload->dev_channel_mapping[7] = PCM_CHANNEL_RB;
  2644. ep_payload->dev_channel_mapping[8] = PCM_CHANNEL_CS;
  2645. ep_payload->dev_channel_mapping[9] = PCM_CHANNEL_TS;
  2646. ep_payload->dev_channel_mapping[10] = PCM_CHANNEL_CVH;
  2647. ep_payload->dev_channel_mapping[11] = PCM_CHANNEL_MS;
  2648. ep_payload->dev_channel_mapping[12] = PCM_CHANNEL_FLC;
  2649. ep_payload->dev_channel_mapping[13] = PCM_CHANNEL_FRC;
  2650. ep_payload->dev_channel_mapping[14] = PCM_CHANNEL_RLC;
  2651. ep_payload->dev_channel_mapping[15] = PCM_CHANNEL_RRC;
  2652. ep_payload->dev_channel_mapping[16] = PCM_CHANNEL_LFE2;
  2653. ep_payload->dev_channel_mapping[17] = PCM_CHANNEL_SL;
  2654. ep_payload->dev_channel_mapping[18] = PCM_CHANNEL_SR;
  2655. ep_payload->dev_channel_mapping[19] = PCM_CHANNEL_TFL;
  2656. ep_payload->dev_channel_mapping[20] = PCM_CHANNEL_TFR;
  2657. ep_payload->dev_channel_mapping[21] = PCM_CHANNEL_TC;
  2658. ep_payload->dev_channel_mapping[22] = PCM_CHANNEL_TBL;
  2659. ep_payload->dev_channel_mapping[23] = PCM_CHANNEL_TBR;
  2660. ep_payload->dev_channel_mapping[24] = PCM_CHANNEL_TSL;
  2661. ep_payload->dev_channel_mapping[25] = PCM_CHANNEL_TSR;
  2662. ep_payload->dev_channel_mapping[26] = PCM_CHANNEL_TBC;
  2663. ep_payload->dev_channel_mapping[27] = PCM_CHANNEL_BFC;
  2664. ep_payload->dev_channel_mapping[28] = PCM_CHANNEL_BFL;
  2665. ep_payload->dev_channel_mapping[29] = PCM_CHANNEL_BFR;
  2666. ep_payload->dev_channel_mapping[30] = PCM_CHANNEL_LW;
  2667. ep_payload->dev_channel_mapping[31] = PCM_CHANNEL_RW;
  2668. } else {
  2669. pr_err("%s: invalid num_chan %d\n", __func__,
  2670. channel_mode);
  2671. rc = -EINVAL;
  2672. }
  2673. return rc;
  2674. }
  2675. static int adm_copp_set_ec_ref_mfc_cfg(int port_id, int copp_idx,
  2676. int sample_rate, int bps,
  2677. int in_channels, int out_channels)
  2678. {
  2679. struct audproc_mfc_param_media_fmt mfc_cfg;
  2680. struct param_hdr_v3 param_hdr;
  2681. u16 *chmixer_params = NULL;
  2682. int rc = 0, i = 0, j = 0, param_index = 0, param_size = 0;
  2683. struct adm_device_endpoint_payload ep_payload = {0, 0, 0, {0}};
  2684. memset(&mfc_cfg, 0, sizeof(mfc_cfg));
  2685. memset(&ep_payload, 0, sizeof(ep_payload));
  2686. memset(&param_hdr, 0, sizeof(param_hdr));
  2687. param_hdr.module_id = AUDPROC_MODULE_ID_MFC_EC_REF;
  2688. param_hdr.instance_id = INSTANCE_ID_0;
  2689. pr_debug("%s: port_id %d copp_idx %d SR %d, BW %d in_ch %d out_ch %d\n",
  2690. __func__, port_id, copp_idx, sample_rate,
  2691. bps, in_channels, out_channels);
  2692. if (out_channels <= 0 || out_channels > AUDPROC_MFC_OUT_CHANNELS_MAX) {
  2693. pr_err("%s: unsupported out channels=%d\n", __func__, out_channels);
  2694. return -EINVAL;
  2695. }
  2696. /* 1. Update Media Format */
  2697. param_hdr.param_id = AUDPROC_PARAM_ID_MFC_OUTPUT_MEDIA_FORMAT;
  2698. param_hdr.param_size = sizeof(mfc_cfg);
  2699. mfc_cfg.sampling_rate = sample_rate;
  2700. mfc_cfg.bits_per_sample = bps;
  2701. mfc_cfg.num_channels = out_channels;
  2702. ep_payload.dev_num_channel = out_channels;
  2703. rc = adm_arrange_mch_ep2_map_v8(&ep_payload, out_channels);
  2704. if (rc < 0) {
  2705. pr_err("%s: unable to get map for out channels=%d\n",
  2706. __func__, out_channels);
  2707. return -EINVAL;
  2708. }
  2709. for (i = 0; i < out_channels; i++)
  2710. mfc_cfg.channel_type[i] = (uint16_t) ep_payload.dev_channel_mapping[i];
  2711. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx,
  2712. param_hdr, (uint8_t *) &mfc_cfg);
  2713. if (rc) {
  2714. pr_err("%s: Failed to set media format, err %d\n", __func__, rc);
  2715. return rc;
  2716. }
  2717. /* 2. Send Channel Mixer params */
  2718. param_size = 2 * (4 + out_channels + in_channels + (out_channels * in_channels));
  2719. param_size = round_up(param_size, 4);
  2720. param_hdr.param_id = DEFAULT_CHMIXER_PARAM_ID_COEFF;
  2721. param_hdr.param_size = param_size;
  2722. pr_debug("%s: chmixer param sz = %d\n", __func__, param_size);
  2723. chmixer_params = kzalloc(param_size, GFP_KERNEL);
  2724. if (!chmixer_params) {
  2725. return -ENOMEM;
  2726. }
  2727. param_index = 2; /* param[0] and [1] represents chmixer rule(always 0) */
  2728. chmixer_params[param_index++] = out_channels;
  2729. chmixer_params[param_index++] = in_channels;
  2730. /* output channel map is same as one set in media format */
  2731. for (i = 0; i < out_channels; i++)
  2732. chmixer_params[param_index++] = ep_payload.dev_channel_mapping[i];
  2733. /* input channel map should be same as one set for ep2 during copp open */
  2734. ep_payload.dev_num_channel = in_channels;
  2735. rc = adm_arrange_mch_ep2_map_v8(&ep_payload, in_channels);
  2736. if (rc < 0) {
  2737. pr_err("%s: unable to get in channal map\n", __func__);
  2738. goto exit;
  2739. }
  2740. for (i = 0; i < in_channels; i++)
  2741. chmixer_params[param_index++] = ep_payload.dev_channel_mapping[i];
  2742. for (i = 0; i < out_channels; i++)
  2743. for (j = 0; j < in_channels; j++)
  2744. chmixer_params[param_index++] = this_adm.ec_ref_chmixer_weights[i][j];
  2745. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx,
  2746. param_hdr, (uint8_t *) chmixer_params);
  2747. if (rc)
  2748. pr_err("%s: Failed to set chmixer params, err %d\n", __func__, rc);
  2749. exit:
  2750. kfree(chmixer_params);
  2751. return rc;
  2752. }
  2753. /**
  2754. * adm_open -
  2755. * command to send ADM open
  2756. *
  2757. * @port_id: port id number
  2758. * @path: direction or ADM path type
  2759. * @rate: sample rate of session
  2760. * @channel_mode: number of channels set
  2761. * @topology: topology active for this session
  2762. * @perf_mode: performance mode like LL/ULL/..
  2763. * @bit_width: bit width to set for copp
  2764. * @app_type: App type used for this session
  2765. * @acdb_id: ACDB ID of this device
  2766. * @session_type: type of session
  2767. *
  2768. * Returns 0 on success or error on failure
  2769. */
  2770. int adm_open(int port_id, int path, int rate, int channel_mode, int topology,
  2771. int perf_mode, uint16_t bit_width, int app_type, int acdb_id,
  2772. int session_type, uint32_t passthr_mode, uint32_t copp_token)
  2773. {
  2774. struct adm_cmd_device_open_v5 open;
  2775. struct adm_cmd_device_open_v6 open_v6;
  2776. struct adm_cmd_device_open_v8 open_v8;
  2777. struct adm_device_endpoint_payload ep1_payload;
  2778. struct adm_device_endpoint_payload ep2_payload;
  2779. int ep1_payload_size = 0;
  2780. int ep2_payload_size = 0;
  2781. int ret = 0;
  2782. int port_idx, flags;
  2783. int copp_idx = -1;
  2784. int tmp_port = q6audio_get_port_id(port_id);
  2785. void *adm_params = NULL;
  2786. int param_size;
  2787. int num_ec_ref_rx_chans = this_adm.num_ec_ref_rx_chans;
  2788. pr_debug("%s:port %#x path:%d rate:%d mode:%d perf_mode:%d,topo_id %d\n",
  2789. __func__, port_id, path, rate, channel_mode, perf_mode,
  2790. topology);
  2791. port_id = q6audio_convert_virtual_to_portid(port_id);
  2792. port_idx = adm_validate_and_get_port_index(port_id);
  2793. if (port_idx < 0) {
  2794. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  2795. return -EINVAL;
  2796. }
  2797. if (channel_mode < 0 || channel_mode > 32) {
  2798. pr_err("%s: Invalid channel number 0x%x\n",
  2799. __func__, channel_mode);
  2800. return -EINVAL;
  2801. }
  2802. if (this_adm.apr == NULL) {
  2803. this_adm.apr = apr_register("ADSP", "ADM", adm_callback,
  2804. 0xFFFFFFFF, &this_adm);
  2805. if (this_adm.apr == NULL) {
  2806. pr_err("%s: Unable to register ADM\n", __func__);
  2807. return -ENODEV;
  2808. }
  2809. rtac_set_adm_handle(this_adm.apr);
  2810. }
  2811. if (perf_mode == ULL_POST_PROCESSING_PCM_MODE) {
  2812. flags = ADM_ULL_POST_PROCESSING_DEVICE_SESSION;
  2813. if ((topology == DOLBY_ADM_COPP_TOPOLOGY_ID) ||
  2814. (topology == DS2_ADM_COPP_TOPOLOGY_ID) ||
  2815. (topology == SRS_TRUMEDIA_TOPOLOGY_ID))
  2816. topology = DEFAULT_COPP_TOPOLOGY;
  2817. } else if (perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) {
  2818. flags = ADM_ULTRA_LOW_LATENCY_DEVICE_SESSION;
  2819. topology = NULL_COPP_TOPOLOGY;
  2820. rate = ULL_SUPPORTED_SAMPLE_RATE;
  2821. bit_width = ULL_SUPPORTED_BITS_PER_SAMPLE;
  2822. } else if (perf_mode == LOW_LATENCY_PCM_MODE) {
  2823. flags = ADM_LOW_LATENCY_DEVICE_SESSION;
  2824. if ((topology == DOLBY_ADM_COPP_TOPOLOGY_ID) ||
  2825. (topology == DS2_ADM_COPP_TOPOLOGY_ID) ||
  2826. (topology == SRS_TRUMEDIA_TOPOLOGY_ID))
  2827. topology = DEFAULT_COPP_TOPOLOGY;
  2828. } else {
  2829. if ((path == ADM_PATH_COMPRESSED_RX) ||
  2830. (path == ADM_PATH_COMPRESSED_TX))
  2831. flags = 0;
  2832. else
  2833. flags = ADM_LEGACY_DEVICE_SESSION;
  2834. }
  2835. if ((topology == VPM_TX_SM_ECNS_V2_COPP_TOPOLOGY) ||
  2836. (topology == VPM_TX_DM_FLUENCE_EF_COPP_TOPOLOGY)) {
  2837. if ((rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_8K) &&
  2838. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_16K) &&
  2839. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_32K) &&
  2840. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_48K))
  2841. rate = 16000;
  2842. }
  2843. if ((topology == VPM_TX_DM_FLUENCE_COPP_TOPOLOGY) ||
  2844. (topology == VPM_TX_DM_RFECNS_COPP_TOPOLOGY)) {
  2845. if ((rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_8K) &&
  2846. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_16K) &&
  2847. (rate != ADM_CMD_COPP_OPEN_SAMPLE_RATE_32K))
  2848. rate = 16000;
  2849. }
  2850. if (topology == FFECNS_TOPOLOGY) {
  2851. this_adm.ffecns_port_id = port_id;
  2852. pr_debug("%s: ffecns port id =%x\n", __func__,
  2853. this_adm.ffecns_port_id);
  2854. }
  2855. if (topology == VPM_TX_VOICE_SMECNS_V2_COPP_TOPOLOGY ||
  2856. topology == VPM_TX_VOICE_FLUENCE_SM_COPP_TOPOLOGY ||
  2857. topology == AUDIO_RX_MONO_VOIP_COPP_TOPOLOGY)
  2858. channel_mode = 1;
  2859. /*
  2860. * Routing driver reuses the same adm for streams with the same
  2861. * app_type, sample_rate etc.
  2862. * This isn't allowed for ULL streams as per the DSP interface
  2863. */
  2864. if (perf_mode != ULTRA_LOW_LATENCY_PCM_MODE)
  2865. copp_idx = adm_get_idx_if_copp_exists(port_idx, topology,
  2866. perf_mode,
  2867. rate, bit_width,
  2868. app_type, session_type, copp_token);
  2869. if (copp_idx < 0) {
  2870. copp_idx = adm_get_next_available_copp(port_idx);
  2871. if (copp_idx >= MAX_COPPS_PER_PORT) {
  2872. pr_err("%s: exceeded copp id %d\n",
  2873. __func__, copp_idx);
  2874. return -EINVAL;
  2875. }
  2876. atomic_set(&this_adm.copp.cnt[port_idx][copp_idx], 0);
  2877. atomic_set(&this_adm.copp.topology[port_idx][copp_idx],
  2878. topology);
  2879. atomic_set(&this_adm.copp.mode[port_idx][copp_idx],
  2880. perf_mode);
  2881. atomic_set(&this_adm.copp.rate[port_idx][copp_idx],
  2882. rate);
  2883. atomic_set(&this_adm.copp.channels[port_idx][copp_idx],
  2884. channel_mode);
  2885. atomic_set(&this_adm.copp.bit_width[port_idx][copp_idx],
  2886. bit_width);
  2887. atomic_set(&this_adm.copp.app_type[port_idx][copp_idx],
  2888. app_type);
  2889. atomic_set(&this_adm.copp.acdb_id[port_idx][copp_idx],
  2890. acdb_id);
  2891. atomic_set(&this_adm.copp.session_type[port_idx][copp_idx],
  2892. session_type);
  2893. atomic_set(&this_adm.copp.token[port_idx][copp_idx],
  2894. copp_token);
  2895. set_bit(ADM_STATUS_CALIBRATION_REQUIRED,
  2896. (void *)&this_adm.copp.adm_status[port_idx][copp_idx]);
  2897. if ((path != ADM_PATH_COMPRESSED_RX) &&
  2898. (path != ADM_PATH_COMPRESSED_TX))
  2899. send_adm_custom_topology();
  2900. }
  2901. if (this_adm.copp.adm_delay[port_idx][copp_idx] &&
  2902. perf_mode == LEGACY_PCM_MODE) {
  2903. atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx],
  2904. 1);
  2905. this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
  2906. wake_up(&this_adm.copp.adm_delay_wait[port_idx][copp_idx]);
  2907. }
  2908. /* Create a COPP if port id are not enabled */
  2909. if (atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]) == 0) {
  2910. pr_debug("%s: open ADM: port_idx: %d, copp_idx: %d\n", __func__,
  2911. port_idx, copp_idx);
  2912. if ((topology == SRS_TRUMEDIA_TOPOLOGY_ID) &&
  2913. perf_mode == LEGACY_PCM_MODE) {
  2914. int res;
  2915. atomic_set(&this_adm.mem_map_index, ADM_SRS_TRUMEDIA);
  2916. msm_dts_srs_tm_ion_memmap(&this_adm.outband_memmap);
  2917. res = adm_memory_map_regions(
  2918. &this_adm.outband_memmap.paddr, 0,
  2919. (uint32_t *)&this_adm.outband_memmap.size, 1);
  2920. if (res < 0) {
  2921. pr_err("%s: SRS adm_memory_map_regions failed! addr = 0x%pK, size = %d\n",
  2922. __func__,
  2923. (void *)this_adm.outband_memmap.paddr,
  2924. (uint32_t)this_adm.outband_memmap.size);
  2925. }
  2926. }
  2927. if ((q6core_get_avcs_api_version_per_service(
  2928. APRV2_IDS_SERVICE_ID_ADSP_ADM_V) >=
  2929. ADSP_ADM_API_VERSION_V3)) {
  2930. memset(&open_v8, 0, sizeof(open_v8));
  2931. memset(&ep1_payload, 0, sizeof(ep1_payload));
  2932. memset(&ep2_payload, 0, sizeof(ep2_payload));
  2933. open_v8.hdr.hdr_field = APR_HDR_FIELD(
  2934. APR_MSG_TYPE_SEQ_CMD,
  2935. APR_HDR_LEN(APR_HDR_SIZE),
  2936. APR_PKT_VER);
  2937. open_v8.hdr.src_svc = APR_SVC_ADM;
  2938. open_v8.hdr.src_domain = APR_DOMAIN_APPS;
  2939. open_v8.hdr.src_port = tmp_port;
  2940. open_v8.hdr.dest_svc = APR_SVC_ADM;
  2941. open_v8.hdr.dest_domain = APR_DOMAIN_ADSP;
  2942. open_v8.hdr.dest_port = tmp_port;
  2943. open_v8.hdr.token = port_idx << 16 | copp_idx;
  2944. open_v8.hdr.opcode = ADM_CMD_DEVICE_OPEN_V8;
  2945. if (this_adm.native_mode != 0) {
  2946. open_v8.flags = flags |
  2947. (this_adm.native_mode << 11);
  2948. this_adm.native_mode = 0;
  2949. } else {
  2950. open_v8.flags = flags;
  2951. }
  2952. open_v8.mode_of_operation = path;
  2953. open_v8.endpoint_id_1 = tmp_port;
  2954. open_v8.endpoint_id_2 = 0xFFFF;
  2955. open_v8.endpoint_id_3 = 0xFFFF;
  2956. if (((this_adm.ec_ref_rx & AFE_PORT_INVALID) !=
  2957. AFE_PORT_INVALID) &&
  2958. (path != ADM_PATH_PLAYBACK)) {
  2959. if (this_adm.num_ec_ref_rx_chans != 0) {
  2960. open_v8.endpoint_id_2 =
  2961. this_adm.ec_ref_rx;
  2962. this_adm.ec_ref_rx = AFE_PORT_INVALID;
  2963. } else {
  2964. pr_err("%s: EC channels not set %d\n",
  2965. __func__,
  2966. this_adm.num_ec_ref_rx_chans);
  2967. return -EINVAL;
  2968. }
  2969. }
  2970. open_v8.topology_id = topology;
  2971. open_v8.compressed_data_type = 0;
  2972. if (passthr_mode == COMPRESSED_PASSTHROUGH_DSD)
  2973. open_v8.compressed_data_type = 1;
  2974. /* variable endpoint payload */
  2975. ep1_payload.dev_num_channel = channel_mode & 0x00FF;
  2976. ep1_payload.bit_width = bit_width;
  2977. ep1_payload.sample_rate = rate;
  2978. ret = adm_arrange_mch_map_v8(&ep1_payload, path,
  2979. channel_mode, port_idx);
  2980. if (ret)
  2981. return ret;
  2982. pr_debug("%s: port_id=0x%x %x %x topology_id=0x%X flags %x ref_ch %x\n",
  2983. __func__, open_v8.endpoint_id_1,
  2984. open_v8.endpoint_id_2,
  2985. open_v8.endpoint_id_3,
  2986. open_v8.topology_id,
  2987. open_v8.flags,
  2988. this_adm.num_ec_ref_rx_chans);
  2989. ep1_payload_size = 8 +
  2990. roundup(ep1_payload.dev_num_channel, 4);
  2991. param_size = sizeof(struct adm_cmd_device_open_v8)
  2992. + ep1_payload_size;
  2993. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  2994. if ((this_adm.num_ec_ref_rx_chans != 0)
  2995. && (path != ADM_PATH_PLAYBACK)
  2996. && (open_v8.endpoint_id_2 != 0xFFFF)) {
  2997. ep2_payload.dev_num_channel =
  2998. this_adm.num_ec_ref_rx_chans;
  2999. if (this_adm.ec_ref_rx_bit_width != 0) {
  3000. ep2_payload.bit_width =
  3001. this_adm.ec_ref_rx_bit_width;
  3002. } else {
  3003. ep2_payload.bit_width = bit_width;
  3004. }
  3005. if (this_adm.ec_ref_rx_sampling_rate != 0) {
  3006. ep2_payload.sample_rate =
  3007. this_adm.ec_ref_rx_sampling_rate;
  3008. } else {
  3009. ep2_payload.sample_rate = rate;
  3010. }
  3011. pr_debug("%s: adm open_v8 eid2_channels=%d eid2_bit_width=%d eid2_rate=%d\n",
  3012. __func__,
  3013. ep2_payload.dev_num_channel,
  3014. ep2_payload.bit_width,
  3015. ep2_payload.sample_rate);
  3016. ret = adm_arrange_mch_ep2_map_v8(&ep2_payload,
  3017. ep2_payload.dev_num_channel);
  3018. if (ret)
  3019. return ret;
  3020. ep2_payload_size = 8 +
  3021. roundup(ep2_payload.dev_num_channel, 4);
  3022. param_size += ep2_payload_size;
  3023. }
  3024. open_v8.hdr.pkt_size = param_size;
  3025. adm_params = kzalloc(param_size, GFP_KERNEL);
  3026. if (!adm_params)
  3027. return -ENOMEM;
  3028. memcpy(adm_params, &open_v8, sizeof(open_v8));
  3029. memcpy(adm_params + sizeof(open_v8),
  3030. (void *)&ep1_payload,
  3031. ep1_payload_size);
  3032. if ((this_adm.num_ec_ref_rx_chans != 0)
  3033. && (path != ADM_PATH_PLAYBACK)
  3034. && (open_v8.endpoint_id_2 != 0xFFFF)) {
  3035. memcpy(adm_params + sizeof(open_v8)
  3036. + ep1_payload_size,
  3037. (void *)&ep2_payload,
  3038. ep2_payload_size);
  3039. }
  3040. ret = apr_send_pkt(this_adm.apr,
  3041. (uint32_t *)adm_params);
  3042. if (ret < 0) {
  3043. pr_err("%s: port_id: 0x%x for[0x%x] failed %d for open_v8\n",
  3044. __func__, tmp_port, port_id, ret);
  3045. return -EINVAL;
  3046. }
  3047. kfree(adm_params);
  3048. } else {
  3049. open.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3050. APR_HDR_LEN(APR_HDR_SIZE),
  3051. APR_PKT_VER);
  3052. open.hdr.pkt_size = sizeof(open);
  3053. open.hdr.src_svc = APR_SVC_ADM;
  3054. open.hdr.src_domain = APR_DOMAIN_APPS;
  3055. open.hdr.src_port = tmp_port;
  3056. open.hdr.dest_svc = APR_SVC_ADM;
  3057. open.hdr.dest_domain = APR_DOMAIN_ADSP;
  3058. open.hdr.dest_port = tmp_port;
  3059. open.hdr.token = port_idx << 16 | copp_idx;
  3060. open.hdr.opcode = ADM_CMD_DEVICE_OPEN_V5;
  3061. open.flags = flags;
  3062. open.mode_of_operation = path;
  3063. open.endpoint_id_1 = tmp_port;
  3064. open.endpoint_id_2 = 0xFFFF;
  3065. if (this_adm.ec_ref_rx && (path != 1) &&
  3066. (afe_get_port_type(tmp_port) == MSM_AFE_PORT_TYPE_TX)) {
  3067. open.endpoint_id_2 = this_adm.ec_ref_rx;
  3068. }
  3069. open.topology_id = topology;
  3070. open.dev_num_channel = channel_mode & 0x00FF;
  3071. open.bit_width = bit_width;
  3072. WARN_ON((perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) &&
  3073. (rate != ULL_SUPPORTED_SAMPLE_RATE));
  3074. open.sample_rate = rate;
  3075. ret = adm_arrange_mch_map(&open, path, channel_mode,
  3076. port_idx);
  3077. if (ret)
  3078. return ret;
  3079. pr_debug("%s: port_id=0x%x rate=%d topology_id=0x%X\n",
  3080. __func__, open.endpoint_id_1, open.sample_rate,
  3081. open.topology_id);
  3082. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  3083. if ((this_adm.num_ec_ref_rx_chans != 0) &&
  3084. (path != 1) && (open.endpoint_id_2 != 0xFFFF)) {
  3085. memset(&open_v6, 0,
  3086. sizeof(struct adm_cmd_device_open_v6));
  3087. memcpy(&open_v6, &open,
  3088. sizeof(struct adm_cmd_device_open_v5));
  3089. open_v6.hdr.opcode = ADM_CMD_DEVICE_OPEN_V6;
  3090. open_v6.hdr.pkt_size = sizeof(open_v6);
  3091. open_v6.dev_num_channel_eid2 =
  3092. this_adm.num_ec_ref_rx_chans;
  3093. if (this_adm.ec_ref_rx_bit_width != 0) {
  3094. open_v6.bit_width_eid2 =
  3095. this_adm.ec_ref_rx_bit_width;
  3096. } else {
  3097. open_v6.bit_width_eid2 = bit_width;
  3098. }
  3099. if (this_adm.ec_ref_rx_sampling_rate != 0) {
  3100. open_v6.sample_rate_eid2 =
  3101. this_adm.ec_ref_rx_sampling_rate;
  3102. } else {
  3103. open_v6.sample_rate_eid2 = rate;
  3104. }
  3105. pr_debug("%s: eid2_channels=%d eid2_bit_width=%d eid2_rate=%d\n",
  3106. __func__, open_v6.dev_num_channel_eid2,
  3107. open_v6.bit_width_eid2,
  3108. open_v6.sample_rate_eid2);
  3109. ret = adm_arrange_mch_ep2_map(&open_v6,
  3110. open_v6.dev_num_channel_eid2);
  3111. if (ret)
  3112. return ret;
  3113. ret = apr_send_pkt(this_adm.apr,
  3114. (uint32_t *)&open_v6);
  3115. } else {
  3116. ret = apr_send_pkt(this_adm.apr,
  3117. (uint32_t *)&open);
  3118. }
  3119. if (ret < 0) {
  3120. pr_err("%s: port_id: 0x%x for[0x%x] failed %d\n",
  3121. __func__, tmp_port, port_id, ret);
  3122. return -EINVAL;
  3123. }
  3124. }
  3125. /* Wait for the callback with copp id */
  3126. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  3127. atomic_read(&this_adm.copp.stat
  3128. [port_idx][copp_idx]) >= 0,
  3129. msecs_to_jiffies(2 * TIMEOUT_MS));
  3130. if (!ret) {
  3131. pr_err("%s: ADM open timedout for port_id: 0x%x for [0x%x]\n",
  3132. __func__, tmp_port, port_id);
  3133. return -EINVAL;
  3134. } else if (atomic_read(&this_adm.copp.stat
  3135. [port_idx][copp_idx]) > 0) {
  3136. pr_err("%s: DSP returned error[%s]\n",
  3137. __func__, adsp_err_get_err_str(
  3138. atomic_read(&this_adm.copp.stat
  3139. [port_idx][copp_idx])));
  3140. return adsp_err_get_lnx_err_code(
  3141. atomic_read(&this_adm.copp.stat
  3142. [port_idx][copp_idx]));
  3143. }
  3144. }
  3145. atomic_inc(&this_adm.copp.cnt[port_idx][copp_idx]);
  3146. /*
  3147. * Configure MFC(in ec_ref path) if chmixing param is applicable and set.
  3148. * Except channels and channel maps the media format config for this module
  3149. * should match with the COPP(EP1) config values.
  3150. */
  3151. if (path != ADM_PATH_PLAYBACK &&
  3152. this_adm.num_ec_ref_rx_chans_downmixed != 0 &&
  3153. num_ec_ref_rx_chans != this_adm.num_ec_ref_rx_chans_downmixed) {
  3154. ret = adm_copp_set_ec_ref_mfc_cfg(port_id, copp_idx,
  3155. rate, bit_width, num_ec_ref_rx_chans,
  3156. this_adm.num_ec_ref_rx_chans_downmixed);
  3157. this_adm.num_ec_ref_rx_chans_downmixed = 0;
  3158. if (ret)
  3159. pr_err("%s: set EC REF MFC cfg failed, err %d\n", __func__, ret);
  3160. }
  3161. return copp_idx;
  3162. }
  3163. EXPORT_SYMBOL(adm_open);
  3164. /**
  3165. * adm_copp_mfc_cfg -
  3166. * command to send ADM MFC config
  3167. *
  3168. * @port_id: Port ID number
  3169. * @copp_idx: copp index assigned
  3170. * @dst_sample_rate: sink sample rate
  3171. *
  3172. */
  3173. void adm_copp_mfc_cfg(int port_id, int copp_idx, int dst_sample_rate)
  3174. {
  3175. struct audproc_mfc_param_media_fmt mfc_cfg;
  3176. struct adm_cmd_device_open_v5 open;
  3177. struct param_hdr_v3 param_hdr;
  3178. int port_idx;
  3179. int rc = 0;
  3180. int i = 0;
  3181. port_id = q6audio_convert_virtual_to_portid(port_id);
  3182. port_idx = adm_validate_and_get_port_index(port_id);
  3183. if (port_idx < 0) {
  3184. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  3185. goto fail_cmd;
  3186. }
  3187. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  3188. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  3189. goto fail_cmd;
  3190. }
  3191. memset(&mfc_cfg, 0, sizeof(mfc_cfg));
  3192. memset(&open, 0, sizeof(open));
  3193. memset(&param_hdr, 0, sizeof(param_hdr));
  3194. param_hdr.module_id = AUDPROC_MODULE_ID_MFC;
  3195. param_hdr.instance_id = INSTANCE_ID_0;
  3196. param_hdr.param_id = AUDPROC_PARAM_ID_MFC_OUTPUT_MEDIA_FORMAT;
  3197. param_hdr.param_size = sizeof(mfc_cfg);
  3198. mfc_cfg.sampling_rate = dst_sample_rate;
  3199. mfc_cfg.bits_per_sample =
  3200. atomic_read(&this_adm.copp.bit_width[port_idx][copp_idx]);
  3201. open.dev_num_channel = mfc_cfg.num_channels =
  3202. atomic_read(&this_adm.copp.channels[port_idx][copp_idx]);
  3203. rc = adm_arrange_mch_map(&open, ADM_PATH_PLAYBACK,
  3204. mfc_cfg.num_channels, port_idx);
  3205. if (rc < 0) {
  3206. pr_err("%s: unable to get channal map\n", __func__);
  3207. goto fail_cmd;
  3208. }
  3209. for (i = 0; i < mfc_cfg.num_channels; i++)
  3210. mfc_cfg.channel_type[i] =
  3211. (uint16_t) open.dev_channel_mapping[i];
  3212. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  3213. pr_debug("%s: mfc config: port_idx %d copp_idx %d copp SR %d copp BW %d copp chan %d o/p SR %d\n",
  3214. __func__, port_idx, copp_idx,
  3215. atomic_read(&this_adm.copp.rate[port_idx][copp_idx]),
  3216. mfc_cfg.bits_per_sample, mfc_cfg.num_channels,
  3217. mfc_cfg.sampling_rate);
  3218. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  3219. (uint8_t *) &mfc_cfg);
  3220. if (rc)
  3221. pr_err("%s: Failed to set media format configuration data, err %d\n",
  3222. __func__, rc);
  3223. fail_cmd:
  3224. return;
  3225. }
  3226. EXPORT_SYMBOL(adm_copp_mfc_cfg);
  3227. static void route_set_opcode_matrix_id(
  3228. struct adm_cmd_matrix_map_routings_v5 **route_addr,
  3229. int path, uint32_t passthr_mode)
  3230. {
  3231. struct adm_cmd_matrix_map_routings_v5 *route = *route_addr;
  3232. switch (path) {
  3233. case ADM_PATH_PLAYBACK:
  3234. route->hdr.opcode = ADM_CMD_MATRIX_MAP_ROUTINGS_V5;
  3235. route->matrix_id = ADM_MATRIX_ID_AUDIO_RX;
  3236. break;
  3237. case ADM_PATH_LIVE_REC:
  3238. if (passthr_mode == LISTEN) {
  3239. route->hdr.opcode =
  3240. ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5;
  3241. route->matrix_id = ADM_MATRIX_ID_LISTEN_TX;
  3242. break;
  3243. }
  3244. /* fall through to set matrix id for non-listen case */
  3245. case ADM_PATH_NONLIVE_REC:
  3246. route->hdr.opcode = ADM_CMD_MATRIX_MAP_ROUTINGS_V5;
  3247. route->matrix_id = ADM_MATRIX_ID_AUDIO_TX;
  3248. break;
  3249. case ADM_PATH_COMPRESSED_RX:
  3250. route->hdr.opcode = ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5;
  3251. route->matrix_id = ADM_MATRIX_ID_COMPRESSED_AUDIO_RX;
  3252. break;
  3253. case ADM_PATH_COMPRESSED_TX:
  3254. route->hdr.opcode = ADM_CMD_STREAM_DEVICE_MAP_ROUTINGS_V5;
  3255. route->matrix_id = ADM_MATRIX_ID_COMPRESSED_AUDIO_TX;
  3256. break;
  3257. default:
  3258. pr_err("%s: Wrong path set[%d]\n", __func__, path);
  3259. break;
  3260. }
  3261. pr_debug("%s: opcode 0x%x, matrix id %d\n",
  3262. __func__, route->hdr.opcode, route->matrix_id);
  3263. }
  3264. /**
  3265. * adm_matrix_map -
  3266. * command to send ADM matrix map for ADM copp list
  3267. *
  3268. * @path: direction or ADM path type
  3269. * @payload_map: have info of session id and associated copp_idx/num_copps
  3270. * @perf_mode: performance mode like LL/ULL/..
  3271. * @passthr_mode: flag to indicate passthrough mode
  3272. *
  3273. * Returns 0 on success or error on failure
  3274. */
  3275. int adm_matrix_map(int path, struct route_payload payload_map, int perf_mode,
  3276. uint32_t passthr_mode)
  3277. {
  3278. struct adm_cmd_matrix_map_routings_v5 *route;
  3279. struct adm_session_map_node_v5 *node;
  3280. uint16_t *copps_list;
  3281. int cmd_size = 0;
  3282. int ret = 0, i = 0;
  3283. void *payload = NULL;
  3284. void *matrix_map = NULL;
  3285. int port_idx, copp_idx;
  3286. /* Assumes port_ids have already been validated during adm_open */
  3287. cmd_size = (sizeof(struct adm_cmd_matrix_map_routings_v5) +
  3288. sizeof(struct adm_session_map_node_v5) +
  3289. (sizeof(uint32_t) * payload_map.num_copps));
  3290. matrix_map = kzalloc(cmd_size, GFP_KERNEL);
  3291. if (matrix_map == NULL) {
  3292. pr_err("%s: Mem alloc failed\n", __func__);
  3293. ret = -EINVAL;
  3294. return ret;
  3295. }
  3296. route = (struct adm_cmd_matrix_map_routings_v5 *)matrix_map;
  3297. route->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3298. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3299. route->hdr.pkt_size = cmd_size;
  3300. route->hdr.src_svc = 0;
  3301. route->hdr.src_domain = APR_DOMAIN_APPS;
  3302. route->hdr.src_port = 0; /* Ignored */;
  3303. route->hdr.dest_svc = APR_SVC_ADM;
  3304. route->hdr.dest_domain = APR_DOMAIN_ADSP;
  3305. route->hdr.dest_port = 0; /* Ignored */;
  3306. route->hdr.token = 0;
  3307. route->num_sessions = 1;
  3308. route_set_opcode_matrix_id(&route, path, passthr_mode);
  3309. payload = ((u8 *)matrix_map +
  3310. sizeof(struct adm_cmd_matrix_map_routings_v5));
  3311. node = (struct adm_session_map_node_v5 *)payload;
  3312. node->session_id = payload_map.session_id;
  3313. node->num_copps = payload_map.num_copps;
  3314. payload = (u8 *)node + sizeof(struct adm_session_map_node_v5);
  3315. copps_list = (uint16_t *)payload;
  3316. for (i = 0; i < payload_map.num_copps; i++) {
  3317. port_idx =
  3318. adm_validate_and_get_port_index(payload_map.port_id[i]);
  3319. if (port_idx < 0) {
  3320. pr_err("%s: Invalid port_id 0x%x\n", __func__,
  3321. payload_map.port_id[i]);
  3322. ret = -EINVAL;
  3323. goto fail_cmd;
  3324. }
  3325. copp_idx = payload_map.copp_idx[i];
  3326. copps_list[i] = atomic_read(&this_adm.copp.id[port_idx]
  3327. [copp_idx]);
  3328. }
  3329. atomic_set(&this_adm.matrix_map_stat, -1);
  3330. ret = apr_send_pkt(this_adm.apr, (uint32_t *)matrix_map);
  3331. if (ret < 0) {
  3332. pr_err("%s: routing for syream %d failed ret %d\n",
  3333. __func__, payload_map.session_id, ret);
  3334. ret = -EINVAL;
  3335. goto fail_cmd;
  3336. }
  3337. ret = wait_event_timeout(this_adm.matrix_map_wait,
  3338. atomic_read(&this_adm.matrix_map_stat) >= 0,
  3339. msecs_to_jiffies(TIMEOUT_MS));
  3340. if (!ret) {
  3341. pr_err("%s: routing for syream %d failed\n", __func__,
  3342. payload_map.session_id);
  3343. ret = -EINVAL;
  3344. goto fail_cmd;
  3345. } else if (atomic_read(&this_adm.matrix_map_stat) > 0) {
  3346. pr_err("%s: DSP returned error[%s]\n", __func__,
  3347. adsp_err_get_err_str(atomic_read(
  3348. &this_adm.matrix_map_stat)));
  3349. ret = adsp_err_get_lnx_err_code(
  3350. atomic_read(&this_adm.matrix_map_stat));
  3351. goto fail_cmd;
  3352. }
  3353. if ((perf_mode != ULTRA_LOW_LATENCY_PCM_MODE) &&
  3354. (path != ADM_PATH_COMPRESSED_RX)) {
  3355. for (i = 0; i < payload_map.num_copps; i++) {
  3356. port_idx = afe_get_port_index(payload_map.port_id[i]);
  3357. copp_idx = payload_map.copp_idx[i];
  3358. if (port_idx < 0 || copp_idx < 0 ||
  3359. (copp_idx > MAX_COPPS_PER_PORT - 1)) {
  3360. pr_err("%s: Invalid idx port_idx %d copp_idx %d\n",
  3361. __func__, port_idx, copp_idx);
  3362. continue;
  3363. }
  3364. rtac_add_adm_device(payload_map.port_id[i],
  3365. atomic_read(&this_adm.copp.id
  3366. [port_idx][copp_idx]),
  3367. get_cal_path(path),
  3368. payload_map.session_id,
  3369. payload_map.app_type[i],
  3370. payload_map.acdb_dev_id[i]);
  3371. if (!test_bit(ADM_STATUS_CALIBRATION_REQUIRED,
  3372. (void *)&this_adm.copp.adm_status[port_idx]
  3373. [copp_idx])) {
  3374. pr_debug("%s: adm copp[0x%x][%d] already sent",
  3375. __func__, port_idx, copp_idx);
  3376. continue;
  3377. }
  3378. send_adm_cal(payload_map.port_id[i], copp_idx,
  3379. get_cal_path(path), perf_mode,
  3380. payload_map.app_type[i],
  3381. payload_map.acdb_dev_id[i],
  3382. payload_map.sample_rate[i],
  3383. passthr_mode);
  3384. /* ADM COPP calibration is already sent */
  3385. clear_bit(ADM_STATUS_CALIBRATION_REQUIRED,
  3386. (void *)&this_adm.copp.
  3387. adm_status[port_idx][copp_idx]);
  3388. pr_debug("%s: copp_id: %d\n", __func__,
  3389. atomic_read(&this_adm.copp.id[port_idx]
  3390. [copp_idx]));
  3391. }
  3392. }
  3393. fail_cmd:
  3394. kfree(matrix_map);
  3395. return ret;
  3396. }
  3397. EXPORT_SYMBOL(adm_matrix_map);
  3398. /**
  3399. * adm_ec_ref_rx_id -
  3400. * Update EC ref port ID
  3401. *
  3402. */
  3403. void adm_ec_ref_rx_id(int port_id)
  3404. {
  3405. this_adm.ec_ref_rx = port_id;
  3406. pr_debug("%s: ec_ref_rx:%d\n", __func__, this_adm.ec_ref_rx);
  3407. }
  3408. EXPORT_SYMBOL(adm_ec_ref_rx_id);
  3409. /**
  3410. * adm_num_ec_ref_rx_chans -
  3411. * Update EC ref number of channels
  3412. *
  3413. */
  3414. void adm_num_ec_ref_rx_chans(int num_chans)
  3415. {
  3416. this_adm.num_ec_ref_rx_chans = num_chans;
  3417. pr_debug("%s: num_ec_ref_rx_chans:%d\n",
  3418. __func__, this_adm.num_ec_ref_rx_chans);
  3419. }
  3420. EXPORT_SYMBOL(adm_num_ec_ref_rx_chans);
  3421. /**
  3422. * adm_num_ec_rx_ref_chans_downmixed -
  3423. * Update EC ref num of channels(downmixed) to be fed to EC algo
  3424. *
  3425. */
  3426. void adm_num_ec_ref_rx_chans_downmixed(int num_chans)
  3427. {
  3428. this_adm.num_ec_ref_rx_chans_downmixed = num_chans;
  3429. pr_debug("%s: num_ec_ref_rx_chans_downmixed:%d\n",
  3430. __func__, this_adm.num_ec_ref_rx_chans_downmixed);
  3431. }
  3432. EXPORT_SYMBOL(adm_num_ec_ref_rx_chans_downmixed);
  3433. /**
  3434. * adm_ec_ref_chmixer_weights -
  3435. * Update MFC(in ec ref) Channel Mixer Weights to be used
  3436. * for downmixing rx channels before feeding them to EC algo
  3437. * @out_channel_idx: index of output channel to which weightages are applicable
  3438. * @weights: pointer to array having input weightages
  3439. * @count: array sizeof pointer weights, max supported value is
  3440. * PCM_FORMAT_MAX_NUM_CHANNEL_V8
  3441. * Returns 0 on success or error on failure
  3442. */
  3443. int adm_ec_ref_chmixer_weights(int out_channel_idx,
  3444. uint16_t *weights, int count)
  3445. {
  3446. int i = 0;
  3447. if (weights == NULL || count <= 0 || out_channel_idx < 0 ||
  3448. count > PCM_FORMAT_MAX_NUM_CHANNEL_V8 ||
  3449. out_channel_idx >= PCM_FORMAT_MAX_NUM_CHANNEL_V8) {
  3450. pr_err("%s: invalid weightages count(%d) ch_idx(%d)",
  3451. __func__, count, out_channel_idx);
  3452. return -EINVAL;
  3453. }
  3454. for (i = 0; i < count; i++) {
  3455. this_adm.ec_ref_chmixer_weights[out_channel_idx][i] = weights[i];
  3456. pr_debug("%s: out ch idx :%d, weight[%d] = %d\n",
  3457. __func__, out_channel_idx, i, weights[i]);
  3458. }
  3459. return 0;
  3460. }
  3461. EXPORT_SYMBOL(adm_ec_ref_chmixer_weights);
  3462. /**
  3463. * adm_ec_ref_rx_bit_width -
  3464. * Update EC ref bit_width
  3465. *
  3466. */
  3467. void adm_ec_ref_rx_bit_width(int bit_width)
  3468. {
  3469. this_adm.ec_ref_rx_bit_width = bit_width;
  3470. pr_debug("%s: ec_ref_rx_bit_width:%d\n",
  3471. __func__, this_adm.ec_ref_rx_bit_width);
  3472. }
  3473. EXPORT_SYMBOL(adm_ec_ref_rx_bit_width);
  3474. /**
  3475. * adm_ec_ref_rx_sampling_rate -
  3476. * Update EC ref sample rate
  3477. *
  3478. */
  3479. void adm_ec_ref_rx_sampling_rate(int sampling_rate)
  3480. {
  3481. this_adm.ec_ref_rx_sampling_rate = sampling_rate;
  3482. pr_debug("%s: ec_ref_rx_sampling_rate:%d\n",
  3483. __func__, this_adm.ec_ref_rx_sampling_rate);
  3484. }
  3485. EXPORT_SYMBOL(adm_ec_ref_rx_sampling_rate);
  3486. /**
  3487. * adm_set_native_mode -
  3488. * Set adm channel native mode.
  3489. * If enabled matrix mixer will be
  3490. * running in native mode for channel
  3491. * configuration for this device session.
  3492. *
  3493. */
  3494. void adm_set_native_mode(int mode)
  3495. {
  3496. this_adm.native_mode = mode;
  3497. pr_debug("%s: enable native_mode :%d\n",
  3498. __func__, this_adm.native_mode);
  3499. }
  3500. EXPORT_SYMBOL(adm_set_native_mode);
  3501. /**
  3502. * adm_close -
  3503. * command to close ADM copp
  3504. *
  3505. * @port_id: Port ID number
  3506. * @perf_mode: performance mode like LL/ULL/..
  3507. * @copp_idx: copp index assigned
  3508. *
  3509. * Returns 0 on success or error on failure
  3510. */
  3511. int adm_close(int port_id, int perf_mode, int copp_idx)
  3512. {
  3513. struct apr_hdr close;
  3514. int ret = 0, port_idx;
  3515. int copp_id = RESET_COPP_ID;
  3516. bool result = false;
  3517. int dest_perms[1] = {PERM_READ | PERM_WRITE | PERM_EXEC};
  3518. int source_vm[2] = {VMID_LPASS, VMID_ADSP_HEAP};
  3519. int dest_vm[1] = {VMID_HLOS};
  3520. struct cal_block_data *cal_block = NULL;
  3521. int cal_index = ADM_AUDPROC_PERSISTENT_CAL;
  3522. pr_debug("%s: port_id=0x%x perf_mode: %d copp_idx: %d\n", __func__,
  3523. port_id, perf_mode, copp_idx);
  3524. port_id = q6audio_convert_virtual_to_portid(port_id);
  3525. port_idx = adm_validate_and_get_port_index(port_id);
  3526. if (port_idx < 0) {
  3527. pr_err("%s: Invalid port_id 0x%x\n",
  3528. __func__, port_id);
  3529. return -EINVAL;
  3530. }
  3531. if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
  3532. pr_err("%s: Invalid copp idx: %d\n", __func__, copp_idx);
  3533. return -EINVAL;
  3534. }
  3535. port_channel_map[port_idx].set_channel_map = false;
  3536. if (this_adm.copp.adm_delay[port_idx][copp_idx] && perf_mode
  3537. == LEGACY_PCM_MODE) {
  3538. atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx],
  3539. 1);
  3540. this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
  3541. wake_up(&this_adm.copp.adm_delay_wait[port_idx][copp_idx]);
  3542. }
  3543. atomic_dec(&this_adm.copp.cnt[port_idx][copp_idx]);
  3544. if (!(atomic_read(&this_adm.copp.cnt[port_idx][copp_idx]))) {
  3545. copp_id = adm_get_copp_id(port_idx, copp_idx);
  3546. pr_debug("%s: Closing ADM port_idx:%d copp_idx:%d copp_id:0x%x\n",
  3547. __func__, port_idx, copp_idx, copp_id);
  3548. if ((!perf_mode) && (this_adm.outband_memmap.paddr != 0) &&
  3549. (atomic_read(&this_adm.copp.topology[port_idx][copp_idx]) ==
  3550. SRS_TRUMEDIA_TOPOLOGY_ID)) {
  3551. atomic_set(&this_adm.mem_map_index,
  3552. ADM_SRS_TRUMEDIA);
  3553. ret = adm_memory_unmap_regions();
  3554. if (ret < 0) {
  3555. pr_err("%s: adm mem unmmap err %d",
  3556. __func__, ret);
  3557. } else {
  3558. atomic_set(&this_adm.mem_map_handles
  3559. [ADM_SRS_TRUMEDIA], 0);
  3560. }
  3561. }
  3562. if ((afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) &&
  3563. this_adm.sourceTrackingData.memmap.paddr) {
  3564. atomic_set(&this_adm.mem_map_index,
  3565. ADM_MEM_MAP_INDEX_SOURCE_TRACKING);
  3566. ret = adm_memory_unmap_regions();
  3567. if (ret < 0) {
  3568. pr_err("%s: adm mem unmmap err %d",
  3569. __func__, ret);
  3570. }
  3571. msm_audio_ion_free(
  3572. this_adm.sourceTrackingData.dma_buf);
  3573. this_adm.sourceTrackingData.dma_buf = NULL;
  3574. this_adm.sourceTrackingData.memmap.size = 0;
  3575. this_adm.sourceTrackingData.memmap.kvaddr = NULL;
  3576. this_adm.sourceTrackingData.memmap.paddr = 0;
  3577. this_adm.sourceTrackingData.apr_cmd_status = -1;
  3578. atomic_set(&this_adm.mem_map_handles[
  3579. ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
  3580. }
  3581. close.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3582. APR_HDR_LEN(APR_HDR_SIZE),
  3583. APR_PKT_VER);
  3584. close.pkt_size = sizeof(close);
  3585. close.src_svc = APR_SVC_ADM;
  3586. close.src_domain = APR_DOMAIN_APPS;
  3587. close.src_port = port_id;
  3588. close.dest_svc = APR_SVC_ADM;
  3589. close.dest_domain = APR_DOMAIN_ADSP;
  3590. close.dest_port = copp_id;
  3591. close.token = port_idx << 16 | copp_idx;
  3592. close.opcode = ADM_CMD_DEVICE_CLOSE_V5;
  3593. atomic_set(&this_adm.copp.id[port_idx][copp_idx],
  3594. RESET_COPP_ID);
  3595. atomic_set(&this_adm.copp.cnt[port_idx][copp_idx], 0);
  3596. atomic_set(&this_adm.copp.topology[port_idx][copp_idx], 0);
  3597. atomic_set(&this_adm.copp.mode[port_idx][copp_idx], 0);
  3598. atomic_set(&this_adm.copp.stat[port_idx][copp_idx], -1);
  3599. atomic_set(&this_adm.copp.rate[port_idx][copp_idx], 0);
  3600. atomic_set(&this_adm.copp.channels[port_idx][copp_idx], 0);
  3601. atomic_set(&this_adm.copp.bit_width[port_idx][copp_idx], 0);
  3602. atomic_set(&this_adm.copp.app_type[port_idx][copp_idx], 0);
  3603. atomic_set(&this_adm.copp.session_type[port_idx][copp_idx], 0);
  3604. atomic_set(&this_adm.copp.token[port_idx][copp_idx], 0);
  3605. clear_bit(ADM_STATUS_CALIBRATION_REQUIRED,
  3606. (void *)&this_adm.copp.adm_status[port_idx][copp_idx]);
  3607. ret = apr_send_pkt(this_adm.apr, (uint32_t *)&close);
  3608. if (ret < 0) {
  3609. pr_err("%s: ADM close failed %d\n", __func__, ret);
  3610. if (this_adm.tx_port_id == port_id) {
  3611. mutex_lock(&this_adm.cal_data[cal_index]->lock);
  3612. cal_block = cal_utils_get_only_cal_block(
  3613. this_adm.cal_data[cal_index]);
  3614. if (cal_block != NULL) {
  3615. result = true;
  3616. pr_debug("%s: cma_alloc %d\n",
  3617. __func__, cal_block->cma_mem);
  3618. }
  3619. if (result) {
  3620. pr_debug("%s: use hyp assigned %d, use buffer %d\n",
  3621. __func__, this_adm.hyp_assigned,
  3622. cal_block->buffer_number);
  3623. if(cal_block->cma_mem &&
  3624. this_adm.hyp_assigned) {
  3625. if (cal_block->cal_data.paddr == 0 ||
  3626. cal_block->map_data.map_size <= 0) {
  3627. pr_err("%s: No address to map!\n",
  3628. __func__);
  3629. ret = -EINVAL;
  3630. goto fail;
  3631. }
  3632. ret = hyp_assign_phys(
  3633. cal_block->cal_data.paddr,
  3634. cal_block->map_data.map_size,
  3635. source_vm, 2, dest_vm,
  3636. dest_perms, 1);
  3637. if (ret < 0) {
  3638. pr_err("%s: hyp_assign_phys failed result = %d addr = 0x%pK size = %d\n",
  3639. __func__, ret,
  3640. cal_block->cal_data.paddr,
  3641. cal_block->map_data.map_size);
  3642. goto fail;
  3643. } else {
  3644. pr_debug("%s: hyp_assign_phys success\n",
  3645. __func__);
  3646. this_adm.hyp_assigned = false;
  3647. }
  3648. }
  3649. ret = -EINVAL;
  3650. }
  3651. goto fail;
  3652. }
  3653. return -EINVAL;
  3654. }
  3655. ret = wait_event_timeout(this_adm.copp.wait[port_idx][copp_idx],
  3656. atomic_read(&this_adm.copp.stat
  3657. [port_idx][copp_idx]) >= 0,
  3658. msecs_to_jiffies(TIMEOUT_MS));
  3659. if (!ret) {
  3660. pr_err("%s: ADM cmd Route timedout for port 0x%x\n",
  3661. __func__, port_id);
  3662. return -EINVAL;
  3663. } else if (atomic_read(&this_adm.copp.stat
  3664. [port_idx][copp_idx]) > 0) {
  3665. pr_err("%s: DSP returned error[%s]\n",
  3666. __func__, adsp_err_get_err_str(
  3667. atomic_read(&this_adm.copp.stat
  3668. [port_idx][copp_idx])));
  3669. return adsp_err_get_lnx_err_code(
  3670. atomic_read(&this_adm.copp.stat
  3671. [port_idx][copp_idx]));
  3672. }
  3673. }
  3674. if (perf_mode != ULTRA_LOW_LATENCY_PCM_MODE) {
  3675. pr_debug("%s: remove adm device from rtac\n", __func__);
  3676. rtac_remove_adm_device(port_id, copp_id);
  3677. }
  3678. if (this_adm.tx_port_id == port_id) {
  3679. mutex_lock(&this_adm.cal_data[cal_index]->lock);
  3680. cal_block = cal_utils_get_only_cal_block(
  3681. this_adm.cal_data[cal_index]);
  3682. if (cal_block != NULL) {
  3683. result = true;
  3684. pr_debug("%s: cma_alloc %d\n",
  3685. __func__, cal_block->cma_mem);
  3686. }
  3687. if (result) {
  3688. pr_debug("%s: use hyp assigned %d, use buffer %d\n",
  3689. __func__, this_adm.hyp_assigned,
  3690. cal_block->buffer_number);
  3691. if(cal_block->cma_mem && this_adm.hyp_assigned) {
  3692. if (cal_block->cal_data.paddr == 0 ||
  3693. cal_block->map_data.map_size <= 0) {
  3694. pr_err("%s: No address to map!\n",
  3695. __func__);
  3696. ret = -EINVAL;
  3697. goto fail;
  3698. }
  3699. ret = hyp_assign_phys(cal_block->cal_data.paddr,
  3700. cal_block->map_data.map_size,
  3701. source_vm, 2, dest_vm,
  3702. dest_perms, 1);
  3703. if (ret < 0) {
  3704. pr_err("%s: hyp_assign_phys failed result = %d addr = 0x%pK size = %d\n",
  3705. __func__, ret, cal_block->cal_data.paddr,
  3706. cal_block->map_data.map_size);
  3707. ret = -EINVAL;
  3708. goto fail;
  3709. } else {
  3710. pr_debug("%s: hyp_assign_phys success\n",
  3711. __func__);
  3712. this_adm.hyp_assigned = false;
  3713. }
  3714. }
  3715. }
  3716. goto fail;
  3717. }
  3718. if (port_id == this_adm.ffecns_port_id)
  3719. this_adm.ffecns_port_id = -1;
  3720. return 0;
  3721. fail:
  3722. mutex_unlock(&this_adm.cal_data[cal_index]->lock);
  3723. return ret;
  3724. }
  3725. EXPORT_SYMBOL(adm_close);
  3726. int send_rtac_audvol_cal(void)
  3727. {
  3728. int ret = 0;
  3729. int ret2 = 0;
  3730. int i = 0;
  3731. int copp_idx, port_idx, acdb_id, app_id, path;
  3732. struct cal_block_data *cal_block = NULL;
  3733. struct audio_cal_info_audvol *audvol_cal_info = NULL;
  3734. struct rtac_adm rtac_adm_data;
  3735. mutex_lock(&this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]->lock);
  3736. cal_block = cal_utils_get_only_cal_block(
  3737. this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]);
  3738. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block,
  3739. this_adm.cal_data[ADM_RTAC_AUDVOL_CAL])) {
  3740. pr_err("%s: can't find cal block!\n", __func__);
  3741. goto unlock;
  3742. }
  3743. audvol_cal_info = cal_block->cal_info;
  3744. if (audvol_cal_info == NULL) {
  3745. pr_err("%s: audvol_cal_info is NULL!\n", __func__);
  3746. goto unlock;
  3747. }
  3748. get_rtac_adm_data(&rtac_adm_data);
  3749. for (; i < rtac_adm_data.num_of_dev; i++) {
  3750. acdb_id = rtac_adm_data.device[i].acdb_dev_id;
  3751. if (acdb_id == 0)
  3752. acdb_id = audvol_cal_info->acdb_id;
  3753. app_id = rtac_adm_data.device[i].app_type;
  3754. if (app_id == 0)
  3755. app_id = audvol_cal_info->app_type;
  3756. path = afe_get_port_type(rtac_adm_data.device[i].afe_port);
  3757. if ((acdb_id == audvol_cal_info->acdb_id) &&
  3758. (app_id == audvol_cal_info->app_type) &&
  3759. (path == audvol_cal_info->path)) {
  3760. if (adm_get_indexes_from_copp_id(rtac_adm_data.
  3761. device[i].copp, &copp_idx, &port_idx) != 0) {
  3762. pr_debug("%s: Copp Id %d is not active\n",
  3763. __func__,
  3764. rtac_adm_data.device[i].copp);
  3765. continue;
  3766. }
  3767. ret2 = adm_remap_and_send_cal_block(ADM_RTAC_AUDVOL_CAL,
  3768. rtac_adm_data.device[i].afe_port,
  3769. copp_idx, cal_block,
  3770. atomic_read(&this_adm.copp.
  3771. mode[port_idx][copp_idx]),
  3772. audvol_cal_info->app_type,
  3773. audvol_cal_info->acdb_id,
  3774. atomic_read(&this_adm.copp.
  3775. rate[port_idx][copp_idx]));
  3776. if (ret2 < 0) {
  3777. pr_debug("%s: remap and send failed for copp Id %d, acdb id %d, app type %d, path %d\n",
  3778. __func__, rtac_adm_data.device[i].copp,
  3779. audvol_cal_info->acdb_id,
  3780. audvol_cal_info->app_type,
  3781. audvol_cal_info->path);
  3782. ret = ret2;
  3783. }
  3784. }
  3785. }
  3786. unlock:
  3787. mutex_unlock(&this_adm.cal_data[ADM_RTAC_AUDVOL_CAL]->lock);
  3788. return ret;
  3789. }
  3790. int adm_map_rtac_block(struct rtac_cal_block_data *cal_block)
  3791. {
  3792. int result = 0;
  3793. pr_debug("%s:\n", __func__);
  3794. if (cal_block == NULL) {
  3795. pr_err("%s: cal_block is NULL!\n",
  3796. __func__);
  3797. result = -EINVAL;
  3798. goto done;
  3799. }
  3800. if (cal_block->cal_data.paddr == 0) {
  3801. pr_debug("%s: No address to map!\n",
  3802. __func__);
  3803. result = -EINVAL;
  3804. goto done;
  3805. }
  3806. if (cal_block->map_data.map_size == 0) {
  3807. pr_debug("%s: map size is 0!\n",
  3808. __func__);
  3809. result = -EINVAL;
  3810. goto done;
  3811. }
  3812. /* valid port ID needed for callback use primary I2S */
  3813. atomic_set(&this_adm.mem_map_index, ADM_RTAC_APR_CAL);
  3814. result = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
  3815. &cal_block->map_data.map_size, 1);
  3816. if (result < 0) {
  3817. pr_err("%s: RTAC mmap did not work! size = %d result %d\n",
  3818. __func__,
  3819. cal_block->map_data.map_size, result);
  3820. pr_debug("%s: RTAC mmap did not work! addr = 0x%pK, size = %d\n",
  3821. __func__,
  3822. &cal_block->cal_data.paddr,
  3823. cal_block->map_data.map_size);
  3824. goto done;
  3825. }
  3826. cal_block->map_data.map_handle = atomic_read(
  3827. &this_adm.mem_map_handles[ADM_RTAC_APR_CAL]);
  3828. done:
  3829. return result;
  3830. }
  3831. int adm_unmap_rtac_block(uint32_t *mem_map_handle)
  3832. {
  3833. int result = 0;
  3834. pr_debug("%s:\n", __func__);
  3835. if (mem_map_handle == NULL) {
  3836. pr_debug("%s: Map handle is NULL, nothing to unmap\n",
  3837. __func__);
  3838. goto done;
  3839. }
  3840. if (*mem_map_handle == 0) {
  3841. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  3842. __func__);
  3843. goto done;
  3844. }
  3845. if (*mem_map_handle != atomic_read(
  3846. &this_adm.mem_map_handles[ADM_RTAC_APR_CAL])) {
  3847. pr_err("%s: Map handles do not match! Unmapping RTAC, RTAC map 0x%x, ADM map 0x%x\n",
  3848. __func__, *mem_map_handle, atomic_read(
  3849. &this_adm.mem_map_handles[ADM_RTAC_APR_CAL]));
  3850. /* if mismatch use handle passed in to unmap */
  3851. atomic_set(&this_adm.mem_map_handles[ADM_RTAC_APR_CAL],
  3852. *mem_map_handle);
  3853. }
  3854. /* valid port ID needed for callback use primary I2S */
  3855. atomic_set(&this_adm.mem_map_index, ADM_RTAC_APR_CAL);
  3856. result = adm_memory_unmap_regions();
  3857. if (result < 0) {
  3858. pr_debug("%s: adm_memory_unmap_regions failed, error %d\n",
  3859. __func__, result);
  3860. } else {
  3861. atomic_set(&this_adm.mem_map_handles[ADM_RTAC_APR_CAL], 0);
  3862. *mem_map_handle = 0;
  3863. }
  3864. done:
  3865. return result;
  3866. }
  3867. static int get_cal_type_index(int32_t cal_type)
  3868. {
  3869. int ret = -EINVAL;
  3870. switch (cal_type) {
  3871. case ADM_AUDPROC_CAL_TYPE:
  3872. ret = ADM_AUDPROC_CAL;
  3873. break;
  3874. case ADM_LSM_AUDPROC_CAL_TYPE:
  3875. ret = ADM_LSM_AUDPROC_CAL;
  3876. break;
  3877. case ADM_AUDVOL_CAL_TYPE:
  3878. ret = ADM_AUDVOL_CAL;
  3879. break;
  3880. case ADM_CUST_TOPOLOGY_CAL_TYPE:
  3881. ret = ADM_CUSTOM_TOP_CAL;
  3882. break;
  3883. case ADM_RTAC_INFO_CAL_TYPE:
  3884. ret = ADM_RTAC_INFO_CAL;
  3885. break;
  3886. case ADM_RTAC_APR_CAL_TYPE:
  3887. ret = ADM_RTAC_APR_CAL;
  3888. break;
  3889. case ADM_RTAC_AUDVOL_CAL_TYPE:
  3890. ret = ADM_RTAC_AUDVOL_CAL;
  3891. break;
  3892. case ADM_LSM_AUDPROC_PERSISTENT_CAL_TYPE:
  3893. ret = ADM_LSM_AUDPROC_PERSISTENT_CAL;
  3894. break;
  3895. case ADM_AUDPROC_PERSISTENT_CAL_TYPE:
  3896. ret = ADM_AUDPROC_PERSISTENT_CAL;
  3897. break;
  3898. default:
  3899. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  3900. }
  3901. return ret;
  3902. }
  3903. static int adm_alloc_cal(int32_t cal_type, size_t data_size, void *data)
  3904. {
  3905. int ret = 0;
  3906. int cal_index;
  3907. pr_debug("%s:\n", __func__);
  3908. cal_index = get_cal_type_index(cal_type);
  3909. if (cal_index < 0) {
  3910. pr_err("%s: could not get cal index %d!\n",
  3911. __func__, cal_index);
  3912. ret = -EINVAL;
  3913. goto done;
  3914. }
  3915. ret = cal_utils_alloc_cal(data_size, data,
  3916. this_adm.cal_data[cal_index], 0, NULL);
  3917. if (ret < 0) {
  3918. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  3919. __func__, ret, cal_type);
  3920. ret = -EINVAL;
  3921. goto done;
  3922. }
  3923. done:
  3924. return ret;
  3925. }
  3926. static int adm_dealloc_cal(int32_t cal_type, size_t data_size, void *data)
  3927. {
  3928. int ret = 0;
  3929. int cal_index;
  3930. pr_debug("%s:\n", __func__);
  3931. cal_index = get_cal_type_index(cal_type);
  3932. if (cal_index < 0) {
  3933. pr_err("%s: could not get cal index %d!\n",
  3934. __func__, cal_index);
  3935. ret = -EINVAL;
  3936. goto done;
  3937. }
  3938. ret = cal_utils_dealloc_cal(data_size, data,
  3939. this_adm.cal_data[cal_index]);
  3940. if (ret < 0) {
  3941. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  3942. __func__, ret, cal_type);
  3943. ret = -EINVAL;
  3944. goto done;
  3945. }
  3946. done:
  3947. return ret;
  3948. }
  3949. static int adm_set_cal(int32_t cal_type, size_t data_size, void *data)
  3950. {
  3951. int ret = 0;
  3952. int cal_index;
  3953. pr_debug("%s:\n", __func__);
  3954. cal_index = get_cal_type_index(cal_type);
  3955. if (cal_index < 0) {
  3956. pr_err("%s: could not get cal index %d!\n",
  3957. __func__, cal_index);
  3958. ret = -EINVAL;
  3959. goto done;
  3960. }
  3961. ret = cal_utils_set_cal(data_size, data,
  3962. this_adm.cal_data[cal_index], 0, NULL);
  3963. if (ret < 0) {
  3964. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  3965. __func__, ret, cal_type);
  3966. ret = -EINVAL;
  3967. goto done;
  3968. }
  3969. if (cal_index == ADM_CUSTOM_TOP_CAL) {
  3970. mutex_lock(&this_adm.cal_data[ADM_CUSTOM_TOP_CAL]->lock);
  3971. this_adm.set_custom_topology = 1;
  3972. mutex_unlock(&this_adm.cal_data[ADM_CUSTOM_TOP_CAL]->lock);
  3973. } else if (cal_index == ADM_RTAC_AUDVOL_CAL) {
  3974. send_rtac_audvol_cal();
  3975. }
  3976. done:
  3977. return ret;
  3978. }
  3979. static int adm_map_cal_data(int32_t cal_type,
  3980. struct cal_block_data *cal_block)
  3981. {
  3982. int ret = 0;
  3983. int cal_index;
  3984. pr_debug("%s:\n", __func__);
  3985. cal_index = get_cal_type_index(cal_type);
  3986. if (cal_index < 0) {
  3987. pr_err("%s: could not get cal index %d!\n",
  3988. __func__, cal_index);
  3989. ret = -EINVAL;
  3990. goto done;
  3991. }
  3992. atomic_set(&this_adm.mem_map_index, cal_index);
  3993. ret = adm_memory_map_regions(&cal_block->cal_data.paddr, 0,
  3994. (uint32_t *)&cal_block->map_data.map_size, 1);
  3995. if (ret < 0) {
  3996. pr_err("%s: map did not work! cal_type %i ret %d\n",
  3997. __func__, cal_index, ret);
  3998. ret = -ENODEV;
  3999. goto done;
  4000. }
  4001. cal_block->map_data.q6map_handle = atomic_read(&this_adm.
  4002. mem_map_handles[cal_index]);
  4003. done:
  4004. return ret;
  4005. }
  4006. static int adm_unmap_cal_data(int32_t cal_type,
  4007. struct cal_block_data *cal_block)
  4008. {
  4009. int ret = 0;
  4010. int cal_index;
  4011. pr_debug("%s:\n", __func__);
  4012. cal_index = get_cal_type_index(cal_type);
  4013. if (cal_index < 0) {
  4014. pr_err("%s: could not get cal index %d!\n",
  4015. __func__, cal_index);
  4016. ret = -EINVAL;
  4017. goto done;
  4018. }
  4019. if (cal_block == NULL) {
  4020. pr_err("%s: Cal block is NULL!\n",
  4021. __func__);
  4022. goto done;
  4023. }
  4024. if (cal_block->map_data.q6map_handle == 0) {
  4025. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  4026. __func__);
  4027. goto done;
  4028. }
  4029. atomic_set(&this_adm.mem_map_handles[cal_index],
  4030. cal_block->map_data.q6map_handle);
  4031. atomic_set(&this_adm.mem_map_index, cal_index);
  4032. ret = adm_memory_unmap_regions();
  4033. if (ret < 0) {
  4034. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  4035. __func__, cal_index, ret);
  4036. ret = -ENODEV;
  4037. goto done;
  4038. }
  4039. cal_block->map_data.q6map_handle = 0;
  4040. done:
  4041. return ret;
  4042. }
  4043. static void adm_delete_cal_data(void)
  4044. {
  4045. pr_debug("%s:\n", __func__);
  4046. cal_utils_destroy_cal_types(ADM_MAX_CAL_TYPES, this_adm.cal_data);
  4047. }
  4048. static int adm_init_cal_data(void)
  4049. {
  4050. int ret = 0;
  4051. struct cal_type_info cal_type_info[] = {
  4052. {{ADM_CUST_TOPOLOGY_CAL_TYPE,
  4053. {adm_alloc_cal, adm_dealloc_cal, NULL,
  4054. adm_set_cal, NULL, NULL} },
  4055. {adm_map_cal_data, adm_unmap_cal_data,
  4056. cal_utils_match_buf_num} },
  4057. {{ADM_AUDPROC_CAL_TYPE,
  4058. {adm_alloc_cal, adm_dealloc_cal, NULL,
  4059. adm_set_cal, NULL, NULL} },
  4060. {adm_map_cal_data, adm_unmap_cal_data,
  4061. cal_utils_match_buf_num} },
  4062. {{ADM_LSM_AUDPROC_CAL_TYPE,
  4063. {adm_alloc_cal, adm_dealloc_cal, NULL,
  4064. adm_set_cal, NULL, NULL} },
  4065. {adm_map_cal_data, adm_unmap_cal_data,
  4066. cal_utils_match_buf_num} },
  4067. {{ADM_AUDVOL_CAL_TYPE,
  4068. {adm_alloc_cal, adm_dealloc_cal, NULL,
  4069. adm_set_cal, NULL, NULL} },
  4070. {adm_map_cal_data, adm_unmap_cal_data,
  4071. cal_utils_match_buf_num} },
  4072. {{ADM_RTAC_INFO_CAL_TYPE,
  4073. {NULL, NULL, NULL, NULL, NULL, NULL} },
  4074. {NULL, NULL, cal_utils_match_buf_num} },
  4075. {{ADM_RTAC_APR_CAL_TYPE,
  4076. {NULL, NULL, NULL, NULL, NULL, NULL} },
  4077. {NULL, NULL, cal_utils_match_buf_num} },
  4078. {{SRS_TRUMEDIA_CAL_TYPE,
  4079. {NULL, NULL, NULL, NULL, NULL, NULL} },
  4080. {NULL, NULL, cal_utils_match_buf_num} },
  4081. {{ADM_RTAC_AUDVOL_CAL_TYPE,
  4082. {adm_alloc_cal, adm_dealloc_cal, NULL,
  4083. adm_set_cal, NULL, NULL} },
  4084. {adm_map_cal_data, adm_unmap_cal_data,
  4085. cal_utils_match_buf_num} },
  4086. {{ADM_LSM_AUDPROC_PERSISTENT_CAL_TYPE,
  4087. {adm_alloc_cal, adm_dealloc_cal, NULL,
  4088. adm_set_cal, NULL, NULL} },
  4089. {adm_map_cal_data, adm_unmap_cal_data,
  4090. cal_utils_match_buf_num} },
  4091. {{ADM_AUDPROC_PERSISTENT_CAL_TYPE,
  4092. {adm_alloc_cal, adm_dealloc_cal, NULL,
  4093. adm_set_cal, NULL, NULL} },
  4094. {adm_map_cal_data, adm_unmap_cal_data,
  4095. cal_utils_match_buf_num} },
  4096. };
  4097. pr_debug("%s:\n", __func__);
  4098. ret = cal_utils_create_cal_types(ADM_MAX_CAL_TYPES, this_adm.cal_data,
  4099. cal_type_info);
  4100. if (ret < 0) {
  4101. pr_err("%s: could not create cal type! ret %d\n",
  4102. __func__, ret);
  4103. ret = -EINVAL;
  4104. goto err;
  4105. }
  4106. return ret;
  4107. err:
  4108. adm_delete_cal_data();
  4109. return ret;
  4110. }
  4111. /**
  4112. * adm_set_volume -
  4113. * command to set volume on ADM copp
  4114. *
  4115. * @port_id: Port ID number
  4116. * @copp_idx: copp index assigned
  4117. * @volume: gain value to set
  4118. *
  4119. * Returns 0 on success or error on failure
  4120. */
  4121. int adm_set_volume(int port_id, int copp_idx, int volume)
  4122. {
  4123. struct audproc_volume_ctrl_master_gain audproc_vol;
  4124. struct param_hdr_v3 param_hdr;
  4125. int rc = 0;
  4126. pr_debug("%s: port_id %d, volume %d\n", __func__, port_id, volume);
  4127. memset(&audproc_vol, 0, sizeof(audproc_vol));
  4128. memset(&param_hdr, 0, sizeof(param_hdr));
  4129. param_hdr.module_id = AUDPROC_MODULE_ID_VOL_CTRL;
  4130. param_hdr.instance_id = INSTANCE_ID_0;
  4131. param_hdr.param_id = AUDPROC_PARAM_ID_VOL_CTRL_MASTER_GAIN;
  4132. param_hdr.param_size = sizeof(audproc_vol);
  4133. audproc_vol.master_gain = volume;
  4134. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4135. (uint8_t *) &audproc_vol);
  4136. if (rc)
  4137. pr_err("%s: Failed to set volume, err %d\n", __func__, rc);
  4138. return rc;
  4139. }
  4140. EXPORT_SYMBOL(adm_set_volume);
  4141. /**
  4142. * adm_set_softvolume -
  4143. * command to set softvolume
  4144. *
  4145. * @port_id: Port ID number
  4146. * @copp_idx: copp index assigned
  4147. * @softvol_param: Params to set for softvolume
  4148. *
  4149. * Returns 0 on success or error on failure
  4150. */
  4151. int adm_set_softvolume(int port_id, int copp_idx,
  4152. struct audproc_softvolume_params *softvol_param)
  4153. {
  4154. struct audproc_soft_step_volume_params audproc_softvol;
  4155. struct param_hdr_v3 param_hdr;
  4156. int rc = 0;
  4157. pr_debug("%s: period %d step %d curve %d\n", __func__,
  4158. softvol_param->period, softvol_param->step,
  4159. softvol_param->rampingcurve);
  4160. memset(&audproc_softvol, 0, sizeof(audproc_softvol));
  4161. memset(&param_hdr, 0, sizeof(param_hdr));
  4162. param_hdr.module_id = AUDPROC_MODULE_ID_VOL_CTRL;
  4163. param_hdr.instance_id = INSTANCE_ID_0;
  4164. param_hdr.param_id = AUDPROC_PARAM_ID_SOFT_VOL_STEPPING_PARAMETERS;
  4165. param_hdr.param_size = sizeof(audproc_softvol);
  4166. audproc_softvol.period = softvol_param->period;
  4167. audproc_softvol.step = softvol_param->step;
  4168. audproc_softvol.ramping_curve = softvol_param->rampingcurve;
  4169. pr_debug("%s: period %d, step %d, curve %d\n", __func__,
  4170. audproc_softvol.period, audproc_softvol.step,
  4171. audproc_softvol.ramping_curve);
  4172. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4173. (uint8_t *) &audproc_softvol);
  4174. if (rc)
  4175. pr_err("%s: Failed to set soft volume, err %d\n", __func__, rc);
  4176. return rc;
  4177. }
  4178. EXPORT_SYMBOL(adm_set_softvolume);
  4179. /**
  4180. * adm_set_mic_gain -
  4181. * command to set MIC gain
  4182. *
  4183. * @port_id: Port ID number
  4184. * @copp_idx: copp index assigned
  4185. * @volume: gain value to set
  4186. *
  4187. * Returns 0 on success or error on failure
  4188. */
  4189. int adm_set_mic_gain(int port_id, int copp_idx, int volume)
  4190. {
  4191. struct admx_mic_gain mic_gain_params;
  4192. struct param_hdr_v3 param_hdr;
  4193. int rc = 0;
  4194. pr_debug("%s: Setting mic gain to %d at port_id 0x%x\n", __func__,
  4195. volume, port_id);
  4196. memset(&mic_gain_params, 0, sizeof(mic_gain_params));
  4197. memset(&param_hdr, 0, sizeof(param_hdr));
  4198. param_hdr.module_id = ADM_MODULE_IDX_MIC_GAIN_CTRL;
  4199. param_hdr.instance_id = INSTANCE_ID_0;
  4200. param_hdr.param_id = ADM_PARAM_IDX_MIC_GAIN;
  4201. param_hdr.param_size = sizeof(mic_gain_params);
  4202. mic_gain_params.tx_mic_gain = volume;
  4203. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4204. (uint8_t *) &mic_gain_params);
  4205. if (rc)
  4206. pr_err("%s: Failed to set mic gain, err %d\n", __func__, rc);
  4207. return rc;
  4208. }
  4209. EXPORT_SYMBOL(adm_set_mic_gain);
  4210. /**
  4211. * adm_send_set_multichannel_ec_primary_mic_ch -
  4212. * command to set multi-ch EC primary mic
  4213. *
  4214. * @port_id: Port ID number
  4215. * @copp_idx: copp index assigned
  4216. * @primary_mic_ch: channel number of primary mic
  4217. *
  4218. * Returns 0 on success or error on failure
  4219. */
  4220. int adm_send_set_multichannel_ec_primary_mic_ch(int port_id, int copp_idx,
  4221. int primary_mic_ch)
  4222. {
  4223. struct admx_sec_primary_mic_ch sec_primary_ch_params;
  4224. struct param_hdr_v3 param_hdr;
  4225. int rc = 0;
  4226. pr_debug("%s port_id 0x%x, copp_idx 0x%x, primary_mic_ch %d\n",
  4227. __func__, port_id, copp_idx, primary_mic_ch);
  4228. memset(&sec_primary_ch_params, 0, sizeof(sec_primary_ch_params));
  4229. memset(&param_hdr, 0, sizeof(param_hdr));
  4230. param_hdr.module_id = AUDPROC_MODULE_ID_VOICE_TX_SECNS;
  4231. param_hdr.instance_id = INSTANCE_ID_0;
  4232. param_hdr.param_id = AUDPROC_PARAM_IDX_SEC_PRIMARY_MIC_CH;
  4233. param_hdr.param_size = sizeof(sec_primary_ch_params);
  4234. sec_primary_ch_params.version = 0;
  4235. sec_primary_ch_params.sec_primary_mic_ch = primary_mic_ch;
  4236. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4237. (uint8_t *) &sec_primary_ch_params);
  4238. if (rc)
  4239. pr_err("%s: Failed to set primary mic chanel, err %d\n",
  4240. __func__, rc);
  4241. return rc;
  4242. }
  4243. EXPORT_SYMBOL(adm_send_set_multichannel_ec_primary_mic_ch);
  4244. /**
  4245. * adm_set_ffecns_effect -
  4246. * command to set effect for ffecns module
  4247. *
  4248. * @effect: effect payload
  4249. *
  4250. * Returns 0 on success or error on failure
  4251. */
  4252. int adm_set_ffecns_effect(int effect)
  4253. {
  4254. struct ffecns_effect ffecns_params;
  4255. struct param_hdr_v3 param_hdr;
  4256. int rc = 0;
  4257. int copp_idx = 0;
  4258. copp_idx = adm_get_default_copp_idx(this_adm.ffecns_port_id);
  4259. if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
  4260. pr_err("%s, no active copp to query rms copp_idx:%d\n",
  4261. __func__, copp_idx);
  4262. return -EINVAL;
  4263. }
  4264. memset(&ffecns_params, 0, sizeof(ffecns_params));
  4265. memset(&param_hdr, 0, sizeof(param_hdr));
  4266. param_hdr.module_id = FFECNS_MODULE_ID;
  4267. param_hdr.instance_id = INSTANCE_ID_0;
  4268. param_hdr.param_id = FLUENCE_CMN_GLOBAL_EFFECT_PARAM_ID;
  4269. param_hdr.param_size = sizeof(ffecns_params);
  4270. ffecns_params.payload = effect;
  4271. rc = adm_pack_and_set_one_pp_param(this_adm.ffecns_port_id, copp_idx,
  4272. param_hdr, (uint8_t *) &ffecns_params);
  4273. if (rc)
  4274. pr_err("%s: Failed to set ffecns effect, err %d\n",
  4275. __func__, rc);
  4276. return rc;
  4277. }
  4278. EXPORT_SYMBOL(adm_set_ffecns_effect);
  4279. /**
  4280. * adm_set_ffecns_freeze_event -
  4281. * command to set event for ffecns module
  4282. *
  4283. * @event: send ffecns freeze event true or false
  4284. *
  4285. * Returns 0 on success or error on failure
  4286. */
  4287. int adm_set_ffecns_freeze_event(bool ffecns_freeze_event)
  4288. {
  4289. struct ffv_spf_freeze_param_t ffv_param;
  4290. struct param_hdr_v3 param_hdr;
  4291. int rc = 0;
  4292. int copp_idx = 0;
  4293. memset(&param_hdr, 0, sizeof(param_hdr));
  4294. memset(&ffv_param, 0, sizeof(ffv_param));
  4295. ffv_param.freeze = ffecns_freeze_event ? 1 : 0;
  4296. ffv_param.source_id = 0; /*default value*/
  4297. copp_idx = adm_get_default_copp_idx(this_adm.ffecns_port_id);
  4298. if ((copp_idx < 0) || (copp_idx >= MAX_COPPS_PER_PORT)) {
  4299. pr_err("%s, no active copp to query rms copp_idx:%d\n",
  4300. __func__, copp_idx);
  4301. return -EINVAL;
  4302. }
  4303. param_hdr.module_id = FFECNS_MODULE_ID;
  4304. param_hdr.instance_id = INSTANCE_ID_0;
  4305. param_hdr.param_id = PARAM_ID_FFV_SPF_FREEZE;
  4306. param_hdr.param_size = sizeof(ffv_param);
  4307. rc = adm_pack_and_set_one_pp_param(this_adm.ffecns_port_id, copp_idx,
  4308. param_hdr, (uint8_t *) &ffv_param);
  4309. if (rc)
  4310. pr_err("%s: Failed to set ffecns imc event, err %d\n",
  4311. __func__, rc);
  4312. return rc;
  4313. }
  4314. EXPORT_SYMBOL(adm_set_ffecns_freeze_event);
  4315. /**
  4316. * adm_param_enable -
  4317. * command to send params to ADM for given module
  4318. *
  4319. * @port_id: Port ID number
  4320. * @copp_idx: copp index assigned
  4321. * @module_id: ADM module
  4322. * @enable: flag to enable or disable module
  4323. *
  4324. * Returns 0 on success or error on failure
  4325. */
  4326. int adm_param_enable(int port_id, int copp_idx, int module_id, int enable)
  4327. {
  4328. struct module_instance_info mod_inst_info;
  4329. memset(&mod_inst_info, 0, sizeof(mod_inst_info));
  4330. mod_inst_info.module_id = module_id;
  4331. mod_inst_info.instance_id = INSTANCE_ID_0;
  4332. return adm_param_enable_v2(port_id, copp_idx, mod_inst_info, enable);
  4333. }
  4334. EXPORT_SYMBOL(adm_param_enable);
  4335. /**
  4336. * adm_param_enable_v2 -
  4337. * command to send params to ADM for given module
  4338. *
  4339. * @port_id: Port ID number
  4340. * @copp_idx: copp index assigned
  4341. * @mod_inst_info: module and instance ID info
  4342. * @enable: flag to enable or disable module
  4343. *
  4344. * Returns 0 on success or error on failure
  4345. */
  4346. int adm_param_enable_v2(int port_id, int copp_idx,
  4347. struct module_instance_info mod_inst_info, int enable)
  4348. {
  4349. uint32_t enable_param;
  4350. struct param_hdr_v3 param_hdr;
  4351. int rc = 0;
  4352. if (enable < 0 || enable > 1) {
  4353. pr_err("%s: Invalid value for enable %d\n", __func__, enable);
  4354. return -EINVAL;
  4355. }
  4356. pr_debug("%s port_id %d, module_id 0x%x, instance_id 0x%x, enable %d\n",
  4357. __func__, port_id, mod_inst_info.module_id,
  4358. mod_inst_info.instance_id, enable);
  4359. memset(&param_hdr, 0, sizeof(param_hdr));
  4360. param_hdr.module_id = mod_inst_info.module_id;
  4361. param_hdr.instance_id = mod_inst_info.instance_id;
  4362. param_hdr.param_id = AUDPROC_PARAM_ID_ENABLE;
  4363. param_hdr.param_size = sizeof(enable_param);
  4364. enable_param = enable;
  4365. rc = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4366. (uint8_t *) &enable_param);
  4367. if (rc)
  4368. pr_err("%s: Failed to set enable of module(%d) instance(%d) to %d, err %d\n",
  4369. __func__, mod_inst_info.module_id,
  4370. mod_inst_info.instance_id, enable, rc);
  4371. return rc;
  4372. }
  4373. EXPORT_SYMBOL(adm_param_enable_v2);
  4374. /**
  4375. * adm_send_calibration -
  4376. * send ADM calibration to DSP
  4377. *
  4378. * @port_id: Port ID number
  4379. * @copp_idx: copp index assigned
  4380. * @path: direction or ADM path type
  4381. * @perf_mode: performance mode like LL/ULL/..
  4382. * @cal_type: calibration type to use
  4383. * @params: pointer with cal data
  4384. * @size: cal size
  4385. *
  4386. * Returns 0 on success or error on failure
  4387. */
  4388. int adm_send_calibration(int port_id, int copp_idx, int path, int perf_mode,
  4389. int cal_type, char *params, int size)
  4390. {
  4391. int rc = 0;
  4392. pr_debug("%s:port_id %d, path %d, perf_mode %d, cal_type %d, size %d\n",
  4393. __func__, port_id, path, perf_mode, cal_type, size);
  4394. /* Maps audio_dev_ctrl path definition to ACDB definition */
  4395. if (get_cal_path(path) != RX_DEVICE) {
  4396. pr_err("%s: acdb_path %d\n", __func__, path);
  4397. rc = -EINVAL;
  4398. goto end;
  4399. }
  4400. rc = adm_set_pp_params(port_id, copp_idx, NULL, (u8 *) params, size);
  4401. end:
  4402. return rc;
  4403. }
  4404. EXPORT_SYMBOL(adm_send_calibration);
  4405. /*
  4406. * adm_update_wait_parameters must be called with routing driver locks.
  4407. * adm_reset_wait_parameters must be called with routing driver locks.
  4408. * set and reset parmeters are separated to make sure it is always called
  4409. * under routing driver lock.
  4410. * adm_wait_timeout is to block until timeout or interrupted. Timeout is
  4411. * not a an error.
  4412. */
  4413. int adm_set_wait_parameters(int port_id, int copp_idx)
  4414. {
  4415. int ret = 0, port_idx;
  4416. pr_debug("%s: port_id 0x%x, copp_idx %d\n", __func__, port_id,
  4417. copp_idx);
  4418. port_id = afe_convert_virtual_to_portid(port_id);
  4419. port_idx = adm_validate_and_get_port_index(port_id);
  4420. if (port_idx < 0) {
  4421. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  4422. ret = -EINVAL;
  4423. goto end;
  4424. }
  4425. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4426. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  4427. return -EINVAL;
  4428. }
  4429. this_adm.copp.adm_delay[port_idx][copp_idx] = 1;
  4430. atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx], 0);
  4431. end:
  4432. return ret;
  4433. }
  4434. EXPORT_SYMBOL(adm_set_wait_parameters);
  4435. /**
  4436. * adm_reset_wait_parameters -
  4437. * reset wait parameters or ADM delay value
  4438. *
  4439. * @port_id: Port ID number
  4440. * @copp_idx: copp index assigned
  4441. *
  4442. * Returns 0 on success or error on failure
  4443. */
  4444. int adm_reset_wait_parameters(int port_id, int copp_idx)
  4445. {
  4446. int ret = 0, port_idx;
  4447. pr_debug("%s: port_id 0x%x copp_idx %d\n", __func__, port_id,
  4448. copp_idx);
  4449. port_id = afe_convert_virtual_to_portid(port_id);
  4450. port_idx = adm_validate_and_get_port_index(port_id);
  4451. if (port_idx < 0) {
  4452. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  4453. ret = -EINVAL;
  4454. goto end;
  4455. }
  4456. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4457. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  4458. return -EINVAL;
  4459. }
  4460. atomic_set(&this_adm.copp.adm_delay_stat[port_idx][copp_idx], 1);
  4461. this_adm.copp.adm_delay[port_idx][copp_idx] = 0;
  4462. end:
  4463. return ret;
  4464. }
  4465. EXPORT_SYMBOL(adm_reset_wait_parameters);
  4466. /**
  4467. * adm_wait_timeout -
  4468. * ADM wait command after command send to DSP
  4469. *
  4470. * @port_id: Port ID number
  4471. * @copp_idx: copp index assigned
  4472. * @wait_time: value in ms for command timeout
  4473. *
  4474. * Returns 0 on success or error on failure
  4475. */
  4476. int adm_wait_timeout(int port_id, int copp_idx, int wait_time)
  4477. {
  4478. int ret = 0, port_idx;
  4479. pr_debug("%s: port_id 0x%x, copp_idx %d, wait_time %d\n", __func__,
  4480. port_id, copp_idx, wait_time);
  4481. port_id = afe_convert_virtual_to_portid(port_id);
  4482. port_idx = adm_validate_and_get_port_index(port_id);
  4483. if (port_idx < 0) {
  4484. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  4485. ret = -EINVAL;
  4486. goto end;
  4487. }
  4488. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4489. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  4490. return -EINVAL;
  4491. }
  4492. ret = wait_event_timeout(
  4493. this_adm.copp.adm_delay_wait[port_idx][copp_idx],
  4494. atomic_read(&this_adm.copp.adm_delay_stat[port_idx][copp_idx]),
  4495. msecs_to_jiffies(wait_time));
  4496. pr_debug("%s: return %d\n", __func__, ret);
  4497. if (ret != 0)
  4498. ret = -EINTR;
  4499. end:
  4500. pr_debug("%s: return %d--\n", __func__, ret);
  4501. return ret;
  4502. }
  4503. EXPORT_SYMBOL(adm_wait_timeout);
  4504. /**
  4505. * adm_store_cal_data -
  4506. * Retrieve calibration data for ADM copp device
  4507. *
  4508. * @port_id: Port ID number
  4509. * @copp_idx: copp index assigned
  4510. * @path: direction or copp type
  4511. * @perf_mode: performance mode like LL/ULL/..
  4512. * @cal_index: calibration index to use
  4513. * @params: pointer to store cal data
  4514. * @size: pointer to fill with cal size
  4515. *
  4516. * Returns 0 on success or error on failure
  4517. */
  4518. int adm_store_cal_data(int port_id, int copp_idx, int path, int perf_mode,
  4519. int cal_index, char *params, int *size)
  4520. {
  4521. int rc = 0;
  4522. struct cal_block_data *cal_block = NULL;
  4523. int app_type, acdb_id, port_idx, sample_rate;
  4524. if (this_adm.cal_data[cal_index] == NULL) {
  4525. pr_debug("%s: cal_index %d not allocated!\n",
  4526. __func__, cal_index);
  4527. goto end;
  4528. }
  4529. if (get_cal_path(path) != RX_DEVICE) {
  4530. pr_debug("%s: Invalid path to store calibration %d\n",
  4531. __func__, path);
  4532. rc = -EINVAL;
  4533. goto end;
  4534. }
  4535. port_id = afe_convert_virtual_to_portid(port_id);
  4536. port_idx = adm_validate_and_get_port_index(port_id);
  4537. if (port_idx < 0) {
  4538. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  4539. rc = -EINVAL;
  4540. goto end;
  4541. }
  4542. if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4543. pr_err("%s: Invalid copp_num: %d\n", __func__, copp_idx);
  4544. return -EINVAL;
  4545. }
  4546. acdb_id = atomic_read(&this_adm.copp.acdb_id[port_idx][copp_idx]);
  4547. app_type = atomic_read(&this_adm.copp.app_type[port_idx][copp_idx]);
  4548. sample_rate = atomic_read(&this_adm.copp.rate[port_idx][copp_idx]);
  4549. mutex_lock(&this_adm.cal_data[cal_index]->lock);
  4550. cal_block = adm_find_cal(cal_index, get_cal_path(path), app_type,
  4551. acdb_id, sample_rate);
  4552. if (cal_block == NULL)
  4553. goto unlock;
  4554. if (cal_block->cal_data.size <= 0) {
  4555. pr_debug("%s: No ADM cal send for port_id = 0x%x!\n",
  4556. __func__, port_id);
  4557. rc = -EINVAL;
  4558. goto unlock;
  4559. }
  4560. if (cal_index == ADM_AUDPROC_CAL || cal_index == ADM_LSM_AUDPROC_CAL) {
  4561. if (cal_block->cal_data.size > AUD_PROC_BLOCK_SIZE) {
  4562. pr_err("%s:audproc:invalid size exp/actual[%zd, %d]\n",
  4563. __func__, cal_block->cal_data.size, *size);
  4564. rc = -ENOMEM;
  4565. goto unlock;
  4566. }
  4567. } else if (cal_index == ADM_LSM_AUDPROC_PERSISTENT_CAL) {
  4568. if (cal_block->cal_data.size > AUD_PROC_PERSIST_BLOCK_SIZE) {
  4569. pr_err("%s:persist invalid size exp/actual[%zd, %d]\n",
  4570. __func__, cal_block->cal_data.size, *size);
  4571. rc = -ENOMEM;
  4572. goto unlock;
  4573. }
  4574. } else if (cal_index == ADM_AUDPROC_PERSISTENT_CAL) {
  4575. if (cal_block->cal_data.size > AUD_PROC_PERSIST_BLOCK_SIZE) {
  4576. pr_err("%s:persist invalid size exp/actual[%zd, %d]\n",
  4577. __func__, cal_block->cal_data.size, *size);
  4578. rc = -ENOMEM;
  4579. goto unlock;
  4580. }
  4581. }
  4582. else if (cal_index == ADM_AUDVOL_CAL) {
  4583. if (cal_block->cal_data.size > AUD_VOL_BLOCK_SIZE) {
  4584. pr_err("%s:aud_vol:invalid size exp/actual[%zd, %d]\n",
  4585. __func__, cal_block->cal_data.size, *size);
  4586. rc = -ENOMEM;
  4587. goto unlock;
  4588. }
  4589. } else {
  4590. pr_debug("%s: Not valid calibration for dolby topolgy\n",
  4591. __func__);
  4592. rc = -EINVAL;
  4593. goto unlock;
  4594. }
  4595. memcpy(params, cal_block->cal_data.kvaddr, cal_block->cal_data.size);
  4596. *size = cal_block->cal_data.size;
  4597. pr_debug("%s:port_id %d, copp_idx %d, path %d",
  4598. __func__, port_id, copp_idx, path);
  4599. pr_debug("perf_mode %d, cal_type %d, size %d\n",
  4600. perf_mode, cal_index, *size);
  4601. unlock:
  4602. mutex_unlock(&this_adm.cal_data[cal_index]->lock);
  4603. end:
  4604. return rc;
  4605. }
  4606. EXPORT_SYMBOL(adm_store_cal_data);
  4607. /**
  4608. * adm_send_compressed_device_mute -
  4609. * command to send mute for compressed device
  4610. *
  4611. * @port_id: Port ID number
  4612. * @copp_idx: copp index assigned
  4613. * @mute_on: flag to indicate mute or unmute
  4614. *
  4615. * Returns 0 on success or error on failure
  4616. */
  4617. int adm_send_compressed_device_mute(int port_id, int copp_idx, bool mute_on)
  4618. {
  4619. u32 mute_param = mute_on ? 1 : 0;
  4620. struct param_hdr_v3 param_hdr;
  4621. int ret = 0;
  4622. pr_debug("%s port_id: 0x%x, copp_idx %d, mute_on: %d\n",
  4623. __func__, port_id, copp_idx, mute_on);
  4624. memset(&param_hdr, 0, sizeof(param_hdr));
  4625. param_hdr.module_id = AUDPROC_MODULE_ID_COMPRESSED_MUTE;
  4626. param_hdr.instance_id = INSTANCE_ID_0;
  4627. param_hdr.param_id = AUDPROC_PARAM_ID_COMPRESSED_MUTE;
  4628. param_hdr.param_size = sizeof(mute_param);
  4629. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4630. (uint8_t *) &mute_param);
  4631. if (ret)
  4632. pr_err("%s: Failed to set mute, err %d\n", __func__, ret);
  4633. return ret;
  4634. }
  4635. EXPORT_SYMBOL(adm_send_compressed_device_mute);
  4636. /**
  4637. * adm_send_compressed_device_latency -
  4638. * command to send latency for compressed device
  4639. *
  4640. * @port_id: Port ID number
  4641. * @copp_idx: copp index assigned
  4642. * @latency: latency value to pass
  4643. *
  4644. * Returns 0 on success or error on failure
  4645. */
  4646. int adm_send_compressed_device_latency(int port_id, int copp_idx, int latency)
  4647. {
  4648. u32 latency_param;
  4649. struct param_hdr_v3 param_hdr;
  4650. int ret = 0;
  4651. pr_debug("%s port_id: 0x%x, copp_idx %d latency: %d\n", __func__,
  4652. port_id, copp_idx, latency);
  4653. if (latency < 0) {
  4654. pr_err("%s: Invalid value for latency %d", __func__, latency);
  4655. return -EINVAL;
  4656. }
  4657. memset(&param_hdr, 0, sizeof(param_hdr));
  4658. param_hdr.module_id = AUDPROC_MODULE_ID_COMPRESSED_LATENCY;
  4659. param_hdr.instance_id = INSTANCE_ID_0;
  4660. param_hdr.param_id = AUDPROC_PARAM_ID_COMPRESSED_LATENCY;
  4661. param_hdr.param_size = sizeof(latency_param);
  4662. latency_param = latency;
  4663. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4664. (uint8_t *) &latency_param);
  4665. if (ret)
  4666. pr_err("%s: Failed to set latency, err %d\n", __func__, ret);
  4667. return ret;
  4668. }
  4669. EXPORT_SYMBOL(adm_send_compressed_device_latency);
  4670. /**
  4671. * adm_swap_speaker_channels
  4672. *
  4673. * Receives port_id, copp_idx, sample rate, spk_swap and
  4674. * send MFC command to swap speaker channel.
  4675. * Return zero on success. On failure returns nonzero.
  4676. *
  4677. * port_id - Passed value, port_id for which channels swap is wanted
  4678. * copp_idx - Passed value, copp_idx for which channels swap is wanted
  4679. * sample_rate - Passed value, sample rate used by app type config
  4680. * spk_swap - Passed value, spk_swap for check if swap flag is set
  4681. */
  4682. int adm_swap_speaker_channels(int port_id, int copp_idx,
  4683. int sample_rate, bool spk_swap)
  4684. {
  4685. struct audproc_mfc_param_media_fmt mfc_cfg;
  4686. struct param_hdr_v3 param_hdr;
  4687. uint16_t num_channels;
  4688. int port_idx = 0;
  4689. int ret = 0;
  4690. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4691. __func__, port_id, copp_idx);
  4692. port_id = q6audio_convert_virtual_to_portid(port_id);
  4693. port_idx = adm_validate_and_get_port_index(port_id);
  4694. if (port_idx < 0 || port_idx >= AFE_MAX_PORTS) {
  4695. pr_err("%s: Invalid port_id %#x\n", __func__, port_id);
  4696. return -EINVAL;
  4697. } else if (copp_idx < 0 || copp_idx >= MAX_COPPS_PER_PORT) {
  4698. pr_err("%s: Invalid copp_idx 0x%x\n", __func__, copp_idx);
  4699. return -EINVAL;
  4700. }
  4701. num_channels = atomic_read(&this_adm.copp.channels[port_idx][copp_idx]);
  4702. if (num_channels != 2) {
  4703. pr_debug("%s: Invalid number of channels: %d\n",
  4704. __func__, num_channels);
  4705. return -EINVAL;
  4706. }
  4707. memset(&mfc_cfg, 0, sizeof(mfc_cfg));
  4708. memset(&param_hdr, 0, sizeof(param_hdr));
  4709. param_hdr.module_id = AUDPROC_MODULE_ID_MFC;
  4710. param_hdr.instance_id = INSTANCE_ID_0;
  4711. param_hdr.param_id = AUDPROC_PARAM_ID_MFC_OUTPUT_MEDIA_FORMAT;
  4712. param_hdr.param_size = sizeof(mfc_cfg);
  4713. mfc_cfg.sampling_rate = sample_rate;
  4714. mfc_cfg.bits_per_sample =
  4715. atomic_read(&this_adm.copp.bit_width[port_idx][copp_idx]);
  4716. mfc_cfg.num_channels = num_channels;
  4717. /* Currently applying speaker swap for only 2 channel use case */
  4718. if (spk_swap) {
  4719. mfc_cfg.channel_type[0] =
  4720. (uint16_t) PCM_CHANNEL_FR;
  4721. mfc_cfg.channel_type[1] =
  4722. (uint16_t) PCM_CHANNEL_FL;
  4723. } else {
  4724. mfc_cfg.channel_type[0] =
  4725. (uint16_t) PCM_CHANNEL_FL;
  4726. mfc_cfg.channel_type[1] =
  4727. (uint16_t) PCM_CHANNEL_FR;
  4728. }
  4729. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4730. (u8 *) &mfc_cfg);
  4731. if (ret < 0) {
  4732. pr_err("%s: Failed to set swap speaker channels on port[0x%x] failed %d\n",
  4733. __func__, port_id, ret);
  4734. return ret;
  4735. }
  4736. pr_debug("%s: mfc_cfg Set params returned success", __func__);
  4737. return 0;
  4738. }
  4739. EXPORT_SYMBOL(adm_swap_speaker_channels);
  4740. /**
  4741. * adm_set_sound_focus -
  4742. * Update sound focus info
  4743. *
  4744. * @port_id: Port ID number
  4745. * @copp_idx: copp index assigned
  4746. * @soundFocusData: sound focus data to pass
  4747. *
  4748. * Returns 0 on success or error on failure
  4749. */
  4750. int adm_set_sound_focus(int port_id, int copp_idx,
  4751. struct sound_focus_param soundFocusData)
  4752. {
  4753. struct adm_param_fluence_soundfocus_t soundfocus_params;
  4754. struct param_hdr_v3 param_hdr;
  4755. int ret = 0;
  4756. int i;
  4757. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4758. __func__, port_id, copp_idx);
  4759. memset(&param_hdr, 0, sizeof(param_hdr));
  4760. param_hdr.module_id = VOICEPROC_MODULE_ID_FLUENCE_PRO_VC_TX;
  4761. param_hdr.instance_id = INSTANCE_ID_0;
  4762. param_hdr.param_id = VOICEPROC_PARAM_ID_FLUENCE_SOUNDFOCUS;
  4763. param_hdr.param_size = sizeof(soundfocus_params);
  4764. memset(&(soundfocus_params), 0xFF, sizeof(soundfocus_params));
  4765. for (i = 0; i < MAX_SECTORS; i++) {
  4766. soundfocus_params.start_angles[i] =
  4767. soundFocusData.start_angle[i];
  4768. soundfocus_params.enables[i] = soundFocusData.enable[i];
  4769. pr_debug("%s: start_angle[%d] = %d\n",
  4770. __func__, i, soundFocusData.start_angle[i]);
  4771. pr_debug("%s: enable[%d] = %d\n",
  4772. __func__, i, soundFocusData.enable[i]);
  4773. }
  4774. soundfocus_params.gain_step = soundFocusData.gain_step;
  4775. pr_debug("%s: gain_step = %d\n", __func__, soundFocusData.gain_step);
  4776. soundfocus_params.reserved = 0;
  4777. ret = adm_pack_and_set_one_pp_param(port_id, copp_idx, param_hdr,
  4778. (uint8_t *) &soundfocus_params);
  4779. if (ret)
  4780. pr_err("%s: Failed to set sound focus params, err %d\n",
  4781. __func__, ret);
  4782. pr_debug("%s: Exit, ret=%d\n", __func__, ret);
  4783. return ret;
  4784. }
  4785. EXPORT_SYMBOL(adm_set_sound_focus);
  4786. /**
  4787. * adm_get_sound_focus -
  4788. * Retrieve sound focus info
  4789. *
  4790. * @port_id: Port ID number
  4791. * @copp_idx: copp index assigned
  4792. * @soundFocusData: pointer for sound focus data to be updated with
  4793. *
  4794. * Returns 0 on success or error on failure
  4795. */
  4796. int adm_get_sound_focus(int port_id, int copp_idx,
  4797. struct sound_focus_param *soundFocusData)
  4798. {
  4799. int ret = 0, i;
  4800. char *params_value;
  4801. uint32_t max_param_size = 0;
  4802. struct adm_param_fluence_soundfocus_t *soundfocus_params = NULL;
  4803. struct param_hdr_v3 param_hdr;
  4804. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4805. __func__, port_id, copp_idx);
  4806. max_param_size = sizeof(struct adm_param_fluence_soundfocus_t) +
  4807. sizeof(union param_hdrs);
  4808. params_value = kzalloc(max_param_size, GFP_KERNEL);
  4809. if (!params_value)
  4810. return -ENOMEM;
  4811. memset(&param_hdr, 0, sizeof(param_hdr));
  4812. param_hdr.module_id = VOICEPROC_MODULE_ID_FLUENCE_PRO_VC_TX;
  4813. param_hdr.instance_id = INSTANCE_ID_0;
  4814. param_hdr.param_id = VOICEPROC_PARAM_ID_FLUENCE_SOUNDFOCUS;
  4815. param_hdr.param_size = max_param_size;
  4816. ret = adm_get_pp_params(port_id, copp_idx,
  4817. ADM_CLIENT_ID_SOURCE_TRACKING, NULL, &param_hdr,
  4818. params_value);
  4819. if (ret) {
  4820. pr_err("%s: get parameters failed ret:%d\n", __func__, ret);
  4821. ret = -EINVAL;
  4822. goto done;
  4823. }
  4824. if (this_adm.sourceTrackingData.apr_cmd_status != 0) {
  4825. pr_err("%s - get params returned error [%s]\n",
  4826. __func__, adsp_err_get_err_str(
  4827. this_adm.sourceTrackingData.apr_cmd_status));
  4828. ret = adsp_err_get_lnx_err_code(
  4829. this_adm.sourceTrackingData.apr_cmd_status);
  4830. goto done;
  4831. }
  4832. soundfocus_params = (struct adm_param_fluence_soundfocus_t *)
  4833. params_value;
  4834. for (i = 0; i < MAX_SECTORS; i++) {
  4835. soundFocusData->start_angle[i] =
  4836. soundfocus_params->start_angles[i];
  4837. soundFocusData->enable[i] = soundfocus_params->enables[i];
  4838. pr_debug("%s: start_angle[%d] = %d\n",
  4839. __func__, i, soundFocusData->start_angle[i]);
  4840. pr_debug("%s: enable[%d] = %d\n",
  4841. __func__, i, soundFocusData->enable[i]);
  4842. }
  4843. soundFocusData->gain_step = soundfocus_params->gain_step;
  4844. pr_debug("%s: gain_step = %d\n", __func__, soundFocusData->gain_step);
  4845. done:
  4846. pr_debug("%s: Exit, ret = %d\n", __func__, ret);
  4847. kfree(params_value);
  4848. return ret;
  4849. }
  4850. EXPORT_SYMBOL(adm_get_sound_focus);
  4851. static int adm_source_tracking_alloc_map_memory(void)
  4852. {
  4853. int ret;
  4854. pr_debug("%s: Enter\n", __func__);
  4855. ret = msm_audio_ion_alloc(&this_adm.sourceTrackingData.dma_buf,
  4856. AUD_PROC_BLOCK_SIZE,
  4857. &this_adm.sourceTrackingData.memmap.paddr,
  4858. &this_adm.sourceTrackingData.memmap.size,
  4859. &this_adm.sourceTrackingData.memmap.kvaddr);
  4860. if (ret) {
  4861. pr_err("%s: failed to allocate memory\n", __func__);
  4862. ret = -EINVAL;
  4863. goto done;
  4864. }
  4865. atomic_set(&this_adm.mem_map_index, ADM_MEM_MAP_INDEX_SOURCE_TRACKING);
  4866. ret = adm_memory_map_regions(&this_adm.sourceTrackingData.memmap.paddr,
  4867. 0,
  4868. (uint32_t *)&this_adm.sourceTrackingData.memmap.size,
  4869. 1);
  4870. if (ret < 0) {
  4871. pr_err("%s: failed to map memory, paddr = 0x%pK, size = %d\n",
  4872. __func__,
  4873. (void *)this_adm.sourceTrackingData.memmap.paddr,
  4874. (uint32_t)this_adm.sourceTrackingData.memmap.size);
  4875. msm_audio_ion_free(this_adm.sourceTrackingData.dma_buf);
  4876. this_adm.sourceTrackingData.dma_buf = NULL;
  4877. this_adm.sourceTrackingData.memmap.size = 0;
  4878. this_adm.sourceTrackingData.memmap.kvaddr = NULL;
  4879. this_adm.sourceTrackingData.memmap.paddr = 0;
  4880. this_adm.sourceTrackingData.apr_cmd_status = -1;
  4881. atomic_set(&this_adm.mem_map_handles
  4882. [ADM_MEM_MAP_INDEX_SOURCE_TRACKING], 0);
  4883. ret = -EINVAL;
  4884. goto done;
  4885. }
  4886. ret = 0;
  4887. pr_debug("%s: paddr = 0x%pK, size = %d, mem_map_handle = 0x%x\n",
  4888. __func__, (void *)this_adm.sourceTrackingData.memmap.paddr,
  4889. (uint32_t)this_adm.sourceTrackingData.memmap.size,
  4890. atomic_read(&this_adm.mem_map_handles
  4891. [ADM_MEM_MAP_INDEX_SOURCE_TRACKING]));
  4892. done:
  4893. pr_debug("%s: Exit, ret = %d\n", __func__, ret);
  4894. return ret;
  4895. }
  4896. /**
  4897. * adm_get_source_tracking -
  4898. * Retrieve source tracking info
  4899. *
  4900. * @port_id: Port ID number
  4901. * @copp_idx: copp index assigned
  4902. * @sourceTrackingData: pointer for source track data to be updated with
  4903. *
  4904. * Returns 0 on success or error on failure
  4905. */
  4906. int adm_get_source_tracking(int port_id, int copp_idx,
  4907. struct source_tracking_param *sourceTrackingData)
  4908. {
  4909. struct adm_param_fluence_sourcetracking_t *source_tracking_params =
  4910. NULL;
  4911. struct mem_mapping_hdr mem_hdr;
  4912. struct param_hdr_v3 param_hdr;
  4913. int i = 0;
  4914. int ret = 0;
  4915. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  4916. __func__, port_id, copp_idx);
  4917. if (!this_adm.sourceTrackingData.memmap.paddr) {
  4918. /* Allocate and map shared memory for out of band usage */
  4919. ret = adm_source_tracking_alloc_map_memory();
  4920. if (ret != 0) {
  4921. ret = -EINVAL;
  4922. goto done;
  4923. }
  4924. }
  4925. memset(&mem_hdr, 0, sizeof(mem_hdr));
  4926. memset(&param_hdr, 0, sizeof(param_hdr));
  4927. mem_hdr.data_payload_addr_lsw =
  4928. lower_32_bits(this_adm.sourceTrackingData.memmap.paddr);
  4929. mem_hdr.data_payload_addr_msw = msm_audio_populate_upper_32_bits(
  4930. this_adm.sourceTrackingData.memmap.paddr);
  4931. mem_hdr.mem_map_handle = atomic_read(
  4932. &this_adm.mem_map_handles[ADM_MEM_MAP_INDEX_SOURCE_TRACKING]);
  4933. param_hdr.module_id = VOICEPROC_MODULE_ID_FLUENCE_PRO_VC_TX;
  4934. param_hdr.instance_id = INSTANCE_ID_0;
  4935. param_hdr.param_id = VOICEPROC_PARAM_ID_FLUENCE_SOURCETRACKING;
  4936. /*
  4937. * This size should be the max size of the calibration data + header.
  4938. * Use the union size to ensure max size is used.
  4939. */
  4940. param_hdr.param_size =
  4941. sizeof(struct adm_param_fluence_sourcetracking_t) +
  4942. sizeof(struct param_hdr_v3);
  4943. /*
  4944. * Retrieving parameters out of band, so no need to provide a buffer for
  4945. * the returned parameter data as it will be at the memory location
  4946. * provided.
  4947. */
  4948. ret = adm_get_pp_params(port_id, copp_idx,
  4949. ADM_CLIENT_ID_SOURCE_TRACKING, &mem_hdr,
  4950. &param_hdr, NULL);
  4951. if (ret) {
  4952. pr_err("%s: Failed to get params, error %d\n", __func__, ret);
  4953. goto done;
  4954. }
  4955. if (this_adm.sourceTrackingData.apr_cmd_status != 0) {
  4956. pr_err("%s - get params returned error [%s]\n",
  4957. __func__, adsp_err_get_err_str(
  4958. this_adm.sourceTrackingData.apr_cmd_status));
  4959. ret = adsp_err_get_lnx_err_code(
  4960. this_adm.sourceTrackingData.apr_cmd_status);
  4961. goto done;
  4962. }
  4963. /* How do we know what the param data was retrieved with for hdr size */
  4964. source_tracking_params =
  4965. (struct adm_param_fluence_sourcetracking_t
  4966. *) (this_adm.sourceTrackingData.memmap.kvaddr +
  4967. sizeof(struct param_hdr_v3));
  4968. for (i = 0; i < MAX_SECTORS; i++) {
  4969. sourceTrackingData->vad[i] = source_tracking_params->vad[i];
  4970. pr_debug("%s: vad[%d] = %d\n",
  4971. __func__, i, sourceTrackingData->vad[i]);
  4972. }
  4973. sourceTrackingData->doa_speech = source_tracking_params->doa_speech;
  4974. pr_debug("%s: doa_speech = %d\n",
  4975. __func__, sourceTrackingData->doa_speech);
  4976. for (i = 0; i < MAX_NOISE_SOURCE_INDICATORS; i++) {
  4977. sourceTrackingData->doa_noise[i] =
  4978. source_tracking_params->doa_noise[i];
  4979. pr_debug("%s: doa_noise[%d] = %d\n",
  4980. __func__, i, sourceTrackingData->doa_noise[i]);
  4981. }
  4982. for (i = 0; i < MAX_POLAR_ACTIVITY_INDICATORS; i++) {
  4983. sourceTrackingData->polar_activity[i] =
  4984. source_tracking_params->polar_activity[i];
  4985. pr_debug("%s: polar_activity[%d] = %d\n",
  4986. __func__, i, sourceTrackingData->polar_activity[i]);
  4987. }
  4988. ret = 0;
  4989. done:
  4990. pr_debug("%s: Exit, ret=%d\n", __func__, ret);
  4991. return ret;
  4992. }
  4993. EXPORT_SYMBOL(adm_get_source_tracking);
  4994. /**
  4995. * adm_get_doa_tracking_mon -
  4996. * Retrieve doa tracking monitor info
  4997. *
  4998. * @port_id: Port ID number
  4999. * @copp_idx: copp index assigned
  5000. * @doa_tracking_data: pointer for doa data to be updated with
  5001. *
  5002. * Returns 0 on success or error on failure
  5003. */
  5004. int adm_get_doa_tracking_mon(int port_id, int copp_idx,
  5005. struct doa_tracking_mon_param *doa_tracking_data)
  5006. {
  5007. int ret = 0, i;
  5008. char *params_value;
  5009. uint32_t max_param_size = 0;
  5010. struct adm_param_doa_tracking_mon_t *doa_tracking_params = NULL;
  5011. struct param_hdr_v3 param_hdr;
  5012. pr_debug("%s: Enter, port_id %d, copp_idx %d\n",
  5013. __func__, port_id, copp_idx);
  5014. if (doa_tracking_data == NULL) {
  5015. pr_err("%s: Received NULL pointer for doa tracking data\n",
  5016. __func__);
  5017. return -EINVAL;
  5018. }
  5019. max_param_size = sizeof(struct adm_param_doa_tracking_mon_t) +
  5020. sizeof(union param_hdrs);
  5021. params_value = kzalloc(max_param_size, GFP_KERNEL);
  5022. if (!params_value)
  5023. return -ENOMEM;
  5024. memset(&param_hdr, 0, sizeof(param_hdr));
  5025. param_hdr.module_id = AUDPROC_MODULE_ID_FFECNS;
  5026. param_hdr.instance_id = INSTANCE_ID_0;
  5027. param_hdr.param_id = AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR;
  5028. param_hdr.param_size = max_param_size;
  5029. ret = adm_get_pp_params(port_id, copp_idx,
  5030. ADM_CLIENT_ID_DEFAULT, NULL, &param_hdr,
  5031. params_value);
  5032. if (ret) {
  5033. pr_err("%s: get parameters failed ret:%d\n", __func__, ret);
  5034. goto done;
  5035. }
  5036. doa_tracking_params =
  5037. (struct adm_param_doa_tracking_mon_t *)params_value;
  5038. for (i = 0; i < MAX_DOA_TRACKING_ANGLES; i++) {
  5039. doa_tracking_data->target_angle_L16[i] =
  5040. doa_tracking_params->target_angle_L16[i];
  5041. pr_debug("%s: target angle[%d] = %d\n",
  5042. __func__, i, doa_tracking_data->target_angle_L16[i]);
  5043. }
  5044. for (i = 0; i < MAX_DOA_TRACKING_ANGLES; i++) {
  5045. doa_tracking_data->interf_angle_L16[i] =
  5046. doa_tracking_params->interf_angle_L16[i];
  5047. pr_debug("%s: interference angle[%d] = %d\n",
  5048. __func__, i, doa_tracking_data->interf_angle_L16[i]);
  5049. }
  5050. for (i = 0; i < MAX_POLAR_ACTIVITY_INDICATORS; i++) {
  5051. doa_tracking_data->polar_activity[i] =
  5052. doa_tracking_params->polar_activity[i];
  5053. }
  5054. done:
  5055. pr_debug("%s: Exit, ret = %d\n", __func__, ret);
  5056. kfree(params_value);
  5057. return ret;
  5058. }
  5059. EXPORT_SYMBOL(adm_get_doa_tracking_mon);
  5060. int __init adm_init(void)
  5061. {
  5062. int i = 0, j;
  5063. this_adm.ec_ref_rx = -1;
  5064. this_adm.ffecns_port_id = -1;
  5065. this_adm.tx_port_id = -1;
  5066. this_adm.hyp_assigned = false;
  5067. init_waitqueue_head(&this_adm.matrix_map_wait);
  5068. init_waitqueue_head(&this_adm.adm_wait);
  5069. for (i = 0; i < AFE_MAX_PORTS; i++) {
  5070. for (j = 0; j < MAX_COPPS_PER_PORT; j++) {
  5071. atomic_set(&this_adm.copp.id[i][j], RESET_COPP_ID);
  5072. init_waitqueue_head(&this_adm.copp.wait[i][j]);
  5073. init_waitqueue_head(
  5074. &this_adm.copp.adm_delay_wait[i][j]);
  5075. }
  5076. }
  5077. if (adm_init_cal_data())
  5078. pr_err("%s: could not init cal data!\n", __func__);
  5079. this_adm.sourceTrackingData.dma_buf = NULL;
  5080. this_adm.sourceTrackingData.memmap.size = 0;
  5081. this_adm.sourceTrackingData.memmap.kvaddr = NULL;
  5082. this_adm.sourceTrackingData.memmap.paddr = 0;
  5083. this_adm.sourceTrackingData.apr_cmd_status = -1;
  5084. return 0;
  5085. }
  5086. void adm_exit(void)
  5087. {
  5088. if (this_adm.apr)
  5089. adm_reset_data();
  5090. adm_delete_cal_data();
  5091. }