q6adm.c 159 KB

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