q6adm.c 150 KB

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