q6adm.c 164 KB

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