q6adm.c 159 KB

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