q6adm.c 155 KB

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