q6adm.c 149 KB

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