q6adm.c 148 KB

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