q6adm.c 163 KB

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