q6adm.c 170 KB

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