q6adm.c 135 KB

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