q6asm.c 295 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/fs.h>
  6. #include <linux/mutex.h>
  7. #include <linux/wait.h>
  8. #include <linux/miscdevice.h>
  9. #include <linux/uaccess.h>
  10. #include <linux/sched.h>
  11. #include <linux/dma-mapping.h>
  12. #include <linux/miscdevice.h>
  13. #include <linux/delay.h>
  14. #include <linux/slab.h>
  15. #include <linux/debugfs.h>
  16. #include <linux/time.h>
  17. #include <linux/atomic.h>
  18. #include <linux/mm.h>
  19. #include <asm/ioctls.h>
  20. #include <linux/memory.h>
  21. #include <sound/compress_params.h>
  22. #include <dsp/msm_audio_ion.h>
  23. #include <dsp/apr_audio-v2.h>
  24. #include <dsp/audio_cal_utils.h>
  25. #include <dsp/q6asm-v2.h>
  26. #include <dsp/q6audio-v2.h>
  27. #include <dsp/q6common.h>
  28. #include <dsp/q6core.h>
  29. #include "adsp_err.h"
  30. #define TIMEOUT_MS 1000
  31. #define TRUE 0x01
  32. #define FALSE 0x00
  33. #define SESSION_MAX 8
  34. #define ENC_FRAMES_PER_BUFFER 0x01
  35. enum {
  36. ASM_TOPOLOGY_CAL = 0,
  37. ASM_CUSTOM_TOP_CAL,
  38. ASM_AUDSTRM_CAL,
  39. ASM_RTAC_APR_CAL,
  40. ASM_MAX_CAL_TYPES
  41. };
  42. union asm_token_struct {
  43. struct {
  44. u8 stream_id;
  45. u8 session_id;
  46. u8 buf_index;
  47. u8 flags;
  48. } _token;
  49. u32 token;
  50. } __packed;
  51. enum {
  52. ASM_DIRECTION_OFFSET,
  53. ASM_CMD_NO_WAIT_OFFSET,
  54. /*
  55. * Offset is limited to 7 because flags is stored in u8
  56. * field in asm_token_structure defined above. The offset
  57. * starts from 0.
  58. */
  59. ASM_MAX_OFFSET = 7,
  60. };
  61. enum {
  62. WAIT_CMD,
  63. NO_WAIT_CMD
  64. };
  65. #define ASM_SET_BIT(n, x) (n |= 1 << x)
  66. #define ASM_TEST_BIT(n, x) ((n >> x) & 1)
  67. /* TODO, combine them together */
  68. static DEFINE_MUTEX(session_lock);
  69. struct asm_mmap {
  70. atomic_t ref_cnt;
  71. void *apr;
  72. };
  73. static struct asm_mmap this_mmap;
  74. struct audio_session {
  75. struct audio_client *ac;
  76. spinlock_t session_lock;
  77. struct mutex mutex_lock_per_session;
  78. };
  79. /* session id: 0 reserved */
  80. static struct audio_session session[ASM_ACTIVE_STREAMS_ALLOWED + 1];
  81. struct asm_buffer_node {
  82. struct list_head list;
  83. phys_addr_t buf_phys_addr;
  84. uint32_t mmap_hdl;
  85. };
  86. static int32_t q6asm_srvc_callback(struct apr_client_data *data, void *priv);
  87. static int32_t q6asm_callback(struct apr_client_data *data, void *priv);
  88. static void q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  89. uint32_t pkt_size, uint32_t cmd_flg);
  90. static void q6asm_add_hdr_custom_topology(struct audio_client *ac,
  91. struct apr_hdr *hdr,
  92. uint32_t pkt_size);
  93. static void q6asm_add_hdr_async(struct audio_client *ac, struct apr_hdr *hdr,
  94. uint32_t pkt_size, uint32_t cmd_flg);
  95. static int q6asm_memory_map_regions(struct audio_client *ac, int dir,
  96. uint32_t bufsz, uint32_t bufcnt,
  97. bool is_contiguous);
  98. static int q6asm_memory_unmap_regions(struct audio_client *ac, int dir);
  99. static void q6asm_reset_buf_state(struct audio_client *ac);
  100. void *q6asm_mmap_apr_reg(void);
  101. static int q6asm_is_valid_session(struct apr_client_data *data, void *priv);
  102. static int q6asm_get_asm_topology_apptype(struct q6asm_cal_info *cal_info);
  103. /* for ASM custom topology */
  104. static struct cal_type_data *cal_data[ASM_MAX_CAL_TYPES];
  105. static struct audio_buffer common_buf[2];
  106. static struct audio_client common_client;
  107. static int set_custom_topology;
  108. static int topology_map_handle;
  109. struct generic_get_data_ {
  110. int valid;
  111. int is_inband;
  112. int size_in_ints;
  113. int ints[];
  114. };
  115. static struct generic_get_data_ *generic_get_data;
  116. #ifdef CONFIG_DEBUG_FS
  117. #define OUT_BUFFER_SIZE 56
  118. #define IN_BUFFER_SIZE 24
  119. static struct timeval out_cold_tv;
  120. static struct timeval out_warm_tv;
  121. static struct timeval out_cont_tv;
  122. static struct timeval in_cont_tv;
  123. static long out_enable_flag;
  124. static long in_enable_flag;
  125. static struct dentry *out_dentry;
  126. static struct dentry *in_dentry;
  127. static int in_cont_index;
  128. /*This var is used to keep track of first write done for cold output latency */
  129. static int out_cold_index;
  130. static char *out_buffer;
  131. static char *in_buffer;
  132. static uint32_t adsp_reg_event_opcode[] = {
  133. ASM_STREAM_CMD_REGISTER_PP_EVENTS,
  134. ASM_STREAM_CMD_REGISTER_ENCDEC_EVENTS,
  135. ASM_STREAM_CMD_REGISTER_IEC_61937_FMT_UPDATE };
  136. static uint32_t adsp_raise_event_opcode[] = {
  137. ASM_STREAM_PP_EVENT,
  138. ASM_STREAM_CMD_ENCDEC_EVENTS,
  139. ASM_IEC_61937_MEDIA_FMT_EVENT };
  140. static int is_adsp_reg_event(uint32_t cmd)
  141. {
  142. int i;
  143. for (i = 0; i < ARRAY_SIZE(adsp_reg_event_opcode); i++) {
  144. if (cmd == adsp_reg_event_opcode[i])
  145. return i;
  146. }
  147. return -EINVAL;
  148. }
  149. static int is_adsp_raise_event(uint32_t cmd)
  150. {
  151. int i;
  152. for (i = 0; i < ARRAY_SIZE(adsp_raise_event_opcode); i++) {
  153. if (cmd == adsp_raise_event_opcode[i])
  154. return i;
  155. }
  156. return -EINVAL;
  157. }
  158. static inline void q6asm_set_flag_in_token(union asm_token_struct *asm_token,
  159. int flag, int flag_offset)
  160. {
  161. if (flag)
  162. ASM_SET_BIT(asm_token->_token.flags, flag_offset);
  163. }
  164. static inline int q6asm_get_flag_from_token(union asm_token_struct *asm_token,
  165. int flag_offset)
  166. {
  167. return ASM_TEST_BIT(asm_token->_token.flags, flag_offset);
  168. }
  169. static inline void q6asm_update_token(u32 *token, u8 session_id, u8 stream_id,
  170. u8 buf_index, u8 dir, u8 nowait_flag)
  171. {
  172. union asm_token_struct asm_token;
  173. asm_token.token = 0;
  174. asm_token._token.session_id = session_id;
  175. asm_token._token.stream_id = stream_id;
  176. asm_token._token.buf_index = buf_index;
  177. q6asm_set_flag_in_token(&asm_token, dir, ASM_DIRECTION_OFFSET);
  178. q6asm_set_flag_in_token(&asm_token, nowait_flag,
  179. ASM_CMD_NO_WAIT_OFFSET);
  180. *token = asm_token.token;
  181. }
  182. static inline uint32_t q6asm_get_pcm_format_id(uint32_t media_format_block_ver)
  183. {
  184. uint32_t pcm_format_id;
  185. switch (media_format_block_ver) {
  186. case PCM_MEDIA_FORMAT_V5:
  187. pcm_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V5;
  188. break;
  189. case PCM_MEDIA_FORMAT_V4:
  190. pcm_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V4;
  191. break;
  192. case PCM_MEDIA_FORMAT_V3:
  193. pcm_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  194. break;
  195. case PCM_MEDIA_FORMAT_V2:
  196. default:
  197. pcm_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  198. break;
  199. }
  200. return pcm_format_id;
  201. }
  202. /*
  203. * q6asm_get_buf_index_from_token:
  204. * Retrieve buffer index from token.
  205. *
  206. * @token: token value sent to ASM service on q6.
  207. * Returns buffer index in the read/write commands.
  208. */
  209. uint8_t q6asm_get_buf_index_from_token(uint32_t token)
  210. {
  211. union asm_token_struct asm_token;
  212. asm_token.token = token;
  213. return asm_token._token.buf_index;
  214. }
  215. EXPORT_SYMBOL(q6asm_get_buf_index_from_token);
  216. /*
  217. * q6asm_get_stream_id_from_token:
  218. * Retrieve stream id from token.
  219. *
  220. * @token: token value sent to ASM service on q6.
  221. * Returns stream id.
  222. */
  223. uint8_t q6asm_get_stream_id_from_token(uint32_t token)
  224. {
  225. union asm_token_struct asm_token;
  226. asm_token.token = token;
  227. return asm_token._token.stream_id;
  228. }
  229. EXPORT_SYMBOL(q6asm_get_stream_id_from_token);
  230. static int audio_output_latency_dbgfs_open(struct inode *inode,
  231. struct file *file)
  232. {
  233. file->private_data = inode->i_private;
  234. return 0;
  235. }
  236. static ssize_t audio_output_latency_dbgfs_read(struct file *file,
  237. char __user *buf, size_t count, loff_t *ppos)
  238. {
  239. if (out_buffer == NULL) {
  240. pr_err("%s: out_buffer is null\n", __func__);
  241. return 0;
  242. }
  243. if (count < OUT_BUFFER_SIZE) {
  244. pr_err("%s: read size %d exceeds buf size %zd\n", __func__,
  245. OUT_BUFFER_SIZE, count);
  246. return 0;
  247. }
  248. snprintf(out_buffer, OUT_BUFFER_SIZE, "%ld,%ld,%ld,%ld,%ld,%ld,",
  249. out_cold_tv.tv_sec, out_cold_tv.tv_usec, out_warm_tv.tv_sec,
  250. out_warm_tv.tv_usec, out_cont_tv.tv_sec, out_cont_tv.tv_usec);
  251. return simple_read_from_buffer(buf, OUT_BUFFER_SIZE, ppos,
  252. out_buffer, OUT_BUFFER_SIZE);
  253. }
  254. static ssize_t audio_output_latency_dbgfs_write(struct file *file,
  255. const char __user *buf, size_t count, loff_t *ppos)
  256. {
  257. char *temp;
  258. if (count > 2*sizeof(char)) {
  259. pr_err("%s: err count is more %zd\n", __func__, count);
  260. return -EINVAL;
  261. }
  262. temp = kmalloc(2*sizeof(char), GFP_KERNEL);
  263. out_cold_index = 0;
  264. if (temp) {
  265. if (copy_from_user(temp, buf, 2*sizeof(char))) {
  266. pr_err("%s: copy from user failed for size %zd\n",
  267. __func__, 2*sizeof(char));
  268. kfree(temp);
  269. return -EFAULT;
  270. }
  271. if (!kstrtol(temp, 10, &out_enable_flag)) {
  272. kfree(temp);
  273. return count;
  274. }
  275. kfree(temp);
  276. }
  277. return -EINVAL;
  278. }
  279. static const struct file_operations audio_output_latency_debug_fops = {
  280. .open = audio_output_latency_dbgfs_open,
  281. .read = audio_output_latency_dbgfs_read,
  282. .write = audio_output_latency_dbgfs_write
  283. };
  284. static int audio_input_latency_dbgfs_open(struct inode *inode,
  285. struct file *file)
  286. {
  287. file->private_data = inode->i_private;
  288. return 0;
  289. }
  290. static ssize_t audio_input_latency_dbgfs_read(struct file *file,
  291. char __user *buf, size_t count, loff_t *ppos)
  292. {
  293. if (in_buffer == NULL) {
  294. pr_err("%s: in_buffer is null\n", __func__);
  295. return 0;
  296. }
  297. if (count < IN_BUFFER_SIZE) {
  298. pr_err("%s: read size %d exceeds buf size %zd\n", __func__,
  299. IN_BUFFER_SIZE, count);
  300. return 0;
  301. }
  302. snprintf(in_buffer, IN_BUFFER_SIZE, "%ld,%ld,",
  303. in_cont_tv.tv_sec, in_cont_tv.tv_usec);
  304. return simple_read_from_buffer(buf, IN_BUFFER_SIZE, ppos,
  305. in_buffer, IN_BUFFER_SIZE);
  306. }
  307. static ssize_t audio_input_latency_dbgfs_write(struct file *file,
  308. const char __user *buf, size_t count, loff_t *ppos)
  309. {
  310. char *temp;
  311. if (count > 2*sizeof(char)) {
  312. pr_err("%s: err count is more %zd\n", __func__, count);
  313. return -EINVAL;
  314. }
  315. temp = kmalloc(2*sizeof(char), GFP_KERNEL);
  316. if (temp) {
  317. if (copy_from_user(temp, buf, 2*sizeof(char))) {
  318. pr_err("%s: copy from user failed for size %zd\n",
  319. __func__, 2*sizeof(char));
  320. kfree(temp);
  321. return -EFAULT;
  322. }
  323. if (!kstrtol(temp, 10, &in_enable_flag)) {
  324. kfree(temp);
  325. return count;
  326. }
  327. kfree(temp);
  328. }
  329. return -EINVAL;
  330. }
  331. static const struct file_operations audio_input_latency_debug_fops = {
  332. .open = audio_input_latency_dbgfs_open,
  333. .read = audio_input_latency_dbgfs_read,
  334. .write = audio_input_latency_dbgfs_write
  335. };
  336. static void config_debug_fs_write_cb(void)
  337. {
  338. if (out_enable_flag) {
  339. /* For first Write done log the time and reset
  340. * out_cold_index
  341. */
  342. if (out_cold_index != 1) {
  343. do_gettimeofday(&out_cold_tv);
  344. pr_debug("COLD: apr_send_pkt at %ld sec %ld microsec\n",
  345. out_cold_tv.tv_sec,
  346. out_cold_tv.tv_usec);
  347. out_cold_index = 1;
  348. }
  349. pr_debug("%s: out_enable_flag %ld\n",
  350. __func__, out_enable_flag);
  351. }
  352. }
  353. static void config_debug_fs_read_cb(void)
  354. {
  355. if (in_enable_flag) {
  356. /* when in_cont_index == 7, DSP would be
  357. * writing into the 8th 512 byte buffer and this
  358. * timestamp is tapped here.Once done it then writes
  359. * to 9th 512 byte buffer.These two buffers(8th, 9th)
  360. * reach the test application in 5th iteration and that
  361. * timestamp is tapped at user level. The difference
  362. * of these two timestamps gives us the time between
  363. * the time at which dsp started filling the sample
  364. * required and when it reached the test application.
  365. * Hence continuous input latency
  366. */
  367. if (in_cont_index == 7) {
  368. do_gettimeofday(&in_cont_tv);
  369. pr_info("%s: read buffer at %ld sec %ld microsec\n",
  370. __func__,
  371. in_cont_tv.tv_sec, in_cont_tv.tv_usec);
  372. }
  373. in_cont_index++;
  374. }
  375. }
  376. static void config_debug_fs_reset_index(void)
  377. {
  378. in_cont_index = 0;
  379. }
  380. static void config_debug_fs_run(void)
  381. {
  382. if (out_enable_flag) {
  383. do_gettimeofday(&out_cold_tv);
  384. pr_debug("%s: COLD apr_send_pkt at %ld sec %ld microsec\n",
  385. __func__, out_cold_tv.tv_sec, out_cold_tv.tv_usec);
  386. }
  387. }
  388. static void config_debug_fs_write(struct audio_buffer *ab)
  389. {
  390. if (out_enable_flag) {
  391. char zero_pattern[2] = {0x00, 0x00};
  392. /* If First two byte is non zero and last two byte
  393. * is zero then it is warm output pattern
  394. */
  395. if ((strcmp(((char *)ab->data), zero_pattern)) &&
  396. (!strcmp(((char *)ab->data + 2), zero_pattern))) {
  397. do_gettimeofday(&out_warm_tv);
  398. pr_debug("%s: WARM:apr_send_pkt at %ld sec %ld microsec\n",
  399. __func__,
  400. out_warm_tv.tv_sec,
  401. out_warm_tv.tv_usec);
  402. pr_debug("%s: Warm Pattern Matched\n", __func__);
  403. }
  404. /* If First two byte is zero and last two byte is
  405. * non zero then it is cont output pattern
  406. */
  407. else if ((!strcmp(((char *)ab->data), zero_pattern))
  408. && (strcmp(((char *)ab->data + 2), zero_pattern))) {
  409. do_gettimeofday(&out_cont_tv);
  410. pr_debug("%s: CONT:apr_send_pkt at %ld sec %ld microsec\n",
  411. __func__,
  412. out_cont_tv.tv_sec,
  413. out_cont_tv.tv_usec);
  414. pr_debug("%s: Cont Pattern Matched\n", __func__);
  415. }
  416. }
  417. }
  418. static void config_debug_fs_init(void)
  419. {
  420. out_buffer = kzalloc(OUT_BUFFER_SIZE, GFP_KERNEL);
  421. if (out_buffer == NULL)
  422. goto outbuf_fail;
  423. in_buffer = kzalloc(IN_BUFFER_SIZE, GFP_KERNEL);
  424. if (in_buffer == NULL)
  425. goto inbuf_fail;
  426. out_dentry = debugfs_create_file("audio_out_latency_measurement_node",
  427. 0664,
  428. NULL, NULL, &audio_output_latency_debug_fops);
  429. if (IS_ERR(out_dentry)) {
  430. pr_err("%s: debugfs_create_file failed\n", __func__);
  431. goto file_fail;
  432. }
  433. in_dentry = debugfs_create_file("audio_in_latency_measurement_node",
  434. 0664,
  435. NULL, NULL, &audio_input_latency_debug_fops);
  436. if (IS_ERR(in_dentry)) {
  437. pr_err("%s: debugfs_create_file failed\n", __func__);
  438. goto file_fail;
  439. }
  440. return;
  441. file_fail:
  442. kfree(in_buffer);
  443. inbuf_fail:
  444. kfree(out_buffer);
  445. outbuf_fail:
  446. in_buffer = NULL;
  447. out_buffer = NULL;
  448. }
  449. #else
  450. static void config_debug_fs_write(struct audio_buffer *ab)
  451. {
  452. }
  453. static void config_debug_fs_run(void)
  454. {
  455. }
  456. static void config_debug_fs_reset_index(void)
  457. {
  458. }
  459. static void config_debug_fs_read_cb(void)
  460. {
  461. }
  462. static void config_debug_fs_write_cb(void)
  463. {
  464. }
  465. static void config_debug_fs_init(void)
  466. {
  467. }
  468. #endif
  469. int q6asm_mmap_apr_dereg(void)
  470. {
  471. int c;
  472. c = atomic_sub_return(1, &this_mmap.ref_cnt);
  473. if (c == 0) {
  474. apr_deregister(this_mmap.apr);
  475. common_client.mmap_apr = NULL;
  476. pr_debug("%s: APR De-Register common port\n", __func__);
  477. } else if (c < 0) {
  478. pr_err("%s: APR Common Port Already Closed %d\n",
  479. __func__, c);
  480. atomic_set(&this_mmap.ref_cnt, 0);
  481. }
  482. return 0;
  483. }
  484. static int q6asm_session_alloc(struct audio_client *ac)
  485. {
  486. int n;
  487. for (n = 1; n <= ASM_ACTIVE_STREAMS_ALLOWED; n++) {
  488. if (!(session[n].ac)) {
  489. session[n].ac = ac;
  490. return n;
  491. }
  492. }
  493. pr_err("%s: session not available\n", __func__);
  494. return -ENOMEM;
  495. }
  496. static int q6asm_get_session_id_from_audio_client(struct audio_client *ac)
  497. {
  498. int n;
  499. for (n = 1; n <= ASM_ACTIVE_STREAMS_ALLOWED; n++) {
  500. if (session[n].ac == ac)
  501. return n;
  502. }
  503. pr_debug("%s: cannot find matching audio client. ac = %pK\n",
  504. __func__, ac);
  505. return 0;
  506. }
  507. static bool q6asm_is_valid_audio_client(struct audio_client *ac)
  508. {
  509. return q6asm_get_session_id_from_audio_client(ac) ? 1 : 0;
  510. }
  511. static void q6asm_session_free(struct audio_client *ac)
  512. {
  513. int session_id;
  514. unsigned long flags = 0;
  515. pr_debug("%s: sessionid[%d]\n", __func__, ac->session);
  516. session_id = ac->session;
  517. mutex_lock(&session[session_id].mutex_lock_per_session);
  518. rtac_remove_popp_from_adm_devices(ac->session);
  519. spin_lock_irqsave(&(session[session_id].session_lock), flags);
  520. session[ac->session].ac = NULL;
  521. ac->session = 0;
  522. ac->perf_mode = LEGACY_PCM_MODE;
  523. ac->fptr_cache_ops = NULL;
  524. ac->cb = NULL;
  525. ac->priv = NULL;
  526. kfree(ac);
  527. ac = NULL;
  528. spin_unlock_irqrestore(&(session[session_id].session_lock), flags);
  529. mutex_unlock(&session[session_id].mutex_lock_per_session);
  530. }
  531. static uint32_t q6asm_get_next_buf(struct audio_client *ac,
  532. uint32_t curr_buf, uint32_t max_buf_cnt)
  533. {
  534. dev_vdbg(ac->dev, "%s: curr_buf = %d, max_buf_cnt = %d\n",
  535. __func__, curr_buf, max_buf_cnt);
  536. curr_buf += 1;
  537. return (curr_buf >= max_buf_cnt) ? 0 : curr_buf;
  538. }
  539. static int q6asm_map_cal_memory(int32_t cal_type,
  540. struct cal_block_data *cal_block)
  541. {
  542. int result = 0;
  543. struct asm_buffer_node *buf_node = NULL;
  544. struct list_head *ptr, *next;
  545. if (cal_block == NULL) {
  546. pr_err("%s: cal_block is NULL!\n",
  547. __func__);
  548. goto done;
  549. }
  550. if (cal_block->cal_data.paddr == 0) {
  551. pr_debug("%s: No address to map!\n",
  552. __func__);
  553. goto done;
  554. }
  555. common_client.mmap_apr = q6asm_mmap_apr_reg();
  556. if (common_client.mmap_apr == NULL) {
  557. pr_err("%s: q6asm_mmap_apr_reg failed\n",
  558. __func__);
  559. result = -EPERM;
  560. goto done;
  561. }
  562. common_client.apr = common_client.mmap_apr;
  563. if (cal_block->map_data.map_size == 0) {
  564. pr_debug("%s: map size is 0!\n",
  565. __func__);
  566. goto done;
  567. }
  568. /* Use second asm buf to map memory */
  569. if (common_client.port[IN].buf == NULL) {
  570. pr_err("%s: common buf is NULL\n",
  571. __func__);
  572. result = -EINVAL;
  573. goto done;
  574. }
  575. common_client.port[IN].buf->phys = cal_block->cal_data.paddr;
  576. result = q6asm_memory_map_regions(&common_client,
  577. IN, cal_block->map_data.map_size, 1, 1);
  578. if (result < 0) {
  579. pr_err("%s: mmap did not work! size = %zd result %d\n",
  580. __func__,
  581. cal_block->map_data.map_size, result);
  582. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  583. __func__,
  584. &cal_block->cal_data.paddr,
  585. cal_block->map_data.map_size);
  586. goto done;
  587. }
  588. list_for_each_safe(ptr, next,
  589. &common_client.port[IN].mem_map_handle) {
  590. buf_node = list_entry(ptr, struct asm_buffer_node,
  591. list);
  592. if (buf_node->buf_phys_addr == cal_block->cal_data.paddr) {
  593. cal_block->map_data.q6map_handle = buf_node->mmap_hdl;
  594. break;
  595. }
  596. }
  597. done:
  598. return result;
  599. }
  600. static int remap_cal_data(int32_t cal_type, struct cal_block_data *cal_block)
  601. {
  602. int ret = 0;
  603. if (cal_block->map_data.dma_buf == NULL) {
  604. pr_err("%s: No ION allocation for cal type %d!\n",
  605. __func__, cal_type);
  606. ret = -EINVAL;
  607. goto done;
  608. }
  609. if ((cal_block->map_data.map_size > 0) &&
  610. (cal_block->map_data.q6map_handle == 0)) {
  611. ret = q6asm_map_cal_memory(cal_type, cal_block);
  612. if (ret < 0) {
  613. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  614. __func__, cal_block->map_data.map_size, ret);
  615. goto done;
  616. }
  617. }
  618. done:
  619. return ret;
  620. }
  621. static int q6asm_unmap_cal_memory(int32_t cal_type,
  622. struct cal_block_data *cal_block)
  623. {
  624. int result = 0;
  625. int result2 = 0;
  626. if (cal_block == NULL) {
  627. pr_err("%s: cal_block is NULL!\n",
  628. __func__);
  629. result = -EINVAL;
  630. goto done;
  631. }
  632. if (cal_block->map_data.q6map_handle == 0) {
  633. pr_debug("%s: No address to unmap!\n",
  634. __func__);
  635. result = -EINVAL;
  636. goto done;
  637. }
  638. if (common_client.mmap_apr == NULL) {
  639. common_client.mmap_apr = q6asm_mmap_apr_reg();
  640. if (common_client.mmap_apr == NULL) {
  641. pr_err("%s: q6asm_mmap_apr_reg failed\n",
  642. __func__);
  643. result = -EPERM;
  644. goto done;
  645. }
  646. }
  647. result2 = q6asm_memory_unmap_regions(&common_client, IN);
  648. if (result2 < 0) {
  649. pr_err("%s: unmap failed, err %d\n",
  650. __func__, result2);
  651. result = result2;
  652. }
  653. cal_block->map_data.q6map_handle = 0;
  654. done:
  655. return result;
  656. }
  657. int q6asm_unmap_cal_data(int cal_type, struct cal_block_data *cal_block)
  658. {
  659. int ret = 0;
  660. if ((cal_block->map_data.map_size > 0) &&
  661. (cal_block->map_data.q6map_handle != 0)) {
  662. ret = q6asm_unmap_cal_memory(cal_type, cal_block);
  663. if (ret < 0) {
  664. pr_err("%s: unmap did not work! size = %zd ret %d\n",
  665. __func__, cal_block->map_data.map_size, ret);
  666. goto done;
  667. }
  668. }
  669. done:
  670. return ret;
  671. }
  672. int send_asm_custom_topology(struct audio_client *ac)
  673. {
  674. struct cal_block_data *cal_block = NULL;
  675. struct cmd_set_topologies asm_top;
  676. int result = 0;
  677. int result1 = 0;
  678. if (cal_data[ASM_CUSTOM_TOP_CAL] == NULL)
  679. goto done;
  680. mutex_lock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  681. if (!set_custom_topology)
  682. goto unlock;
  683. set_custom_topology = 0;
  684. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_CUSTOM_TOP_CAL]);
  685. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block))
  686. goto unlock;
  687. if (cal_block->cal_data.size == 0) {
  688. pr_debug("%s: No cal to send!\n", __func__);
  689. goto unlock;
  690. }
  691. pr_debug("%s: Sending cal_index %d\n", __func__, ASM_CUSTOM_TOP_CAL);
  692. result = remap_cal_data(ASM_CUST_TOPOLOGY_CAL_TYPE, cal_block);
  693. if (result) {
  694. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  695. __func__, ASM_CUSTOM_TOP_CAL);
  696. goto unlock;
  697. }
  698. q6asm_add_hdr_custom_topology(ac, &asm_top.hdr, sizeof(asm_top));
  699. atomic_set(&ac->mem_state, -1);
  700. asm_top.hdr.opcode = ASM_CMD_ADD_TOPOLOGIES;
  701. asm_top.payload_addr_lsw = lower_32_bits(cal_block->cal_data.paddr);
  702. asm_top.payload_addr_msw = msm_audio_populate_upper_32_bits(
  703. cal_block->cal_data.paddr);
  704. asm_top.mem_map_handle = cal_block->map_data.q6map_handle;
  705. asm_top.payload_size = cal_block->cal_data.size;
  706. pr_debug("%s: Sending ASM_CMD_ADD_TOPOLOGIES payload = %pK, size = %d, map handle = 0x%x\n",
  707. __func__, &cal_block->cal_data.paddr,
  708. asm_top.payload_size, asm_top.mem_map_handle);
  709. result = apr_send_pkt(ac->apr, (uint32_t *) &asm_top);
  710. if (result < 0) {
  711. pr_err("%s: Set topologies failed result %d\n",
  712. __func__, result);
  713. pr_debug("%s: Set topologies failed payload = 0x%pK\n",
  714. __func__, &cal_block->cal_data.paddr);
  715. goto unmap;
  716. }
  717. result = wait_event_timeout(ac->mem_wait,
  718. (atomic_read(&ac->mem_state) >= 0),
  719. msecs_to_jiffies(TIMEOUT_MS));
  720. if (!result) {
  721. pr_err("%s: Set topologies failed timeout\n", __func__);
  722. pr_debug("%s: Set topologies failed after timedout payload = 0x%pK\n",
  723. __func__, &cal_block->cal_data.paddr);
  724. result = -ETIMEDOUT;
  725. goto unmap;
  726. }
  727. if (atomic_read(&ac->mem_state) > 0) {
  728. pr_err("%s: DSP returned error[%s]\n",
  729. __func__, adsp_err_get_err_str(
  730. atomic_read(&ac->mem_state)));
  731. result = adsp_err_get_lnx_err_code(
  732. atomic_read(&ac->mem_state));
  733. goto unmap;
  734. }
  735. unmap:
  736. result1 = q6asm_unmap_cal_memory(ASM_CUST_TOPOLOGY_CAL_TYPE,
  737. cal_block);
  738. if (result1 < 0) {
  739. result = result1;
  740. pr_debug("%s: unmap cal failed! %d\n", __func__, result);
  741. }
  742. unlock:
  743. mutex_unlock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  744. done:
  745. return result;
  746. }
  747. int q6asm_map_rtac_block(struct rtac_cal_block_data *cal_block)
  748. {
  749. int result = 0;
  750. struct asm_buffer_node *buf_node = NULL;
  751. struct list_head *ptr, *next;
  752. pr_debug("%s:\n", __func__);
  753. if (cal_block == NULL) {
  754. pr_err("%s: cal_block is NULL!\n",
  755. __func__);
  756. result = -EINVAL;
  757. goto done;
  758. }
  759. if (cal_block->cal_data.paddr == 0) {
  760. pr_debug("%s: No address to map!\n",
  761. __func__);
  762. result = -EINVAL;
  763. goto done;
  764. }
  765. if (common_client.mmap_apr == NULL) {
  766. common_client.mmap_apr = q6asm_mmap_apr_reg();
  767. if (common_client.mmap_apr == NULL) {
  768. pr_err("%s: q6asm_mmap_apr_reg failed\n",
  769. __func__);
  770. result = -EPERM;
  771. goto done;
  772. }
  773. }
  774. if (cal_block->map_data.map_size == 0) {
  775. pr_debug("%s: map size is 0!\n",
  776. __func__);
  777. result = -EINVAL;
  778. goto done;
  779. }
  780. /* Use second asm buf to map memory */
  781. if (common_client.port[OUT].buf == NULL) {
  782. pr_err("%s: common buf is NULL\n",
  783. __func__);
  784. result = -EINVAL;
  785. goto done;
  786. }
  787. common_client.port[OUT].buf->phys = cal_block->cal_data.paddr;
  788. result = q6asm_memory_map_regions(&common_client,
  789. OUT, cal_block->map_data.map_size, 1, 1);
  790. if (result < 0) {
  791. pr_err("%s: mmap did not work! size = %d result %d\n",
  792. __func__,
  793. cal_block->map_data.map_size, result);
  794. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %d\n",
  795. __func__,
  796. &cal_block->cal_data.paddr,
  797. cal_block->map_data.map_size);
  798. goto done;
  799. }
  800. list_for_each_safe(ptr, next,
  801. &common_client.port[OUT].mem_map_handle) {
  802. buf_node = list_entry(ptr, struct asm_buffer_node,
  803. list);
  804. if (buf_node->buf_phys_addr == cal_block->cal_data.paddr) {
  805. cal_block->map_data.map_handle = buf_node->mmap_hdl;
  806. break;
  807. }
  808. }
  809. done:
  810. return result;
  811. }
  812. int q6asm_unmap_rtac_block(uint32_t *mem_map_handle)
  813. {
  814. int result = 0;
  815. int result2 = 0;
  816. pr_debug("%s:\n", __func__);
  817. if (mem_map_handle == NULL) {
  818. pr_debug("%s: Map handle is NULL, nothing to unmap\n",
  819. __func__);
  820. goto done;
  821. }
  822. if (*mem_map_handle == 0) {
  823. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  824. __func__);
  825. goto done;
  826. }
  827. if (common_client.mmap_apr == NULL) {
  828. common_client.mmap_apr = q6asm_mmap_apr_reg();
  829. if (common_client.mmap_apr == NULL) {
  830. pr_err("%s: q6asm_mmap_apr_reg failed\n",
  831. __func__);
  832. result = -EPERM;
  833. goto done;
  834. }
  835. }
  836. result2 = q6asm_memory_unmap_regions(&common_client, OUT);
  837. if (result2 < 0) {
  838. pr_err("%s: unmap failed, err %d\n",
  839. __func__, result2);
  840. result = result2;
  841. } else {
  842. *mem_map_handle = 0;
  843. }
  844. result2 = q6asm_mmap_apr_dereg();
  845. if (result2 < 0) {
  846. pr_err("%s: q6asm_mmap_apr_dereg failed, err %d\n",
  847. __func__, result2);
  848. result = result2;
  849. }
  850. done:
  851. return result;
  852. }
  853. int q6asm_audio_client_buf_free(unsigned int dir,
  854. struct audio_client *ac)
  855. {
  856. struct audio_port_data *port;
  857. int cnt = 0;
  858. int rc = 0;
  859. pr_debug("%s: Session id %d\n", __func__, ac->session);
  860. mutex_lock(&ac->cmd_lock);
  861. if (ac->io_mode & SYNC_IO_MODE) {
  862. port = &ac->port[dir];
  863. if (!port->buf) {
  864. pr_err("%s: buf NULL\n", __func__);
  865. mutex_unlock(&ac->cmd_lock);
  866. return 0;
  867. }
  868. cnt = port->max_buf_cnt - 1;
  869. if (cnt >= 0) {
  870. rc = q6asm_memory_unmap_regions(ac, dir);
  871. if (rc < 0)
  872. pr_err("%s: Memory_unmap_regions failed %d\n",
  873. __func__, rc);
  874. }
  875. while (cnt >= 0) {
  876. if (port->buf[cnt].data) {
  877. if (!rc || atomic_read(&ac->reset))
  878. msm_audio_ion_free(
  879. port->buf[cnt].dma_buf);
  880. port->buf[cnt].dma_buf = NULL;
  881. port->buf[cnt].data = NULL;
  882. port->buf[cnt].phys = 0;
  883. --(port->max_buf_cnt);
  884. }
  885. --cnt;
  886. }
  887. kfree(port->buf);
  888. port->buf = NULL;
  889. }
  890. mutex_unlock(&ac->cmd_lock);
  891. return 0;
  892. }
  893. /**
  894. * q6asm_audio_client_buf_free_contiguous -
  895. * frees the memory buffers for ASM
  896. *
  897. * @dir: RX or TX direction
  898. * @ac: audio client handle
  899. *
  900. * Returns 0 on success or error on failure
  901. */
  902. int q6asm_audio_client_buf_free_contiguous(unsigned int dir,
  903. struct audio_client *ac)
  904. {
  905. struct audio_port_data *port;
  906. int cnt = 0;
  907. int rc = 0;
  908. pr_debug("%s: Session id %d\n", __func__, ac->session);
  909. mutex_lock(&ac->cmd_lock);
  910. port = &ac->port[dir];
  911. if (!port->buf) {
  912. mutex_unlock(&ac->cmd_lock);
  913. return 0;
  914. }
  915. cnt = port->max_buf_cnt - 1;
  916. if (cnt >= 0) {
  917. rc = q6asm_memory_unmap(ac, port->buf[0].phys, dir);
  918. if (rc < 0)
  919. pr_err("%s: Memory_unmap_regions failed %d\n",
  920. __func__, rc);
  921. }
  922. if (port->buf[0].data) {
  923. pr_debug("%s: data[%pK], phys[%pK], dma_buf[%pK]\n",
  924. __func__,
  925. port->buf[0].data,
  926. &port->buf[0].phys,
  927. port->buf[0].dma_buf);
  928. if (!rc || atomic_read(&ac->reset))
  929. msm_audio_ion_free(port->buf[0].dma_buf);
  930. port->buf[0].dma_buf = NULL;
  931. }
  932. while (cnt >= 0) {
  933. port->buf[cnt].data = NULL;
  934. port->buf[cnt].phys = 0;
  935. cnt--;
  936. }
  937. port->max_buf_cnt = 0;
  938. kfree(port->buf);
  939. port->buf = NULL;
  940. mutex_unlock(&ac->cmd_lock);
  941. return 0;
  942. }
  943. EXPORT_SYMBOL(q6asm_audio_client_buf_free_contiguous);
  944. /**
  945. * q6asm_audio_client_free -
  946. * frees the audio client for ASM
  947. *
  948. * @ac: audio client handle
  949. *
  950. */
  951. void q6asm_audio_client_free(struct audio_client *ac)
  952. {
  953. int loopcnt;
  954. struct audio_port_data *port;
  955. if (!ac) {
  956. pr_err("%s: ac %pK\n", __func__, ac);
  957. return;
  958. }
  959. if (!ac->session) {
  960. pr_err("%s: ac session invalid\n", __func__);
  961. return;
  962. }
  963. mutex_lock(&session_lock);
  964. pr_debug("%s: Session id %d\n", __func__, ac->session);
  965. if (ac->io_mode & SYNC_IO_MODE) {
  966. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  967. port = &ac->port[loopcnt];
  968. if (!port->buf)
  969. continue;
  970. pr_debug("%s: loopcnt = %d\n",
  971. __func__, loopcnt);
  972. q6asm_audio_client_buf_free(loopcnt, ac);
  973. }
  974. }
  975. rtac_set_asm_handle(ac->session, NULL);
  976. apr_deregister(ac->apr2);
  977. apr_deregister(ac->apr);
  978. q6asm_mmap_apr_dereg();
  979. ac->apr2 = NULL;
  980. ac->apr = NULL;
  981. ac->mmap_apr = NULL;
  982. q6asm_session_free(ac);
  983. pr_debug("%s: APR De-Register\n", __func__);
  984. /*done:*/
  985. mutex_unlock(&session_lock);
  986. }
  987. EXPORT_SYMBOL(q6asm_audio_client_free);
  988. /**
  989. * q6asm_set_io_mode -
  990. * Update IO mode for ASM
  991. *
  992. * @ac: audio client handle
  993. * @mode1: IO mode to update
  994. *
  995. * Returns 0 on success or error on failure
  996. */
  997. int q6asm_set_io_mode(struct audio_client *ac, uint32_t mode1)
  998. {
  999. uint32_t mode;
  1000. int ret = 0;
  1001. if (ac == NULL) {
  1002. pr_err("%s: APR handle NULL\n", __func__);
  1003. return -EINVAL;
  1004. }
  1005. ac->io_mode &= 0xFF00;
  1006. mode = (mode1 & 0xF);
  1007. pr_debug("%s: ac->mode after anding with FF00:0x%x,\n",
  1008. __func__, ac->io_mode);
  1009. if ((mode == ASYNC_IO_MODE) || (mode == SYNC_IO_MODE)) {
  1010. ac->io_mode |= mode1;
  1011. pr_debug("%s: Set Mode to 0x%x\n", __func__, ac->io_mode);
  1012. } else {
  1013. pr_err("%s: Not an valid IO Mode:%d\n", __func__, ac->io_mode);
  1014. ret = -EINVAL;
  1015. }
  1016. return ret;
  1017. }
  1018. EXPORT_SYMBOL(q6asm_set_io_mode);
  1019. void *q6asm_mmap_apr_reg(void)
  1020. {
  1021. if ((atomic_read(&this_mmap.ref_cnt) == 0) ||
  1022. (this_mmap.apr == NULL)) {
  1023. this_mmap.apr = apr_register("ADSP", "ASM",
  1024. (apr_fn)q6asm_srvc_callback,
  1025. 0x0FFFFFFFF, &this_mmap);
  1026. if (this_mmap.apr == NULL) {
  1027. pr_debug("%s: Unable to register APR ASM common port\n",
  1028. __func__);
  1029. goto fail;
  1030. }
  1031. }
  1032. atomic_inc(&this_mmap.ref_cnt);
  1033. return this_mmap.apr;
  1034. fail:
  1035. return NULL;
  1036. }
  1037. /**
  1038. * q6asm_send_stream_cmd -
  1039. * command to send for ASM stream
  1040. *
  1041. * @ac: audio client handle
  1042. * @data: event data
  1043. *
  1044. * Returns 0 on success or error on failure
  1045. */
  1046. int q6asm_send_stream_cmd(struct audio_client *ac,
  1047. struct msm_adsp_event_data *data)
  1048. {
  1049. char *asm_params = NULL;
  1050. struct apr_hdr hdr;
  1051. int rc;
  1052. uint32_t sz = 0;
  1053. uint64_t actual_sz = 0;
  1054. int session_id = 0;
  1055. if (!data || !ac) {
  1056. pr_err("%s: %s is NULL\n", __func__,
  1057. (!data) ? "data" : "ac");
  1058. rc = -EINVAL;
  1059. goto done;
  1060. }
  1061. session_id = q6asm_get_session_id_from_audio_client(ac);
  1062. if (!session_id) {
  1063. rc = -EINVAL;
  1064. goto done;
  1065. }
  1066. if (data->event_type >= ARRAY_SIZE(adsp_reg_event_opcode)) {
  1067. pr_err("%s: event %u out of boundary of array size of (%lu)\n",
  1068. __func__, data->event_type,
  1069. (long)ARRAY_SIZE(adsp_reg_event_opcode));
  1070. rc = -EINVAL;
  1071. goto done;
  1072. }
  1073. actual_sz = sizeof(struct apr_hdr) + data->payload_len;
  1074. if (actual_sz > U32_MAX) {
  1075. pr_err("%s: payload size 0x%X exceeds limit\n",
  1076. __func__, data->payload_len);
  1077. rc = -EINVAL;
  1078. goto done;
  1079. }
  1080. sz = (uint32_t)actual_sz;
  1081. asm_params = kzalloc(sz, GFP_KERNEL);
  1082. if (!asm_params) {
  1083. rc = -ENOMEM;
  1084. goto done;
  1085. }
  1086. mutex_lock(&session[session_id].mutex_lock_per_session);
  1087. if (!q6asm_is_valid_audio_client(ac)) {
  1088. rc = -EINVAL;
  1089. goto fail_send_param;
  1090. }
  1091. q6asm_add_hdr_async(ac, &hdr, sz, TRUE);
  1092. atomic_set(&ac->cmd_state_pp, -1);
  1093. hdr.opcode = adsp_reg_event_opcode[data->event_type];
  1094. memcpy(asm_params, &hdr, sizeof(struct apr_hdr));
  1095. memcpy(asm_params + sizeof(struct apr_hdr),
  1096. data->payload, data->payload_len);
  1097. rc = apr_send_pkt(ac->apr, (uint32_t *) asm_params);
  1098. if (rc < 0) {
  1099. pr_err("%s: stream event cmd apr pkt failed\n", __func__);
  1100. rc = -EINVAL;
  1101. goto fail_send_param;
  1102. }
  1103. rc = wait_event_timeout(ac->cmd_wait,
  1104. (atomic_read(&ac->cmd_state_pp) >= 0),
  1105. msecs_to_jiffies(TIMEOUT_MS));
  1106. if (!rc) {
  1107. pr_err("%s: timeout for stream event cmd resp\n", __func__);
  1108. rc = -ETIMEDOUT;
  1109. goto fail_send_param;
  1110. }
  1111. if (atomic_read(&ac->cmd_state_pp) > 0) {
  1112. pr_err("%s: DSP returned error[%s] for stream event cmd\n",
  1113. __func__, adsp_err_get_err_str(
  1114. atomic_read(&ac->cmd_state_pp)));
  1115. rc = adsp_err_get_lnx_err_code(
  1116. atomic_read(&ac->cmd_state_pp));
  1117. goto fail_send_param;
  1118. }
  1119. rc = 0;
  1120. fail_send_param:
  1121. mutex_unlock(&session[session_id].mutex_lock_per_session);
  1122. kfree(asm_params);
  1123. done:
  1124. return rc;
  1125. }
  1126. EXPORT_SYMBOL(q6asm_send_stream_cmd);
  1127. /**
  1128. * q6asm_audio_client_alloc -
  1129. * Alloc audio client for ASM
  1130. *
  1131. * @cb: callback fn
  1132. * @priv: private data
  1133. *
  1134. * Returns ac pointer on success or NULL on failure
  1135. */
  1136. struct audio_client *q6asm_audio_client_alloc(app_cb cb, void *priv)
  1137. {
  1138. struct audio_client *ac;
  1139. int n;
  1140. int lcnt = 0;
  1141. int rc = 0;
  1142. ac = kzalloc(sizeof(struct audio_client), GFP_KERNEL);
  1143. if (!ac)
  1144. return NULL;
  1145. mutex_lock(&session_lock);
  1146. n = q6asm_session_alloc(ac);
  1147. if (n <= 0) {
  1148. pr_err("%s: ASM Session alloc fail n=%d\n", __func__, n);
  1149. mutex_unlock(&session_lock);
  1150. kfree(ac);
  1151. goto fail_session;
  1152. }
  1153. ac->session = n;
  1154. ac->cb = cb;
  1155. ac->path_delay = UINT_MAX;
  1156. ac->priv = priv;
  1157. ac->io_mode = SYNC_IO_MODE;
  1158. ac->perf_mode = LEGACY_PCM_MODE;
  1159. ac->fptr_cache_ops = NULL;
  1160. /* DSP expects stream id from 1 */
  1161. ac->stream_id = 1;
  1162. ac->apr = apr_register("ADSP", "ASM",
  1163. (apr_fn)q6asm_callback,
  1164. ((ac->session) << 8 | 0x0001),
  1165. ac);
  1166. if (ac->apr == NULL) {
  1167. pr_err("%s: Registration with APR failed\n", __func__);
  1168. mutex_unlock(&session_lock);
  1169. goto fail_apr1;
  1170. }
  1171. ac->apr2 = apr_register("ADSP", "ASM",
  1172. (apr_fn)q6asm_callback,
  1173. ((ac->session) << 8 | 0x0002),
  1174. ac);
  1175. if (ac->apr2 == NULL) {
  1176. pr_err("%s: Registration with APR-2 failed\n", __func__);
  1177. mutex_unlock(&session_lock);
  1178. goto fail_apr2;
  1179. }
  1180. rtac_set_asm_handle(n, ac->apr);
  1181. pr_debug("%s: Registering the common port with APR\n", __func__);
  1182. ac->mmap_apr = q6asm_mmap_apr_reg();
  1183. if (ac->mmap_apr == NULL) {
  1184. mutex_unlock(&session_lock);
  1185. goto fail_mmap;
  1186. }
  1187. init_waitqueue_head(&ac->cmd_wait);
  1188. init_waitqueue_head(&ac->time_wait);
  1189. init_waitqueue_head(&ac->mem_wait);
  1190. atomic_set(&ac->time_flag, 1);
  1191. atomic_set(&ac->reset, 0);
  1192. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  1193. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  1194. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  1195. mutex_init(&ac->cmd_lock);
  1196. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  1197. mutex_init(&ac->port[lcnt].lock);
  1198. spin_lock_init(&ac->port[lcnt].dsp_lock);
  1199. }
  1200. atomic_set(&ac->cmd_state, 0);
  1201. atomic_set(&ac->cmd_state_pp, 0);
  1202. atomic_set(&ac->mem_state, 0);
  1203. rc = send_asm_custom_topology(ac);
  1204. if (rc < 0) {
  1205. mutex_unlock(&session_lock);
  1206. goto fail_mmap;
  1207. }
  1208. pr_debug("%s: session[%d]\n", __func__, ac->session);
  1209. mutex_unlock(&session_lock);
  1210. return ac;
  1211. fail_mmap:
  1212. apr_deregister(ac->apr2);
  1213. fail_apr2:
  1214. apr_deregister(ac->apr);
  1215. fail_apr1:
  1216. q6asm_session_free(ac);
  1217. fail_session:
  1218. return NULL;
  1219. }
  1220. EXPORT_SYMBOL(q6asm_audio_client_alloc);
  1221. /**
  1222. * q6asm_get_audio_client -
  1223. * Retrieve audio client for ASM
  1224. *
  1225. * @session_id: ASM session id
  1226. *
  1227. * Returns valid pointer on success or NULL on failure
  1228. */
  1229. struct audio_client *q6asm_get_audio_client(int session_id)
  1230. {
  1231. if (session_id == ASM_CONTROL_SESSION)
  1232. return &common_client;
  1233. if ((session_id <= 0) || (session_id > ASM_ACTIVE_STREAMS_ALLOWED)) {
  1234. pr_err("%s: invalid session: %d\n", __func__, session_id);
  1235. goto err;
  1236. }
  1237. if (!(session[session_id].ac)) {
  1238. pr_err("%s: session not active: %d\n", __func__, session_id);
  1239. goto err;
  1240. }
  1241. return session[session_id].ac;
  1242. err:
  1243. return NULL;
  1244. }
  1245. EXPORT_SYMBOL(q6asm_get_audio_client);
  1246. /**
  1247. * q6asm_audio_client_buf_alloc -
  1248. * Allocs memory from ION for ASM
  1249. *
  1250. * @dir: RX or TX direction
  1251. * @ac: Audio client handle
  1252. * @bufsz: size of each buffer
  1253. * @bufcnt: number of buffers to alloc
  1254. *
  1255. * Returns 0 on success or error on failure
  1256. */
  1257. int q6asm_audio_client_buf_alloc(unsigned int dir,
  1258. struct audio_client *ac,
  1259. unsigned int bufsz,
  1260. uint32_t bufcnt)
  1261. {
  1262. int cnt = 0;
  1263. int rc = 0;
  1264. struct audio_buffer *buf;
  1265. size_t len;
  1266. if (!(ac) || !(bufsz) || ((dir != IN) && (dir != OUT))) {
  1267. pr_err("%s: ac %pK bufsz %d dir %d\n", __func__, ac, bufsz,
  1268. dir);
  1269. return -EINVAL;
  1270. }
  1271. pr_debug("%s: session[%d]bufsz[%d]bufcnt[%d]\n", __func__, ac->session,
  1272. bufsz, bufcnt);
  1273. if (ac->session <= 0 || ac->session > 8) {
  1274. pr_err("%s: Session ID is invalid, session = %d\n", __func__,
  1275. ac->session);
  1276. goto fail;
  1277. }
  1278. if (ac->io_mode & SYNC_IO_MODE) {
  1279. if (ac->port[dir].buf) {
  1280. pr_debug("%s: buffer already allocated\n", __func__);
  1281. return 0;
  1282. }
  1283. mutex_lock(&ac->cmd_lock);
  1284. if (bufcnt > (U32_MAX/sizeof(struct audio_buffer))) {
  1285. pr_err("%s: Buffer size overflows", __func__);
  1286. mutex_unlock(&ac->cmd_lock);
  1287. goto fail;
  1288. }
  1289. buf = kzalloc(((sizeof(struct audio_buffer))*bufcnt),
  1290. GFP_KERNEL);
  1291. if (!buf) {
  1292. mutex_unlock(&ac->cmd_lock);
  1293. goto fail;
  1294. }
  1295. ac->port[dir].buf = buf;
  1296. while (cnt < bufcnt) {
  1297. if (bufsz > 0) {
  1298. if (!buf[cnt].data) {
  1299. rc = msm_audio_ion_alloc(
  1300. &buf[cnt].dma_buf,
  1301. bufsz,
  1302. &buf[cnt].phys,
  1303. &len,
  1304. &buf[cnt].data);
  1305. if (rc) {
  1306. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  1307. __func__, rc);
  1308. mutex_unlock(&ac->cmd_lock);
  1309. goto fail;
  1310. }
  1311. buf[cnt].used = 1;
  1312. buf[cnt].size = bufsz;
  1313. buf[cnt].actual_size = bufsz;
  1314. pr_debug("%s: data[%pK]phys[%pK][%pK]\n",
  1315. __func__,
  1316. buf[cnt].data,
  1317. &buf[cnt].phys,
  1318. &buf[cnt].phys);
  1319. cnt++;
  1320. }
  1321. }
  1322. }
  1323. ac->port[dir].max_buf_cnt = cnt;
  1324. mutex_unlock(&ac->cmd_lock);
  1325. rc = q6asm_memory_map_regions(ac, dir, bufsz, cnt, 0);
  1326. if (rc < 0) {
  1327. pr_err("%s: CMD Memory_map_regions failed %d for size %d\n",
  1328. __func__, rc, bufsz);
  1329. goto fail;
  1330. }
  1331. }
  1332. return 0;
  1333. fail:
  1334. q6asm_audio_client_buf_free(dir, ac);
  1335. return -EINVAL;
  1336. }
  1337. EXPORT_SYMBOL(q6asm_audio_client_buf_alloc);
  1338. /**
  1339. * q6asm_audio_client_buf_alloc_contiguous -
  1340. * Alloc contiguous memory from ION for ASM
  1341. *
  1342. * @dir: RX or TX direction
  1343. * @ac: Audio client handle
  1344. * @bufsz: size of each buffer
  1345. * @bufcnt: number of buffers to alloc
  1346. *
  1347. * Returns 0 on success or error on failure
  1348. */
  1349. int q6asm_audio_client_buf_alloc_contiguous(unsigned int dir,
  1350. struct audio_client *ac,
  1351. unsigned int bufsz,
  1352. unsigned int bufcnt)
  1353. {
  1354. int cnt = 0;
  1355. int rc = 0;
  1356. struct audio_buffer *buf;
  1357. size_t len;
  1358. int bytes_to_alloc;
  1359. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  1360. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  1361. return -EINVAL;
  1362. }
  1363. pr_debug("%s: session[%d]bufsz[%d]bufcnt[%d]\n",
  1364. __func__, ac->session,
  1365. bufsz, bufcnt);
  1366. if (ac->session <= 0 || ac->session > 8) {
  1367. pr_err("%s: Session ID is invalid, session = %d\n", __func__,
  1368. ac->session);
  1369. goto fail;
  1370. }
  1371. if (ac->port[dir].buf) {
  1372. pr_err("%s: buffer already allocated\n", __func__);
  1373. return 0;
  1374. }
  1375. mutex_lock(&ac->cmd_lock);
  1376. buf = kzalloc(((sizeof(struct audio_buffer))*bufcnt),
  1377. GFP_KERNEL);
  1378. if (!buf) {
  1379. pr_err("%s: buffer allocation failed\n", __func__);
  1380. mutex_unlock(&ac->cmd_lock);
  1381. goto fail;
  1382. }
  1383. ac->port[dir].buf = buf;
  1384. /* check for integer overflow */
  1385. if ((bufcnt > 0) && ((INT_MAX / bufcnt) < bufsz)) {
  1386. pr_err("%s: integer overflow\n", __func__);
  1387. mutex_unlock(&ac->cmd_lock);
  1388. goto fail;
  1389. }
  1390. bytes_to_alloc = bufsz * bufcnt;
  1391. /* The size to allocate should be multiple of 4K bytes */
  1392. bytes_to_alloc = PAGE_ALIGN(bytes_to_alloc);
  1393. rc = msm_audio_ion_alloc(&buf[0].dma_buf,
  1394. bytes_to_alloc,
  1395. &buf[0].phys, &len,
  1396. &buf[0].data);
  1397. if (rc) {
  1398. pr_err("%s: Audio ION alloc is failed, rc = %d\n",
  1399. __func__, rc);
  1400. mutex_unlock(&ac->cmd_lock);
  1401. goto fail;
  1402. }
  1403. buf[0].used = dir ^ 1;
  1404. buf[0].size = bufsz;
  1405. buf[0].actual_size = bufsz;
  1406. cnt = 1;
  1407. while (cnt < bufcnt) {
  1408. if (bufsz > 0) {
  1409. buf[cnt].data = buf[0].data + (cnt * bufsz);
  1410. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  1411. if (!buf[cnt].data) {
  1412. pr_err("%s: Buf alloc failed\n",
  1413. __func__);
  1414. mutex_unlock(&ac->cmd_lock);
  1415. goto fail;
  1416. }
  1417. buf[cnt].used = dir ^ 1;
  1418. buf[cnt].size = bufsz;
  1419. buf[cnt].actual_size = bufsz;
  1420. pr_debug("%s: data[%pK]phys[%pK][%pK]\n",
  1421. __func__,
  1422. buf[cnt].data,
  1423. &buf[cnt].phys,
  1424. &buf[cnt].phys);
  1425. }
  1426. cnt++;
  1427. }
  1428. ac->port[dir].max_buf_cnt = cnt;
  1429. mutex_unlock(&ac->cmd_lock);
  1430. rc = q6asm_memory_map_regions(ac, dir, bufsz, cnt, 1);
  1431. if (rc < 0) {
  1432. pr_err("%s: CMD Memory_map_regions failed %d for size %d\n",
  1433. __func__, rc, bufsz);
  1434. goto fail;
  1435. }
  1436. return 0;
  1437. fail:
  1438. q6asm_audio_client_buf_free_contiguous(dir, ac);
  1439. return -EINVAL;
  1440. }
  1441. EXPORT_SYMBOL(q6asm_audio_client_buf_alloc_contiguous);
  1442. static int32_t q6asm_srvc_callback(struct apr_client_data *data, void *priv)
  1443. {
  1444. uint32_t dir = 0;
  1445. uint32_t i = IN;
  1446. uint32_t *payload;
  1447. unsigned long dsp_flags = 0;
  1448. unsigned long flags = 0;
  1449. struct asm_buffer_node *buf_node = NULL;
  1450. struct list_head *ptr, *next;
  1451. union asm_token_struct asm_token;
  1452. struct audio_client *ac = NULL;
  1453. struct audio_port_data *port;
  1454. int session_id;
  1455. if (!data) {
  1456. pr_err("%s: Invalid CB\n", __func__);
  1457. return 0;
  1458. }
  1459. payload = data->payload;
  1460. if (data->opcode == RESET_EVENTS) {
  1461. pr_debug("%s: Reset event is received: %d %d apr[%pK]\n",
  1462. __func__,
  1463. data->reset_event,
  1464. data->reset_proc,
  1465. this_mmap.apr);
  1466. atomic_set(&this_mmap.ref_cnt, 0);
  1467. apr_reset(this_mmap.apr);
  1468. this_mmap.apr = NULL;
  1469. for (; i <= OUT; i++) {
  1470. list_for_each_safe(ptr, next,
  1471. &common_client.port[i].mem_map_handle) {
  1472. buf_node = list_entry(ptr,
  1473. struct asm_buffer_node,
  1474. list);
  1475. if (buf_node->buf_phys_addr ==
  1476. common_client.port[i].buf->phys) {
  1477. list_del(&buf_node->list);
  1478. kfree(buf_node);
  1479. }
  1480. }
  1481. pr_debug("%s: Clearing custom topology\n", __func__);
  1482. }
  1483. cal_utils_clear_cal_block_q6maps(ASM_MAX_CAL_TYPES, cal_data);
  1484. common_client.mmap_apr = NULL;
  1485. mutex_lock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  1486. set_custom_topology = 1;
  1487. mutex_unlock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  1488. topology_map_handle = 0;
  1489. rtac_clear_mapping(ASM_RTAC_CAL);
  1490. return 0;
  1491. }
  1492. asm_token.token = data->token;
  1493. session_id = asm_token._token.session_id;
  1494. if ((session_id > 0 && session_id <= ASM_ACTIVE_STREAMS_ALLOWED))
  1495. spin_lock_irqsave(&(session[session_id].session_lock), flags);
  1496. ac = q6asm_get_audio_client(session_id);
  1497. dir = q6asm_get_flag_from_token(&asm_token, ASM_DIRECTION_OFFSET);
  1498. if (!ac) {
  1499. pr_debug("%s: session[%d] already freed\n",
  1500. __func__, session_id);
  1501. if ((session_id > 0 &&
  1502. session_id <= ASM_ACTIVE_STREAMS_ALLOWED))
  1503. spin_unlock_irqrestore(
  1504. &(session[session_id].session_lock), flags);
  1505. return 0;
  1506. }
  1507. if (data->payload_size > sizeof(int)) {
  1508. pr_debug("%s:ptr0[0x%x]ptr1[0x%x]opcode[0x%x] token[0x%x]payload_s[%d] src[%d] dest[%d]sid[%d]dir[%d]\n",
  1509. __func__, payload[0], payload[1], data->opcode,
  1510. data->token, data->payload_size, data->src_port,
  1511. data->dest_port, asm_token._token.session_id, dir);
  1512. pr_debug("%s:Payload = [0x%x] status[0x%x]\n",
  1513. __func__, payload[0], payload[1]);
  1514. } else if (data->payload_size == sizeof(int)) {
  1515. pr_debug("%s:ptr0[0x%x]opcode[0x%x] token[0x%x]payload_s[%d] src[%d] dest[%d]sid[%d]dir[%d]\n",
  1516. __func__, payload[0], data->opcode,
  1517. data->token, data->payload_size, data->src_port,
  1518. data->dest_port, asm_token._token.session_id, dir);
  1519. pr_debug("%s:Payload = [0x%x]\n",
  1520. __func__, payload[0]);
  1521. }
  1522. if (data->opcode == APR_BASIC_RSP_RESULT) {
  1523. switch (payload[0]) {
  1524. case ASM_CMD_SHARED_MEM_MAP_REGIONS:
  1525. case ASM_CMD_SHARED_MEM_UNMAP_REGIONS:
  1526. case ASM_CMD_ADD_TOPOLOGIES:
  1527. if (payload[1] != 0) {
  1528. pr_err("%s: cmd = 0x%x returned error = 0x%x sid:%d\n",
  1529. __func__, payload[0], payload[1],
  1530. asm_token._token.session_id);
  1531. if (payload[0] ==
  1532. ASM_CMD_SHARED_MEM_UNMAP_REGIONS)
  1533. atomic_set(&ac->unmap_cb_success, 0);
  1534. atomic_set(&ac->mem_state, payload[1]);
  1535. wake_up(&ac->mem_wait);
  1536. } else {
  1537. if (payload[0] ==
  1538. ASM_CMD_SHARED_MEM_UNMAP_REGIONS)
  1539. atomic_set(&ac->unmap_cb_success, 1);
  1540. }
  1541. if (atomic_cmpxchg(&ac->mem_state, -1, 0) == -1)
  1542. wake_up(&ac->mem_wait);
  1543. dev_vdbg(ac->dev, "%s: Payload = [0x%x] status[0x%x]\n",
  1544. __func__, payload[0], payload[1]);
  1545. break;
  1546. default:
  1547. pr_debug("%s: command[0x%x] not expecting rsp\n",
  1548. __func__, payload[0]);
  1549. break;
  1550. }
  1551. if ((session_id > 0 &&
  1552. session_id <= ASM_ACTIVE_STREAMS_ALLOWED))
  1553. spin_unlock_irqrestore(
  1554. &(session[session_id].session_lock), flags);
  1555. return 0;
  1556. }
  1557. port = &ac->port[dir];
  1558. switch (data->opcode) {
  1559. case ASM_CMDRSP_SHARED_MEM_MAP_REGIONS:{
  1560. pr_debug("%s:PL#0[0x%x] dir=0x%x s_id=0x%x\n",
  1561. __func__, payload[0], dir, asm_token._token.session_id);
  1562. spin_lock_irqsave(&port->dsp_lock, dsp_flags);
  1563. if (atomic_cmpxchg(&ac->mem_state, -1, 0) == -1) {
  1564. ac->port[dir].tmp_hdl = payload[0];
  1565. wake_up(&ac->mem_wait);
  1566. }
  1567. spin_unlock_irqrestore(&port->dsp_lock, dsp_flags);
  1568. break;
  1569. }
  1570. case ASM_CMD_SHARED_MEM_UNMAP_REGIONS:{
  1571. pr_debug("%s: PL#0[0x%x]PL#1 [0x%x]\n",
  1572. __func__, payload[0], payload[1]);
  1573. spin_lock_irqsave(&port->dsp_lock, dsp_flags);
  1574. if (atomic_cmpxchg(&ac->mem_state, -1, 0) == -1)
  1575. wake_up(&ac->mem_wait);
  1576. spin_unlock_irqrestore(&port->dsp_lock, dsp_flags);
  1577. break;
  1578. }
  1579. default:
  1580. pr_debug("%s: command[0x%x]success [0x%x]\n",
  1581. __func__, payload[0], payload[1]);
  1582. }
  1583. if (ac->cb)
  1584. ac->cb(data->opcode, data->token,
  1585. data->payload, ac->priv);
  1586. if ((session_id > 0 && session_id <= ASM_ACTIVE_STREAMS_ALLOWED))
  1587. spin_unlock_irqrestore(
  1588. &(session[session_id].session_lock), flags);
  1589. return 0;
  1590. }
  1591. static void q6asm_process_mtmx_get_param_rsp(struct audio_client *ac,
  1592. struct asm_mtmx_strtr_get_params_cmdrsp *cmdrsp)
  1593. {
  1594. struct asm_session_mtmx_strtr_param_session_time_v3_t *time;
  1595. if (cmdrsp->err_code) {
  1596. dev_err_ratelimited(ac->dev,
  1597. "%s: err=%x, mod_id=%x, param_id=%x\n",
  1598. __func__, cmdrsp->err_code,
  1599. cmdrsp->param_info.module_id,
  1600. cmdrsp->param_info.param_id);
  1601. return;
  1602. }
  1603. dev_dbg_ratelimited(ac->dev,
  1604. "%s: mod_id=%x, param_id=%x\n", __func__,
  1605. cmdrsp->param_info.module_id,
  1606. cmdrsp->param_info.param_id);
  1607. switch (cmdrsp->param_info.module_id) {
  1608. case ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC:
  1609. switch (cmdrsp->param_info.param_id) {
  1610. case ASM_SESSION_MTMX_STRTR_PARAM_SESSION_TIME_V3:
  1611. time = &cmdrsp->param_data.session_time;
  1612. dev_vdbg(ac->dev, "%s: GET_TIME_V3, time_lsw=%x, time_msw=%x\n",
  1613. __func__, time->session_time_lsw,
  1614. time->session_time_msw);
  1615. ac->time_stamp = (uint64_t)(((uint64_t)
  1616. time->session_time_msw << 32) |
  1617. time->session_time_lsw);
  1618. if (time->flags &
  1619. ASM_SESSION_MTMX_STRTR_PARAM_STIME_TSTMP_FLG_BMASK)
  1620. dev_warn_ratelimited(ac->dev,
  1621. "%s: recv inval tstmp\n",
  1622. __func__);
  1623. if (atomic_cmpxchg(&ac->time_flag, 1, 0))
  1624. wake_up(&ac->time_wait);
  1625. break;
  1626. default:
  1627. dev_err(ac->dev, "%s: unexpected param_id %x\n",
  1628. __func__, cmdrsp->param_info.param_id);
  1629. break;
  1630. }
  1631. break;
  1632. default:
  1633. dev_err(ac->dev, "%s: unexpected mod_id %x\n", __func__,
  1634. cmdrsp->param_info.module_id);
  1635. break;
  1636. }
  1637. }
  1638. static int32_t q6asm_callback(struct apr_client_data *data, void *priv)
  1639. {
  1640. int i = 0;
  1641. struct audio_client *ac = (struct audio_client *)priv;
  1642. unsigned long dsp_flags = 0;
  1643. uint32_t *payload;
  1644. uint32_t wakeup_flag = 1;
  1645. int32_t ret = 0;
  1646. union asm_token_struct asm_token;
  1647. uint8_t buf_index;
  1648. struct msm_adsp_event_data *pp_event_package = NULL;
  1649. uint32_t payload_size = 0;
  1650. unsigned long flags = 0;
  1651. int session_id;
  1652. if (ac == NULL) {
  1653. pr_err("%s: ac NULL\n", __func__);
  1654. return -EINVAL;
  1655. }
  1656. if (data == NULL) {
  1657. pr_err("%s: data NULL\n", __func__);
  1658. return -EINVAL;
  1659. }
  1660. session_id = q6asm_get_session_id_from_audio_client(ac);
  1661. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  1662. pr_err("%s: Session ID is invalid, session = %d\n", __func__,
  1663. session_id);
  1664. return -EINVAL;
  1665. }
  1666. spin_lock_irqsave(&(session[session_id].session_lock), flags);
  1667. if (!q6asm_is_valid_audio_client(ac)) {
  1668. pr_err("%s: audio client pointer is invalid, ac = %pK\n",
  1669. __func__, ac);
  1670. spin_unlock_irqrestore(
  1671. &(session[session_id].session_lock), flags);
  1672. return -EINVAL;
  1673. }
  1674. payload = data->payload;
  1675. asm_token.token = data->token;
  1676. if (q6asm_get_flag_from_token(&asm_token, ASM_CMD_NO_WAIT_OFFSET)) {
  1677. pr_debug("%s: No wait command opcode[0x%x] cmd_opcode:%x\n",
  1678. __func__, data->opcode, payload ? payload[0] : 0);
  1679. wakeup_flag = 0;
  1680. }
  1681. if (data->opcode == RESET_EVENTS) {
  1682. atomic_set(&ac->reset, 1);
  1683. if (ac->apr == NULL) {
  1684. ac->apr = ac->apr2;
  1685. ac->apr2 = NULL;
  1686. }
  1687. pr_debug("%s: Reset event is received: %d %d apr[%pK]\n",
  1688. __func__,
  1689. data->reset_event, data->reset_proc, ac->apr);
  1690. if (ac->cb)
  1691. ac->cb(data->opcode, data->token,
  1692. (uint32_t *)data->payload, ac->priv);
  1693. apr_reset(ac->apr);
  1694. ac->apr = NULL;
  1695. atomic_set(&ac->time_flag, 0);
  1696. atomic_set(&ac->cmd_state, 0);
  1697. atomic_set(&ac->mem_state, 0);
  1698. atomic_set(&ac->cmd_state_pp, 0);
  1699. wake_up(&ac->time_wait);
  1700. wake_up(&ac->cmd_wait);
  1701. wake_up(&ac->mem_wait);
  1702. spin_unlock_irqrestore(
  1703. &(session[session_id].session_lock), flags);
  1704. return 0;
  1705. }
  1706. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x] token[0x%x]payload_size[%d] src[%d] dest[%d]\n",
  1707. __func__,
  1708. ac->session, data->opcode,
  1709. data->token, data->payload_size, data->src_port,
  1710. data->dest_port);
  1711. if ((data->opcode != ASM_DATA_EVENT_RENDERED_EOS) &&
  1712. (data->opcode != ASM_DATA_EVENT_EOS) &&
  1713. (data->opcode != ASM_SESSION_EVENT_RX_UNDERFLOW)) {
  1714. if (payload == NULL) {
  1715. pr_err("%s: payload is null\n", __func__);
  1716. spin_unlock_irqrestore(
  1717. &(session[session_id].session_lock), flags);
  1718. return -EINVAL;
  1719. }
  1720. dev_vdbg(ac->dev, "%s: Payload = [0x%x] status[0x%x] opcode 0x%x\n",
  1721. __func__, payload[0], payload[1], data->opcode);
  1722. }
  1723. if (data->opcode == APR_BASIC_RSP_RESULT) {
  1724. switch (payload[0]) {
  1725. case ASM_STREAM_CMD_SET_PP_PARAMS_V2:
  1726. case ASM_STREAM_CMD_SET_PP_PARAMS_V3:
  1727. if (rtac_make_asm_callback(ac->session, payload,
  1728. data->payload_size))
  1729. break;
  1730. case ASM_SESSION_CMD_PAUSE:
  1731. case ASM_SESSION_CMD_SUSPEND:
  1732. case ASM_DATA_CMD_EOS:
  1733. case ASM_STREAM_CMD_CLOSE:
  1734. case ASM_STREAM_CMD_FLUSH:
  1735. case ASM_SESSION_CMD_RUN_V2:
  1736. case ASM_SESSION_CMD_REGISTER_FORX_OVERFLOW_EVENTS:
  1737. case ASM_STREAM_CMD_FLUSH_READBUFS:
  1738. pr_debug("%s: session %d opcode 0x%x token 0x%x Payload = [0x%x] src %d dest %d\n",
  1739. __func__, ac->session, data->opcode, data->token,
  1740. payload[0], data->src_port, data->dest_port);
  1741. ret = q6asm_is_valid_session(data, priv);
  1742. if (ret != 0) {
  1743. pr_err("%s: session invalid %d\n", __func__, ret);
  1744. spin_unlock_irqrestore(
  1745. &(session[session_id].session_lock), flags);
  1746. return ret;
  1747. }
  1748. case ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2:
  1749. case ASM_STREAM_CMD_OPEN_READ_V3:
  1750. case ASM_STREAM_CMD_OPEN_WRITE_V3:
  1751. case ASM_STREAM_CMD_OPEN_PULL_MODE_WRITE:
  1752. case ASM_STREAM_CMD_OPEN_PUSH_MODE_READ:
  1753. case ASM_STREAM_CMD_OPEN_READWRITE_V2:
  1754. case ASM_STREAM_CMD_OPEN_LOOPBACK_V2:
  1755. case ASM_STREAM_CMD_OPEN_TRANSCODE_LOOPBACK:
  1756. case ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2:
  1757. case ASM_DATA_CMD_IEC_60958_MEDIA_FMT:
  1758. case ASM_STREAM_CMD_SET_ENCDEC_PARAM:
  1759. case ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2:
  1760. case ASM_STREAM_CMD_REGISTER_ENCDEC_EVENTS:
  1761. case ASM_STREAM_CMD_REGISTER_IEC_61937_FMT_UPDATE:
  1762. case ASM_DATA_CMD_REMOVE_INITIAL_SILENCE:
  1763. case ASM_DATA_CMD_REMOVE_TRAILING_SILENCE:
  1764. case ASM_SESSION_CMD_REGISTER_FOR_RX_UNDERFLOW_EVENTS:
  1765. case ASM_STREAM_CMD_OPEN_READ_COMPRESSED:
  1766. case ASM_STREAM_CMD_OPEN_WRITE_COMPRESSED:
  1767. pr_debug("%s: session %d opcode 0x%x token 0x%x Payload = [0x%x] stat 0x%x src %d dest %d\n",
  1768. __func__, ac->session,
  1769. data->opcode, data->token,
  1770. payload[0], payload[1],
  1771. data->src_port, data->dest_port);
  1772. if (payload[1] != 0) {
  1773. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  1774. __func__, payload[0], payload[1]);
  1775. if (wakeup_flag) {
  1776. if ((is_adsp_reg_event(payload[0]) >=
  1777. 0) ||
  1778. (payload[0] ==
  1779. ASM_STREAM_CMD_SET_PP_PARAMS_V2) ||
  1780. (payload[0] ==
  1781. ASM_STREAM_CMD_SET_PP_PARAMS_V3))
  1782. atomic_set(&ac->cmd_state_pp,
  1783. payload[1]);
  1784. else
  1785. atomic_set(&ac->cmd_state,
  1786. payload[1]);
  1787. wake_up(&ac->cmd_wait);
  1788. }
  1789. spin_unlock_irqrestore(
  1790. &(session[session_id].session_lock),
  1791. flags);
  1792. return 0;
  1793. }
  1794. if ((is_adsp_reg_event(payload[0]) >= 0) ||
  1795. (payload[0] == ASM_STREAM_CMD_SET_PP_PARAMS_V2) ||
  1796. (payload[0] == ASM_STREAM_CMD_SET_PP_PARAMS_V3)) {
  1797. if (atomic_read(&ac->cmd_state_pp) &&
  1798. wakeup_flag) {
  1799. atomic_set(&ac->cmd_state_pp, 0);
  1800. wake_up(&ac->cmd_wait);
  1801. }
  1802. } else {
  1803. if (atomic_read(&ac->cmd_state) &&
  1804. wakeup_flag) {
  1805. atomic_set(&ac->cmd_state, 0);
  1806. wake_up(&ac->cmd_wait);
  1807. }
  1808. }
  1809. if (ac->cb)
  1810. ac->cb(data->opcode, data->token,
  1811. (uint32_t *)data->payload, ac->priv);
  1812. break;
  1813. case ASM_CMD_ADD_TOPOLOGIES:
  1814. pr_debug("%s:Payload = [0x%x]stat[0x%x]\n",
  1815. __func__, payload[0], payload[1]);
  1816. if (payload[1] != 0) {
  1817. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  1818. __func__, payload[0], payload[1]);
  1819. if (wakeup_flag) {
  1820. atomic_set(&ac->mem_state, payload[1]);
  1821. wake_up(&ac->mem_wait);
  1822. }
  1823. spin_unlock_irqrestore(
  1824. &(session[session_id].session_lock),
  1825. flags);
  1826. return 0;
  1827. }
  1828. if (atomic_read(&ac->mem_state) && wakeup_flag) {
  1829. atomic_set(&ac->mem_state, 0);
  1830. wake_up(&ac->mem_wait);
  1831. }
  1832. if (ac->cb)
  1833. ac->cb(data->opcode, data->token,
  1834. (uint32_t *)data->payload, ac->priv);
  1835. break;
  1836. case ASM_DATA_EVENT_WATERMARK: {
  1837. pr_debug("%s: Watermark opcode[0x%x] status[0x%x]",
  1838. __func__, payload[0], payload[1]);
  1839. break;
  1840. }
  1841. case ASM_STREAM_CMD_GET_PP_PARAMS_V2:
  1842. case ASM_STREAM_CMD_GET_PP_PARAMS_V3:
  1843. pr_debug("%s: ASM_STREAM_CMD_GET_PP_PARAMS session %d opcode 0x%x token 0x%x src %d dest %d\n",
  1844. __func__, ac->session, data->opcode,
  1845. data->token, data->src_port, data->dest_port);
  1846. /* Should only come here if there is an APR */
  1847. /* error or malformed APR packet. Otherwise */
  1848. /* response will be returned as */
  1849. /* ASM_STREAM_CMDRSP_GET_PP_PARAMS_V2 */
  1850. if (payload[1] != 0) {
  1851. pr_err("%s: ASM get param error = %d, resuming\n",
  1852. __func__, payload[1]);
  1853. rtac_make_asm_callback(ac->session, payload,
  1854. data->payload_size);
  1855. }
  1856. break;
  1857. case ASM_STREAM_CMD_REGISTER_PP_EVENTS:
  1858. pr_debug("%s: ASM_STREAM_CMD_REGISTER_PP_EVENTS session %d opcode 0x%x token 0x%x src %d dest %d\n",
  1859. __func__, ac->session,
  1860. data->opcode, data->token,
  1861. data->src_port, data->dest_port);
  1862. if (payload[1] != 0)
  1863. pr_err("%s: ASM get param error = %d, resuming\n",
  1864. __func__, payload[1]);
  1865. atomic_set(&ac->cmd_state_pp, payload[1]);
  1866. wake_up(&ac->cmd_wait);
  1867. break;
  1868. default:
  1869. pr_debug("%s: command[0x%x] not expecting rsp\n",
  1870. __func__, payload[0]);
  1871. break;
  1872. }
  1873. spin_unlock_irqrestore(
  1874. &(session[session_id].session_lock), flags);
  1875. return 0;
  1876. }
  1877. switch (data->opcode) {
  1878. case ASM_DATA_EVENT_WRITE_DONE_V2:{
  1879. struct audio_port_data *port = &ac->port[IN];
  1880. dev_vdbg(ac->dev, "%s: Rxed opcode[0x%x] status[0x%x] token[%d]",
  1881. __func__, payload[0], payload[1],
  1882. data->token);
  1883. if (ac->io_mode & SYNC_IO_MODE) {
  1884. if (port->buf == NULL) {
  1885. pr_err("%s: Unexpected Write Done\n",
  1886. __func__);
  1887. spin_unlock_irqrestore(
  1888. &(session[session_id].session_lock),
  1889. flags);
  1890. return -EINVAL;
  1891. }
  1892. spin_lock_irqsave(&port->dsp_lock, dsp_flags);
  1893. buf_index = asm_token._token.buf_index;
  1894. if (lower_32_bits(port->buf[buf_index].phys) !=
  1895. payload[0] ||
  1896. msm_audio_populate_upper_32_bits(
  1897. port->buf[buf_index].phys) != payload[1]) {
  1898. pr_debug("%s: Expected addr %pK\n",
  1899. __func__, &port->buf[buf_index].phys);
  1900. pr_err("%s: rxedl[0x%x] rxedu [0x%x]\n",
  1901. __func__, payload[0], payload[1]);
  1902. spin_unlock_irqrestore(&port->dsp_lock,
  1903. dsp_flags);
  1904. spin_unlock_irqrestore(
  1905. &(session[session_id].session_lock),
  1906. flags);
  1907. return -EINVAL;
  1908. }
  1909. port->buf[buf_index].used = 1;
  1910. spin_unlock_irqrestore(&port->dsp_lock, dsp_flags);
  1911. config_debug_fs_write_cb();
  1912. for (i = 0; i < port->max_buf_cnt; i++)
  1913. dev_vdbg(ac->dev, "%s %d\n",
  1914. __func__, port->buf[i].used);
  1915. }
  1916. break;
  1917. }
  1918. case ASM_STREAM_CMDRSP_GET_PP_PARAMS_V2:
  1919. case ASM_STREAM_CMDRSP_GET_PP_PARAMS_V3:
  1920. pr_debug("%s: ASM_STREAM_CMDRSP_GET_PP_PARAMS session %d opcode 0x%x token 0x%x src %d dest %d\n",
  1921. __func__, ac->session, data->opcode, data->token,
  1922. data->src_port, data->dest_port);
  1923. if (payload[0] != 0) {
  1924. pr_err("%s: ASM_STREAM_CMDRSP_GET_PP_PARAMS returned error = 0x%x\n",
  1925. __func__, payload[0]);
  1926. } else if (generic_get_data) {
  1927. generic_get_data->valid = 1;
  1928. if (generic_get_data->is_inband) {
  1929. pr_debug("%s: payload[1] = 0x%x, payload[2]=0x%x, payload[3]=0x%x\n",
  1930. __func__, payload[1], payload[2], payload[3]);
  1931. generic_get_data->size_in_ints = payload[3]>>2;
  1932. for (i = 0; i < payload[3]>>2; i++) {
  1933. generic_get_data->ints[i] =
  1934. payload[4+i];
  1935. pr_debug("%s: ASM callback val %i = %i\n",
  1936. __func__, i, payload[4+i]);
  1937. }
  1938. pr_debug("%s: callback size in ints = %i\n",
  1939. __func__,
  1940. generic_get_data->size_in_ints);
  1941. }
  1942. if (atomic_read(&ac->cmd_state) && wakeup_flag) {
  1943. atomic_set(&ac->cmd_state, 0);
  1944. wake_up(&ac->cmd_wait);
  1945. }
  1946. break;
  1947. }
  1948. rtac_make_asm_callback(ac->session, payload,
  1949. data->payload_size);
  1950. break;
  1951. case ASM_DATA_EVENT_READ_DONE_V2:{
  1952. struct audio_port_data *port = &ac->port[OUT];
  1953. config_debug_fs_read_cb();
  1954. dev_vdbg(ac->dev, "%s: ReadDone: status=%d buff_add=0x%x act_size=%d offset=%d\n",
  1955. __func__, payload[READDONE_IDX_STATUS],
  1956. payload[READDONE_IDX_BUFADD_LSW],
  1957. payload[READDONE_IDX_SIZE],
  1958. payload[READDONE_IDX_OFFSET]);
  1959. dev_vdbg(ac->dev, "%s: ReadDone:msw_ts=%d lsw_ts=%d memmap_hdl=0x%x flags=%d id=%d num=%d\n",
  1960. __func__, payload[READDONE_IDX_MSW_TS],
  1961. payload[READDONE_IDX_LSW_TS],
  1962. payload[READDONE_IDX_MEMMAP_HDL],
  1963. payload[READDONE_IDX_FLAGS],
  1964. payload[READDONE_IDX_SEQ_ID],
  1965. payload[READDONE_IDX_NUMFRAMES]);
  1966. if (ac->io_mode & SYNC_IO_MODE) {
  1967. if (port->buf == NULL) {
  1968. pr_err("%s: Unexpected Read Done\n", __func__);
  1969. spin_unlock_irqrestore(
  1970. &(session[session_id].session_lock),
  1971. flags);
  1972. return -EINVAL;
  1973. }
  1974. spin_lock_irqsave(&port->dsp_lock, dsp_flags);
  1975. buf_index = asm_token._token.buf_index;
  1976. port->buf[buf_index].used = 0;
  1977. if (lower_32_bits(port->buf[buf_index].phys) !=
  1978. payload[READDONE_IDX_BUFADD_LSW] ||
  1979. msm_audio_populate_upper_32_bits(
  1980. port->buf[buf_index].phys) !=
  1981. payload[READDONE_IDX_BUFADD_MSW]) {
  1982. dev_vdbg(ac->dev, "%s: Expected addr %pK\n",
  1983. __func__, &port->buf[buf_index].phys);
  1984. pr_err("%s: rxedl[0x%x] rxedu[0x%x]\n",
  1985. __func__,
  1986. payload[READDONE_IDX_BUFADD_LSW],
  1987. payload[READDONE_IDX_BUFADD_MSW]);
  1988. spin_unlock_irqrestore(&port->dsp_lock,
  1989. dsp_flags);
  1990. break;
  1991. }
  1992. port->buf[buf_index].actual_size =
  1993. payload[READDONE_IDX_SIZE];
  1994. spin_unlock_irqrestore(&port->dsp_lock, dsp_flags);
  1995. }
  1996. break;
  1997. }
  1998. case ASM_DATA_EVENT_EOS:
  1999. case ASM_DATA_EVENT_RENDERED_EOS:
  2000. pr_debug("%s: EOS ACK received: rxed session %d opcode 0x%x token 0x%x src %d dest %d\n",
  2001. __func__, ac->session,
  2002. data->opcode, data->token,
  2003. data->src_port, data->dest_port);
  2004. break;
  2005. case ASM_SESSION_EVENTX_OVERFLOW:
  2006. pr_debug("%s: ASM_SESSION_EVENTX_OVERFLOW session %d opcode 0x%x token 0x%x src %d dest %d\n",
  2007. __func__, ac->session,
  2008. data->opcode, data->token,
  2009. data->src_port, data->dest_port);
  2010. break;
  2011. case ASM_SESSION_EVENT_RX_UNDERFLOW:
  2012. pr_debug("%s: ASM_SESSION_EVENT_RX_UNDERFLOW session %d opcode 0x%x token 0x%x src %d dest %d\n",
  2013. __func__, ac->session,
  2014. data->opcode, data->token,
  2015. data->src_port, data->dest_port);
  2016. break;
  2017. case ASM_SESSION_CMDRSP_GET_SESSIONTIME_V3:
  2018. dev_vdbg(ac->dev, "%s: ASM_SESSION_CMDRSP_GET_SESSIONTIME_V3, payload[0] = %d, payload[1] = %d, payload[2] = %d\n",
  2019. __func__,
  2020. payload[0], payload[1], payload[2]);
  2021. ac->time_stamp = (uint64_t)(((uint64_t)payload[2] << 32) |
  2022. payload[1]);
  2023. if (atomic_cmpxchg(&ac->time_flag, 1, 0))
  2024. wake_up(&ac->time_wait);
  2025. break;
  2026. case ASM_DATA_EVENT_SR_CM_CHANGE_NOTIFY:
  2027. case ASM_DATA_EVENT_ENC_SR_CM_CHANGE_NOTIFY:
  2028. pr_debug("%s: ASM_DATA_EVENT_SR_CM_CHANGE_NOTIFY session %d opcode 0x%x token 0x%x src %d dest %d\n",
  2029. __func__, ac->session,
  2030. data->opcode, data->token,
  2031. data->src_port, data->dest_port);
  2032. pr_debug("%s: ASM_DATA_EVENT_SR_CM_CHANGE_NOTIFY, payload[0] = %d, payload[1] = %d, payload[2] = %d, payload[3] = %d\n",
  2033. __func__,
  2034. payload[0], payload[1], payload[2],
  2035. payload[3]);
  2036. break;
  2037. case ASM_SESSION_CMDRSP_GET_MTMX_STRTR_PARAMS_V2:
  2038. q6asm_process_mtmx_get_param_rsp(ac, (void *) payload);
  2039. break;
  2040. case ASM_STREAM_PP_EVENT:
  2041. case ASM_STREAM_CMD_ENCDEC_EVENTS:
  2042. case ASM_STREAM_CMD_REGISTER_IEC_61937_FMT_UPDATE:
  2043. pr_debug("%s: ASM_STREAM_EVENT payload[0][0x%x] payload[1][0x%x]",
  2044. __func__, payload[0], payload[1]);
  2045. i = is_adsp_raise_event(data->opcode);
  2046. if (i < 0) {
  2047. spin_unlock_irqrestore(
  2048. &(session[session_id].session_lock), flags);
  2049. return 0;
  2050. }
  2051. /* repack payload for asm_stream_pp_event
  2052. * package is composed of event type + size + actual payload
  2053. */
  2054. payload_size = data->payload_size;
  2055. if (payload_size > UINT_MAX - sizeof(struct msm_adsp_event_data)) {
  2056. pr_err("%s: payload size = %d exceeds limit.\n",
  2057. __func__, payload_size);
  2058. spin_unlock(&(session[session_id].session_lock));
  2059. return -EINVAL;
  2060. }
  2061. pp_event_package = kzalloc(payload_size
  2062. + sizeof(struct msm_adsp_event_data),
  2063. GFP_ATOMIC);
  2064. if (!pp_event_package) {
  2065. spin_unlock_irqrestore(
  2066. &(session[session_id].session_lock), flags);
  2067. return -ENOMEM;
  2068. }
  2069. pp_event_package->event_type = i;
  2070. pp_event_package->payload_len = payload_size;
  2071. memcpy((void *)pp_event_package->payload,
  2072. data->payload, payload_size);
  2073. ac->cb(data->opcode, data->token,
  2074. (void *)pp_event_package, ac->priv);
  2075. kfree(pp_event_package);
  2076. spin_unlock_irqrestore(
  2077. &(session[session_id].session_lock), flags);
  2078. return 0;
  2079. case ASM_SESSION_CMDRSP_ADJUST_SESSION_CLOCK_V2:
  2080. pr_debug("%s: ASM_SESSION_CMDRSP_ADJUST_SESSION_CLOCK_V2 sesion %d status 0x%x msw %u lsw %u\n",
  2081. __func__, ac->session, payload[0], payload[2],
  2082. payload[1]);
  2083. wake_up(&ac->cmd_wait);
  2084. break;
  2085. case ASM_SESSION_CMDRSP_GET_PATH_DELAY_V2:
  2086. pr_debug("%s: ASM_SESSION_CMDRSP_GET_PATH_DELAY_V2 session %d status 0x%x msw %u lsw %u\n",
  2087. __func__, ac->session, payload[0], payload[2],
  2088. payload[1]);
  2089. if (payload[0] == 0) {
  2090. atomic_set(&ac->cmd_state, 0);
  2091. /* ignore msw, as a delay that large shouldn't happen */
  2092. ac->path_delay = payload[1];
  2093. } else {
  2094. atomic_set(&ac->cmd_state, payload[0]);
  2095. ac->path_delay = UINT_MAX;
  2096. }
  2097. wake_up(&ac->cmd_wait);
  2098. break;
  2099. }
  2100. if (ac->cb)
  2101. ac->cb(data->opcode, data->token,
  2102. data->payload, ac->priv);
  2103. spin_unlock_irqrestore(
  2104. &(session[session_id].session_lock), flags);
  2105. return 0;
  2106. }
  2107. /**
  2108. * q6asm_is_cpu_buf_avail -
  2109. * retrieve next CPU buf avail
  2110. *
  2111. * @dir: RX or TX direction
  2112. * @ac: Audio client handle
  2113. * @size: size pointer to be updated with size of buffer
  2114. * @index: index pointer to be updated with
  2115. * CPU buffer index available
  2116. *
  2117. * Returns buffer pointer on success or NULL on failure
  2118. */
  2119. void *q6asm_is_cpu_buf_avail(int dir, struct audio_client *ac, uint32_t *size,
  2120. uint32_t *index)
  2121. {
  2122. void *data;
  2123. unsigned char idx;
  2124. struct audio_port_data *port;
  2125. if (!ac || ((dir != IN) && (dir != OUT))) {
  2126. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2127. return NULL;
  2128. }
  2129. if (ac->io_mode & SYNC_IO_MODE) {
  2130. port = &ac->port[dir];
  2131. mutex_lock(&port->lock);
  2132. idx = port->cpu_buf;
  2133. if (port->buf == NULL) {
  2134. pr_err("%s: Buffer pointer null\n", __func__);
  2135. mutex_unlock(&port->lock);
  2136. return NULL;
  2137. }
  2138. /* dir 0: used = 0 means buf in use
  2139. * dir 1: used = 1 means buf in use
  2140. */
  2141. if (port->buf[idx].used == dir) {
  2142. /* To make it more robust, we could loop and get the
  2143. * next avail buf, its risky though
  2144. */
  2145. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2146. __func__, idx, dir);
  2147. mutex_unlock(&port->lock);
  2148. return NULL;
  2149. }
  2150. *size = port->buf[idx].actual_size;
  2151. *index = port->cpu_buf;
  2152. data = port->buf[idx].data;
  2153. dev_vdbg(ac->dev, "%s: session[%d]index[%d] data[%pK]size[%d]\n",
  2154. __func__,
  2155. ac->session,
  2156. port->cpu_buf,
  2157. data, *size);
  2158. /* By default increase the cpu_buf cnt
  2159. * user accesses this function,increase cpu
  2160. * buf(to avoid another api)
  2161. */
  2162. port->buf[idx].used = dir;
  2163. port->cpu_buf = q6asm_get_next_buf(ac, port->cpu_buf,
  2164. port->max_buf_cnt);
  2165. mutex_unlock(&port->lock);
  2166. return data;
  2167. }
  2168. return NULL;
  2169. }
  2170. EXPORT_SYMBOL(q6asm_is_cpu_buf_avail);
  2171. /**
  2172. * q6asm_cpu_buf_release -
  2173. * releases cpu buffer for ASM
  2174. *
  2175. * @dir: RX or TX direction
  2176. * @ac: Audio client handle
  2177. *
  2178. * Returns 0 on success or error on failure
  2179. */
  2180. int q6asm_cpu_buf_release(int dir, struct audio_client *ac)
  2181. {
  2182. struct audio_port_data *port;
  2183. int ret = 0;
  2184. int idx;
  2185. if (!ac || ((dir != IN) && (dir != OUT))) {
  2186. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2187. ret = -EINVAL;
  2188. goto exit;
  2189. }
  2190. if (ac->io_mode & SYNC_IO_MODE) {
  2191. port = &ac->port[dir];
  2192. mutex_lock(&port->lock);
  2193. idx = port->cpu_buf;
  2194. if (port->cpu_buf == 0) {
  2195. port->cpu_buf = port->max_buf_cnt - 1;
  2196. } else if (port->cpu_buf < port->max_buf_cnt) {
  2197. port->cpu_buf = port->cpu_buf - 1;
  2198. } else {
  2199. pr_err("%s: buffer index(%d) out of range\n",
  2200. __func__, port->cpu_buf);
  2201. ret = -EINVAL;
  2202. mutex_unlock(&port->lock);
  2203. goto exit;
  2204. }
  2205. port->buf[port->cpu_buf].used = dir ^ 1;
  2206. mutex_unlock(&port->lock);
  2207. }
  2208. exit:
  2209. return ret;
  2210. }
  2211. EXPORT_SYMBOL(q6asm_cpu_buf_release);
  2212. /**
  2213. * q6asm_is_cpu_buf_avail_nolock -
  2214. * retrieve next CPU buf avail without lock acquire
  2215. *
  2216. * @dir: RX or TX direction
  2217. * @ac: Audio client handle
  2218. * @size: size pointer to be updated with size of buffer
  2219. * @index: index pointer to be updated with
  2220. * CPU buffer index available
  2221. *
  2222. * Returns buffer pointer on success or NULL on failure
  2223. */
  2224. void *q6asm_is_cpu_buf_avail_nolock(int dir, struct audio_client *ac,
  2225. uint32_t *size, uint32_t *index)
  2226. {
  2227. void *data;
  2228. unsigned char idx;
  2229. struct audio_port_data *port;
  2230. if (!ac || ((dir != IN) && (dir != OUT))) {
  2231. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2232. return NULL;
  2233. }
  2234. port = &ac->port[dir];
  2235. idx = port->cpu_buf;
  2236. if (port->buf == NULL) {
  2237. pr_err("%s: Buffer pointer null\n", __func__);
  2238. return NULL;
  2239. }
  2240. /*
  2241. * dir 0: used = 0 means buf in use
  2242. * dir 1: used = 1 means buf in use
  2243. */
  2244. if (port->buf[idx].used == dir) {
  2245. /*
  2246. * To make it more robust, we could loop and get the
  2247. * next avail buf, its risky though
  2248. */
  2249. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2250. __func__, idx, dir);
  2251. return NULL;
  2252. }
  2253. *size = port->buf[idx].actual_size;
  2254. *index = port->cpu_buf;
  2255. data = port->buf[idx].data;
  2256. dev_vdbg(ac->dev, "%s: session[%d]index[%d] data[%pK]size[%d]\n",
  2257. __func__, ac->session, port->cpu_buf,
  2258. data, *size);
  2259. /*
  2260. * By default increase the cpu_buf cnt
  2261. * user accesses this function,increase cpu
  2262. * buf(to avoid another api)
  2263. */
  2264. port->buf[idx].used = dir;
  2265. port->cpu_buf = q6asm_get_next_buf(ac, port->cpu_buf,
  2266. port->max_buf_cnt);
  2267. return data;
  2268. }
  2269. EXPORT_SYMBOL(q6asm_is_cpu_buf_avail_nolock);
  2270. int q6asm_is_dsp_buf_avail(int dir, struct audio_client *ac)
  2271. {
  2272. int ret = -1;
  2273. struct audio_port_data *port;
  2274. uint32_t idx;
  2275. if (!ac || (dir != OUT)) {
  2276. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2277. return ret;
  2278. }
  2279. if (ac->io_mode & SYNC_IO_MODE) {
  2280. port = &ac->port[dir];
  2281. mutex_lock(&port->lock);
  2282. idx = port->dsp_buf;
  2283. if (port->buf[idx].used == (dir ^ 1)) {
  2284. /* To make it more robust, we could loop and get the
  2285. * next avail buf, its risky though
  2286. */
  2287. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2288. __func__, idx, dir);
  2289. mutex_unlock(&port->lock);
  2290. return ret;
  2291. }
  2292. dev_vdbg(ac->dev, "%s: session[%d]dsp_buf=%d cpu_buf=%d\n",
  2293. __func__,
  2294. ac->session, port->dsp_buf, port->cpu_buf);
  2295. ret = ((port->dsp_buf != port->cpu_buf) ? 0 : -1);
  2296. mutex_unlock(&port->lock);
  2297. }
  2298. return ret;
  2299. }
  2300. static void __q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2301. uint32_t pkt_size, uint32_t cmd_flg, uint32_t stream_id)
  2302. {
  2303. unsigned long flags = 0;
  2304. dev_vdbg(ac->dev, "%s: pkt_size=%d cmd_flg=%d session=%d stream_id=%d\n",
  2305. __func__, pkt_size, cmd_flg, ac->session, stream_id);
  2306. mutex_lock(&ac->cmd_lock);
  2307. spin_lock_irqsave(&(session[ac->session].session_lock), flags);
  2308. if (ac->apr == NULL) {
  2309. pr_err("%s: AC APR handle NULL", __func__);
  2310. spin_unlock_irqrestore(
  2311. &(session[ac->session].session_lock), flags);
  2312. mutex_unlock(&ac->cmd_lock);
  2313. return;
  2314. }
  2315. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2316. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2317. APR_PKT_VER);
  2318. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2319. hdr->src_domain = APR_DOMAIN_APPS;
  2320. hdr->dest_svc = APR_SVC_ASM;
  2321. hdr->dest_domain = APR_DOMAIN_ADSP;
  2322. hdr->src_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2323. hdr->dest_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2324. if (cmd_flg)
  2325. q6asm_update_token(&hdr->token,
  2326. ac->session,
  2327. 0, /* Stream ID is NA */
  2328. 0, /* Buffer index is NA */
  2329. 0, /* Direction flag is NA */
  2330. WAIT_CMD);
  2331. hdr->pkt_size = pkt_size;
  2332. spin_unlock_irqrestore(
  2333. &(session[ac->session].session_lock), flags);
  2334. mutex_unlock(&ac->cmd_lock);
  2335. }
  2336. static void q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2337. uint32_t pkt_size, uint32_t cmd_flg)
  2338. {
  2339. __q6asm_add_hdr(ac, hdr, pkt_size, cmd_flg, ac->stream_id);
  2340. }
  2341. static void q6asm_stream_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2342. uint32_t pkt_size, uint32_t cmd_flg, int32_t stream_id)
  2343. {
  2344. __q6asm_add_hdr(ac, hdr, pkt_size, cmd_flg, stream_id);
  2345. }
  2346. static void __q6asm_add_hdr_async(struct audio_client *ac, struct apr_hdr *hdr,
  2347. uint32_t pkt_size, uint32_t cmd_flg,
  2348. uint32_t stream_id, u8 no_wait_flag)
  2349. {
  2350. dev_vdbg(ac->dev, "%s: pkt_size = %d, cmd_flg = %d, session = %d stream_id=%d\n",
  2351. __func__, pkt_size, cmd_flg, ac->session, stream_id);
  2352. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2353. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2354. APR_PKT_VER);
  2355. if (ac->apr == NULL) {
  2356. pr_err("%s: AC APR is NULL", __func__);
  2357. return;
  2358. }
  2359. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2360. hdr->src_domain = APR_DOMAIN_APPS;
  2361. hdr->dest_svc = APR_SVC_ASM;
  2362. hdr->dest_domain = APR_DOMAIN_ADSP;
  2363. hdr->src_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2364. hdr->dest_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2365. if (cmd_flg) {
  2366. q6asm_update_token(&hdr->token,
  2367. ac->session,
  2368. 0, /* Stream ID is NA */
  2369. 0, /* Buffer index is NA */
  2370. 0, /* Direction flag is NA */
  2371. no_wait_flag);
  2372. }
  2373. hdr->pkt_size = pkt_size;
  2374. }
  2375. static void q6asm_add_hdr_async(struct audio_client *ac, struct apr_hdr *hdr,
  2376. uint32_t pkt_size, uint32_t cmd_flg)
  2377. {
  2378. __q6asm_add_hdr_async(ac, hdr, pkt_size, cmd_flg,
  2379. ac->stream_id, WAIT_CMD);
  2380. }
  2381. static void q6asm_stream_add_hdr_async(struct audio_client *ac,
  2382. struct apr_hdr *hdr, uint32_t pkt_size,
  2383. uint32_t cmd_flg, int32_t stream_id)
  2384. {
  2385. __q6asm_add_hdr_async(ac, hdr, pkt_size, cmd_flg,
  2386. stream_id, NO_WAIT_CMD);
  2387. }
  2388. static void q6asm_add_hdr_custom_topology(struct audio_client *ac,
  2389. struct apr_hdr *hdr,
  2390. uint32_t pkt_size)
  2391. {
  2392. pr_debug("%s: pkt_size=%d session=%d\n",
  2393. __func__, pkt_size, ac->session);
  2394. if (ac->apr == NULL) {
  2395. pr_err("%s: AC APR handle NULL\n", __func__);
  2396. return;
  2397. }
  2398. mutex_lock(&ac->cmd_lock);
  2399. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2400. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2401. APR_PKT_VER);
  2402. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2403. hdr->src_domain = APR_DOMAIN_APPS;
  2404. hdr->dest_svc = APR_SVC_ASM;
  2405. hdr->dest_domain = APR_DOMAIN_ADSP;
  2406. hdr->src_port = ((ac->session << 8) & 0xFF00) | 0x01;
  2407. hdr->dest_port = 0;
  2408. q6asm_update_token(&hdr->token,
  2409. ac->session,
  2410. 0, /* Stream ID is NA */
  2411. 0, /* Buffer index is NA */
  2412. 0, /* Direction flag is NA */
  2413. WAIT_CMD);
  2414. hdr->pkt_size = pkt_size;
  2415. mutex_unlock(&ac->cmd_lock);
  2416. }
  2417. static void q6asm_add_mmaphdr(struct audio_client *ac, struct apr_hdr *hdr,
  2418. u32 pkt_size, int dir)
  2419. {
  2420. pr_debug("%s: pkt size=%d\n",
  2421. __func__, pkt_size);
  2422. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2423. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2424. hdr->src_port = 0;
  2425. hdr->dest_port = 0;
  2426. q6asm_update_token(&hdr->token,
  2427. ac->session,
  2428. 0, /* Stream ID is NA */
  2429. 0, /* Buffer index is NA */
  2430. dir,
  2431. WAIT_CMD);
  2432. hdr->pkt_size = pkt_size;
  2433. }
  2434. /**
  2435. * q6asm_set_pp_params
  2436. * command to set ASM parameter data
  2437. * send memory mapping header for out of band case
  2438. * send pre-packed parameter data for in band case
  2439. *
  2440. * @ac: audio client handle
  2441. * @mem_hdr: memory mapping header
  2442. * @param_data: pre-packed parameter payload
  2443. * @param_size: size of pre-packed parameter data
  2444. *
  2445. * Returns 0 on success or error on failure
  2446. */
  2447. int q6asm_set_pp_params(struct audio_client *ac,
  2448. struct mem_mapping_hdr *mem_hdr, u8 *param_data,
  2449. u32 param_size)
  2450. {
  2451. struct asm_stream_cmd_set_pp_params *asm_set_param = NULL;
  2452. int pkt_size = 0;
  2453. int ret = 0;
  2454. int session_id = 0;
  2455. if (ac == NULL) {
  2456. pr_err("%s: Audio Client is NULL\n", __func__);
  2457. return -EINVAL;
  2458. } else if (ac->apr == NULL) {
  2459. pr_err("%s: APR pointer is NULL\n", __func__);
  2460. return -EINVAL;
  2461. }
  2462. session_id = q6asm_get_session_id_from_audio_client(ac);
  2463. if (!session_id)
  2464. return -EINVAL;
  2465. pkt_size = sizeof(struct asm_stream_cmd_set_pp_params);
  2466. /* Add param size to packet size when sending in-band only */
  2467. if (param_data != NULL)
  2468. pkt_size += param_size;
  2469. asm_set_param = kzalloc(pkt_size, GFP_KERNEL);
  2470. if (!asm_set_param)
  2471. return -ENOMEM;
  2472. mutex_lock(&session[session_id].mutex_lock_per_session);
  2473. if (!q6asm_is_valid_audio_client(ac)) {
  2474. ret = -EINVAL;
  2475. goto done;
  2476. }
  2477. if (ac->apr == NULL) {
  2478. pr_err("%s: AC APR handle NULL\n", __func__);
  2479. ret = -EINVAL;
  2480. goto done;
  2481. }
  2482. q6asm_add_hdr_async(ac, &asm_set_param->apr_hdr, pkt_size, TRUE);
  2483. /* With pre-packed data, only the opcode differs from V2 and V3. */
  2484. if (q6common_is_instance_id_supported())
  2485. asm_set_param->apr_hdr.opcode = ASM_STREAM_CMD_SET_PP_PARAMS_V3;
  2486. else
  2487. asm_set_param->apr_hdr.opcode = ASM_STREAM_CMD_SET_PP_PARAMS_V2;
  2488. asm_set_param->payload_size = param_size;
  2489. if (mem_hdr != NULL) {
  2490. /* Out of band case */
  2491. asm_set_param->mem_hdr = *mem_hdr;
  2492. } else if (param_data != NULL) {
  2493. /*
  2494. * In band case. Parameter data must be pre-packed with its
  2495. * header before calling this function. Use
  2496. * q6common_pack_pp_params to pack parameter data and header
  2497. * correctly.
  2498. */
  2499. memcpy(&asm_set_param->param_data, param_data, param_size);
  2500. } else {
  2501. pr_err("%s: Received NULL pointers for both mem header and param data\n",
  2502. __func__);
  2503. ret = -EINVAL;
  2504. goto done;
  2505. }
  2506. atomic_set(&ac->cmd_state_pp, -1);
  2507. ret = apr_send_pkt(ac->apr, (uint32_t *)asm_set_param);
  2508. if (ret < 0) {
  2509. pr_err("%s: apr send failed rc %d\n", __func__, ret);
  2510. ret = -EINVAL;
  2511. goto done;
  2512. }
  2513. ret = wait_event_timeout(ac->cmd_wait,
  2514. atomic_read(&ac->cmd_state_pp) >= 0,
  2515. msecs_to_jiffies(TIMEOUT_MS));
  2516. if (!ret) {
  2517. pr_err("%s: timeout sending apr pkt\n", __func__);
  2518. ret = -ETIMEDOUT;
  2519. goto done;
  2520. }
  2521. if (atomic_read(&ac->cmd_state_pp) > 0) {
  2522. pr_err("%s: DSP returned error[%s]\n", __func__,
  2523. adsp_err_get_err_str(atomic_read(&ac->cmd_state_pp)));
  2524. ret = adsp_err_get_lnx_err_code(atomic_read(&ac->cmd_state_pp));
  2525. goto done;
  2526. }
  2527. ret = 0;
  2528. done:
  2529. mutex_unlock(&session[session_id].mutex_lock_per_session);
  2530. kfree(asm_set_param);
  2531. return ret;
  2532. }
  2533. EXPORT_SYMBOL(q6asm_set_pp_params);
  2534. /**
  2535. * q6asm_pack_and_set_pp_param_in_band
  2536. * command to pack and set parameter data for in band case
  2537. *
  2538. * @ac: audio client handle
  2539. * @param_hdr: parameter header
  2540. * @param_data: parameter data
  2541. *
  2542. * Returns 0 on success or error on failure
  2543. */
  2544. int q6asm_pack_and_set_pp_param_in_band(struct audio_client *ac,
  2545. struct param_hdr_v3 param_hdr,
  2546. u8 *param_data)
  2547. {
  2548. u8 *packed_data = NULL;
  2549. u32 packed_size = sizeof(union param_hdrs) + param_hdr.param_size;
  2550. int ret = 0;
  2551. if (ac == NULL) {
  2552. pr_err("%s: Audio Client is NULL\n", __func__);
  2553. return -EINVAL;
  2554. }
  2555. packed_data = kzalloc(packed_size, GFP_KERNEL);
  2556. if (packed_data == NULL)
  2557. return -ENOMEM;
  2558. ret = q6common_pack_pp_params(packed_data, &param_hdr, param_data,
  2559. &packed_size);
  2560. if (ret) {
  2561. pr_err("%s: Failed to pack params, error %d\n", __func__, ret);
  2562. goto done;
  2563. }
  2564. ret = q6asm_set_pp_params(ac, NULL, packed_data, packed_size);
  2565. done:
  2566. kfree(packed_data);
  2567. return ret;
  2568. }
  2569. EXPORT_SYMBOL(q6asm_pack_and_set_pp_param_in_band);
  2570. /**
  2571. * q6asm_set_soft_volume_module_instance_ids
  2572. * command to set module and instance ids for soft volume
  2573. *
  2574. * @instance: soft volume instance
  2575. * @param_hdr: parameter header
  2576. *
  2577. * Returns 0 on success or error on failure
  2578. */
  2579. int q6asm_set_soft_volume_module_instance_ids(int instance,
  2580. struct param_hdr_v3 *param_hdr)
  2581. {
  2582. if (param_hdr == NULL) {
  2583. pr_err("%s: Param header is NULL\n", __func__);
  2584. return -EINVAL;
  2585. }
  2586. switch (instance) {
  2587. case SOFT_VOLUME_INSTANCE_2:
  2588. param_hdr->module_id = ASM_MODULE_ID_VOL_CTRL2;
  2589. param_hdr->instance_id = INSTANCE_ID_0;
  2590. return 0;
  2591. case SOFT_VOLUME_INSTANCE_1:
  2592. param_hdr->module_id = ASM_MODULE_ID_VOL_CTRL;
  2593. param_hdr->instance_id = INSTANCE_ID_0;
  2594. return 0;
  2595. default:
  2596. pr_err("%s: Invalid instance %d\n", __func__, instance);
  2597. return -EINVAL;
  2598. }
  2599. }
  2600. EXPORT_SYMBOL(q6asm_set_soft_volume_module_instance_ids);
  2601. /**
  2602. * q6asm_open_read_compressed -
  2603. * command to open ASM in compressed read mode
  2604. *
  2605. * @ac: Audio client handle
  2606. * @format: capture format for ASM
  2607. * @passthrough_flag: flag to indicate passthrough option
  2608. *
  2609. * Returns 0 on success or error on failure
  2610. */
  2611. int q6asm_open_read_compressed(struct audio_client *ac, uint32_t format,
  2612. uint32_t passthrough_flag)
  2613. {
  2614. int rc = 0;
  2615. struct asm_stream_cmd_open_read_compressed open;
  2616. if (ac == NULL) {
  2617. pr_err("%s: ac[%pK] NULL\n", __func__, ac);
  2618. rc = -EINVAL;
  2619. goto fail_cmd;
  2620. }
  2621. if (ac->apr == NULL) {
  2622. pr_err("%s: APR handle[%pK] NULL\n", __func__, ac->apr);
  2623. rc = -EINVAL;
  2624. goto fail_cmd;
  2625. }
  2626. pr_debug("%s: session[%d] wr_format[0x%x]\n", __func__, ac->session,
  2627. format);
  2628. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  2629. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READ_COMPRESSED;
  2630. atomic_set(&ac->cmd_state, -1);
  2631. /*
  2632. * Below flag indicates whether DSP shall keep IEC61937 packing or
  2633. * unpack to raw compressed format
  2634. */
  2635. if (format == FORMAT_IEC61937) {
  2636. open.mode_flags = 0x1;
  2637. pr_debug("%s: Flag 1 IEC61937 output\n", __func__);
  2638. } else {
  2639. open.mode_flags = 0;
  2640. open.frames_per_buf = 1;
  2641. pr_debug("%s: Flag 0 RAW_COMPR output\n", __func__);
  2642. }
  2643. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  2644. if (rc < 0) {
  2645. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  2646. __func__, open.hdr.opcode, rc);
  2647. rc = -EINVAL;
  2648. goto fail_cmd;
  2649. }
  2650. rc = wait_event_timeout(ac->cmd_wait,
  2651. (atomic_read(&ac->cmd_state) >= 0),
  2652. msecs_to_jiffies(TIMEOUT_MS));
  2653. if (!rc) {
  2654. pr_err("%s: timeout. waited for OPEN_READ_COMPR rc[%d]\n",
  2655. __func__, rc);
  2656. rc = -ETIMEDOUT;
  2657. goto fail_cmd;
  2658. }
  2659. if (atomic_read(&ac->cmd_state) > 0) {
  2660. pr_err("%s: DSP returned error[%s]\n",
  2661. __func__, adsp_err_get_err_str(
  2662. atomic_read(&ac->cmd_state)));
  2663. rc = adsp_err_get_lnx_err_code(
  2664. atomic_read(&ac->cmd_state));
  2665. goto fail_cmd;
  2666. }
  2667. return 0;
  2668. fail_cmd:
  2669. return rc;
  2670. }
  2671. EXPORT_SYMBOL(q6asm_open_read_compressed);
  2672. static int __q6asm_open_read(struct audio_client *ac,
  2673. uint32_t format, uint16_t bits_per_sample,
  2674. uint32_t pcm_format_block_ver,
  2675. bool ts_mode, uint32_t enc_cfg_id)
  2676. {
  2677. int rc = 0x00;
  2678. struct asm_stream_cmd_open_read_v3 open;
  2679. struct q6asm_cal_info cal_info;
  2680. config_debug_fs_reset_index();
  2681. if (ac == NULL) {
  2682. pr_err("%s: APR handle NULL\n", __func__);
  2683. return -EINVAL;
  2684. }
  2685. if (ac->apr == NULL) {
  2686. pr_err("%s: AC APR handle NULL\n", __func__);
  2687. return -EINVAL;
  2688. }
  2689. pr_debug("%s: session[%d]\n", __func__, ac->session);
  2690. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  2691. atomic_set(&ac->cmd_state, -1);
  2692. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READ_V3;
  2693. /* Stream prio : High, provide meta info with encoded frames */
  2694. open.src_endpointype = ASM_END_POINT_DEVICE_MATRIX;
  2695. rc = q6asm_get_asm_topology_apptype(&cal_info);
  2696. open.preprocopo_id = cal_info.topology_id;
  2697. open.bits_per_sample = bits_per_sample;
  2698. open.mode_flags = 0x0;
  2699. ac->topology = open.preprocopo_id;
  2700. ac->app_type = cal_info.app_type;
  2701. if (ac->perf_mode == LOW_LATENCY_PCM_MODE) {
  2702. open.mode_flags |= ASM_LOW_LATENCY_TX_STREAM_SESSION <<
  2703. ASM_SHIFT_STREAM_PERF_MODE_FLAG_IN_OPEN_READ;
  2704. } else {
  2705. open.mode_flags |= ASM_LEGACY_STREAM_SESSION <<
  2706. ASM_SHIFT_STREAM_PERF_MODE_FLAG_IN_OPEN_READ;
  2707. }
  2708. switch (format) {
  2709. case FORMAT_LINEAR_PCM:
  2710. open.mode_flags |= 0x00;
  2711. open.enc_cfg_id = q6asm_get_pcm_format_id(pcm_format_block_ver);
  2712. if (ts_mode)
  2713. open.mode_flags |= ABSOLUTE_TIMESTAMP_ENABLE;
  2714. break;
  2715. case FORMAT_MPEG4_AAC:
  2716. open.mode_flags |= BUFFER_META_ENABLE;
  2717. open.enc_cfg_id = ASM_MEDIA_FMT_AAC_V2;
  2718. break;
  2719. case FORMAT_G711_ALAW_FS:
  2720. open.mode_flags |= BUFFER_META_ENABLE;
  2721. open.enc_cfg_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  2722. break;
  2723. case FORMAT_G711_MLAW_FS:
  2724. open.mode_flags |= BUFFER_META_ENABLE;
  2725. open.enc_cfg_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  2726. break;
  2727. case FORMAT_V13K:
  2728. open.mode_flags |= BUFFER_META_ENABLE;
  2729. open.enc_cfg_id = ASM_MEDIA_FMT_V13K_FS;
  2730. break;
  2731. case FORMAT_EVRC:
  2732. open.mode_flags |= BUFFER_META_ENABLE;
  2733. open.enc_cfg_id = ASM_MEDIA_FMT_EVRC_FS;
  2734. break;
  2735. case FORMAT_AMRNB:
  2736. open.mode_flags |= BUFFER_META_ENABLE;
  2737. open.enc_cfg_id = ASM_MEDIA_FMT_AMRNB_FS;
  2738. break;
  2739. case FORMAT_AMRWB:
  2740. open.mode_flags |= BUFFER_META_ENABLE;
  2741. open.enc_cfg_id = ASM_MEDIA_FMT_AMRWB_FS;
  2742. break;
  2743. case FORMAT_BESPOKE:
  2744. open.mode_flags |= BUFFER_META_ENABLE;
  2745. open.enc_cfg_id = enc_cfg_id;
  2746. if (ts_mode)
  2747. open.mode_flags |= ABSOLUTE_TIMESTAMP_ENABLE;
  2748. break;
  2749. default:
  2750. pr_err("%s: Invalid format 0x%x\n",
  2751. __func__, format);
  2752. rc = -EINVAL;
  2753. goto fail_cmd;
  2754. }
  2755. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  2756. if (rc < 0) {
  2757. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  2758. __func__, open.hdr.opcode, rc);
  2759. rc = -EINVAL;
  2760. goto fail_cmd;
  2761. }
  2762. rc = wait_event_timeout(ac->cmd_wait,
  2763. (atomic_read(&ac->cmd_state) >= 0),
  2764. msecs_to_jiffies(TIMEOUT_MS));
  2765. if (!rc) {
  2766. pr_err("%s: timeout. waited for open read\n",
  2767. __func__);
  2768. rc = -ETIMEDOUT;
  2769. goto fail_cmd;
  2770. }
  2771. if (atomic_read(&ac->cmd_state) > 0) {
  2772. pr_err("%s: DSP returned error[%s]\n",
  2773. __func__, adsp_err_get_err_str(
  2774. atomic_read(&ac->cmd_state)));
  2775. rc = adsp_err_get_lnx_err_code(
  2776. atomic_read(&ac->cmd_state));
  2777. goto fail_cmd;
  2778. }
  2779. ac->io_mode |= TUN_READ_IO_MODE;
  2780. return 0;
  2781. fail_cmd:
  2782. return rc;
  2783. }
  2784. /**
  2785. * q6asm_open_read -
  2786. * command to open ASM in read mode
  2787. *
  2788. * @ac: Audio client handle
  2789. * @format: capture format for ASM
  2790. *
  2791. * Returns 0 on success or error on failure
  2792. */
  2793. int q6asm_open_read(struct audio_client *ac,
  2794. uint32_t format)
  2795. {
  2796. return __q6asm_open_read(ac, format, 16,
  2797. PCM_MEDIA_FORMAT_V2 /*media fmt block ver*/,
  2798. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2799. }
  2800. EXPORT_SYMBOL(q6asm_open_read);
  2801. int q6asm_open_read_v2(struct audio_client *ac, uint32_t format,
  2802. uint16_t bits_per_sample)
  2803. {
  2804. return __q6asm_open_read(ac, format, bits_per_sample,
  2805. PCM_MEDIA_FORMAT_V2 /*media fmt block ver*/,
  2806. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2807. }
  2808. /*
  2809. * asm_open_read_v3 - Opens audio capture session
  2810. *
  2811. * @ac: Client session handle
  2812. * @format: encoder format
  2813. * @bits_per_sample: bit width of capture session
  2814. */
  2815. int q6asm_open_read_v3(struct audio_client *ac, uint32_t format,
  2816. uint16_t bits_per_sample)
  2817. {
  2818. return __q6asm_open_read(ac, format, bits_per_sample,
  2819. PCM_MEDIA_FORMAT_V3/*media fmt block ver*/,
  2820. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2821. }
  2822. EXPORT_SYMBOL(q6asm_open_read_v3);
  2823. /*
  2824. * asm_open_read_v4 - Opens audio capture session
  2825. *
  2826. * @ac: Client session handle
  2827. * @format: encoder format
  2828. * @bits_per_sample: bit width of capture session
  2829. * @ts_mode: timestamp mode
  2830. */
  2831. int q6asm_open_read_v4(struct audio_client *ac, uint32_t format,
  2832. uint16_t bits_per_sample, bool ts_mode,
  2833. uint32_t enc_cfg_id)
  2834. {
  2835. return __q6asm_open_read(ac, format, bits_per_sample,
  2836. PCM_MEDIA_FORMAT_V4 /*media fmt block ver*/,
  2837. ts_mode, enc_cfg_id);
  2838. }
  2839. EXPORT_SYMBOL(q6asm_open_read_v4);
  2840. /*
  2841. * asm_open_read_v5 - Opens audio capture session
  2842. *
  2843. * @ac: Client session handle
  2844. * @format: encoder format
  2845. * @bits_per_sample: bit width of capture session
  2846. * @ts_mode: timestamp mode
  2847. */
  2848. int q6asm_open_read_v5(struct audio_client *ac, uint32_t format,
  2849. uint16_t bits_per_sample, bool ts_mode, uint32_t enc_cfg_id)
  2850. {
  2851. return __q6asm_open_read(ac, format, bits_per_sample,
  2852. PCM_MEDIA_FORMAT_V5 /*media fmt block ver*/,
  2853. ts_mode, enc_cfg_id);
  2854. }
  2855. EXPORT_SYMBOL(q6asm_open_read_v5);
  2856. /**
  2857. * q6asm_open_write_compressed -
  2858. * command to open ASM in compressed write mode
  2859. *
  2860. * @ac: Audio client handle
  2861. * @format: playback format for ASM
  2862. * @passthrough_flag: flag to indicate passthrough option
  2863. *
  2864. * Returns 0 on success or error on failure
  2865. */
  2866. int q6asm_open_write_compressed(struct audio_client *ac, uint32_t format,
  2867. uint32_t passthrough_flag)
  2868. {
  2869. int rc = 0;
  2870. struct asm_stream_cmd_open_write_compressed open;
  2871. if (ac == NULL) {
  2872. pr_err("%s: ac[%pK] NULL\n", __func__, ac);
  2873. rc = -EINVAL;
  2874. goto fail_cmd;
  2875. }
  2876. if (ac->apr == NULL) {
  2877. pr_err("%s: APR handle[%pK] NULL\n", __func__, ac->apr);
  2878. rc = -EINVAL;
  2879. goto fail_cmd;
  2880. }
  2881. pr_debug("%s: session[%d] wr_format[0x%x]", __func__, ac->session,
  2882. format);
  2883. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  2884. open.hdr.opcode = ASM_STREAM_CMD_OPEN_WRITE_COMPRESSED;
  2885. atomic_set(&ac->cmd_state, -1);
  2886. switch (format) {
  2887. case FORMAT_AC3:
  2888. open.fmt_id = ASM_MEDIA_FMT_AC3;
  2889. break;
  2890. case FORMAT_EAC3:
  2891. open.fmt_id = ASM_MEDIA_FMT_EAC3;
  2892. break;
  2893. case FORMAT_DTS:
  2894. open.fmt_id = ASM_MEDIA_FMT_DTS;
  2895. break;
  2896. case FORMAT_DSD:
  2897. open.fmt_id = ASM_MEDIA_FMT_DSD;
  2898. break;
  2899. case FORMAT_GEN_COMPR:
  2900. open.fmt_id = ASM_MEDIA_FMT_GENERIC_COMPRESSED;
  2901. break;
  2902. case FORMAT_TRUEHD:
  2903. open.fmt_id = ASM_MEDIA_FMT_TRUEHD;
  2904. break;
  2905. case FORMAT_IEC61937:
  2906. open.fmt_id = ASM_MEDIA_FMT_IEC;
  2907. break;
  2908. default:
  2909. pr_err("%s: Invalid format[%d]\n", __func__, format);
  2910. rc = -EINVAL;
  2911. goto fail_cmd;
  2912. }
  2913. /* Below flag indicates the DSP that Compressed audio input
  2914. * stream is not IEC 61937 or IEC 60958 packetizied
  2915. */
  2916. if (passthrough_flag == COMPRESSED_PASSTHROUGH ||
  2917. passthrough_flag == COMPRESSED_PASSTHROUGH_DSD ||
  2918. passthrough_flag == COMPRESSED_PASSTHROUGH_GEN) {
  2919. open.flags = 0x0;
  2920. pr_debug("%s: Flag 0 COMPRESSED_PASSTHROUGH\n", __func__);
  2921. } else if (passthrough_flag == COMPRESSED_PASSTHROUGH_CONVERT) {
  2922. open.flags = 0x8;
  2923. pr_debug("%s: Flag 8 - COMPRESSED_PASSTHROUGH_CONVERT\n",
  2924. __func__);
  2925. } else if (passthrough_flag == COMPRESSED_PASSTHROUGH_IEC61937) {
  2926. open.flags = 0x1;
  2927. pr_debug("%s: Flag 1 - COMPRESSED_PASSTHROUGH_IEC61937\n",
  2928. __func__);
  2929. } else {
  2930. pr_err("%s: Invalid passthrough type[%d]\n",
  2931. __func__, passthrough_flag);
  2932. rc = -EINVAL;
  2933. goto fail_cmd;
  2934. }
  2935. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  2936. if (rc < 0) {
  2937. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  2938. __func__, open.hdr.opcode, rc);
  2939. rc = -EINVAL;
  2940. goto fail_cmd;
  2941. }
  2942. rc = wait_event_timeout(ac->cmd_wait,
  2943. (atomic_read(&ac->cmd_state) >= 0),
  2944. msecs_to_jiffies(TIMEOUT_MS));
  2945. if (!rc) {
  2946. pr_err("%s: timeout. waited for OPEN_WRITE_COMPR rc[%d]\n",
  2947. __func__, rc);
  2948. rc = -ETIMEDOUT;
  2949. goto fail_cmd;
  2950. }
  2951. if (atomic_read(&ac->cmd_state) > 0) {
  2952. pr_err("%s: DSP returned error[%s]\n",
  2953. __func__, adsp_err_get_err_str(
  2954. atomic_read(&ac->cmd_state)));
  2955. rc = adsp_err_get_lnx_err_code(
  2956. atomic_read(&ac->cmd_state));
  2957. goto fail_cmd;
  2958. }
  2959. return 0;
  2960. fail_cmd:
  2961. return rc;
  2962. }
  2963. EXPORT_SYMBOL(q6asm_open_write_compressed);
  2964. static int __q6asm_open_write(struct audio_client *ac, uint32_t format,
  2965. uint16_t bits_per_sample, uint32_t stream_id,
  2966. bool is_gapless_mode,
  2967. uint32_t pcm_format_block_ver)
  2968. {
  2969. int rc = 0x00;
  2970. struct asm_stream_cmd_open_write_v3 open;
  2971. struct q6asm_cal_info cal_info;
  2972. if (ac == NULL) {
  2973. pr_err("%s: APR handle NULL\n", __func__);
  2974. return -EINVAL;
  2975. }
  2976. if (ac->apr == NULL) {
  2977. pr_err("%s: AC APR handle NULL\n", __func__);
  2978. return -EINVAL;
  2979. }
  2980. dev_vdbg(ac->dev, "%s: session[%d] wr_format[0x%x]\n",
  2981. __func__, ac->session, format);
  2982. q6asm_stream_add_hdr(ac, &open.hdr, sizeof(open), TRUE, stream_id);
  2983. atomic_set(&ac->cmd_state, -1);
  2984. /*
  2985. * Updated the token field with stream/session for compressed playback
  2986. * Platform driver must know the the stream with which the command is
  2987. * associated
  2988. */
  2989. if (ac->io_mode & COMPRESSED_STREAM_IO)
  2990. q6asm_update_token(&open.hdr.token,
  2991. ac->session,
  2992. stream_id,
  2993. 0, /* Buffer index is NA */
  2994. 0, /* Direction flag is NA */
  2995. WAIT_CMD);
  2996. dev_vdbg(ac->dev, "%s: token = 0x%x, stream_id %d, session 0x%x\n",
  2997. __func__, open.hdr.token, stream_id, ac->session);
  2998. open.hdr.opcode = ASM_STREAM_CMD_OPEN_WRITE_V3;
  2999. open.mode_flags = 0x00;
  3000. if (ac->perf_mode == ULL_POST_PROCESSING_PCM_MODE)
  3001. open.mode_flags |= ASM_ULL_POST_PROCESSING_STREAM_SESSION;
  3002. else if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE)
  3003. open.mode_flags |= ASM_ULTRA_LOW_LATENCY_STREAM_SESSION;
  3004. else if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3005. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3006. else {
  3007. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3008. if (is_gapless_mode)
  3009. open.mode_flags |= 1 << ASM_SHIFT_GAPLESS_MODE_FLAG;
  3010. }
  3011. /* source endpoint : matrix */
  3012. open.sink_endpointype = ASM_END_POINT_DEVICE_MATRIX;
  3013. open.bits_per_sample = bits_per_sample;
  3014. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3015. open.postprocopo_id = cal_info.topology_id;
  3016. if (ac->perf_mode != LEGACY_PCM_MODE)
  3017. open.postprocopo_id = ASM_STREAM_POSTPROCOPO_ID_NONE;
  3018. pr_debug("%s: perf_mode %d asm_topology 0x%x bps %d\n", __func__,
  3019. ac->perf_mode, open.postprocopo_id, open.bits_per_sample);
  3020. /*
  3021. * For Gapless playback it will use the same session for next stream,
  3022. * So use the same topology
  3023. */
  3024. if (!ac->topology) {
  3025. ac->topology = open.postprocopo_id;
  3026. ac->app_type = cal_info.app_type;
  3027. }
  3028. switch (format) {
  3029. case FORMAT_LINEAR_PCM:
  3030. open.dec_fmt_id = q6asm_get_pcm_format_id(pcm_format_block_ver);
  3031. break;
  3032. case FORMAT_MPEG4_AAC:
  3033. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3034. break;
  3035. case FORMAT_MPEG4_MULTI_AAC:
  3036. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3037. break;
  3038. case FORMAT_WMA_V9:
  3039. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V9_V2;
  3040. break;
  3041. case FORMAT_WMA_V10PRO:
  3042. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V10PRO_V2;
  3043. break;
  3044. case FORMAT_MP3:
  3045. open.dec_fmt_id = ASM_MEDIA_FMT_MP3;
  3046. break;
  3047. case FORMAT_AC3:
  3048. open.dec_fmt_id = ASM_MEDIA_FMT_AC3;
  3049. break;
  3050. case FORMAT_EAC3:
  3051. open.dec_fmt_id = ASM_MEDIA_FMT_EAC3;
  3052. break;
  3053. case FORMAT_MP2:
  3054. open.dec_fmt_id = ASM_MEDIA_FMT_MP2;
  3055. break;
  3056. case FORMAT_FLAC:
  3057. open.dec_fmt_id = ASM_MEDIA_FMT_FLAC;
  3058. break;
  3059. case FORMAT_ALAC:
  3060. open.dec_fmt_id = ASM_MEDIA_FMT_ALAC;
  3061. break;
  3062. case FORMAT_VORBIS:
  3063. open.dec_fmt_id = ASM_MEDIA_FMT_VORBIS;
  3064. break;
  3065. case FORMAT_APE:
  3066. open.dec_fmt_id = ASM_MEDIA_FMT_APE;
  3067. break;
  3068. case FORMAT_DSD:
  3069. open.dec_fmt_id = ASM_MEDIA_FMT_DSD;
  3070. break;
  3071. case FORMAT_APTX:
  3072. open.dec_fmt_id = ASM_MEDIA_FMT_APTX;
  3073. break;
  3074. case FORMAT_GEN_COMPR:
  3075. open.dec_fmt_id = ASM_MEDIA_FMT_GENERIC_COMPRESSED;
  3076. break;
  3077. default:
  3078. pr_err("%s: Invalid format 0x%x\n", __func__, format);
  3079. rc = -EINVAL;
  3080. goto fail_cmd;
  3081. }
  3082. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3083. if (rc < 0) {
  3084. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3085. __func__, open.hdr.opcode, rc);
  3086. rc = -EINVAL;
  3087. goto fail_cmd;
  3088. }
  3089. rc = wait_event_timeout(ac->cmd_wait,
  3090. (atomic_read(&ac->cmd_state) >= 0),
  3091. msecs_to_jiffies(TIMEOUT_MS));
  3092. if (!rc) {
  3093. pr_err("%s: timeout. waited for open write\n", __func__);
  3094. rc = -ETIMEDOUT;
  3095. goto fail_cmd;
  3096. }
  3097. if (atomic_read(&ac->cmd_state) > 0) {
  3098. pr_err("%s: DSP returned error[%s]\n",
  3099. __func__, adsp_err_get_err_str(
  3100. atomic_read(&ac->cmd_state)));
  3101. rc = adsp_err_get_lnx_err_code(
  3102. atomic_read(&ac->cmd_state));
  3103. goto fail_cmd;
  3104. }
  3105. ac->io_mode |= TUN_WRITE_IO_MODE;
  3106. return 0;
  3107. fail_cmd:
  3108. return rc;
  3109. }
  3110. int q6asm_open_write(struct audio_client *ac, uint32_t format)
  3111. {
  3112. return __q6asm_open_write(ac, format, 16, ac->stream_id,
  3113. false /*gapless*/,
  3114. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3115. }
  3116. EXPORT_SYMBOL(q6asm_open_write);
  3117. int q6asm_open_write_v2(struct audio_client *ac, uint32_t format,
  3118. uint16_t bits_per_sample)
  3119. {
  3120. return __q6asm_open_write(ac, format, bits_per_sample,
  3121. ac->stream_id, false /*gapless*/,
  3122. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3123. }
  3124. /*
  3125. * q6asm_open_write_v3 - Opens audio playback session
  3126. *
  3127. * @ac: Client session handle
  3128. * @format: decoder format
  3129. * @bits_per_sample: bit width of playback session
  3130. */
  3131. int q6asm_open_write_v3(struct audio_client *ac, uint32_t format,
  3132. uint16_t bits_per_sample)
  3133. {
  3134. return __q6asm_open_write(ac, format, bits_per_sample,
  3135. ac->stream_id, false /*gapless*/,
  3136. PCM_MEDIA_FORMAT_V3 /*pcm_format_block_ver*/);
  3137. }
  3138. EXPORT_SYMBOL(q6asm_open_write_v3);
  3139. /*
  3140. * q6asm_open_write_v4 - Opens audio playback session
  3141. *
  3142. * @ac: Client session handle
  3143. * @format: decoder format
  3144. * @bits_per_sample: bit width of playback session
  3145. */
  3146. int q6asm_open_write_v4(struct audio_client *ac, uint32_t format,
  3147. uint16_t bits_per_sample)
  3148. {
  3149. return __q6asm_open_write(ac, format, bits_per_sample,
  3150. ac->stream_id, false /*gapless*/,
  3151. PCM_MEDIA_FORMAT_V4 /*pcm_format_block_ver*/);
  3152. }
  3153. EXPORT_SYMBOL(q6asm_open_write_v4);
  3154. int q6asm_stream_open_write_v2(struct audio_client *ac, uint32_t format,
  3155. uint16_t bits_per_sample, int32_t stream_id,
  3156. bool is_gapless_mode)
  3157. {
  3158. return __q6asm_open_write(ac, format, bits_per_sample,
  3159. stream_id, is_gapless_mode,
  3160. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3161. }
  3162. /*
  3163. * q6asm_stream_open_write_v3 - Creates audio stream for playback
  3164. *
  3165. * @ac: Client session handle
  3166. * @format: asm playback format
  3167. * @bits_per_sample: bit width of requested stream
  3168. * @stream_id: stream id of stream to be associated with this session
  3169. * @is_gapless_mode: true if gapless mode needs to be enabled
  3170. */
  3171. int q6asm_stream_open_write_v3(struct audio_client *ac, uint32_t format,
  3172. uint16_t bits_per_sample, int32_t stream_id,
  3173. bool is_gapless_mode)
  3174. {
  3175. return __q6asm_open_write(ac, format, bits_per_sample,
  3176. stream_id, is_gapless_mode,
  3177. PCM_MEDIA_FORMAT_V3 /*pcm_format_block_ver*/);
  3178. }
  3179. EXPORT_SYMBOL(q6asm_stream_open_write_v3);
  3180. /*
  3181. * q6asm_open_write_v5 - Opens audio playback session
  3182. *
  3183. * @ac: Client session handle
  3184. * @format: decoder format
  3185. * @bits_per_sample: bit width of playback session
  3186. */
  3187. int q6asm_open_write_v5(struct audio_client *ac, uint32_t format,
  3188. uint16_t bits_per_sample)
  3189. {
  3190. return __q6asm_open_write(ac, format, bits_per_sample,
  3191. ac->stream_id, false /*gapless*/,
  3192. PCM_MEDIA_FORMAT_V5 /*pcm_format_block_ver*/);
  3193. }
  3194. EXPORT_SYMBOL(q6asm_open_write_v5);
  3195. /*
  3196. * q6asm_stream_open_write_v4 - Creates audio stream for playback
  3197. *
  3198. * @ac: Client session handle
  3199. * @format: asm playback format
  3200. * @bits_per_sample: bit width of requested stream
  3201. * @stream_id: stream id of stream to be associated with this session
  3202. * @is_gapless_mode: true if gapless mode needs to be enabled
  3203. */
  3204. int q6asm_stream_open_write_v4(struct audio_client *ac, uint32_t format,
  3205. uint16_t bits_per_sample, int32_t stream_id,
  3206. bool is_gapless_mode)
  3207. {
  3208. return __q6asm_open_write(ac, format, bits_per_sample,
  3209. stream_id, is_gapless_mode,
  3210. PCM_MEDIA_FORMAT_V4 /*pcm_format_block_ver*/);
  3211. }
  3212. EXPORT_SYMBOL(q6asm_stream_open_write_v4);
  3213. /*
  3214. * q6asm_stream_open_write_v5 - Creates audio stream for playback
  3215. *
  3216. * @ac: Client session handle
  3217. * @format: asm playback format
  3218. * @bits_per_sample: bit width of requested stream
  3219. * @stream_id: stream id of stream to be associated with this session
  3220. * @is_gapless_mode: true if gapless mode needs to be enabled
  3221. */
  3222. int q6asm_stream_open_write_v5(struct audio_client *ac, uint32_t format,
  3223. uint16_t bits_per_sample, int32_t stream_id,
  3224. bool is_gapless_mode)
  3225. {
  3226. return __q6asm_open_write(ac, format, bits_per_sample,
  3227. stream_id, is_gapless_mode,
  3228. PCM_MEDIA_FORMAT_V5 /*pcm_format_block_ver*/);
  3229. }
  3230. EXPORT_SYMBOL(q6asm_stream_open_write_v5);
  3231. static int __q6asm_open_read_write(struct audio_client *ac, uint32_t rd_format,
  3232. uint32_t wr_format, bool is_meta_data_mode,
  3233. uint32_t bits_per_sample,
  3234. bool overwrite_topology, int topology)
  3235. {
  3236. int rc = 0x00;
  3237. struct asm_stream_cmd_open_readwrite_v2 open;
  3238. struct q6asm_cal_info cal_info;
  3239. if (ac == NULL) {
  3240. pr_err("%s: APR handle NULL\n", __func__);
  3241. return -EINVAL;
  3242. }
  3243. if (ac->apr == NULL) {
  3244. pr_err("%s: AC APR handle NULL\n", __func__);
  3245. return -EINVAL;
  3246. }
  3247. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3248. pr_debug("%s: wr_format[0x%x]rd_format[0x%x]\n",
  3249. __func__, wr_format, rd_format);
  3250. ac->io_mode |= NT_MODE;
  3251. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3252. atomic_set(&ac->cmd_state, -1);
  3253. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READWRITE_V2;
  3254. open.mode_flags = is_meta_data_mode ? BUFFER_META_ENABLE : 0;
  3255. open.bits_per_sample = bits_per_sample;
  3256. /* source endpoint : matrix */
  3257. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3258. open.postprocopo_id = cal_info.topology_id;
  3259. open.postprocopo_id = overwrite_topology ?
  3260. topology : open.postprocopo_id;
  3261. ac->topology = open.postprocopo_id;
  3262. ac->app_type = cal_info.app_type;
  3263. switch (wr_format) {
  3264. case FORMAT_LINEAR_PCM:
  3265. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3266. open.dec_fmt_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3267. break;
  3268. case FORMAT_MPEG4_AAC:
  3269. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3270. break;
  3271. case FORMAT_MPEG4_MULTI_AAC:
  3272. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3273. break;
  3274. case FORMAT_WMA_V9:
  3275. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V9_V2;
  3276. break;
  3277. case FORMAT_WMA_V10PRO:
  3278. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V10PRO_V2;
  3279. break;
  3280. case FORMAT_AMRNB:
  3281. open.dec_fmt_id = ASM_MEDIA_FMT_AMRNB_FS;
  3282. break;
  3283. case FORMAT_AMRWB:
  3284. open.dec_fmt_id = ASM_MEDIA_FMT_AMRWB_FS;
  3285. break;
  3286. case FORMAT_AMR_WB_PLUS:
  3287. open.dec_fmt_id = ASM_MEDIA_FMT_AMR_WB_PLUS_V2;
  3288. break;
  3289. case FORMAT_V13K:
  3290. open.dec_fmt_id = ASM_MEDIA_FMT_V13K_FS;
  3291. break;
  3292. case FORMAT_EVRC:
  3293. open.dec_fmt_id = ASM_MEDIA_FMT_EVRC_FS;
  3294. break;
  3295. case FORMAT_EVRCB:
  3296. open.dec_fmt_id = ASM_MEDIA_FMT_EVRCB_FS;
  3297. break;
  3298. case FORMAT_EVRCWB:
  3299. open.dec_fmt_id = ASM_MEDIA_FMT_EVRCWB_FS;
  3300. break;
  3301. case FORMAT_MP3:
  3302. open.dec_fmt_id = ASM_MEDIA_FMT_MP3;
  3303. break;
  3304. case FORMAT_ALAC:
  3305. open.dec_fmt_id = ASM_MEDIA_FMT_ALAC;
  3306. break;
  3307. case FORMAT_APE:
  3308. open.dec_fmt_id = ASM_MEDIA_FMT_APE;
  3309. break;
  3310. case FORMAT_DSD:
  3311. open.dec_fmt_id = ASM_MEDIA_FMT_DSD;
  3312. break;
  3313. case FORMAT_G711_ALAW_FS:
  3314. open.dec_fmt_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  3315. break;
  3316. case FORMAT_G711_MLAW_FS:
  3317. open.dec_fmt_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  3318. break;
  3319. default:
  3320. pr_err("%s: Invalid format 0x%x\n",
  3321. __func__, wr_format);
  3322. rc = -EINVAL;
  3323. goto fail_cmd;
  3324. }
  3325. switch (rd_format) {
  3326. case FORMAT_LINEAR_PCM:
  3327. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3328. open.enc_cfg_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3329. break;
  3330. case FORMAT_MPEG4_AAC:
  3331. open.enc_cfg_id = ASM_MEDIA_FMT_AAC_V2;
  3332. break;
  3333. case FORMAT_G711_ALAW_FS:
  3334. open.enc_cfg_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  3335. break;
  3336. case FORMAT_G711_MLAW_FS:
  3337. open.enc_cfg_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  3338. break;
  3339. case FORMAT_V13K:
  3340. open.enc_cfg_id = ASM_MEDIA_FMT_V13K_FS;
  3341. break;
  3342. case FORMAT_EVRC:
  3343. open.enc_cfg_id = ASM_MEDIA_FMT_EVRC_FS;
  3344. break;
  3345. case FORMAT_AMRNB:
  3346. open.enc_cfg_id = ASM_MEDIA_FMT_AMRNB_FS;
  3347. break;
  3348. case FORMAT_AMRWB:
  3349. open.enc_cfg_id = ASM_MEDIA_FMT_AMRWB_FS;
  3350. break;
  3351. case FORMAT_ALAC:
  3352. open.enc_cfg_id = ASM_MEDIA_FMT_ALAC;
  3353. break;
  3354. case FORMAT_APE:
  3355. open.enc_cfg_id = ASM_MEDIA_FMT_APE;
  3356. break;
  3357. default:
  3358. pr_err("%s: Invalid format 0x%x\n",
  3359. __func__, rd_format);
  3360. rc = -EINVAL;
  3361. goto fail_cmd;
  3362. }
  3363. dev_vdbg(ac->dev, "%s: rdformat[0x%x]wrformat[0x%x]\n", __func__,
  3364. open.enc_cfg_id, open.dec_fmt_id);
  3365. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3366. if (rc < 0) {
  3367. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3368. __func__, open.hdr.opcode, rc);
  3369. rc = -EINVAL;
  3370. goto fail_cmd;
  3371. }
  3372. rc = wait_event_timeout(ac->cmd_wait,
  3373. (atomic_read(&ac->cmd_state) >= 0),
  3374. msecs_to_jiffies(TIMEOUT_MS));
  3375. if (!rc) {
  3376. pr_err("%s: timeout. waited for open read-write\n",
  3377. __func__);
  3378. rc = -ETIMEDOUT;
  3379. goto fail_cmd;
  3380. }
  3381. if (atomic_read(&ac->cmd_state) > 0) {
  3382. pr_err("%s: DSP returned error[%s]\n",
  3383. __func__, adsp_err_get_err_str(
  3384. atomic_read(&ac->cmd_state)));
  3385. rc = adsp_err_get_lnx_err_code(
  3386. atomic_read(&ac->cmd_state));
  3387. goto fail_cmd;
  3388. }
  3389. return 0;
  3390. fail_cmd:
  3391. return rc;
  3392. }
  3393. /**
  3394. * q6asm_open_read_write -
  3395. * command to open ASM in read/write mode
  3396. *
  3397. * @ac: Audio client handle
  3398. * @rd_format: capture format for ASM
  3399. * @wr_format: playback format for ASM
  3400. *
  3401. * Returns 0 on success or error on failure
  3402. */
  3403. int q6asm_open_read_write(struct audio_client *ac, uint32_t rd_format,
  3404. uint32_t wr_format)
  3405. {
  3406. return __q6asm_open_read_write(ac, rd_format, wr_format,
  3407. true/*meta data mode*/,
  3408. 16 /*bits_per_sample*/,
  3409. false /*overwrite_topology*/, 0);
  3410. }
  3411. EXPORT_SYMBOL(q6asm_open_read_write);
  3412. /**
  3413. * q6asm_open_read_write_v2 -
  3414. * command to open ASM in bi-directional read/write mode
  3415. *
  3416. * @ac: Audio client handle
  3417. * @rd_format: capture format for ASM
  3418. * @wr_format: playback format for ASM
  3419. * @is_meta_data_mode: mode to indicate if meta data present
  3420. * @bits_per_sample: number of bits per sample
  3421. * @overwrite_topology: topology to be overwritten flag
  3422. * @topology: Topology for ASM
  3423. *
  3424. * Returns 0 on success or error on failure
  3425. */
  3426. int q6asm_open_read_write_v2(struct audio_client *ac, uint32_t rd_format,
  3427. uint32_t wr_format, bool is_meta_data_mode,
  3428. uint32_t bits_per_sample, bool overwrite_topology,
  3429. int topology)
  3430. {
  3431. return __q6asm_open_read_write(ac, rd_format, wr_format,
  3432. is_meta_data_mode, bits_per_sample,
  3433. overwrite_topology, topology);
  3434. }
  3435. EXPORT_SYMBOL(q6asm_open_read_write_v2);
  3436. /**
  3437. * q6asm_open_loopback_v2 -
  3438. * command to open ASM in loopback mode
  3439. *
  3440. * @ac: Audio client handle
  3441. * @bits_per_sample: number of bits per sample
  3442. *
  3443. * Returns 0 on success or error on failure
  3444. */
  3445. int q6asm_open_loopback_v2(struct audio_client *ac, uint16_t bits_per_sample)
  3446. {
  3447. int rc = 0x00;
  3448. struct q6asm_cal_info cal_info;
  3449. if (ac == NULL) {
  3450. pr_err("%s: APR handle NULL\n", __func__);
  3451. return -EINVAL;
  3452. }
  3453. if (ac->apr == NULL) {
  3454. pr_err("%s: AC APR handle NULL\n", __func__);
  3455. return -EINVAL;
  3456. }
  3457. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3458. if (ac->perf_mode == LOW_LATENCY_PCM_MODE) {
  3459. struct asm_stream_cmd_open_transcode_loopback_t open;
  3460. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3461. atomic_set(&ac->cmd_state, -1);
  3462. open.hdr.opcode = ASM_STREAM_CMD_OPEN_TRANSCODE_LOOPBACK;
  3463. open.mode_flags = 0;
  3464. open.src_endpoint_type = 0;
  3465. open.sink_endpoint_type = 0;
  3466. open.src_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3467. open.sink_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3468. /* source endpoint : matrix */
  3469. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3470. open.audproc_topo_id = cal_info.topology_id;
  3471. ac->app_type = cal_info.app_type;
  3472. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3473. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3474. else
  3475. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3476. ac->topology = open.audproc_topo_id;
  3477. open.bits_per_sample = bits_per_sample;
  3478. open.reserved = 0;
  3479. pr_debug("%s: opening a transcode_loopback with mode_flags =[%d] session[%d]\n",
  3480. __func__, open.mode_flags, ac->session);
  3481. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3482. if (rc < 0) {
  3483. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3484. __func__, open.hdr.opcode, rc);
  3485. rc = -EINVAL;
  3486. goto fail_cmd;
  3487. }
  3488. } else {/*if(ac->perf_mode == LEGACY_PCM_MODE)*/
  3489. struct asm_stream_cmd_open_loopback_v2 open;
  3490. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3491. atomic_set(&ac->cmd_state, -1);
  3492. open.hdr.opcode = ASM_STREAM_CMD_OPEN_LOOPBACK_V2;
  3493. open.mode_flags = 0;
  3494. open.src_endpointype = 0;
  3495. open.sink_endpointype = 0;
  3496. /* source endpoint : matrix */
  3497. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3498. open.postprocopo_id = cal_info.topology_id;
  3499. ac->app_type = cal_info.app_type;
  3500. ac->topology = open.postprocopo_id;
  3501. open.bits_per_sample = bits_per_sample;
  3502. open.reserved = 0;
  3503. pr_debug("%s: opening a loopback_v2 with mode_flags =[%d] session[%d]\n",
  3504. __func__, open.mode_flags, ac->session);
  3505. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3506. if (rc < 0) {
  3507. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3508. __func__, open.hdr.opcode, rc);
  3509. rc = -EINVAL;
  3510. goto fail_cmd;
  3511. }
  3512. }
  3513. rc = wait_event_timeout(ac->cmd_wait,
  3514. (atomic_read(&ac->cmd_state) >= 0),
  3515. msecs_to_jiffies(TIMEOUT_MS));
  3516. if (!rc) {
  3517. pr_err("%s: timeout. waited for open_loopback\n",
  3518. __func__);
  3519. rc = -ETIMEDOUT;
  3520. goto fail_cmd;
  3521. }
  3522. if (atomic_read(&ac->cmd_state) > 0) {
  3523. pr_err("%s: DSP returned error[%s]\n",
  3524. __func__, adsp_err_get_err_str(
  3525. atomic_read(&ac->cmd_state)));
  3526. rc = adsp_err_get_lnx_err_code(
  3527. atomic_read(&ac->cmd_state));
  3528. goto fail_cmd;
  3529. }
  3530. return 0;
  3531. fail_cmd:
  3532. return rc;
  3533. }
  3534. EXPORT_SYMBOL(q6asm_open_loopback_v2);
  3535. /**
  3536. * q6asm_open_transcode_loopback -
  3537. * command to open ASM in transcode loopback mode
  3538. *
  3539. * @ac: Audio client handle
  3540. * @bits_per_sample: number of bits per sample
  3541. * @source_format: Format of clip
  3542. * @sink_format: end device supported format
  3543. *
  3544. * Returns 0 on success or error on failure
  3545. */
  3546. int q6asm_open_transcode_loopback(struct audio_client *ac,
  3547. uint16_t bits_per_sample,
  3548. uint32_t source_format, uint32_t sink_format)
  3549. {
  3550. int rc = 0x00;
  3551. struct asm_stream_cmd_open_transcode_loopback_t open;
  3552. struct q6asm_cal_info cal_info;
  3553. if (ac == NULL) {
  3554. pr_err("%s: APR handle NULL\n", __func__);
  3555. return -EINVAL;
  3556. }
  3557. if (ac->apr == NULL) {
  3558. pr_err("%s: AC APR handle NULL\n", __func__);
  3559. return -EINVAL;
  3560. }
  3561. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3562. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3563. atomic_set(&ac->cmd_state, -1);
  3564. open.hdr.opcode = ASM_STREAM_CMD_OPEN_TRANSCODE_LOOPBACK;
  3565. open.mode_flags = 0;
  3566. open.src_endpoint_type = 0;
  3567. open.sink_endpoint_type = 0;
  3568. switch (source_format) {
  3569. case FORMAT_LINEAR_PCM:
  3570. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3571. open.src_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3572. break;
  3573. case FORMAT_AC3:
  3574. open.src_format_id = ASM_MEDIA_FMT_AC3;
  3575. break;
  3576. case FORMAT_EAC3:
  3577. open.src_format_id = ASM_MEDIA_FMT_EAC3;
  3578. break;
  3579. default:
  3580. pr_err("%s: Unsupported src fmt [%d]\n",
  3581. __func__, source_format);
  3582. return -EINVAL;
  3583. }
  3584. switch (sink_format) {
  3585. case FORMAT_LINEAR_PCM:
  3586. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3587. open.sink_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3588. break;
  3589. default:
  3590. pr_err("%s: Unsupported sink fmt [%d]\n",
  3591. __func__, sink_format);
  3592. return -EINVAL;
  3593. }
  3594. /* source endpoint : matrix */
  3595. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3596. open.audproc_topo_id = cal_info.topology_id;
  3597. ac->app_type = cal_info.app_type;
  3598. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3599. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3600. else
  3601. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3602. ac->topology = open.audproc_topo_id;
  3603. open.bits_per_sample = bits_per_sample;
  3604. open.reserved = 0;
  3605. pr_debug("%s: opening a transcode_loopback with mode_flags =[%d] session[%d]\n",
  3606. __func__, open.mode_flags, ac->session);
  3607. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3608. if (rc < 0) {
  3609. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3610. __func__, open.hdr.opcode, rc);
  3611. rc = -EINVAL;
  3612. goto fail_cmd;
  3613. }
  3614. rc = wait_event_timeout(ac->cmd_wait,
  3615. (atomic_read(&ac->cmd_state) >= 0),
  3616. msecs_to_jiffies(TIMEOUT_MS));
  3617. if (!rc) {
  3618. pr_err("%s: timeout. waited for open_transcode_loopback\n",
  3619. __func__);
  3620. rc = -ETIMEDOUT;
  3621. goto fail_cmd;
  3622. }
  3623. if (atomic_read(&ac->cmd_state) > 0) {
  3624. pr_err("%s: DSP returned error[%s]\n",
  3625. __func__, adsp_err_get_err_str(
  3626. atomic_read(&ac->cmd_state)));
  3627. rc = adsp_err_get_lnx_err_code(
  3628. atomic_read(&ac->cmd_state));
  3629. goto fail_cmd;
  3630. }
  3631. return 0;
  3632. fail_cmd:
  3633. return rc;
  3634. }
  3635. EXPORT_SYMBOL(q6asm_open_transcode_loopback);
  3636. static
  3637. int q6asm_set_shared_circ_buff(struct audio_client *ac,
  3638. struct asm_stream_cmd_open_shared_io *open,
  3639. int bufsz, int bufcnt,
  3640. int dir)
  3641. {
  3642. struct audio_buffer *buf_circ;
  3643. int bytes_to_alloc, rc;
  3644. size_t len;
  3645. mutex_lock(&ac->cmd_lock);
  3646. if (ac->port[dir].buf) {
  3647. pr_err("%s: Buffer already allocated\n", __func__);
  3648. rc = -EINVAL;
  3649. goto done;
  3650. }
  3651. buf_circ = kzalloc(sizeof(struct audio_buffer), GFP_KERNEL);
  3652. if (!buf_circ) {
  3653. rc = -ENOMEM;
  3654. goto done;
  3655. }
  3656. bytes_to_alloc = bufsz * bufcnt;
  3657. bytes_to_alloc = PAGE_ALIGN(bytes_to_alloc);
  3658. rc = msm_audio_ion_alloc(&buf_circ->dma_buf,
  3659. bytes_to_alloc,
  3660. &buf_circ->phys,
  3661. &len, &buf_circ->data);
  3662. if (rc) {
  3663. pr_err("%s: Audio ION alloc is failed, rc = %d\n", __func__,
  3664. rc);
  3665. kfree(buf_circ);
  3666. goto done;
  3667. }
  3668. ac->port[dir].buf = buf_circ;
  3669. buf_circ->used = dir ^ 1;
  3670. buf_circ->size = bytes_to_alloc;
  3671. buf_circ->actual_size = bytes_to_alloc;
  3672. memset(buf_circ->data, 0, buf_circ->actual_size);
  3673. ac->port[dir].max_buf_cnt = 1;
  3674. open->shared_circ_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  3675. open->shared_circ_buf_num_regions = 1;
  3676. open->shared_circ_buf_property_flag = 0x00;
  3677. open->shared_circ_buf_start_phy_addr_lsw =
  3678. lower_32_bits(buf_circ->phys);
  3679. open->shared_circ_buf_start_phy_addr_msw =
  3680. msm_audio_populate_upper_32_bits(buf_circ->phys);
  3681. open->shared_circ_buf_size = bufsz * bufcnt;
  3682. open->map_region_circ_buf.shm_addr_lsw = lower_32_bits(buf_circ->phys);
  3683. open->map_region_circ_buf.shm_addr_msw =
  3684. msm_audio_populate_upper_32_bits(buf_circ->phys);
  3685. open->map_region_circ_buf.mem_size_bytes = bytes_to_alloc;
  3686. done:
  3687. mutex_unlock(&ac->cmd_lock);
  3688. return rc;
  3689. }
  3690. static
  3691. int q6asm_set_shared_pos_buff(struct audio_client *ac,
  3692. struct asm_stream_cmd_open_shared_io *open,
  3693. int dir)
  3694. {
  3695. struct audio_buffer *buf_pos = &ac->shared_pos_buf;
  3696. int rc;
  3697. size_t len;
  3698. int bytes_to_alloc = sizeof(struct asm_shared_position_buffer);
  3699. mutex_lock(&ac->cmd_lock);
  3700. bytes_to_alloc = PAGE_ALIGN(bytes_to_alloc);
  3701. rc = msm_audio_ion_alloc(&buf_pos->dma_buf,
  3702. bytes_to_alloc,
  3703. &buf_pos->phys, &len,
  3704. &buf_pos->data);
  3705. if (rc) {
  3706. pr_err("%s: Audio pos buf ION alloc is failed, rc = %d\n",
  3707. __func__, rc);
  3708. goto done;
  3709. }
  3710. buf_pos->used = dir ^ 1;
  3711. buf_pos->size = bytes_to_alloc;
  3712. buf_pos->actual_size = bytes_to_alloc;
  3713. open->shared_pos_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  3714. open->shared_pos_buf_num_regions = 1;
  3715. open->shared_pos_buf_property_flag = 0x00;
  3716. open->shared_pos_buf_phy_addr_lsw = lower_32_bits(buf_pos->phys);
  3717. open->shared_pos_buf_phy_addr_msw =
  3718. msm_audio_populate_upper_32_bits(buf_pos->phys);
  3719. open->map_region_pos_buf.shm_addr_lsw = lower_32_bits(buf_pos->phys);
  3720. open->map_region_pos_buf.shm_addr_msw =
  3721. msm_audio_populate_upper_32_bits(buf_pos->phys);
  3722. open->map_region_pos_buf.mem_size_bytes = bytes_to_alloc;
  3723. done:
  3724. mutex_unlock(&ac->cmd_lock);
  3725. return rc;
  3726. }
  3727. /*
  3728. * q6asm_open_shared_io: Open an ASM session for pull mode (playback)
  3729. * or push mode (capture).
  3730. * parameters
  3731. * config - session parameters (channels, bits_per_sample, sr)
  3732. * dir - stream direction (IN for playback, OUT for capture)
  3733. * use_default_chmap: true if default channel map to be used
  3734. * channel_map: input channel map
  3735. * returns 0 if successful, error code otherwise
  3736. */
  3737. int q6asm_open_shared_io(struct audio_client *ac,
  3738. struct shared_io_config *config,
  3739. int dir, bool use_default_chmap, u8 *channel_map)
  3740. {
  3741. struct asm_stream_cmd_open_shared_io *open;
  3742. u8 *channel_mapping;
  3743. int i, size_of_open, num_watermarks, bufsz, bufcnt, rc, flags = 0;
  3744. struct q6asm_cal_info cal_info;
  3745. if (!ac || !config)
  3746. return -EINVAL;
  3747. if (!use_default_chmap && (channel_map == NULL)) {
  3748. pr_err("%s: No valid chan map and can't use default\n",
  3749. __func__);
  3750. return -EINVAL;
  3751. }
  3752. bufsz = config->bufsz;
  3753. bufcnt = config->bufcnt;
  3754. num_watermarks = 0;
  3755. ac->config = *config;
  3756. if (ac->session <= 0 || ac->session > SESSION_MAX) {
  3757. pr_err("%s: Session %d is out of bounds\n",
  3758. __func__, ac->session);
  3759. return -EINVAL;
  3760. }
  3761. size_of_open = sizeof(struct asm_stream_cmd_open_shared_io) +
  3762. (sizeof(struct asm_shared_watermark_level) * num_watermarks);
  3763. open = kzalloc(PAGE_ALIGN(size_of_open), GFP_KERNEL);
  3764. if (!open)
  3765. return -ENOMEM;
  3766. q6asm_stream_add_hdr(ac, &open->hdr, size_of_open, TRUE,
  3767. ac->stream_id);
  3768. atomic_set(&ac->cmd_state, 1);
  3769. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x, perf %d\n",
  3770. __func__, open->hdr.token, ac->stream_id, ac->session,
  3771. ac->perf_mode);
  3772. open->hdr.opcode =
  3773. dir == IN ? ASM_STREAM_CMD_OPEN_PULL_MODE_WRITE :
  3774. ASM_STREAM_CMD_OPEN_PUSH_MODE_READ;
  3775. pr_debug("%s perf_mode %d\n", __func__, ac->perf_mode);
  3776. if (dir == IN)
  3777. if (ac->perf_mode == ULL_POST_PROCESSING_PCM_MODE)
  3778. flags = 4 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3779. else if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE)
  3780. flags = 2 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3781. else if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3782. flags = 1 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3783. else
  3784. pr_err("Invalid perf mode for pull write\n");
  3785. else
  3786. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3787. flags = ASM_LOW_LATENCY_TX_STREAM_SESSION <<
  3788. ASM_SHIFT_STREAM_PERF_FLAG_PUSH_MODE_READ;
  3789. else
  3790. pr_err("Invalid perf mode for push read\n");
  3791. if (flags == 0) {
  3792. pr_err("%s: Invalid mode[%d]\n", __func__,
  3793. ac->perf_mode);
  3794. kfree(open);
  3795. return -EINVAL;
  3796. }
  3797. pr_debug("open.mode_flags = 0x%x\n", flags);
  3798. open->mode_flags = flags;
  3799. open->endpoint_type = ASM_END_POINT_DEVICE_MATRIX;
  3800. open->topo_bits_per_sample = config->bits_per_sample;
  3801. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3802. open->topo_id = cal_info.topology_id;
  3803. if (config->format == FORMAT_LINEAR_PCM)
  3804. open->fmt_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3805. else {
  3806. pr_err("%s: Invalid format[%d]\n", __func__, config->format);
  3807. rc = -EINVAL;
  3808. goto done;
  3809. }
  3810. rc = q6asm_set_shared_circ_buff(ac, open, bufsz, bufcnt, dir);
  3811. if (rc)
  3812. goto done;
  3813. ac->port[dir].tmp_hdl = 0;
  3814. rc = q6asm_set_shared_pos_buff(ac, open, dir);
  3815. if (rc)
  3816. goto done;
  3817. /* asm_multi_channel_pcm_fmt_blk_v3 */
  3818. open->fmt.num_channels = config->channels;
  3819. open->fmt.bits_per_sample = config->bits_per_sample;
  3820. open->fmt.sample_rate = config->rate;
  3821. open->fmt.is_signed = 1;
  3822. open->fmt.sample_word_size = config->sample_word_size;
  3823. channel_mapping = open->fmt.channel_mapping;
  3824. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  3825. if (use_default_chmap) {
  3826. rc = q6asm_map_channels(channel_mapping, config->channels,
  3827. false);
  3828. if (rc) {
  3829. pr_err("%s: Map channels failed, ret: %d\n",
  3830. __func__, rc);
  3831. goto done;
  3832. }
  3833. } else {
  3834. memcpy(channel_mapping, channel_map,
  3835. PCM_FORMAT_MAX_NUM_CHANNEL);
  3836. }
  3837. open->num_watermark_levels = num_watermarks;
  3838. for (i = 0; i < num_watermarks; i++) {
  3839. open->watermark[i].watermark_level_bytes = i *
  3840. ((bufsz * bufcnt) / num_watermarks);
  3841. pr_debug("%s: Watermark level set for %i\n",
  3842. __func__,
  3843. open->watermark[i].watermark_level_bytes);
  3844. }
  3845. rc = apr_send_pkt(ac->apr, (uint32_t *) open);
  3846. if (rc < 0) {
  3847. pr_err("%s: Open failed op[0x%x]rc[%d]\n",
  3848. __func__, open->hdr.opcode, rc);
  3849. goto done;
  3850. }
  3851. pr_debug("%s: sent open apr pkt\n", __func__);
  3852. rc = wait_event_timeout(ac->cmd_wait,
  3853. (atomic_read(&ac->cmd_state) <= 0),
  3854. msecs_to_jiffies(TIMEOUT_MS));
  3855. if (!rc) {
  3856. pr_err("%s: Timeout. Waited for open write apr pkt rc[%d]\n",
  3857. __func__, rc);
  3858. rc = -ETIMEDOUT;
  3859. goto done;
  3860. }
  3861. if (atomic_read(&ac->cmd_state) < 0) {
  3862. pr_err("%s: DSP returned error [%d]\n", __func__,
  3863. atomic_read(&ac->cmd_state));
  3864. rc = -EINVAL;
  3865. goto done;
  3866. }
  3867. ac->io_mode |= TUN_WRITE_IO_MODE;
  3868. rc = 0;
  3869. done:
  3870. kfree(open);
  3871. return rc;
  3872. }
  3873. EXPORT_SYMBOL(q6asm_open_shared_io);
  3874. /*
  3875. * q6asm_shared_io_buf: Returns handle to the shared circular buffer being
  3876. * used for pull/push mode.
  3877. * parameters
  3878. * dir - used to identify input/output port
  3879. * returns buffer handle
  3880. */
  3881. struct audio_buffer *q6asm_shared_io_buf(struct audio_client *ac,
  3882. int dir)
  3883. {
  3884. struct audio_port_data *port;
  3885. if (!ac) {
  3886. pr_err("%s: ac is null\n", __func__);
  3887. return NULL;
  3888. }
  3889. port = &ac->port[dir];
  3890. return port->buf;
  3891. }
  3892. EXPORT_SYMBOL(q6asm_shared_io_buf);
  3893. /*
  3894. * q6asm_shared_io_free: Frees memory allocated for a pull/push session
  3895. * parameters
  3896. * dir - port direction
  3897. * returns 0 if successful, error otherwise
  3898. */
  3899. int q6asm_shared_io_free(struct audio_client *ac, int dir)
  3900. {
  3901. struct audio_port_data *port;
  3902. if (!ac) {
  3903. pr_err("%s: audio client is null\n", __func__);
  3904. return -EINVAL;
  3905. }
  3906. port = &ac->port[dir];
  3907. mutex_lock(&ac->cmd_lock);
  3908. if (port->buf && port->buf->data) {
  3909. msm_audio_ion_free(port->buf->dma_buf);
  3910. port->buf->dma_buf = NULL;
  3911. port->max_buf_cnt = 0;
  3912. kfree(port->buf);
  3913. port->buf = NULL;
  3914. }
  3915. if (ac->shared_pos_buf.data) {
  3916. msm_audio_ion_free(ac->shared_pos_buf.dma_buf);
  3917. ac->shared_pos_buf.dma_buf = NULL;
  3918. }
  3919. mutex_unlock(&ac->cmd_lock);
  3920. return 0;
  3921. }
  3922. EXPORT_SYMBOL(q6asm_shared_io_free);
  3923. /*
  3924. * q6asm_get_shared_pos: Returns current read index/write index as observed
  3925. * by the DSP. Note that this is an offset and iterates from [0,BUF_SIZE - 1]
  3926. * parameters - (all output)
  3927. * read_index - offset
  3928. * wall_clk_msw1 - ADSP wallclock msw
  3929. * wall_clk_lsw1 - ADSP wallclock lsw
  3930. * returns 0 if successful, -EAGAIN if DSP failed to update after some
  3931. * retries
  3932. */
  3933. int q6asm_get_shared_pos(struct audio_client *ac, uint32_t *read_index,
  3934. uint32_t *wall_clk_msw1, uint32_t *wall_clk_lsw1)
  3935. {
  3936. struct asm_shared_position_buffer *pos_buf;
  3937. uint32_t frame_cnt1, frame_cnt2;
  3938. int i, j;
  3939. if (!ac) {
  3940. pr_err("%s: audio client is null\n", __func__);
  3941. return -EINVAL;
  3942. }
  3943. pos_buf = ac->shared_pos_buf.data;
  3944. /* always try to get the latest update in the shared pos buffer */
  3945. for (i = 0; i < 2; i++) {
  3946. /* retry until there is an update from DSP */
  3947. for (j = 0; j < 5; j++) {
  3948. frame_cnt1 = pos_buf->frame_counter;
  3949. if (frame_cnt1 != 0)
  3950. break;
  3951. }
  3952. *wall_clk_msw1 = pos_buf->wall_clock_us_msw;
  3953. *wall_clk_lsw1 = pos_buf->wall_clock_us_lsw;
  3954. *read_index = pos_buf->index;
  3955. frame_cnt2 = pos_buf->frame_counter;
  3956. if (frame_cnt1 != frame_cnt2)
  3957. continue;
  3958. return 0;
  3959. }
  3960. pr_err("%s out of tries trying to get a good read, try again\n",
  3961. __func__);
  3962. return -EAGAIN;
  3963. }
  3964. EXPORT_SYMBOL(q6asm_get_shared_pos);
  3965. /**
  3966. * q6asm_run -
  3967. * command to set ASM to run state
  3968. *
  3969. * @ac: Audio client handle
  3970. * @flags: Flags for session
  3971. * @msw_ts: upper 32bits timestamp
  3972. * @lsw_ts: lower 32bits timestamp
  3973. *
  3974. * Returns 0 on success or error on failure
  3975. */
  3976. int q6asm_run(struct audio_client *ac, uint32_t flags,
  3977. uint32_t msw_ts, uint32_t lsw_ts)
  3978. {
  3979. struct asm_session_cmd_run_v2 run;
  3980. int rc;
  3981. if (ac == NULL) {
  3982. pr_err("%s: APR handle NULL\n", __func__);
  3983. return -EINVAL;
  3984. }
  3985. if (ac->apr == NULL) {
  3986. pr_err("%s: AC APR handle NULL\n", __func__);
  3987. return -EINVAL;
  3988. }
  3989. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3990. q6asm_add_hdr(ac, &run.hdr, sizeof(run), TRUE);
  3991. atomic_set(&ac->cmd_state, -1);
  3992. run.hdr.opcode = ASM_SESSION_CMD_RUN_V2;
  3993. run.flags = flags;
  3994. run.time_lsw = lsw_ts;
  3995. run.time_msw = msw_ts;
  3996. config_debug_fs_run();
  3997. rc = apr_send_pkt(ac->apr, (uint32_t *) &run);
  3998. if (rc < 0) {
  3999. pr_err("%s: Commmand run failed[%d]",
  4000. __func__, rc);
  4001. rc = -EINVAL;
  4002. goto fail_cmd;
  4003. }
  4004. rc = wait_event_timeout(ac->cmd_wait,
  4005. (atomic_read(&ac->cmd_state) >= 0),
  4006. msecs_to_jiffies(TIMEOUT_MS));
  4007. if (!rc) {
  4008. pr_err("%s: timeout. waited for run success",
  4009. __func__);
  4010. rc = -ETIMEDOUT;
  4011. goto fail_cmd;
  4012. }
  4013. if (atomic_read(&ac->cmd_state) > 0) {
  4014. pr_err("%s: DSP returned error[%s]\n",
  4015. __func__, adsp_err_get_err_str(
  4016. atomic_read(&ac->cmd_state)));
  4017. rc = adsp_err_get_lnx_err_code(
  4018. atomic_read(&ac->cmd_state));
  4019. goto fail_cmd;
  4020. }
  4021. return 0;
  4022. fail_cmd:
  4023. return rc;
  4024. }
  4025. EXPORT_SYMBOL(q6asm_run);
  4026. static int __q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  4027. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id)
  4028. {
  4029. struct asm_session_cmd_run_v2 run;
  4030. int rc;
  4031. if (ac == NULL) {
  4032. pr_err("%s: APR handle NULL\n", __func__);
  4033. return -EINVAL;
  4034. }
  4035. if (ac->apr == NULL) {
  4036. pr_err("%s: AC APR handle NULL\n", __func__);
  4037. return -EINVAL;
  4038. }
  4039. pr_debug("%s: session[%d]\n", __func__, ac->session);
  4040. q6asm_stream_add_hdr_async(ac, &run.hdr, sizeof(run), TRUE, stream_id);
  4041. atomic_set(&ac->cmd_state, 1);
  4042. run.hdr.opcode = ASM_SESSION_CMD_RUN_V2;
  4043. run.flags = flags;
  4044. run.time_lsw = lsw_ts;
  4045. run.time_msw = msw_ts;
  4046. rc = apr_send_pkt(ac->apr, (uint32_t *) &run);
  4047. if (rc < 0) {
  4048. pr_err("%s: Commmand run failed[%d]", __func__, rc);
  4049. return -EINVAL;
  4050. }
  4051. return 0;
  4052. }
  4053. /**
  4054. * q6asm_run_nowait -
  4055. * command to set ASM to run state with no wait for ack
  4056. *
  4057. * @ac: Audio client handle
  4058. * @flags: Flags for session
  4059. * @msw_ts: upper 32bits timestamp
  4060. * @lsw_ts: lower 32bits timestamp
  4061. *
  4062. * Returns 0 on success or error on failure
  4063. */
  4064. int q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  4065. uint32_t msw_ts, uint32_t lsw_ts)
  4066. {
  4067. return __q6asm_run_nowait(ac, flags, msw_ts, lsw_ts, ac->stream_id);
  4068. }
  4069. EXPORT_SYMBOL(q6asm_run_nowait);
  4070. int q6asm_stream_run_nowait(struct audio_client *ac, uint32_t flags,
  4071. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id)
  4072. {
  4073. return __q6asm_run_nowait(ac, flags, msw_ts, lsw_ts, stream_id);
  4074. }
  4075. /**
  4076. * q6asm_enc_cfg_blk_custom -
  4077. * command to set encode cfg block for custom
  4078. *
  4079. * @ac: Audio client handle
  4080. * @sample_rate: Sample rate
  4081. * @channels: number of ASM channels
  4082. * @format: custom format flag
  4083. * @cfg: generic encoder config
  4084. *
  4085. * Returns 0 on success or error on failure
  4086. */
  4087. int q6asm_enc_cfg_blk_custom(struct audio_client *ac,
  4088. uint32_t sample_rate, uint32_t channels,
  4089. uint32_t format, void *cfg)
  4090. {
  4091. struct asm_custom_enc_cfg_t_v2 enc_cfg;
  4092. int rc = 0;
  4093. uint32_t custom_size;
  4094. struct snd_enc_generic *enc_generic = (struct snd_enc_generic *) cfg;
  4095. custom_size = enc_generic->reserved[1];
  4096. pr_debug("%s: session[%d] size[%d] res[2]=[%d] res[3]=[%d]\n",
  4097. __func__, ac->session, custom_size, enc_generic->reserved[2],
  4098. enc_generic->reserved[3]);
  4099. pr_debug("%s: res[4]=[%d] sr[%d] ch[%d] format[%d]\n",
  4100. __func__, enc_generic->reserved[4], sample_rate,
  4101. channels, format);
  4102. memset(&enc_cfg, 0, sizeof(struct asm_custom_enc_cfg_t_v2));
  4103. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4104. atomic_set(&ac->cmd_state, -1);
  4105. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4106. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4107. enc_cfg.encdec.param_size = sizeof(struct asm_custom_enc_cfg_t_v2) -
  4108. sizeof(struct asm_stream_cmd_set_encdec_param);
  4109. enc_cfg.encblk.frames_per_buf = ENC_FRAMES_PER_BUFFER;
  4110. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4111. sizeof(struct asm_enc_cfg_blk_param_v2);
  4112. enc_cfg.num_channels = channels;
  4113. enc_cfg.sample_rate = sample_rate;
  4114. if (q6asm_map_channels(enc_cfg.channel_mapping, channels, false)) {
  4115. pr_err("%s: map channels failed %d\n",
  4116. __func__, channels);
  4117. rc = -EINVAL;
  4118. goto fail_cmd;
  4119. }
  4120. if (format == FORMAT_BESPOKE && custom_size &&
  4121. custom_size <= sizeof(enc_cfg.custom_data)) {
  4122. memcpy(enc_cfg.custom_data, &enc_generic->reserved[2],
  4123. custom_size);
  4124. enc_cfg.custom_size = custom_size;
  4125. }
  4126. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4127. if (rc < 0) {
  4128. pr_err("%s: Comamnd %d failed %d\n",
  4129. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4130. rc = -EINVAL;
  4131. goto fail_cmd;
  4132. }
  4133. rc = wait_event_timeout(ac->cmd_wait,
  4134. (atomic_read(&ac->cmd_state) >= 0),
  4135. msecs_to_jiffies(TIMEOUT_MS));
  4136. if (!rc) {
  4137. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4138. __func__);
  4139. rc = -ETIMEDOUT;
  4140. goto fail_cmd;
  4141. }
  4142. if (atomic_read(&ac->cmd_state) > 0) {
  4143. pr_err("%s: DSP returned error[%s]\n",
  4144. __func__, adsp_err_get_err_str(
  4145. atomic_read(&ac->cmd_state)));
  4146. rc = adsp_err_get_lnx_err_code(
  4147. atomic_read(&ac->cmd_state));
  4148. goto fail_cmd;
  4149. }
  4150. return 0;
  4151. fail_cmd:
  4152. return rc;
  4153. }
  4154. EXPORT_SYMBOL(q6asm_enc_cfg_blk_custom);
  4155. /**
  4156. * q6asm_enc_cfg_blk_aac -
  4157. * command to set encode cfg block for aac
  4158. *
  4159. * @ac: Audio client handle
  4160. * @frames_per_buf: number of frames per buffer
  4161. * @sample_rate: Sample rate
  4162. * @channels: number of ASM channels
  4163. * @bit_rate: Bit rate info
  4164. * @mode: mode of AAC stream encode
  4165. * @format: aac format flag
  4166. *
  4167. * Returns 0 on success or error on failure
  4168. */
  4169. int q6asm_enc_cfg_blk_aac(struct audio_client *ac,
  4170. uint32_t frames_per_buf,
  4171. uint32_t sample_rate, uint32_t channels,
  4172. uint32_t bit_rate, uint32_t mode, uint32_t format)
  4173. {
  4174. struct asm_aac_enc_cfg_v2 enc_cfg;
  4175. int rc = 0;
  4176. pr_debug("%s: session[%d]frames[%d]SR[%d]ch[%d]bitrate[%d]mode[%d] format[%d]\n",
  4177. __func__, ac->session, frames_per_buf,
  4178. sample_rate, channels, bit_rate, mode, format);
  4179. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4180. atomic_set(&ac->cmd_state, -1);
  4181. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4182. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4183. enc_cfg.encdec.param_size = sizeof(struct asm_aac_enc_cfg_v2) -
  4184. sizeof(struct asm_stream_cmd_set_encdec_param);
  4185. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4186. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4187. sizeof(struct asm_enc_cfg_blk_param_v2);
  4188. enc_cfg.bit_rate = bit_rate;
  4189. enc_cfg.enc_mode = mode;
  4190. enc_cfg.aac_fmt_flag = format;
  4191. enc_cfg.channel_cfg = channels;
  4192. enc_cfg.sample_rate = sample_rate;
  4193. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4194. if (rc < 0) {
  4195. pr_err("%s: Comamnd %d failed %d\n",
  4196. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4197. rc = -EINVAL;
  4198. goto fail_cmd;
  4199. }
  4200. rc = wait_event_timeout(ac->cmd_wait,
  4201. (atomic_read(&ac->cmd_state) >= 0),
  4202. msecs_to_jiffies(TIMEOUT_MS));
  4203. if (!rc) {
  4204. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4205. __func__);
  4206. rc = -ETIMEDOUT;
  4207. goto fail_cmd;
  4208. }
  4209. if (atomic_read(&ac->cmd_state) > 0) {
  4210. pr_err("%s: DSP returned error[%s]\n",
  4211. __func__, adsp_err_get_err_str(
  4212. atomic_read(&ac->cmd_state)));
  4213. rc = adsp_err_get_lnx_err_code(
  4214. atomic_read(&ac->cmd_state));
  4215. goto fail_cmd;
  4216. }
  4217. return 0;
  4218. fail_cmd:
  4219. return rc;
  4220. }
  4221. EXPORT_SYMBOL(q6asm_enc_cfg_blk_aac);
  4222. /**
  4223. * q6asm_enc_cfg_blk_g711 -
  4224. * command to set encode cfg block for g711
  4225. *
  4226. * @ac: Audio client handle
  4227. * @frames_per_buf: number of frames per buffer
  4228. * @sample_rate: Sample rate
  4229. *
  4230. * Returns 0 on success or error on failure
  4231. */
  4232. int q6asm_enc_cfg_blk_g711(struct audio_client *ac,
  4233. uint32_t frames_per_buf,
  4234. uint32_t sample_rate)
  4235. {
  4236. struct asm_g711_enc_cfg_v2 enc_cfg;
  4237. int rc = 0;
  4238. pr_debug("%s: session[%d]frames[%d]SR[%d]\n",
  4239. __func__, ac->session, frames_per_buf,
  4240. sample_rate);
  4241. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4242. atomic_set(&ac->cmd_state, -1);
  4243. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4244. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4245. enc_cfg.encdec.param_size = sizeof(struct asm_g711_enc_cfg_v2) -
  4246. sizeof(struct asm_stream_cmd_set_encdec_param);
  4247. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4248. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4249. sizeof(struct asm_enc_cfg_blk_param_v2);
  4250. enc_cfg.sample_rate = sample_rate;
  4251. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4252. if (rc < 0) {
  4253. pr_err("%s: Comamnd %d failed %d\n",
  4254. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4255. rc = -EINVAL;
  4256. goto fail_cmd;
  4257. }
  4258. rc = wait_event_timeout(ac->cmd_wait,
  4259. (atomic_read(&ac->cmd_state) >= 0),
  4260. msecs_to_jiffies(TIMEOUT_MS));
  4261. if (!rc) {
  4262. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4263. __func__);
  4264. rc = -ETIMEDOUT;
  4265. goto fail_cmd;
  4266. }
  4267. if (atomic_read(&ac->cmd_state) > 0) {
  4268. pr_err("%s: DSP returned error[%s]\n",
  4269. __func__, adsp_err_get_err_str(
  4270. atomic_read(&ac->cmd_state)));
  4271. rc = adsp_err_get_lnx_err_code(
  4272. atomic_read(&ac->cmd_state));
  4273. goto fail_cmd;
  4274. }
  4275. return 0;
  4276. fail_cmd:
  4277. return rc;
  4278. }
  4279. EXPORT_SYMBOL(q6asm_enc_cfg_blk_g711);
  4280. /**
  4281. * q6asm_set_encdec_chan_map -
  4282. * command to set encdec channel map
  4283. *
  4284. * @ac: Audio client handle
  4285. * @channels: number of channels
  4286. *
  4287. * Returns 0 on success or error on failure
  4288. */
  4289. int q6asm_set_encdec_chan_map(struct audio_client *ac,
  4290. uint32_t num_channels)
  4291. {
  4292. struct asm_dec_out_chan_map_param chan_map;
  4293. u8 *channel_mapping;
  4294. int rc = 0;
  4295. pr_debug("%s: Session %d, num_channels = %d\n",
  4296. __func__, ac->session, num_channels);
  4297. q6asm_add_hdr(ac, &chan_map.hdr, sizeof(chan_map), TRUE);
  4298. atomic_set(&ac->cmd_state, -1);
  4299. chan_map.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4300. chan_map.encdec.param_id = ASM_PARAM_ID_DEC_OUTPUT_CHAN_MAP;
  4301. chan_map.encdec.param_size = sizeof(struct asm_dec_out_chan_map_param) -
  4302. (sizeof(struct apr_hdr) +
  4303. sizeof(struct asm_stream_cmd_set_encdec_param));
  4304. chan_map.num_channels = num_channels;
  4305. channel_mapping = chan_map.channel_mapping;
  4306. memset(channel_mapping, PCM_CHANNEL_NULL, MAX_CHAN_MAP_CHANNELS);
  4307. if (q6asm_map_channels(channel_mapping, num_channels, false)) {
  4308. pr_err("%s: map channels failed %d\n", __func__, num_channels);
  4309. return -EINVAL;
  4310. }
  4311. rc = apr_send_pkt(ac->apr, (uint32_t *) &chan_map);
  4312. if (rc < 0) {
  4313. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  4314. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  4315. ASM_PARAM_ID_DEC_OUTPUT_CHAN_MAP, rc);
  4316. goto fail_cmd;
  4317. }
  4318. rc = wait_event_timeout(ac->cmd_wait,
  4319. (atomic_read(&ac->cmd_state) >= 0),
  4320. msecs_to_jiffies(TIMEOUT_MS));
  4321. if (!rc) {
  4322. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  4323. chan_map.hdr.opcode);
  4324. rc = -ETIMEDOUT;
  4325. goto fail_cmd;
  4326. }
  4327. if (atomic_read(&ac->cmd_state) > 0) {
  4328. pr_err("%s: DSP returned error[%s]\n",
  4329. __func__, adsp_err_get_err_str(
  4330. atomic_read(&ac->cmd_state)));
  4331. rc = adsp_err_get_lnx_err_code(
  4332. atomic_read(&ac->cmd_state));
  4333. goto fail_cmd;
  4334. }
  4335. return 0;
  4336. fail_cmd:
  4337. return rc;
  4338. }
  4339. EXPORT_SYMBOL(q6asm_set_encdec_chan_map);
  4340. /*
  4341. * q6asm_enc_cfg_blk_pcm_v5 - sends encoder configuration parameters
  4342. *
  4343. * @ac: Client session handle
  4344. * @rate: sample rate
  4345. * @channels: number of channels
  4346. * @bits_per_sample: bit width of encoder session
  4347. * @use_default_chmap: true if default channel map to be used
  4348. * @use_back_flavor: to configure back left and right channel
  4349. * @channel_map: input channel map
  4350. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4351. * @endianness: endianness of the pcm data
  4352. * @mode: Mode to provide additional info about the pcm input data
  4353. */
  4354. static int q6asm_enc_cfg_blk_pcm_v5(struct audio_client *ac,
  4355. uint32_t rate, uint32_t channels,
  4356. uint16_t bits_per_sample, bool use_default_chmap,
  4357. bool use_back_flavor, u8 *channel_map,
  4358. uint16_t sample_word_size, uint16_t endianness,
  4359. uint16_t mode)
  4360. {
  4361. struct asm_multi_channel_pcm_enc_cfg_v5 enc_cfg;
  4362. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4363. u8 *channel_mapping;
  4364. u32 frames_per_buf = 0;
  4365. int rc;
  4366. if (!use_default_chmap && (channel_map == NULL)) {
  4367. pr_err("%s: No valid chan map and can't use default\n",
  4368. __func__);
  4369. rc = -EINVAL;
  4370. goto fail_cmd;
  4371. }
  4372. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4373. ac->session, rate, channels,
  4374. bits_per_sample, sample_word_size);
  4375. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4376. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4377. atomic_set(&ac->cmd_state, -1);
  4378. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4379. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4380. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4381. sizeof(enc_cfg.encdec);
  4382. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4383. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4384. sizeof(enc_fg_blk);
  4385. enc_cfg.num_channels = channels;
  4386. enc_cfg.bits_per_sample = bits_per_sample;
  4387. enc_cfg.sample_rate = rate;
  4388. enc_cfg.is_signed = 1;
  4389. enc_cfg.sample_word_size = sample_word_size;
  4390. enc_cfg.endianness = endianness;
  4391. enc_cfg.mode = mode;
  4392. channel_mapping = enc_cfg.channel_mapping;
  4393. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  4394. if (use_default_chmap) {
  4395. pr_debug("%s: setting default channel map for %d channels",
  4396. __func__, channels);
  4397. if (q6asm_map_channels(channel_mapping, channels,
  4398. use_back_flavor)) {
  4399. pr_err("%s: map channels failed %d\n",
  4400. __func__, channels);
  4401. rc = -EINVAL;
  4402. goto fail_cmd;
  4403. }
  4404. } else {
  4405. pr_debug("%s: Using pre-defined channel map", __func__);
  4406. memcpy(channel_mapping, channel_map,
  4407. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  4408. }
  4409. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4410. if (rc < 0) {
  4411. pr_err("%s: Command open failed %d\n", __func__, rc);
  4412. goto fail_cmd;
  4413. }
  4414. rc = wait_event_timeout(ac->cmd_wait,
  4415. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4416. if (!rc) {
  4417. pr_err("%s: timeout opcode[0x%x]\n",
  4418. __func__, enc_cfg.hdr.opcode);
  4419. rc = -ETIMEDOUT;
  4420. goto fail_cmd;
  4421. }
  4422. if (atomic_read(&ac->cmd_state) > 0) {
  4423. pr_err("%s: DSP returned error[%s]\n",
  4424. __func__, adsp_err_get_err_str(
  4425. atomic_read(&ac->cmd_state)));
  4426. rc = adsp_err_get_lnx_err_code(
  4427. atomic_read(&ac->cmd_state));
  4428. goto fail_cmd;
  4429. }
  4430. return 0;
  4431. fail_cmd:
  4432. return rc;
  4433. }
  4434. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v5);
  4435. /*
  4436. * q6asm_enc_cfg_blk_pcm_v4 - sends encoder configuration parameters
  4437. *
  4438. * @ac: Client session handle
  4439. * @rate: sample rate
  4440. * @channels: number of channels
  4441. * @bits_per_sample: bit width of encoder session
  4442. * @use_default_chmap: true if default channel map to be used
  4443. * @use_back_flavor: to configure back left and right channel
  4444. * @channel_map: input channel map
  4445. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4446. * @endianness: endianness of the pcm data
  4447. * @mode: Mode to provide additional info about the pcm input data
  4448. */
  4449. int q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  4450. uint32_t rate, uint32_t channels,
  4451. uint16_t bits_per_sample, bool use_default_chmap,
  4452. bool use_back_flavor, u8 *channel_map,
  4453. uint16_t sample_word_size, uint16_t endianness,
  4454. uint16_t mode)
  4455. {
  4456. struct asm_multi_channel_pcm_enc_cfg_v4 enc_cfg;
  4457. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4458. u8 *channel_mapping;
  4459. u32 frames_per_buf = 0;
  4460. int rc;
  4461. if (!use_default_chmap && (channel_map == NULL)) {
  4462. pr_err("%s: No valid chan map and can't use default\n",
  4463. __func__);
  4464. rc = -EINVAL;
  4465. goto fail_cmd;
  4466. }
  4467. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4468. ac->session, rate, channels,
  4469. bits_per_sample, sample_word_size);
  4470. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4471. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4472. atomic_set(&ac->cmd_state, -1);
  4473. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4474. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4475. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4476. sizeof(enc_cfg.encdec);
  4477. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4478. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4479. sizeof(enc_fg_blk);
  4480. enc_cfg.num_channels = channels;
  4481. enc_cfg.bits_per_sample = bits_per_sample;
  4482. enc_cfg.sample_rate = rate;
  4483. enc_cfg.is_signed = 1;
  4484. enc_cfg.sample_word_size = sample_word_size;
  4485. enc_cfg.endianness = endianness;
  4486. enc_cfg.mode = mode;
  4487. channel_mapping = enc_cfg.channel_mapping;
  4488. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4489. if (use_default_chmap) {
  4490. pr_debug("%s: setting default channel map for %d channels",
  4491. __func__, channels);
  4492. if (q6asm_map_channels(channel_mapping, channels,
  4493. use_back_flavor)) {
  4494. pr_err("%s: map channels failed %d\n",
  4495. __func__, channels);
  4496. rc = -EINVAL;
  4497. goto fail_cmd;
  4498. }
  4499. } else {
  4500. pr_debug("%s: Using pre-defined channel map", __func__);
  4501. memcpy(channel_mapping, channel_map,
  4502. PCM_FORMAT_MAX_NUM_CHANNEL);
  4503. }
  4504. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4505. if (rc < 0) {
  4506. pr_err("%s: Command open failed %d\n", __func__, rc);
  4507. goto fail_cmd;
  4508. }
  4509. rc = wait_event_timeout(ac->cmd_wait,
  4510. (atomic_read(&ac->cmd_state) >= 0),
  4511. msecs_to_jiffies(TIMEOUT_MS));
  4512. if (!rc) {
  4513. pr_err("%s: timeout opcode[0x%x]\n",
  4514. __func__, enc_cfg.hdr.opcode);
  4515. rc = -ETIMEDOUT;
  4516. goto fail_cmd;
  4517. }
  4518. if (atomic_read(&ac->cmd_state) > 0) {
  4519. pr_err("%s: DSP returned error[%s]\n",
  4520. __func__, adsp_err_get_err_str(
  4521. atomic_read(&ac->cmd_state)));
  4522. rc = adsp_err_get_lnx_err_code(
  4523. atomic_read(&ac->cmd_state));
  4524. goto fail_cmd;
  4525. }
  4526. return 0;
  4527. fail_cmd:
  4528. return rc;
  4529. }
  4530. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v4);
  4531. /*
  4532. * q6asm_enc_cfg_blk_pcm_v3 - sends encoder configuration parameters
  4533. *
  4534. * @ac: Client session handle
  4535. * @rate: sample rate
  4536. * @channels: number of channels
  4537. * @bits_per_sample: bit width of encoder session
  4538. * @use_default_chmap: true if default channel map to be used
  4539. * @use_back_flavor: to configure back left and right channel
  4540. * @channel_map: input channel map
  4541. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4542. */
  4543. int q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  4544. uint32_t rate, uint32_t channels,
  4545. uint16_t bits_per_sample, bool use_default_chmap,
  4546. bool use_back_flavor, u8 *channel_map,
  4547. uint16_t sample_word_size)
  4548. {
  4549. struct asm_multi_channel_pcm_enc_cfg_v3 enc_cfg;
  4550. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4551. u8 *channel_mapping;
  4552. u32 frames_per_buf = 0;
  4553. int rc;
  4554. if (!use_default_chmap && (channel_map == NULL)) {
  4555. pr_err("%s: No valid chan map and can't use default\n",
  4556. __func__);
  4557. rc = -EINVAL;
  4558. goto fail_cmd;
  4559. }
  4560. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4561. ac->session, rate, channels,
  4562. bits_per_sample, sample_word_size);
  4563. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4564. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4565. atomic_set(&ac->cmd_state, -1);
  4566. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4567. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4568. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4569. sizeof(enc_cfg.encdec);
  4570. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4571. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4572. sizeof(enc_fg_blk);
  4573. enc_cfg.num_channels = channels;
  4574. enc_cfg.bits_per_sample = bits_per_sample;
  4575. enc_cfg.sample_rate = rate;
  4576. enc_cfg.is_signed = 1;
  4577. enc_cfg.sample_word_size = sample_word_size;
  4578. channel_mapping = enc_cfg.channel_mapping;
  4579. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4580. if (use_default_chmap) {
  4581. pr_debug("%s: setting default channel map for %d channels",
  4582. __func__, channels);
  4583. if (q6asm_map_channels(channel_mapping, channels,
  4584. use_back_flavor)) {
  4585. pr_err("%s: map channels failed %d\n",
  4586. __func__, channels);
  4587. rc = -EINVAL;
  4588. goto fail_cmd;
  4589. }
  4590. } else {
  4591. pr_debug("%s: Using pre-defined channel map", __func__);
  4592. memcpy(channel_mapping, channel_map,
  4593. PCM_FORMAT_MAX_NUM_CHANNEL);
  4594. }
  4595. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4596. if (rc < 0) {
  4597. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4598. goto fail_cmd;
  4599. }
  4600. rc = wait_event_timeout(ac->cmd_wait,
  4601. (atomic_read(&ac->cmd_state) >= 0),
  4602. msecs_to_jiffies(TIMEOUT_MS));
  4603. if (!rc) {
  4604. pr_err("%s: timeout opcode[0x%x]\n",
  4605. __func__, enc_cfg.hdr.opcode);
  4606. rc = -ETIMEDOUT;
  4607. goto fail_cmd;
  4608. }
  4609. if (atomic_read(&ac->cmd_state) > 0) {
  4610. pr_err("%s: DSP returned error[%s]\n",
  4611. __func__, adsp_err_get_err_str(
  4612. atomic_read(&ac->cmd_state)));
  4613. rc = adsp_err_get_lnx_err_code(
  4614. atomic_read(&ac->cmd_state));
  4615. goto fail_cmd;
  4616. }
  4617. return 0;
  4618. fail_cmd:
  4619. return rc;
  4620. }
  4621. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v3);
  4622. /**
  4623. * q6asm_enc_cfg_blk_pcm_v2 -
  4624. * command to set encode config block for pcm_v2
  4625. *
  4626. * @ac: Audio client handle
  4627. * @rate: sample rate
  4628. * @channels: number of channels
  4629. * @bits_per_sample: number of bits per sample
  4630. * @use_default_chmap: Flag indicating to use default ch_map or not
  4631. * @use_back_flavor: back flavor flag
  4632. * @channel_map: Custom channel map settings
  4633. *
  4634. * Returns 0 on success or error on failure
  4635. */
  4636. int q6asm_enc_cfg_blk_pcm_v2(struct audio_client *ac,
  4637. uint32_t rate, uint32_t channels, uint16_t bits_per_sample,
  4638. bool use_default_chmap, bool use_back_flavor, u8 *channel_map)
  4639. {
  4640. struct asm_multi_channel_pcm_enc_cfg_v2 enc_cfg;
  4641. u8 *channel_mapping;
  4642. u32 frames_per_buf = 0;
  4643. int rc = 0;
  4644. if (!use_default_chmap && (channel_map == NULL)) {
  4645. pr_err("%s: No valid chan map and can't use default\n",
  4646. __func__);
  4647. return -EINVAL;
  4648. }
  4649. pr_debug("%s: Session %d, rate = %d, channels = %d\n", __func__,
  4650. ac->session, rate, channels);
  4651. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4652. atomic_set(&ac->cmd_state, -1);
  4653. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4654. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4655. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4656. sizeof(enc_cfg.encdec);
  4657. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4658. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4659. sizeof(struct asm_enc_cfg_blk_param_v2);
  4660. enc_cfg.num_channels = channels;
  4661. enc_cfg.bits_per_sample = bits_per_sample;
  4662. enc_cfg.sample_rate = rate;
  4663. enc_cfg.is_signed = 1;
  4664. channel_mapping = enc_cfg.channel_mapping;
  4665. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4666. if (use_default_chmap) {
  4667. pr_debug("%s: setting default channel map for %d channels",
  4668. __func__, channels);
  4669. if (q6asm_map_channels(channel_mapping, channels,
  4670. use_back_flavor)) {
  4671. pr_err("%s: map channels failed %d\n",
  4672. __func__, channels);
  4673. return -EINVAL;
  4674. }
  4675. } else {
  4676. pr_debug("%s: Using pre-defined channel map", __func__);
  4677. memcpy(channel_mapping, channel_map,
  4678. PCM_FORMAT_MAX_NUM_CHANNEL);
  4679. }
  4680. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4681. if (rc < 0) {
  4682. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4683. rc = -EINVAL;
  4684. goto fail_cmd;
  4685. }
  4686. rc = wait_event_timeout(ac->cmd_wait,
  4687. (atomic_read(&ac->cmd_state) >= 0),
  4688. msecs_to_jiffies(TIMEOUT_MS));
  4689. if (!rc) {
  4690. pr_err("%s: timeout opcode[0x%x]\n",
  4691. __func__, enc_cfg.hdr.opcode);
  4692. rc = -ETIMEDOUT;
  4693. goto fail_cmd;
  4694. }
  4695. if (atomic_read(&ac->cmd_state) > 0) {
  4696. pr_err("%s: DSP returned error[%s]\n",
  4697. __func__, adsp_err_get_err_str(
  4698. atomic_read(&ac->cmd_state)));
  4699. rc = adsp_err_get_lnx_err_code(
  4700. atomic_read(&ac->cmd_state));
  4701. goto fail_cmd;
  4702. }
  4703. return 0;
  4704. fail_cmd:
  4705. return rc;
  4706. }
  4707. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v2);
  4708. static int __q6asm_enc_cfg_blk_pcm_v5(struct audio_client *ac,
  4709. uint32_t rate, uint32_t channels,
  4710. uint16_t bits_per_sample,
  4711. uint16_t sample_word_size,
  4712. uint16_t endianness,
  4713. uint16_t mode)
  4714. {
  4715. return q6asm_enc_cfg_blk_pcm_v5(ac, rate, channels,
  4716. bits_per_sample, true, false, NULL,
  4717. sample_word_size, endianness, mode);
  4718. }
  4719. static int __q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  4720. uint32_t rate, uint32_t channels,
  4721. uint16_t bits_per_sample,
  4722. uint16_t sample_word_size,
  4723. uint16_t endianness,
  4724. uint16_t mode)
  4725. {
  4726. return q6asm_enc_cfg_blk_pcm_v4(ac, rate, channels,
  4727. bits_per_sample, true, false, NULL,
  4728. sample_word_size, endianness, mode);
  4729. }
  4730. static int __q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  4731. uint32_t rate, uint32_t channels,
  4732. uint16_t bits_per_sample,
  4733. uint16_t sample_word_size)
  4734. {
  4735. return q6asm_enc_cfg_blk_pcm_v3(ac, rate, channels,
  4736. bits_per_sample, true, false, NULL,
  4737. sample_word_size);
  4738. }
  4739. static int __q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  4740. uint32_t rate, uint32_t channels, uint16_t bits_per_sample)
  4741. {
  4742. return q6asm_enc_cfg_blk_pcm_v2(ac, rate, channels,
  4743. bits_per_sample, true, false, NULL);
  4744. }
  4745. /**
  4746. * q6asm_enc_cfg_blk_pcm -
  4747. * command to set encode config block for pcm
  4748. *
  4749. * @ac: Audio client handle
  4750. * @rate: sample rate
  4751. * @channels: number of channels
  4752. *
  4753. * Returns 0 on success or error on failure
  4754. */
  4755. int q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  4756. uint32_t rate, uint32_t channels)
  4757. {
  4758. return __q6asm_enc_cfg_blk_pcm(ac, rate, channels, 16);
  4759. }
  4760. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm);
  4761. int q6asm_enc_cfg_blk_pcm_format_support(struct audio_client *ac,
  4762. uint32_t rate, uint32_t channels, uint16_t bits_per_sample)
  4763. {
  4764. return __q6asm_enc_cfg_blk_pcm(ac, rate, channels, bits_per_sample);
  4765. }
  4766. /*
  4767. * q6asm_enc_cfg_blk_pcm_format_support_v3 - sends encoder configuration
  4768. * parameters
  4769. *
  4770. * @ac: Client session handle
  4771. * @rate: sample rate
  4772. * @channels: number of channels
  4773. * @bits_per_sample: bit width of encoder session
  4774. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4775. */
  4776. int q6asm_enc_cfg_blk_pcm_format_support_v3(struct audio_client *ac,
  4777. uint32_t rate, uint32_t channels,
  4778. uint16_t bits_per_sample,
  4779. uint16_t sample_word_size)
  4780. {
  4781. return __q6asm_enc_cfg_blk_pcm_v3(ac, rate, channels,
  4782. bits_per_sample, sample_word_size);
  4783. }
  4784. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v3);
  4785. /*
  4786. * q6asm_enc_cfg_blk_pcm_format_support_v4 - sends encoder configuration
  4787. * parameters
  4788. *
  4789. * @ac: Client session handle
  4790. * @rate: sample rate
  4791. * @channels: number of channels
  4792. * @bits_per_sample: bit width of encoder session
  4793. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4794. * @endianness: endianness of the pcm data
  4795. * @mode: Mode to provide additional info about the pcm input data
  4796. */
  4797. int q6asm_enc_cfg_blk_pcm_format_support_v4(struct audio_client *ac,
  4798. uint32_t rate, uint32_t channels,
  4799. uint16_t bits_per_sample,
  4800. uint16_t sample_word_size,
  4801. uint16_t endianness,
  4802. uint16_t mode)
  4803. {
  4804. return __q6asm_enc_cfg_blk_pcm_v4(ac, rate, channels,
  4805. bits_per_sample, sample_word_size,
  4806. endianness, mode);
  4807. }
  4808. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v4);
  4809. /*
  4810. * q6asm_enc_cfg_blk_pcm_format_support_v5 - sends encoder configuration
  4811. * parameters
  4812. *
  4813. * @ac: Client session handle
  4814. * @rate: sample rate
  4815. * @channels: number of channels
  4816. * @bits_per_sample: bit width of encoder session
  4817. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4818. * @endianness: endianness of the pcm data
  4819. * @mode: Mode to provide additional info about the pcm input data
  4820. */
  4821. int q6asm_enc_cfg_blk_pcm_format_support_v5(struct audio_client *ac,
  4822. uint32_t rate, uint32_t channels,
  4823. uint16_t bits_per_sample,
  4824. uint16_t sample_word_size,
  4825. uint16_t endianness,
  4826. uint16_t mode)
  4827. {
  4828. return __q6asm_enc_cfg_blk_pcm_v5(ac, rate, channels,
  4829. bits_per_sample, sample_word_size,
  4830. endianness, mode);
  4831. }
  4832. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v5);
  4833. /**
  4834. * q6asm_enc_cfg_blk_pcm_native -
  4835. * command to set encode config block for pcm_native
  4836. *
  4837. * @ac: Audio client handle
  4838. * @rate: sample rate
  4839. * @channels: number of channels
  4840. *
  4841. * Returns 0 on success or error on failure
  4842. */
  4843. int q6asm_enc_cfg_blk_pcm_native(struct audio_client *ac,
  4844. uint32_t rate, uint32_t channels)
  4845. {
  4846. struct asm_multi_channel_pcm_enc_cfg_v2 enc_cfg;
  4847. u8 *channel_mapping;
  4848. u32 frames_per_buf = 0;
  4849. int rc = 0;
  4850. pr_debug("%s: Session %d, rate = %d, channels = %d\n", __func__,
  4851. ac->session, rate, channels);
  4852. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4853. atomic_set(&ac->cmd_state, -1);
  4854. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4855. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4856. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4857. sizeof(enc_cfg.encdec);
  4858. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4859. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4860. sizeof(struct asm_enc_cfg_blk_param_v2);
  4861. enc_cfg.num_channels = 0;/*channels;*/
  4862. enc_cfg.bits_per_sample = 16;
  4863. enc_cfg.sample_rate = 0;/*rate;*/
  4864. enc_cfg.is_signed = 1;
  4865. channel_mapping = enc_cfg.channel_mapping;
  4866. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4867. if (q6asm_map_channels(channel_mapping, channels, false)) {
  4868. pr_err("%s: map channels failed %d\n", __func__, channels);
  4869. return -EINVAL;
  4870. }
  4871. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4872. if (rc < 0) {
  4873. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4874. rc = -EINVAL;
  4875. goto fail_cmd;
  4876. }
  4877. rc = wait_event_timeout(ac->cmd_wait,
  4878. (atomic_read(&ac->cmd_state) >= 0),
  4879. msecs_to_jiffies(TIMEOUT_MS));
  4880. if (!rc) {
  4881. pr_err("%s: timeout opcode[0x%x]\n",
  4882. __func__, enc_cfg.hdr.opcode);
  4883. rc = -ETIMEDOUT;
  4884. goto fail_cmd;
  4885. }
  4886. if (atomic_read(&ac->cmd_state) > 0) {
  4887. pr_err("%s: DSP returned error[%s]\n",
  4888. __func__, adsp_err_get_err_str(
  4889. atomic_read(&ac->cmd_state)));
  4890. rc = adsp_err_get_lnx_err_code(
  4891. atomic_read(&ac->cmd_state));
  4892. goto fail_cmd;
  4893. }
  4894. return 0;
  4895. fail_cmd:
  4896. return rc;
  4897. }
  4898. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_native);
  4899. /*
  4900. * q6asm_map_channels:
  4901. * Provide default asm channel mapping for given channel count.
  4902. *
  4903. * @channel_mapping: buffer pointer to write back channel maps.
  4904. * @channels: channel count for which channel map is required.
  4905. * @use_back_flavor: use back channels instead of surround channels.
  4906. * Returns 0 for success, -EINVAL for unsupported channel count.
  4907. */
  4908. int q6asm_map_channels(u8 *channel_mapping, uint32_t channels,
  4909. bool use_back_flavor)
  4910. {
  4911. u8 *lchannel_mapping;
  4912. lchannel_mapping = channel_mapping;
  4913. pr_debug("%s: channels passed: %d\n", __func__, channels);
  4914. if (channels == 1) {
  4915. lchannel_mapping[0] = PCM_CHANNEL_FC;
  4916. } else if (channels == 2) {
  4917. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4918. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4919. } else if (channels == 3) {
  4920. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4921. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4922. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4923. } else if (channels == 4) {
  4924. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4925. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4926. lchannel_mapping[2] = use_back_flavor ?
  4927. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  4928. lchannel_mapping[3] = use_back_flavor ?
  4929. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  4930. } else if (channels == 5) {
  4931. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4932. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4933. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4934. lchannel_mapping[3] = use_back_flavor ?
  4935. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  4936. lchannel_mapping[4] = use_back_flavor ?
  4937. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  4938. } else if (channels == 6) {
  4939. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4940. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4941. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4942. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  4943. lchannel_mapping[4] = use_back_flavor ?
  4944. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  4945. lchannel_mapping[5] = use_back_flavor ?
  4946. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  4947. } else if (channels == 7) {
  4948. /*
  4949. * Configured for 5.1 channel mapping + 1 channel for debug
  4950. * Can be customized based on DSP.
  4951. */
  4952. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4953. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4954. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4955. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  4956. lchannel_mapping[4] = use_back_flavor ?
  4957. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  4958. lchannel_mapping[5] = use_back_flavor ?
  4959. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  4960. lchannel_mapping[6] = PCM_CHANNEL_CS;
  4961. } else if (channels == 8) {
  4962. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4963. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4964. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4965. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  4966. lchannel_mapping[4] = PCM_CHANNEL_LB;
  4967. lchannel_mapping[5] = PCM_CHANNEL_RB;
  4968. lchannel_mapping[6] = PCM_CHANNEL_LS;
  4969. lchannel_mapping[7] = PCM_CHANNEL_RS;
  4970. } else if (channels == 12) {
  4971. /*
  4972. * Configured for 7.1.4 channel mapping
  4973. * Todo: Needs to be checked
  4974. */
  4975. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4976. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4977. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4978. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  4979. lchannel_mapping[4] = PCM_CHANNEL_LB;
  4980. lchannel_mapping[5] = PCM_CHANNEL_RB;
  4981. lchannel_mapping[6] = PCM_CHANNEL_LS;
  4982. lchannel_mapping[7] = PCM_CHANNEL_RS;
  4983. lchannel_mapping[8] = PCM_CHANNEL_TFL;
  4984. lchannel_mapping[9] = PCM_CHANNEL_TFR;
  4985. lchannel_mapping[10] = PCM_CHANNEL_TSL;
  4986. lchannel_mapping[11] = PCM_CHANNEL_TSR;
  4987. } else if (channels == 16) {
  4988. /*
  4989. * Configured for 7.1.8 channel mapping
  4990. * Todo: Needs to be checked
  4991. */
  4992. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4993. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4994. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4995. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  4996. lchannel_mapping[4] = PCM_CHANNEL_LB;
  4997. lchannel_mapping[5] = PCM_CHANNEL_RB;
  4998. lchannel_mapping[6] = PCM_CHANNEL_LS;
  4999. lchannel_mapping[7] = PCM_CHANNEL_RS;
  5000. lchannel_mapping[8] = PCM_CHANNEL_TFL;
  5001. lchannel_mapping[9] = PCM_CHANNEL_TFR;
  5002. lchannel_mapping[10] = PCM_CHANNEL_TSL;
  5003. lchannel_mapping[11] = PCM_CHANNEL_TSR;
  5004. lchannel_mapping[12] = PCM_CHANNEL_FLC;
  5005. lchannel_mapping[13] = PCM_CHANNEL_FRC;
  5006. lchannel_mapping[14] = PCM_CHANNEL_RLC;
  5007. lchannel_mapping[15] = PCM_CHANNEL_RRC;
  5008. } else {
  5009. pr_err("%s: ERROR.unsupported num_ch = %u\n",
  5010. __func__, channels);
  5011. return -EINVAL;
  5012. }
  5013. return 0;
  5014. }
  5015. EXPORT_SYMBOL(q6asm_map_channels);
  5016. /**
  5017. * q6asm_enable_sbrps -
  5018. * command to enable sbrps for ASM
  5019. *
  5020. * @ac: Audio client handle
  5021. * @sbr_ps_enable: flag for sbr_ps enable or disable
  5022. *
  5023. * Returns 0 on success or error on failure
  5024. */
  5025. int q6asm_enable_sbrps(struct audio_client *ac,
  5026. uint32_t sbr_ps_enable)
  5027. {
  5028. struct asm_aac_sbr_ps_flag_param sbrps;
  5029. u32 frames_per_buf = 0;
  5030. int rc = 0;
  5031. pr_debug("%s: Session %d\n", __func__, ac->session);
  5032. q6asm_add_hdr(ac, &sbrps.hdr, sizeof(sbrps), TRUE);
  5033. atomic_set(&ac->cmd_state, -1);
  5034. sbrps.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5035. sbrps.encdec.param_id = ASM_PARAM_ID_AAC_SBR_PS_FLAG;
  5036. sbrps.encdec.param_size = sizeof(struct asm_aac_sbr_ps_flag_param) -
  5037. sizeof(struct asm_stream_cmd_set_encdec_param);
  5038. sbrps.encblk.frames_per_buf = frames_per_buf;
  5039. sbrps.encblk.enc_cfg_blk_size = sbrps.encdec.param_size -
  5040. sizeof(struct asm_enc_cfg_blk_param_v2);
  5041. sbrps.sbr_ps_flag = sbr_ps_enable;
  5042. rc = apr_send_pkt(ac->apr, (uint32_t *) &sbrps);
  5043. if (rc < 0) {
  5044. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5045. __func__,
  5046. ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5047. ASM_PARAM_ID_AAC_SBR_PS_FLAG, rc);
  5048. rc = -EINVAL;
  5049. goto fail_cmd;
  5050. }
  5051. rc = wait_event_timeout(ac->cmd_wait,
  5052. (atomic_read(&ac->cmd_state) >= 0),
  5053. msecs_to_jiffies(TIMEOUT_MS));
  5054. if (!rc) {
  5055. pr_err("%s: timeout opcode[0x%x] ", __func__, sbrps.hdr.opcode);
  5056. rc = -ETIMEDOUT;
  5057. goto fail_cmd;
  5058. }
  5059. if (atomic_read(&ac->cmd_state) > 0) {
  5060. pr_err("%s: DSP returned error[%s]\n",
  5061. __func__, adsp_err_get_err_str(
  5062. atomic_read(&ac->cmd_state)));
  5063. rc = adsp_err_get_lnx_err_code(
  5064. atomic_read(&ac->cmd_state));
  5065. goto fail_cmd;
  5066. }
  5067. return 0;
  5068. fail_cmd:
  5069. return rc;
  5070. }
  5071. EXPORT_SYMBOL(q6asm_enable_sbrps);
  5072. /**
  5073. * q6asm_cfg_dual_mono_aac -
  5074. * command to set config for dual mono aac
  5075. *
  5076. * @ac: Audio client handle
  5077. * @sce_left: left sce val
  5078. * @sce_right: right sce val
  5079. *
  5080. * Returns 0 on success or error on failure
  5081. */
  5082. int q6asm_cfg_dual_mono_aac(struct audio_client *ac,
  5083. uint16_t sce_left, uint16_t sce_right)
  5084. {
  5085. struct asm_aac_dual_mono_mapping_param dual_mono;
  5086. int rc = 0;
  5087. pr_debug("%s: Session %d, sce_left = %d, sce_right = %d\n",
  5088. __func__, ac->session, sce_left, sce_right);
  5089. q6asm_add_hdr(ac, &dual_mono.hdr, sizeof(dual_mono), TRUE);
  5090. atomic_set(&ac->cmd_state, -1);
  5091. dual_mono.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5092. dual_mono.encdec.param_id = ASM_PARAM_ID_AAC_DUAL_MONO_MAPPING;
  5093. dual_mono.encdec.param_size = sizeof(dual_mono.left_channel_sce) +
  5094. sizeof(dual_mono.right_channel_sce);
  5095. dual_mono.left_channel_sce = sce_left;
  5096. dual_mono.right_channel_sce = sce_right;
  5097. rc = apr_send_pkt(ac->apr, (uint32_t *) &dual_mono);
  5098. if (rc < 0) {
  5099. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5100. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5101. ASM_PARAM_ID_AAC_DUAL_MONO_MAPPING, rc);
  5102. rc = -EINVAL;
  5103. goto fail_cmd;
  5104. }
  5105. rc = wait_event_timeout(ac->cmd_wait,
  5106. (atomic_read(&ac->cmd_state) >= 0),
  5107. msecs_to_jiffies(TIMEOUT_MS));
  5108. if (!rc) {
  5109. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  5110. dual_mono.hdr.opcode);
  5111. rc = -ETIMEDOUT;
  5112. goto fail_cmd;
  5113. }
  5114. if (atomic_read(&ac->cmd_state) > 0) {
  5115. pr_err("%s: DSP returned error[%s]\n",
  5116. __func__, adsp_err_get_err_str(
  5117. atomic_read(&ac->cmd_state)));
  5118. rc = adsp_err_get_lnx_err_code(
  5119. atomic_read(&ac->cmd_state));
  5120. goto fail_cmd;
  5121. }
  5122. return 0;
  5123. fail_cmd:
  5124. return rc;
  5125. }
  5126. EXPORT_SYMBOL(q6asm_cfg_dual_mono_aac);
  5127. /* Support for selecting stereo mixing coefficients for B family not done */
  5128. int q6asm_cfg_aac_sel_mix_coef(struct audio_client *ac, uint32_t mix_coeff)
  5129. {
  5130. struct asm_aac_stereo_mix_coeff_selection_param_v2 aac_mix_coeff;
  5131. int rc = 0;
  5132. q6asm_add_hdr(ac, &aac_mix_coeff.hdr, sizeof(aac_mix_coeff), TRUE);
  5133. atomic_set(&ac->cmd_state, -1);
  5134. aac_mix_coeff.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5135. aac_mix_coeff.param_id =
  5136. ASM_PARAM_ID_AAC_STEREO_MIX_COEFF_SELECTION_FLAG_V2;
  5137. aac_mix_coeff.param_size =
  5138. sizeof(struct asm_aac_stereo_mix_coeff_selection_param_v2);
  5139. aac_mix_coeff.aac_stereo_mix_coeff_flag = mix_coeff;
  5140. pr_debug("%s: mix_coeff = %u\n", __func__, mix_coeff);
  5141. rc = apr_send_pkt(ac->apr, (uint32_t *) &aac_mix_coeff);
  5142. if (rc < 0) {
  5143. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5144. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5145. ASM_PARAM_ID_AAC_STEREO_MIX_COEFF_SELECTION_FLAG_V2,
  5146. rc);
  5147. rc = -EINVAL;
  5148. goto fail_cmd;
  5149. }
  5150. rc = wait_event_timeout(ac->cmd_wait,
  5151. (atomic_read(&ac->cmd_state) >= 0),
  5152. msecs_to_jiffies(TIMEOUT_MS));
  5153. if (!rc) {
  5154. pr_err("%s: timeout opcode[0x%x]\n",
  5155. __func__, aac_mix_coeff.hdr.opcode);
  5156. rc = -ETIMEDOUT;
  5157. goto fail_cmd;
  5158. }
  5159. if (atomic_read(&ac->cmd_state) > 0) {
  5160. pr_err("%s: DSP returned error[%s]\n",
  5161. __func__, adsp_err_get_err_str(
  5162. atomic_read(&ac->cmd_state)));
  5163. rc = adsp_err_get_lnx_err_code(
  5164. atomic_read(&ac->cmd_state));
  5165. goto fail_cmd;
  5166. }
  5167. return 0;
  5168. fail_cmd:
  5169. return rc;
  5170. }
  5171. EXPORT_SYMBOL(q6asm_cfg_aac_sel_mix_coef);
  5172. /**
  5173. * q6asm_enc_cfg_blk_qcelp -
  5174. * command to set encode config block for QCELP
  5175. *
  5176. * @ac: Audio client handle
  5177. * @frames_per_buf: Number of frames per buffer
  5178. * @min_rate: Minimum Enc rate
  5179. * @max_rate: Maximum Enc rate
  5180. * reduced_rate_level: Reduced rate level
  5181. * @rate_modulation_cmd: rate modulation command
  5182. *
  5183. * Returns 0 on success or error on failure
  5184. */
  5185. int q6asm_enc_cfg_blk_qcelp(struct audio_client *ac, uint32_t frames_per_buf,
  5186. uint16_t min_rate, uint16_t max_rate,
  5187. uint16_t reduced_rate_level, uint16_t rate_modulation_cmd)
  5188. {
  5189. struct asm_v13k_enc_cfg enc_cfg;
  5190. int rc = 0;
  5191. pr_debug("%s: session[%d]frames[%d]min_rate[0x%4x]max_rate[0x%4x] reduced_rate_level[0x%4x]rate_modulation_cmd[0x%4x]\n",
  5192. __func__,
  5193. ac->session, frames_per_buf, min_rate, max_rate,
  5194. reduced_rate_level, rate_modulation_cmd);
  5195. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5196. atomic_set(&ac->cmd_state, -1);
  5197. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5198. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5199. enc_cfg.encdec.param_size = sizeof(struct asm_v13k_enc_cfg) -
  5200. sizeof(struct asm_stream_cmd_set_encdec_param);
  5201. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5202. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5203. sizeof(struct asm_enc_cfg_blk_param_v2);
  5204. enc_cfg.min_rate = min_rate;
  5205. enc_cfg.max_rate = max_rate;
  5206. enc_cfg.reduced_rate_cmd = reduced_rate_level;
  5207. enc_cfg.rate_mod_cmd = rate_modulation_cmd;
  5208. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5209. if (rc < 0) {
  5210. pr_err("%s: Comamnd %d failed %d\n",
  5211. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5212. rc = -EINVAL;
  5213. goto fail_cmd;
  5214. }
  5215. rc = wait_event_timeout(ac->cmd_wait,
  5216. (atomic_read(&ac->cmd_state) >= 0),
  5217. msecs_to_jiffies(TIMEOUT_MS));
  5218. if (!rc) {
  5219. pr_err("%s: timeout. waited for setencdec v13k resp\n",
  5220. __func__);
  5221. rc = -ETIMEDOUT;
  5222. goto fail_cmd;
  5223. }
  5224. if (atomic_read(&ac->cmd_state) > 0) {
  5225. pr_err("%s: DSP returned error[%s]\n",
  5226. __func__, adsp_err_get_err_str(
  5227. atomic_read(&ac->cmd_state)));
  5228. rc = adsp_err_get_lnx_err_code(
  5229. atomic_read(&ac->cmd_state));
  5230. goto fail_cmd;
  5231. }
  5232. return 0;
  5233. fail_cmd:
  5234. return rc;
  5235. }
  5236. EXPORT_SYMBOL(q6asm_enc_cfg_blk_qcelp);
  5237. /**
  5238. * q6asm_enc_cfg_blk_evrc -
  5239. * command to set encode config block for EVRC
  5240. *
  5241. * @ac: Audio client handle
  5242. * @frames_per_buf: Number of frames per buffer
  5243. * @min_rate: Minimum Enc rate
  5244. * @max_rate: Maximum Enc rate
  5245. * @rate_modulation_cmd: rate modulation command
  5246. *
  5247. * Returns 0 on success or error on failure
  5248. */
  5249. int q6asm_enc_cfg_blk_evrc(struct audio_client *ac, uint32_t frames_per_buf,
  5250. uint16_t min_rate, uint16_t max_rate,
  5251. uint16_t rate_modulation_cmd)
  5252. {
  5253. struct asm_evrc_enc_cfg enc_cfg;
  5254. int rc = 0;
  5255. pr_debug("%s: session[%d]frames[%d]min_rate[0x%4x]max_rate[0x%4x] rate_modulation_cmd[0x%4x]\n",
  5256. __func__, ac->session,
  5257. frames_per_buf, min_rate, max_rate, rate_modulation_cmd);
  5258. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5259. atomic_set(&ac->cmd_state, -1);
  5260. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5261. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5262. enc_cfg.encdec.param_size = sizeof(struct asm_evrc_enc_cfg) -
  5263. sizeof(struct asm_stream_cmd_set_encdec_param);
  5264. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5265. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5266. sizeof(struct asm_enc_cfg_blk_param_v2);
  5267. enc_cfg.min_rate = min_rate;
  5268. enc_cfg.max_rate = max_rate;
  5269. enc_cfg.rate_mod_cmd = rate_modulation_cmd;
  5270. enc_cfg.reserved = 0;
  5271. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5272. if (rc < 0) {
  5273. pr_err("%s: Comamnd %d failed %d\n",
  5274. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5275. rc = -EINVAL;
  5276. goto fail_cmd;
  5277. }
  5278. rc = wait_event_timeout(ac->cmd_wait,
  5279. (atomic_read(&ac->cmd_state) >= 0),
  5280. msecs_to_jiffies(TIMEOUT_MS));
  5281. if (!rc) {
  5282. pr_err("%s: timeout. waited for encdec evrc\n", __func__);
  5283. rc = -ETIMEDOUT;
  5284. goto fail_cmd;
  5285. }
  5286. if (atomic_read(&ac->cmd_state) > 0) {
  5287. pr_err("%s: DSP returned error[%s]\n",
  5288. __func__, adsp_err_get_err_str(
  5289. atomic_read(&ac->cmd_state)));
  5290. rc = adsp_err_get_lnx_err_code(
  5291. atomic_read(&ac->cmd_state));
  5292. goto fail_cmd;
  5293. }
  5294. return 0;
  5295. fail_cmd:
  5296. return rc;
  5297. }
  5298. EXPORT_SYMBOL(q6asm_enc_cfg_blk_evrc);
  5299. /**
  5300. * q6asm_enc_cfg_blk_amrnb -
  5301. * command to set encode config block for AMRNB
  5302. *
  5303. * @ac: Audio client handle
  5304. * @frames_per_buf: Number of frames per buffer
  5305. * @band_mode: Band mode used
  5306. * @dtx_enable: DTX en flag
  5307. *
  5308. * Returns 0 on success or error on failure
  5309. */
  5310. int q6asm_enc_cfg_blk_amrnb(struct audio_client *ac, uint32_t frames_per_buf,
  5311. uint16_t band_mode, uint16_t dtx_enable)
  5312. {
  5313. struct asm_amrnb_enc_cfg enc_cfg;
  5314. int rc = 0;
  5315. pr_debug("%s: session[%d]frames[%d]band_mode[0x%4x]dtx_enable[0x%4x]\n",
  5316. __func__, ac->session, frames_per_buf, band_mode, dtx_enable);
  5317. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5318. atomic_set(&ac->cmd_state, -1);
  5319. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5320. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5321. enc_cfg.encdec.param_size = sizeof(struct asm_amrnb_enc_cfg) -
  5322. sizeof(struct asm_stream_cmd_set_encdec_param);
  5323. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5324. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5325. sizeof(struct asm_enc_cfg_blk_param_v2);
  5326. enc_cfg.enc_mode = band_mode;
  5327. enc_cfg.dtx_mode = dtx_enable;
  5328. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5329. if (rc < 0) {
  5330. pr_err("%s: Comamnd %d failed %d\n",
  5331. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5332. rc = -EINVAL;
  5333. goto fail_cmd;
  5334. }
  5335. rc = wait_event_timeout(ac->cmd_wait,
  5336. (atomic_read(&ac->cmd_state) >= 0),
  5337. msecs_to_jiffies(TIMEOUT_MS));
  5338. if (!rc) {
  5339. pr_err("%s: timeout. waited for set encdec amrnb\n", __func__);
  5340. rc = -ETIMEDOUT;
  5341. goto fail_cmd;
  5342. }
  5343. if (atomic_read(&ac->cmd_state) > 0) {
  5344. pr_err("%s: DSP returned error[%s]\n",
  5345. __func__, adsp_err_get_err_str(
  5346. atomic_read(&ac->cmd_state)));
  5347. rc = adsp_err_get_lnx_err_code(
  5348. atomic_read(&ac->cmd_state));
  5349. goto fail_cmd;
  5350. }
  5351. return 0;
  5352. fail_cmd:
  5353. return rc;
  5354. }
  5355. EXPORT_SYMBOL(q6asm_enc_cfg_blk_amrnb);
  5356. /**
  5357. * q6asm_enc_cfg_blk_amrwb -
  5358. * command to set encode config block for AMRWB
  5359. *
  5360. * @ac: Audio client handle
  5361. * @frames_per_buf: Number of frames per buffer
  5362. * @band_mode: Band mode used
  5363. * @dtx_enable: DTX en flag
  5364. *
  5365. * Returns 0 on success or error on failure
  5366. */
  5367. int q6asm_enc_cfg_blk_amrwb(struct audio_client *ac, uint32_t frames_per_buf,
  5368. uint16_t band_mode, uint16_t dtx_enable)
  5369. {
  5370. struct asm_amrwb_enc_cfg enc_cfg;
  5371. int rc = 0;
  5372. pr_debug("%s: session[%d]frames[%d]band_mode[0x%4x]dtx_enable[0x%4x]\n",
  5373. __func__, ac->session, frames_per_buf, band_mode, dtx_enable);
  5374. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5375. atomic_set(&ac->cmd_state, -1);
  5376. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5377. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5378. enc_cfg.encdec.param_size = sizeof(struct asm_amrwb_enc_cfg) -
  5379. sizeof(struct asm_stream_cmd_set_encdec_param);
  5380. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5381. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5382. sizeof(struct asm_enc_cfg_blk_param_v2);
  5383. enc_cfg.enc_mode = band_mode;
  5384. enc_cfg.dtx_mode = dtx_enable;
  5385. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5386. if (rc < 0) {
  5387. pr_err("%s: Comamnd %d failed %d\n",
  5388. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5389. rc = -EINVAL;
  5390. goto fail_cmd;
  5391. }
  5392. rc = wait_event_timeout(ac->cmd_wait,
  5393. (atomic_read(&ac->cmd_state) >= 0),
  5394. msecs_to_jiffies(TIMEOUT_MS));
  5395. if (!rc) {
  5396. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  5397. rc = -ETIMEDOUT;
  5398. goto fail_cmd;
  5399. }
  5400. if (atomic_read(&ac->cmd_state) > 0) {
  5401. pr_err("%s: DSP returned error[%s]\n",
  5402. __func__, adsp_err_get_err_str(
  5403. atomic_read(&ac->cmd_state)));
  5404. rc = adsp_err_get_lnx_err_code(
  5405. atomic_read(&ac->cmd_state));
  5406. goto fail_cmd;
  5407. }
  5408. return 0;
  5409. fail_cmd:
  5410. return rc;
  5411. }
  5412. EXPORT_SYMBOL(q6asm_enc_cfg_blk_amrwb);
  5413. static int __q6asm_media_format_block_pcm(struct audio_client *ac,
  5414. uint32_t rate, uint32_t channels,
  5415. uint16_t bits_per_sample, int stream_id,
  5416. bool use_default_chmap, char *channel_map)
  5417. {
  5418. struct asm_multi_channel_pcm_fmt_blk_v2 fmt;
  5419. u8 *channel_mapping;
  5420. int rc = 0;
  5421. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session, rate,
  5422. channels);
  5423. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5424. atomic_set(&ac->cmd_state, -1);
  5425. /*
  5426. * Updated the token field with stream/session for compressed playback
  5427. * Platform driver must know the the stream with which the command is
  5428. * associated
  5429. */
  5430. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5431. q6asm_update_token(&fmt.hdr.token,
  5432. ac->session,
  5433. stream_id,
  5434. 0, /* Buffer index is NA */
  5435. 0, /* Direction flag is NA */
  5436. WAIT_CMD);
  5437. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5438. __func__, fmt.hdr.token, stream_id, ac->session);
  5439. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5440. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5441. sizeof(fmt.fmt_blk);
  5442. fmt.num_channels = channels;
  5443. fmt.bits_per_sample = bits_per_sample;
  5444. fmt.sample_rate = rate;
  5445. fmt.is_signed = 1;
  5446. channel_mapping = fmt.channel_mapping;
  5447. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5448. if (use_default_chmap) {
  5449. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5450. pr_err("%s: map channels failed %d\n",
  5451. __func__, channels);
  5452. return -EINVAL;
  5453. }
  5454. } else {
  5455. memcpy(channel_mapping, channel_map,
  5456. PCM_FORMAT_MAX_NUM_CHANNEL);
  5457. }
  5458. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5459. if (rc < 0) {
  5460. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5461. rc = -EINVAL;
  5462. goto fail_cmd;
  5463. }
  5464. rc = wait_event_timeout(ac->cmd_wait,
  5465. (atomic_read(&ac->cmd_state) >= 0),
  5466. msecs_to_jiffies(TIMEOUT_MS));
  5467. if (!rc) {
  5468. pr_err("%s: timeout. waited for format update\n", __func__);
  5469. rc = -ETIMEDOUT;
  5470. goto fail_cmd;
  5471. }
  5472. if (atomic_read(&ac->cmd_state) > 0) {
  5473. pr_err("%s: DSP returned error[%s]\n",
  5474. __func__, adsp_err_get_err_str(
  5475. atomic_read(&ac->cmd_state)));
  5476. rc = adsp_err_get_lnx_err_code(
  5477. atomic_read(&ac->cmd_state));
  5478. goto fail_cmd;
  5479. }
  5480. return 0;
  5481. fail_cmd:
  5482. return rc;
  5483. }
  5484. static int __q6asm_media_format_block_pcm_v3(struct audio_client *ac,
  5485. uint32_t rate, uint32_t channels,
  5486. uint16_t bits_per_sample,
  5487. int stream_id,
  5488. bool use_default_chmap,
  5489. char *channel_map,
  5490. uint16_t sample_word_size)
  5491. {
  5492. struct asm_multi_channel_pcm_fmt_blk_param_v3 fmt;
  5493. u8 *channel_mapping;
  5494. int rc;
  5495. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5496. ac->session, rate, channels,
  5497. bits_per_sample, sample_word_size);
  5498. memset(&fmt, 0, sizeof(fmt));
  5499. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5500. atomic_set(&ac->cmd_state, -1);
  5501. /*
  5502. * Updated the token field with stream/session for compressed playback
  5503. * Platform driver must know the the stream with which the command is
  5504. * associated
  5505. */
  5506. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5507. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5508. (stream_id & 0xFF);
  5509. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5510. __func__, fmt.hdr.token, stream_id, ac->session);
  5511. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5512. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5513. sizeof(fmt.fmt_blk);
  5514. fmt.param.num_channels = channels;
  5515. fmt.param.bits_per_sample = bits_per_sample;
  5516. fmt.param.sample_rate = rate;
  5517. fmt.param.is_signed = 1;
  5518. fmt.param.sample_word_size = sample_word_size;
  5519. channel_mapping = fmt.param.channel_mapping;
  5520. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5521. if (use_default_chmap) {
  5522. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5523. pr_err("%s: map channels failed %d\n",
  5524. __func__, channels);
  5525. rc = -EINVAL;
  5526. goto fail_cmd;
  5527. }
  5528. } else {
  5529. memcpy(channel_mapping, channel_map,
  5530. PCM_FORMAT_MAX_NUM_CHANNEL);
  5531. }
  5532. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5533. if (rc < 0) {
  5534. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5535. rc = -EINVAL;
  5536. goto fail_cmd;
  5537. }
  5538. rc = wait_event_timeout(ac->cmd_wait,
  5539. (atomic_read(&ac->cmd_state) >= 0),
  5540. msecs_to_jiffies(TIMEOUT_MS));
  5541. if (!rc) {
  5542. pr_err("%s: timeout. waited for format update\n", __func__);
  5543. rc = -ETIMEDOUT;
  5544. goto fail_cmd;
  5545. }
  5546. if (atomic_read(&ac->cmd_state) > 0) {
  5547. pr_err("%s: DSP returned error[%s]\n",
  5548. __func__, adsp_err_get_err_str(
  5549. atomic_read(&ac->cmd_state)));
  5550. rc = adsp_err_get_lnx_err_code(
  5551. atomic_read(&ac->cmd_state));
  5552. goto fail_cmd;
  5553. }
  5554. return 0;
  5555. fail_cmd:
  5556. return rc;
  5557. }
  5558. static int __q6asm_media_format_block_pcm_v4(struct audio_client *ac,
  5559. uint32_t rate, uint32_t channels,
  5560. uint16_t bits_per_sample,
  5561. int stream_id,
  5562. bool use_default_chmap,
  5563. char *channel_map,
  5564. uint16_t sample_word_size,
  5565. uint16_t endianness,
  5566. uint16_t mode)
  5567. {
  5568. struct asm_multi_channel_pcm_fmt_blk_param_v4 fmt;
  5569. u8 *channel_mapping;
  5570. int rc;
  5571. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5572. ac->session, rate, channels,
  5573. bits_per_sample, sample_word_size);
  5574. memset(&fmt, 0, sizeof(fmt));
  5575. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5576. atomic_set(&ac->cmd_state, -1);
  5577. /*
  5578. * Updated the token field with stream/session for compressed playback
  5579. * Platform driver must know the the stream with which the command is
  5580. * associated
  5581. */
  5582. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5583. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5584. (stream_id & 0xFF);
  5585. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5586. __func__, fmt.hdr.token, stream_id, ac->session);
  5587. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5588. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5589. sizeof(fmt.fmt_blk);
  5590. fmt.param.num_channels = channels;
  5591. fmt.param.bits_per_sample = bits_per_sample;
  5592. fmt.param.sample_rate = rate;
  5593. fmt.param.is_signed = 1;
  5594. fmt.param.sample_word_size = sample_word_size;
  5595. fmt.param.endianness = endianness;
  5596. fmt.param.mode = mode;
  5597. channel_mapping = fmt.param.channel_mapping;
  5598. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5599. if (use_default_chmap) {
  5600. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5601. pr_err("%s: map channels failed %d\n",
  5602. __func__, channels);
  5603. rc = -EINVAL;
  5604. goto fail_cmd;
  5605. }
  5606. } else {
  5607. memcpy(channel_mapping, channel_map,
  5608. PCM_FORMAT_MAX_NUM_CHANNEL);
  5609. }
  5610. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5611. if (rc < 0) {
  5612. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5613. rc = -EINVAL;
  5614. goto fail_cmd;
  5615. }
  5616. rc = wait_event_timeout(ac->cmd_wait,
  5617. (atomic_read(&ac->cmd_state) >= 0),
  5618. msecs_to_jiffies(TIMEOUT_MS));
  5619. if (!rc) {
  5620. pr_err("%s: timeout. waited for format update\n", __func__);
  5621. rc = -ETIMEDOUT;
  5622. goto fail_cmd;
  5623. }
  5624. if (atomic_read(&ac->cmd_state) > 0) {
  5625. pr_err("%s: DSP returned error[%s]\n",
  5626. __func__, adsp_err_get_err_str(
  5627. atomic_read(&ac->cmd_state)));
  5628. rc = adsp_err_get_lnx_err_code(
  5629. atomic_read(&ac->cmd_state));
  5630. goto fail_cmd;
  5631. }
  5632. return 0;
  5633. fail_cmd:
  5634. return rc;
  5635. }
  5636. static int __q6asm_media_format_block_pcm_v5(struct audio_client *ac,
  5637. uint32_t rate, uint32_t channels,
  5638. uint16_t bits_per_sample,
  5639. int stream_id,
  5640. bool use_default_chmap,
  5641. char *channel_map,
  5642. uint16_t sample_word_size,
  5643. uint16_t endianness,
  5644. uint16_t mode)
  5645. {
  5646. struct asm_multi_channel_pcm_fmt_blk_param_v5 fmt;
  5647. u8 *channel_mapping;
  5648. int rc;
  5649. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5650. ac->session, rate, channels,
  5651. bits_per_sample, sample_word_size);
  5652. memset(&fmt, 0, sizeof(fmt));
  5653. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5654. atomic_set(&ac->cmd_state, -1);
  5655. /*
  5656. * Updated the token field with stream/session for compressed playback
  5657. * Platform driver must know the the stream with which the command is
  5658. * associated
  5659. */
  5660. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5661. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5662. (stream_id & 0xFF);
  5663. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5664. __func__, fmt.hdr.token, stream_id, ac->session);
  5665. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5666. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5667. sizeof(fmt.fmt_blk);
  5668. fmt.param.num_channels = (uint16_t) channels & 0xFFFF;
  5669. fmt.param.bits_per_sample = bits_per_sample;
  5670. fmt.param.sample_rate = rate;
  5671. fmt.param.is_signed = 1;
  5672. fmt.param.sample_word_size = sample_word_size;
  5673. fmt.param.endianness = endianness;
  5674. fmt.param.mode = mode;
  5675. channel_mapping = fmt.param.channel_mapping;
  5676. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  5677. if (use_default_chmap) {
  5678. if (q6asm_map_channels(channel_mapping, fmt.param.num_channels, false)) {
  5679. pr_err("%s: map channels failed %d\n",
  5680. __func__, channels);
  5681. rc = -EINVAL;
  5682. goto fail_cmd;
  5683. }
  5684. } else {
  5685. memcpy(channel_mapping, channel_map,
  5686. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  5687. }
  5688. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5689. if (rc < 0) {
  5690. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5691. rc = -EINVAL;
  5692. goto fail_cmd;
  5693. }
  5694. rc = wait_event_timeout(ac->cmd_wait,
  5695. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5696. if (!rc) {
  5697. pr_err("%s: timeout. waited for format update\n", __func__);
  5698. rc = -ETIMEDOUT;
  5699. goto fail_cmd;
  5700. }
  5701. if (atomic_read(&ac->cmd_state) > 0) {
  5702. pr_err("%s: DSP returned error[%s]\n",
  5703. __func__, adsp_err_get_err_str(
  5704. atomic_read(&ac->cmd_state)));
  5705. rc = adsp_err_get_lnx_err_code(
  5706. atomic_read(&ac->cmd_state));
  5707. goto fail_cmd;
  5708. }
  5709. return 0;
  5710. fail_cmd:
  5711. return rc;
  5712. }
  5713. /**
  5714. * q6asm_media_format_block_pcm -
  5715. * command to set mediafmt block for PCM on ASM stream
  5716. *
  5717. * @ac: Audio client handle
  5718. * @rate: sample rate
  5719. * @channels: number of ASM channels
  5720. *
  5721. * Returns 0 on success or error on failure
  5722. */
  5723. int q6asm_media_format_block_pcm(struct audio_client *ac,
  5724. uint32_t rate, uint32_t channels)
  5725. {
  5726. return __q6asm_media_format_block_pcm(ac, rate,
  5727. channels, 16, ac->stream_id,
  5728. true, NULL);
  5729. }
  5730. EXPORT_SYMBOL(q6asm_media_format_block_pcm);
  5731. /**
  5732. * q6asm_media_format_block_pcm_format_support -
  5733. * command to set mediafmt block for PCM format support
  5734. *
  5735. * @ac: Audio client handle
  5736. * @rate: sample rate
  5737. * @channels: number of ASM channels
  5738. * @bits_per_sample: number of bits per sample
  5739. *
  5740. * Returns 0 on success or error on failure
  5741. */
  5742. int q6asm_media_format_block_pcm_format_support(struct audio_client *ac,
  5743. uint32_t rate, uint32_t channels,
  5744. uint16_t bits_per_sample)
  5745. {
  5746. return __q6asm_media_format_block_pcm(ac, rate,
  5747. channels, bits_per_sample, ac->stream_id,
  5748. true, NULL);
  5749. }
  5750. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support);
  5751. int q6asm_media_format_block_pcm_format_support_v2(struct audio_client *ac,
  5752. uint32_t rate, uint32_t channels,
  5753. uint16_t bits_per_sample, int stream_id,
  5754. bool use_default_chmap, char *channel_map)
  5755. {
  5756. if (!use_default_chmap && (channel_map == NULL)) {
  5757. pr_err("%s: No valid chan map and can't use default\n",
  5758. __func__);
  5759. return -EINVAL;
  5760. }
  5761. return __q6asm_media_format_block_pcm(ac, rate,
  5762. channels, bits_per_sample, stream_id,
  5763. use_default_chmap, channel_map);
  5764. }
  5765. /*
  5766. * q6asm_media_format_block_pcm_format_support_v3- sends pcm decoder
  5767. * configuration parameters
  5768. *
  5769. * @ac: Client session handle
  5770. * @rate: sample rate
  5771. * @channels: number of channels
  5772. * @bits_per_sample: bit width of encoder session
  5773. * @stream_id: stream id of stream to be associated with this session
  5774. * @use_default_chmap: true if default channel map to be used
  5775. * @channel_map: input channel map
  5776. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5777. */
  5778. int q6asm_media_format_block_pcm_format_support_v3(struct audio_client *ac,
  5779. uint32_t rate,
  5780. uint32_t channels,
  5781. uint16_t bits_per_sample,
  5782. int stream_id,
  5783. bool use_default_chmap,
  5784. char *channel_map,
  5785. uint16_t sample_word_size)
  5786. {
  5787. if (!use_default_chmap && (channel_map == NULL)) {
  5788. pr_err("%s: No valid chan map and can't use default\n",
  5789. __func__);
  5790. return -EINVAL;
  5791. }
  5792. return __q6asm_media_format_block_pcm_v3(ac, rate,
  5793. channels, bits_per_sample, stream_id,
  5794. use_default_chmap, channel_map,
  5795. sample_word_size);
  5796. }
  5797. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v3);
  5798. /*
  5799. * q6asm_media_format_block_pcm_format_support_v4- sends pcm decoder
  5800. * configuration parameters
  5801. *
  5802. * @ac: Client session handle
  5803. * @rate: sample rate
  5804. * @channels: number of channels
  5805. * @bits_per_sample: bit width of encoder session
  5806. * @stream_id: stream id of stream to be associated with this session
  5807. * @use_default_chmap: true if default channel map to be used
  5808. * @channel_map: input channel map
  5809. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5810. * @endianness: endianness of the pcm data
  5811. * @mode: Mode to provide additional info about the pcm input data
  5812. */
  5813. int q6asm_media_format_block_pcm_format_support_v4(struct audio_client *ac,
  5814. uint32_t rate,
  5815. uint32_t channels,
  5816. uint16_t bits_per_sample,
  5817. int stream_id,
  5818. bool use_default_chmap,
  5819. char *channel_map,
  5820. uint16_t sample_word_size,
  5821. uint16_t endianness,
  5822. uint16_t mode)
  5823. {
  5824. if (!use_default_chmap && (channel_map == NULL)) {
  5825. pr_err("%s: No valid chan map and can't use default\n",
  5826. __func__);
  5827. return -EINVAL;
  5828. }
  5829. return __q6asm_media_format_block_pcm_v4(ac, rate,
  5830. channels, bits_per_sample, stream_id,
  5831. use_default_chmap, channel_map,
  5832. sample_word_size, endianness,
  5833. mode);
  5834. }
  5835. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v4);
  5836. /*
  5837. * q6asm_media_format_block_pcm_format_support_v5- sends pcm decoder
  5838. * configuration parameters
  5839. *
  5840. * @ac: Client session handle
  5841. * @rate: sample rate
  5842. * @channels: number of channels
  5843. * @bits_per_sample: bit width of encoder session
  5844. * @stream_id: stream id of stream to be associated with this session
  5845. * @use_default_chmap: true if default channel map to be used
  5846. * @channel_map: input channel map
  5847. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5848. * @endianness: endianness of the pcm data
  5849. * @mode: Mode to provide additional info about the pcm input data
  5850. */
  5851. int q6asm_media_format_block_pcm_format_support_v5(struct audio_client *ac,
  5852. uint32_t rate,
  5853. uint32_t channels,
  5854. uint16_t bits_per_sample,
  5855. int stream_id,
  5856. bool use_default_chmap,
  5857. char *channel_map,
  5858. uint16_t sample_word_size,
  5859. uint16_t endianness,
  5860. uint16_t mode)
  5861. {
  5862. if (!use_default_chmap && (channel_map == NULL)) {
  5863. pr_err("%s: No valid chan map and can't use default\n",
  5864. __func__);
  5865. return -EINVAL;
  5866. }
  5867. return __q6asm_media_format_block_pcm_v5(ac, rate,
  5868. channels, bits_per_sample, stream_id,
  5869. use_default_chmap, channel_map,
  5870. sample_word_size, endianness,
  5871. mode);
  5872. }
  5873. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v5);
  5874. static int __q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  5875. uint32_t rate, uint32_t channels,
  5876. bool use_default_chmap, char *channel_map,
  5877. uint16_t bits_per_sample)
  5878. {
  5879. struct asm_multi_channel_pcm_fmt_blk_v2 fmt;
  5880. u8 *channel_mapping;
  5881. int rc = 0;
  5882. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session, rate,
  5883. channels);
  5884. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  5885. atomic_set(&ac->cmd_state, -1);
  5886. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5887. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5888. sizeof(fmt.fmt_blk);
  5889. fmt.num_channels = channels;
  5890. fmt.bits_per_sample = bits_per_sample;
  5891. fmt.sample_rate = rate;
  5892. fmt.is_signed = 1;
  5893. channel_mapping = fmt.channel_mapping;
  5894. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5895. if (use_default_chmap) {
  5896. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5897. pr_err("%s: map channels failed %d\n",
  5898. __func__, channels);
  5899. return -EINVAL;
  5900. }
  5901. } else {
  5902. memcpy(channel_mapping, channel_map,
  5903. PCM_FORMAT_MAX_NUM_CHANNEL);
  5904. }
  5905. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5906. if (rc < 0) {
  5907. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5908. rc = -EINVAL;
  5909. goto fail_cmd;
  5910. }
  5911. rc = wait_event_timeout(ac->cmd_wait,
  5912. (atomic_read(&ac->cmd_state) >= 0),
  5913. msecs_to_jiffies(TIMEOUT_MS));
  5914. if (!rc) {
  5915. pr_err("%s: timeout. waited for format update\n", __func__);
  5916. rc = -ETIMEDOUT;
  5917. goto fail_cmd;
  5918. }
  5919. if (atomic_read(&ac->cmd_state) > 0) {
  5920. pr_err("%s: DSP returned error[%s]\n",
  5921. __func__, adsp_err_get_err_str(
  5922. atomic_read(&ac->cmd_state)));
  5923. rc = adsp_err_get_lnx_err_code(
  5924. atomic_read(&ac->cmd_state));
  5925. goto fail_cmd;
  5926. }
  5927. return 0;
  5928. fail_cmd:
  5929. return rc;
  5930. }
  5931. static int __q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  5932. uint32_t rate,
  5933. uint32_t channels,
  5934. bool use_default_chmap,
  5935. char *channel_map,
  5936. uint16_t bits_per_sample,
  5937. uint16_t sample_word_size)
  5938. {
  5939. struct asm_multi_channel_pcm_fmt_blk_param_v3 fmt;
  5940. u8 *channel_mapping;
  5941. int rc;
  5942. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5943. ac->session, rate, channels,
  5944. bits_per_sample, sample_word_size);
  5945. memset(&fmt, 0, sizeof(fmt));
  5946. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  5947. atomic_set(&ac->cmd_state, -1);
  5948. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5949. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5950. sizeof(fmt.fmt_blk);
  5951. fmt.param.num_channels = channels;
  5952. fmt.param.bits_per_sample = bits_per_sample;
  5953. fmt.param.sample_rate = rate;
  5954. fmt.param.is_signed = 1;
  5955. fmt.param.sample_word_size = sample_word_size;
  5956. channel_mapping = fmt.param.channel_mapping;
  5957. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5958. if (use_default_chmap) {
  5959. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5960. pr_err("%s: map channels failed %d\n",
  5961. __func__, channels);
  5962. rc = -EINVAL;
  5963. goto fail_cmd;
  5964. }
  5965. } else {
  5966. memcpy(channel_mapping, channel_map,
  5967. PCM_FORMAT_MAX_NUM_CHANNEL);
  5968. }
  5969. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5970. if (rc < 0) {
  5971. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5972. goto fail_cmd;
  5973. }
  5974. rc = wait_event_timeout(ac->cmd_wait,
  5975. (atomic_read(&ac->cmd_state) >= 0),
  5976. msecs_to_jiffies(TIMEOUT_MS));
  5977. if (!rc) {
  5978. pr_err("%s: timeout. waited for format update\n", __func__);
  5979. rc = -ETIMEDOUT;
  5980. goto fail_cmd;
  5981. }
  5982. if (atomic_read(&ac->cmd_state) > 0) {
  5983. pr_err("%s: DSP returned error[%s]\n",
  5984. __func__, adsp_err_get_err_str(
  5985. atomic_read(&ac->cmd_state)));
  5986. rc = adsp_err_get_lnx_err_code(
  5987. atomic_read(&ac->cmd_state));
  5988. goto fail_cmd;
  5989. }
  5990. return 0;
  5991. fail_cmd:
  5992. return rc;
  5993. }
  5994. static int __q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  5995. uint32_t rate,
  5996. uint32_t channels,
  5997. bool use_default_chmap,
  5998. char *channel_map,
  5999. uint16_t bits_per_sample,
  6000. uint16_t sample_word_size,
  6001. uint16_t endianness,
  6002. uint16_t mode)
  6003. {
  6004. struct asm_multi_channel_pcm_fmt_blk_param_v4 fmt;
  6005. u8 *channel_mapping;
  6006. int rc;
  6007. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  6008. ac->session, rate, channels,
  6009. bits_per_sample, sample_word_size);
  6010. memset(&fmt, 0, sizeof(fmt));
  6011. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6012. atomic_set(&ac->cmd_state, -1);
  6013. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6014. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6015. sizeof(fmt.fmt_blk);
  6016. fmt.param.num_channels = channels;
  6017. fmt.param.bits_per_sample = bits_per_sample;
  6018. fmt.param.sample_rate = rate;
  6019. fmt.param.is_signed = 1;
  6020. fmt.param.sample_word_size = sample_word_size;
  6021. fmt.param.endianness = endianness;
  6022. fmt.param.mode = mode;
  6023. channel_mapping = fmt.param.channel_mapping;
  6024. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6025. if (use_default_chmap) {
  6026. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6027. pr_err("%s: map channels failed %d\n",
  6028. __func__, channels);
  6029. rc = -EINVAL;
  6030. goto fail_cmd;
  6031. }
  6032. } else {
  6033. memcpy(channel_mapping, channel_map,
  6034. PCM_FORMAT_MAX_NUM_CHANNEL);
  6035. }
  6036. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6037. if (rc < 0) {
  6038. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6039. goto fail_cmd;
  6040. }
  6041. rc = wait_event_timeout(ac->cmd_wait,
  6042. (atomic_read(&ac->cmd_state) >= 0),
  6043. msecs_to_jiffies(TIMEOUT_MS));
  6044. if (!rc) {
  6045. pr_err("%s: timeout. waited for format update\n", __func__);
  6046. rc = -ETIMEDOUT;
  6047. goto fail_cmd;
  6048. }
  6049. if (atomic_read(&ac->cmd_state) > 0) {
  6050. pr_err("%s: DSP returned error[%s]\n",
  6051. __func__, adsp_err_get_err_str(
  6052. atomic_read(&ac->cmd_state)));
  6053. rc = adsp_err_get_lnx_err_code(
  6054. atomic_read(&ac->cmd_state));
  6055. goto fail_cmd;
  6056. }
  6057. return 0;
  6058. fail_cmd:
  6059. return rc;
  6060. }
  6061. static int __q6asm_media_format_block_multi_ch_pcm_v5(struct audio_client *ac,
  6062. uint32_t rate,
  6063. uint32_t channels,
  6064. bool use_default_chmap,
  6065. char *channel_map,
  6066. uint16_t bits_per_sample,
  6067. uint16_t sample_word_size,
  6068. uint16_t endianness,
  6069. uint16_t mode)
  6070. {
  6071. struct asm_multi_channel_pcm_fmt_blk_param_v5 fmt;
  6072. u8 *channel_mapping;
  6073. int rc;
  6074. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  6075. ac->session, rate, channels,
  6076. bits_per_sample, sample_word_size);
  6077. memset(&fmt, 0, sizeof(fmt));
  6078. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6079. atomic_set(&ac->cmd_state, -1);
  6080. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6081. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6082. sizeof(fmt.fmt_blk);
  6083. fmt.param.num_channels = channels;
  6084. fmt.param.bits_per_sample = bits_per_sample;
  6085. fmt.param.sample_rate = rate;
  6086. fmt.param.is_signed = 1;
  6087. fmt.param.sample_word_size = sample_word_size;
  6088. fmt.param.endianness = endianness;
  6089. fmt.param.mode = mode;
  6090. channel_mapping = fmt.param.channel_mapping;
  6091. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  6092. if (use_default_chmap) {
  6093. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6094. pr_err("%s: map channels failed %d\n",
  6095. __func__, channels);
  6096. rc = -EINVAL;
  6097. goto fail_cmd;
  6098. }
  6099. } else {
  6100. memcpy(channel_mapping, channel_map,
  6101. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  6102. }
  6103. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6104. if (rc < 0) {
  6105. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6106. goto fail_cmd;
  6107. }
  6108. rc = wait_event_timeout(ac->cmd_wait,
  6109. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6110. if (!rc) {
  6111. pr_err("%s: timeout. waited for format update\n", __func__);
  6112. rc = -ETIMEDOUT;
  6113. goto fail_cmd;
  6114. }
  6115. if (atomic_read(&ac->cmd_state) > 0) {
  6116. pr_err("%s: DSP returned error[%s]\n",
  6117. __func__, adsp_err_get_err_str(
  6118. atomic_read(&ac->cmd_state)));
  6119. rc = adsp_err_get_lnx_err_code(
  6120. atomic_read(&ac->cmd_state));
  6121. goto fail_cmd;
  6122. }
  6123. return 0;
  6124. fail_cmd:
  6125. return rc;
  6126. }
  6127. int q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  6128. uint32_t rate, uint32_t channels,
  6129. bool use_default_chmap, char *channel_map)
  6130. {
  6131. return __q6asm_media_format_block_multi_ch_pcm(ac, rate,
  6132. channels, use_default_chmap, channel_map, 16);
  6133. }
  6134. int q6asm_media_format_block_multi_ch_pcm_v2(
  6135. struct audio_client *ac,
  6136. uint32_t rate, uint32_t channels,
  6137. bool use_default_chmap, char *channel_map,
  6138. uint16_t bits_per_sample)
  6139. {
  6140. return __q6asm_media_format_block_multi_ch_pcm(ac, rate,
  6141. channels, use_default_chmap, channel_map,
  6142. bits_per_sample);
  6143. }
  6144. /*
  6145. * q6asm_media_format_block_multi_ch_pcm_v3 - sends pcm decoder configuration
  6146. * parameters
  6147. *
  6148. * @ac: Client session handle
  6149. * @rate: sample rate
  6150. * @channels: number of channels
  6151. * @bits_per_sample: bit width of encoder session
  6152. * @use_default_chmap: true if default channel map to be used
  6153. * @channel_map: input channel map
  6154. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6155. */
  6156. int q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  6157. uint32_t rate, uint32_t channels,
  6158. bool use_default_chmap,
  6159. char *channel_map,
  6160. uint16_t bits_per_sample,
  6161. uint16_t sample_word_size)
  6162. {
  6163. return __q6asm_media_format_block_multi_ch_pcm_v3(ac, rate, channels,
  6164. use_default_chmap,
  6165. channel_map,
  6166. bits_per_sample,
  6167. sample_word_size);
  6168. }
  6169. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v3);
  6170. /*
  6171. * q6asm_media_format_block_multi_ch_pcm_v4 - sends pcm decoder configuration
  6172. * parameters
  6173. *
  6174. * @ac: Client session handle
  6175. * @rate: sample rate
  6176. * @channels: number of channels
  6177. * @bits_per_sample: bit width of encoder session
  6178. * @use_default_chmap: true if default channel map to be used
  6179. * @channel_map: input channel map
  6180. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6181. * @endianness: endianness of the pcm data
  6182. * @mode: Mode to provide additional info about the pcm input data
  6183. */
  6184. int q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  6185. uint32_t rate, uint32_t channels,
  6186. bool use_default_chmap,
  6187. char *channel_map,
  6188. uint16_t bits_per_sample,
  6189. uint16_t sample_word_size,
  6190. uint16_t endianness,
  6191. uint16_t mode)
  6192. {
  6193. return __q6asm_media_format_block_multi_ch_pcm_v4(ac, rate, channels,
  6194. use_default_chmap,
  6195. channel_map,
  6196. bits_per_sample,
  6197. sample_word_size,
  6198. endianness,
  6199. mode);
  6200. }
  6201. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v4);
  6202. /*
  6203. * q6asm_media_format_block_multi_ch_pcm_v5 - sends pcm decoder configuration
  6204. * parameters
  6205. *
  6206. * @ac: Client session handle
  6207. * @rate: sample rate
  6208. * @channels: number of channels
  6209. * @bits_per_sample: bit width of encoder session
  6210. * @use_default_chmap: true if default channel map to be used
  6211. * @channel_map: input channel map
  6212. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6213. * @endianness: endianness of the pcm data
  6214. * @mode: Mode to provide additional info about the pcm input data
  6215. */
  6216. int q6asm_media_format_block_multi_ch_pcm_v5(struct audio_client *ac,
  6217. uint32_t rate, uint32_t channels,
  6218. bool use_default_chmap,
  6219. char *channel_map,
  6220. uint16_t bits_per_sample,
  6221. uint16_t sample_word_size,
  6222. uint16_t endianness,
  6223. uint16_t mode)
  6224. {
  6225. return __q6asm_media_format_block_multi_ch_pcm_v5(ac, rate, channels,
  6226. use_default_chmap,
  6227. channel_map,
  6228. bits_per_sample,
  6229. sample_word_size,
  6230. endianness,
  6231. mode);
  6232. }
  6233. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v5);
  6234. /*
  6235. * q6asm_media_format_block_gen_compr - set up generic compress format params
  6236. *
  6237. * @ac: Client session handle
  6238. * @rate: sample rate
  6239. * @channels: number of channels
  6240. * @use_default_chmap: true if default channel map to be used
  6241. * @channel_map: input channel map
  6242. * @bits_per_sample: bit width of gen compress stream
  6243. */
  6244. int q6asm_media_format_block_gen_compr(struct audio_client *ac,
  6245. uint32_t rate, uint32_t channels,
  6246. bool use_default_chmap, char *channel_map,
  6247. uint16_t bits_per_sample)
  6248. {
  6249. struct asm_generic_compressed_fmt_blk_t fmt;
  6250. u8 *channel_mapping;
  6251. int rc = 0;
  6252. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]\n",
  6253. __func__, ac->session, rate,
  6254. channels, bits_per_sample);
  6255. memset(&fmt, 0, sizeof(fmt));
  6256. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6257. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6258. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6259. sizeof(fmt.fmt_blk);
  6260. fmt.num_channels = channels;
  6261. fmt.bits_per_sample = bits_per_sample;
  6262. fmt.sampling_rate = rate;
  6263. channel_mapping = fmt.channel_mapping;
  6264. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6265. if (use_default_chmap) {
  6266. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6267. pr_err("%s: map channels failed %d\n",
  6268. __func__, channels);
  6269. return -EINVAL;
  6270. }
  6271. } else {
  6272. memcpy(channel_mapping, channel_map,
  6273. PCM_FORMAT_MAX_NUM_CHANNEL);
  6274. }
  6275. atomic_set(&ac->cmd_state, -1);
  6276. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6277. if (rc < 0) {
  6278. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6279. rc = -EINVAL;
  6280. goto fail_cmd;
  6281. }
  6282. rc = wait_event_timeout(ac->cmd_wait,
  6283. (atomic_read(&ac->cmd_state) >= 0),
  6284. msecs_to_jiffies(TIMEOUT_MS));
  6285. if (!rc) {
  6286. pr_err("%s: timeout. waited for format update\n", __func__);
  6287. rc = -ETIMEDOUT;
  6288. goto fail_cmd;
  6289. }
  6290. if (atomic_read(&ac->cmd_state) > 0) {
  6291. pr_err("%s: DSP returned error[%s]\n",
  6292. __func__, adsp_err_get_err_str(
  6293. atomic_read(&ac->cmd_state)));
  6294. rc = adsp_err_get_lnx_err_code(
  6295. atomic_read(&ac->cmd_state));
  6296. }
  6297. return 0;
  6298. fail_cmd:
  6299. return rc;
  6300. }
  6301. EXPORT_SYMBOL(q6asm_media_format_block_gen_compr);
  6302. /*
  6303. * q6asm_media_format_block_iec - set up IEC61937 (compressed) or IEC60958
  6304. * (pcm) format params. Both audio standards
  6305. * use the same format and are used for
  6306. * HDMI or SPDIF.
  6307. *
  6308. * @ac: Client session handle
  6309. * @rate: sample rate
  6310. * @channels: number of channels
  6311. */
  6312. int q6asm_media_format_block_iec(struct audio_client *ac,
  6313. uint32_t rate, uint32_t channels)
  6314. {
  6315. struct asm_iec_compressed_fmt_blk_t fmt;
  6316. int rc = 0;
  6317. pr_debug("%s: session[%d]rate[%d]ch[%d]\n",
  6318. __func__, ac->session, rate,
  6319. channels);
  6320. memset(&fmt, 0, sizeof(fmt));
  6321. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6322. fmt.hdr.opcode = ASM_DATA_CMD_IEC_60958_MEDIA_FMT;
  6323. fmt.num_channels = channels;
  6324. fmt.sampling_rate = rate;
  6325. atomic_set(&ac->cmd_state, -1);
  6326. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6327. if (rc < 0) {
  6328. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6329. rc = -EINVAL;
  6330. goto fail_cmd;
  6331. }
  6332. rc = wait_event_timeout(ac->cmd_wait,
  6333. (atomic_read(&ac->cmd_state) >= 0),
  6334. msecs_to_jiffies(TIMEOUT_MS));
  6335. if (!rc) {
  6336. pr_err("%s: timeout. waited for format update\n", __func__);
  6337. rc = -ETIMEDOUT;
  6338. goto fail_cmd;
  6339. }
  6340. if (atomic_read(&ac->cmd_state) > 0) {
  6341. pr_err("%s: DSP returned error[%s]\n",
  6342. __func__, adsp_err_get_err_str(
  6343. atomic_read(&ac->cmd_state)));
  6344. rc = adsp_err_get_lnx_err_code(
  6345. atomic_read(&ac->cmd_state));
  6346. }
  6347. return 0;
  6348. fail_cmd:
  6349. return rc;
  6350. }
  6351. EXPORT_SYMBOL(q6asm_media_format_block_iec);
  6352. static int __q6asm_media_format_block_multi_aac(struct audio_client *ac,
  6353. struct asm_aac_cfg *cfg, int stream_id)
  6354. {
  6355. struct asm_aac_fmt_blk_v2 fmt;
  6356. int rc = 0;
  6357. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session,
  6358. cfg->sample_rate, cfg->ch_cfg);
  6359. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6360. atomic_set(&ac->cmd_state, -1);
  6361. /*
  6362. * Updated the token field with stream/session for compressed playback
  6363. * Platform driver must know the the stream with which the command is
  6364. * associated
  6365. */
  6366. if (ac->io_mode & COMPRESSED_STREAM_IO)
  6367. q6asm_update_token(&fmt.hdr.token,
  6368. ac->session,
  6369. stream_id,
  6370. 0, /* Buffer index is NA */
  6371. 0, /* Direction flag is NA */
  6372. WAIT_CMD);
  6373. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  6374. __func__, fmt.hdr.token, stream_id, ac->session);
  6375. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6376. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6377. sizeof(fmt.fmt_blk);
  6378. fmt.aac_fmt_flag = cfg->format;
  6379. fmt.audio_objype = cfg->aot;
  6380. /* If zero, PCE is assumed to be available in bitstream*/
  6381. fmt.total_size_of_PCE_bits = 0;
  6382. fmt.channel_config = cfg->ch_cfg;
  6383. fmt.sample_rate = cfg->sample_rate;
  6384. pr_debug("%s: format=0x%x cfg_size=%d aac-cfg=0x%x aot=%d ch=%d sr=%d\n",
  6385. __func__, fmt.aac_fmt_flag, fmt.fmt_blk.fmt_blk_size,
  6386. fmt.aac_fmt_flag,
  6387. fmt.audio_objype,
  6388. fmt.channel_config,
  6389. fmt.sample_rate);
  6390. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6391. if (rc < 0) {
  6392. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6393. rc = -EINVAL;
  6394. goto fail_cmd;
  6395. }
  6396. rc = wait_event_timeout(ac->cmd_wait,
  6397. (atomic_read(&ac->cmd_state) >= 0),
  6398. msecs_to_jiffies(TIMEOUT_MS));
  6399. if (!rc) {
  6400. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6401. rc = -ETIMEDOUT;
  6402. goto fail_cmd;
  6403. }
  6404. if (atomic_read(&ac->cmd_state) > 0) {
  6405. pr_err("%s: DSP returned error[%s]\n",
  6406. __func__, adsp_err_get_err_str(
  6407. atomic_read(&ac->cmd_state)));
  6408. rc = adsp_err_get_lnx_err_code(
  6409. atomic_read(&ac->cmd_state));
  6410. goto fail_cmd;
  6411. }
  6412. return 0;
  6413. fail_cmd:
  6414. return rc;
  6415. }
  6416. /**
  6417. * q6asm_media_format_block_multi_aac -
  6418. * command to set mediafmt block for multi_aac on ASM stream
  6419. *
  6420. * @ac: Audio client handle
  6421. * @cfg: multi_aac config
  6422. *
  6423. * Returns 0 on success or error on failure
  6424. */
  6425. int q6asm_media_format_block_multi_aac(struct audio_client *ac,
  6426. struct asm_aac_cfg *cfg)
  6427. {
  6428. return __q6asm_media_format_block_multi_aac(ac, cfg, ac->stream_id);
  6429. }
  6430. EXPORT_SYMBOL(q6asm_media_format_block_multi_aac);
  6431. /**
  6432. * q6asm_media_format_block_aac -
  6433. * command to set mediafmt block for aac on ASM
  6434. *
  6435. * @ac: Audio client handle
  6436. * @cfg: aac config
  6437. *
  6438. * Returns 0 on success or error on failure
  6439. */
  6440. int q6asm_media_format_block_aac(struct audio_client *ac,
  6441. struct asm_aac_cfg *cfg)
  6442. {
  6443. return __q6asm_media_format_block_multi_aac(ac, cfg, ac->stream_id);
  6444. }
  6445. EXPORT_SYMBOL(q6asm_media_format_block_aac);
  6446. /**
  6447. * q6asm_stream_media_format_block_aac -
  6448. * command to set mediafmt block for aac on ASM stream
  6449. *
  6450. * @ac: Audio client handle
  6451. * @cfg: aac config
  6452. * @stream_id: stream ID info
  6453. *
  6454. * Returns 0 on success or error on failure
  6455. */
  6456. int q6asm_stream_media_format_block_aac(struct audio_client *ac,
  6457. struct asm_aac_cfg *cfg, int stream_id)
  6458. {
  6459. return __q6asm_media_format_block_multi_aac(ac, cfg, stream_id);
  6460. }
  6461. EXPORT_SYMBOL(q6asm_stream_media_format_block_aac);
  6462. /**
  6463. * q6asm_media_format_block_wma -
  6464. * command to set mediafmt block for wma on ASM stream
  6465. *
  6466. * @ac: Audio client handle
  6467. * @cfg: wma config
  6468. * @stream_id: stream ID info
  6469. *
  6470. * Returns 0 on success or error on failure
  6471. */
  6472. int q6asm_media_format_block_wma(struct audio_client *ac,
  6473. void *cfg, int stream_id)
  6474. {
  6475. struct asm_wmastdv9_fmt_blk_v2 fmt;
  6476. struct asm_wma_cfg *wma_cfg = (struct asm_wma_cfg *)cfg;
  6477. int rc = 0;
  6478. pr_debug("session[%d]format_tag[0x%4x] rate[%d] ch[0x%4x] bps[%d], balign[0x%4x], bit_sample[0x%4x], ch_msk[%d], enc_opt[0x%4x]\n",
  6479. ac->session, wma_cfg->format_tag, wma_cfg->sample_rate,
  6480. wma_cfg->ch_cfg, wma_cfg->avg_bytes_per_sec,
  6481. wma_cfg->block_align, wma_cfg->valid_bits_per_sample,
  6482. wma_cfg->ch_mask, wma_cfg->encode_opt);
  6483. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6484. atomic_set(&ac->cmd_state, -1);
  6485. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6486. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6487. sizeof(fmt.fmtblk);
  6488. fmt.fmtag = wma_cfg->format_tag;
  6489. fmt.num_channels = wma_cfg->ch_cfg;
  6490. fmt.sample_rate = wma_cfg->sample_rate;
  6491. fmt.avg_bytes_per_sec = wma_cfg->avg_bytes_per_sec;
  6492. fmt.blk_align = wma_cfg->block_align;
  6493. fmt.bits_per_sample =
  6494. wma_cfg->valid_bits_per_sample;
  6495. fmt.channel_mask = wma_cfg->ch_mask;
  6496. fmt.enc_options = wma_cfg->encode_opt;
  6497. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6498. if (rc < 0) {
  6499. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6500. rc = -EINVAL;
  6501. goto fail_cmd;
  6502. }
  6503. rc = wait_event_timeout(ac->cmd_wait,
  6504. (atomic_read(&ac->cmd_state) >= 0),
  6505. msecs_to_jiffies(TIMEOUT_MS));
  6506. if (!rc) {
  6507. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6508. rc = -ETIMEDOUT;
  6509. goto fail_cmd;
  6510. }
  6511. if (atomic_read(&ac->cmd_state) > 0) {
  6512. pr_err("%s: DSP returned error[%s]\n",
  6513. __func__, adsp_err_get_err_str(
  6514. atomic_read(&ac->cmd_state)));
  6515. rc = adsp_err_get_lnx_err_code(
  6516. atomic_read(&ac->cmd_state));
  6517. goto fail_cmd;
  6518. }
  6519. return 0;
  6520. fail_cmd:
  6521. return rc;
  6522. }
  6523. EXPORT_SYMBOL(q6asm_media_format_block_wma);
  6524. /**
  6525. * q6asm_media_format_block_wmapro -
  6526. * command to set mediafmt block for wmapro on ASM stream
  6527. *
  6528. * @ac: Audio client handle
  6529. * @cfg: wmapro config
  6530. * @stream_id: stream ID info
  6531. *
  6532. * Returns 0 on success or error on failure
  6533. */
  6534. int q6asm_media_format_block_wmapro(struct audio_client *ac,
  6535. void *cfg, int stream_id)
  6536. {
  6537. struct asm_wmaprov10_fmt_blk_v2 fmt;
  6538. struct asm_wmapro_cfg *wmapro_cfg = (struct asm_wmapro_cfg *)cfg;
  6539. int rc = 0;
  6540. pr_debug("%s: session[%d]format_tag[0x%4x] rate[%d] ch[0x%4x] bps[%d], balign[0x%4x], bit_sample[0x%4x], ch_msk[%d], enc_opt[0x%4x], adv_enc_opt[0x%4x], adv_enc_opt2[0x%8x]\n",
  6541. __func__,
  6542. ac->session, wmapro_cfg->format_tag, wmapro_cfg->sample_rate,
  6543. wmapro_cfg->ch_cfg, wmapro_cfg->avg_bytes_per_sec,
  6544. wmapro_cfg->block_align, wmapro_cfg->valid_bits_per_sample,
  6545. wmapro_cfg->ch_mask, wmapro_cfg->encode_opt,
  6546. wmapro_cfg->adv_encode_opt, wmapro_cfg->adv_encode_opt2);
  6547. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6548. atomic_set(&ac->cmd_state, -1);
  6549. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6550. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6551. sizeof(fmt.fmtblk);
  6552. fmt.fmtag = wmapro_cfg->format_tag;
  6553. fmt.num_channels = wmapro_cfg->ch_cfg;
  6554. fmt.sample_rate = wmapro_cfg->sample_rate;
  6555. fmt.avg_bytes_per_sec =
  6556. wmapro_cfg->avg_bytes_per_sec;
  6557. fmt.blk_align = wmapro_cfg->block_align;
  6558. fmt.bits_per_sample = wmapro_cfg->valid_bits_per_sample;
  6559. fmt.channel_mask = wmapro_cfg->ch_mask;
  6560. fmt.enc_options = wmapro_cfg->encode_opt;
  6561. fmt.usAdvancedEncodeOpt = wmapro_cfg->adv_encode_opt;
  6562. fmt.advanced_enc_options2 = wmapro_cfg->adv_encode_opt2;
  6563. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6564. if (rc < 0) {
  6565. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6566. rc = -EINVAL;
  6567. goto fail_cmd;
  6568. }
  6569. rc = wait_event_timeout(ac->cmd_wait,
  6570. (atomic_read(&ac->cmd_state) >= 0),
  6571. msecs_to_jiffies(TIMEOUT_MS));
  6572. if (!rc) {
  6573. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6574. rc = -ETIMEDOUT;
  6575. goto fail_cmd;
  6576. }
  6577. if (atomic_read(&ac->cmd_state) > 0) {
  6578. pr_err("%s: DSP returned error[%s]\n",
  6579. __func__, adsp_err_get_err_str(
  6580. atomic_read(&ac->cmd_state)));
  6581. rc = adsp_err_get_lnx_err_code(
  6582. atomic_read(&ac->cmd_state));
  6583. goto fail_cmd;
  6584. }
  6585. return 0;
  6586. fail_cmd:
  6587. return rc;
  6588. }
  6589. EXPORT_SYMBOL(q6asm_media_format_block_wmapro);
  6590. /**
  6591. * q6asm_media_format_block_amrwbplus -
  6592. * command to set mediafmt block for amrwbplus on ASM stream
  6593. *
  6594. * @ac: Audio client handle
  6595. * @cfg: amrwbplus config
  6596. * @stream_id: stream ID info
  6597. *
  6598. * Returns 0 on success or error on failure
  6599. */
  6600. int q6asm_media_format_block_amrwbplus(struct audio_client *ac,
  6601. struct asm_amrwbplus_cfg *cfg)
  6602. {
  6603. struct asm_amrwbplus_fmt_blk_v2 fmt;
  6604. int rc = 0;
  6605. pr_debug("%s: session[%d]band-mode[%d]frame-fmt[%d]ch[%d]\n",
  6606. __func__,
  6607. ac->session,
  6608. cfg->amr_band_mode,
  6609. cfg->amr_frame_fmt,
  6610. cfg->num_channels);
  6611. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6612. atomic_set(&ac->cmd_state, -1);
  6613. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6614. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6615. sizeof(fmt.fmtblk);
  6616. fmt.amr_frame_fmt = cfg->amr_frame_fmt;
  6617. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6618. if (rc < 0) {
  6619. pr_err("%s: Comamnd media format update failed.. %d\n",
  6620. __func__, rc);
  6621. rc = -EINVAL;
  6622. goto fail_cmd;
  6623. }
  6624. rc = wait_event_timeout(ac->cmd_wait,
  6625. (atomic_read(&ac->cmd_state) >= 0),
  6626. msecs_to_jiffies(TIMEOUT_MS));
  6627. if (!rc) {
  6628. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6629. rc = -ETIMEDOUT;
  6630. goto fail_cmd;
  6631. }
  6632. if (atomic_read(&ac->cmd_state) > 0) {
  6633. pr_err("%s: DSP returned error[%s]\n",
  6634. __func__, adsp_err_get_err_str(
  6635. atomic_read(&ac->cmd_state)));
  6636. rc = adsp_err_get_lnx_err_code(
  6637. atomic_read(&ac->cmd_state));
  6638. goto fail_cmd;
  6639. }
  6640. return 0;
  6641. fail_cmd:
  6642. return rc;
  6643. }
  6644. EXPORT_SYMBOL(q6asm_media_format_block_amrwbplus);
  6645. /**
  6646. * q6asm_stream_media_format_block_flac -
  6647. * command to set mediafmt block for flac on ASM stream
  6648. *
  6649. * @ac: Audio client handle
  6650. * @cfg: FLAC config
  6651. * @stream_id: stream ID info
  6652. *
  6653. * Returns 0 on success or error on failure
  6654. */
  6655. int q6asm_stream_media_format_block_flac(struct audio_client *ac,
  6656. struct asm_flac_cfg *cfg, int stream_id)
  6657. {
  6658. struct asm_flac_fmt_blk_v2 fmt;
  6659. int rc = 0;
  6660. pr_debug("%s :session[%d] rate[%d] ch[%d] size[%d] stream_id[%d]\n",
  6661. __func__, ac->session, cfg->sample_rate, cfg->ch_cfg,
  6662. cfg->sample_size, stream_id);
  6663. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6664. atomic_set(&ac->cmd_state, -1);
  6665. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6666. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6667. sizeof(fmt.fmtblk);
  6668. fmt.is_stream_info_present = cfg->stream_info_present;
  6669. fmt.num_channels = cfg->ch_cfg;
  6670. fmt.min_blk_size = cfg->min_blk_size;
  6671. fmt.max_blk_size = cfg->max_blk_size;
  6672. fmt.sample_rate = cfg->sample_rate;
  6673. fmt.min_frame_size = cfg->min_frame_size;
  6674. fmt.max_frame_size = cfg->max_frame_size;
  6675. fmt.sample_size = cfg->sample_size;
  6676. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6677. if (rc < 0) {
  6678. pr_err("%s :Comamnd media format update failed %d\n",
  6679. __func__, rc);
  6680. goto fail_cmd;
  6681. }
  6682. rc = wait_event_timeout(ac->cmd_wait,
  6683. (atomic_read(&ac->cmd_state) >= 0),
  6684. msecs_to_jiffies(TIMEOUT_MS));
  6685. if (!rc) {
  6686. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6687. rc = -ETIMEDOUT;
  6688. goto fail_cmd;
  6689. }
  6690. if (atomic_read(&ac->cmd_state) > 0) {
  6691. pr_err("%s: DSP returned error[%s]\n",
  6692. __func__, adsp_err_get_err_str(
  6693. atomic_read(&ac->cmd_state)));
  6694. rc = adsp_err_get_lnx_err_code(
  6695. atomic_read(&ac->cmd_state));
  6696. goto fail_cmd;
  6697. }
  6698. return 0;
  6699. fail_cmd:
  6700. return rc;
  6701. }
  6702. EXPORT_SYMBOL(q6asm_stream_media_format_block_flac);
  6703. /**
  6704. * q6asm_media_format_block_alac -
  6705. * command to set mediafmt block for alac on ASM stream
  6706. *
  6707. * @ac: Audio client handle
  6708. * @cfg: ALAC config
  6709. * @stream_id: stream ID info
  6710. *
  6711. * Returns 0 on success or error on failure
  6712. */
  6713. int q6asm_media_format_block_alac(struct audio_client *ac,
  6714. struct asm_alac_cfg *cfg, int stream_id)
  6715. {
  6716. struct asm_alac_fmt_blk_v2 fmt;
  6717. int rc = 0;
  6718. pr_debug("%s :session[%d]rate[%d]ch[%d]\n", __func__,
  6719. ac->session, cfg->sample_rate, cfg->num_channels);
  6720. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6721. atomic_set(&ac->cmd_state, -1);
  6722. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6723. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6724. sizeof(fmt.fmtblk);
  6725. fmt.frame_length = cfg->frame_length;
  6726. fmt.compatible_version = cfg->compatible_version;
  6727. fmt.bit_depth = cfg->bit_depth;
  6728. fmt.pb = cfg->pb;
  6729. fmt.mb = cfg->mb;
  6730. fmt.kb = cfg->kb;
  6731. fmt.num_channels = cfg->num_channels;
  6732. fmt.max_run = cfg->max_run;
  6733. fmt.max_frame_bytes = cfg->max_frame_bytes;
  6734. fmt.avg_bit_rate = cfg->avg_bit_rate;
  6735. fmt.sample_rate = cfg->sample_rate;
  6736. fmt.channel_layout_tag = cfg->channel_layout_tag;
  6737. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6738. if (rc < 0) {
  6739. pr_err("%s :Comamnd media format update failed %d\n",
  6740. __func__, rc);
  6741. goto fail_cmd;
  6742. }
  6743. rc = wait_event_timeout(ac->cmd_wait,
  6744. (atomic_read(&ac->cmd_state) >= 0),
  6745. msecs_to_jiffies(TIMEOUT_MS));
  6746. if (!rc) {
  6747. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6748. rc = -ETIMEDOUT;
  6749. goto fail_cmd;
  6750. }
  6751. if (atomic_read(&ac->cmd_state) > 0) {
  6752. pr_err("%s: DSP returned error[%s]\n",
  6753. __func__, adsp_err_get_err_str(
  6754. atomic_read(&ac->cmd_state)));
  6755. rc = adsp_err_get_lnx_err_code(
  6756. atomic_read(&ac->cmd_state));
  6757. goto fail_cmd;
  6758. }
  6759. return 0;
  6760. fail_cmd:
  6761. return rc;
  6762. }
  6763. EXPORT_SYMBOL(q6asm_media_format_block_alac);
  6764. /*
  6765. * q6asm_media_format_block_g711 - sends g711 decoder configuration
  6766. * parameters
  6767. * @ac: Client session handle
  6768. * @cfg: Audio stream manager configuration parameters
  6769. * @stream_id: Stream id
  6770. */
  6771. int q6asm_media_format_block_g711(struct audio_client *ac,
  6772. struct asm_g711_dec_cfg *cfg, int stream_id)
  6773. {
  6774. struct asm_g711_dec_fmt_blk_v2 fmt;
  6775. int rc = 0;
  6776. if (!ac) {
  6777. pr_err("%s: audio client is null\n", __func__);
  6778. return -EINVAL;
  6779. }
  6780. if (!cfg) {
  6781. pr_err("%s: Invalid ASM config\n", __func__);
  6782. return -EINVAL;
  6783. }
  6784. if (stream_id <= 0) {
  6785. pr_err("%s: Invalid stream id\n", __func__);
  6786. return -EINVAL;
  6787. }
  6788. pr_debug("%s :session[%d]rate[%d]\n", __func__,
  6789. ac->session, cfg->sample_rate);
  6790. memset(&fmt, 0, sizeof(struct asm_g711_dec_fmt_blk_v2));
  6791. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6792. atomic_set(&ac->cmd_state, -1);
  6793. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6794. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6795. sizeof(fmt.fmtblk);
  6796. fmt.sample_rate = cfg->sample_rate;
  6797. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6798. if (rc < 0) {
  6799. pr_err("%s :Command media format update failed %d\n",
  6800. __func__, rc);
  6801. goto fail_cmd;
  6802. }
  6803. rc = wait_event_timeout(ac->cmd_wait,
  6804. (atomic_read(&ac->cmd_state) >= 0),
  6805. msecs_to_jiffies(TIMEOUT_MS));
  6806. if (!rc) {
  6807. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6808. rc = -ETIMEDOUT;
  6809. goto fail_cmd;
  6810. }
  6811. if (atomic_read(&ac->cmd_state) > 0) {
  6812. pr_err("%s: DSP returned error[%s]\n",
  6813. __func__, adsp_err_get_err_str(
  6814. atomic_read(&ac->cmd_state)));
  6815. rc = adsp_err_get_lnx_err_code(
  6816. atomic_read(&ac->cmd_state));
  6817. goto fail_cmd;
  6818. }
  6819. return 0;
  6820. fail_cmd:
  6821. return rc;
  6822. }
  6823. EXPORT_SYMBOL(q6asm_media_format_block_g711);
  6824. /**
  6825. * q6asm_stream_media_format_block_vorbis -
  6826. * command to set mediafmt block for vorbis on ASM stream
  6827. *
  6828. * @ac: Audio client handle
  6829. * @cfg: vorbis config
  6830. * @stream_id: stream ID info
  6831. *
  6832. * Returns 0 on success or error on failure
  6833. */
  6834. int q6asm_stream_media_format_block_vorbis(struct audio_client *ac,
  6835. struct asm_vorbis_cfg *cfg, int stream_id)
  6836. {
  6837. struct asm_vorbis_fmt_blk_v2 fmt;
  6838. int rc = 0;
  6839. pr_debug("%s :session[%d] bit_stream_fmt[%d] stream_id[%d]\n",
  6840. __func__, ac->session, cfg->bit_stream_fmt, stream_id);
  6841. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6842. atomic_set(&ac->cmd_state, -1);
  6843. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6844. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6845. sizeof(fmt.fmtblk);
  6846. fmt.bit_stream_fmt = cfg->bit_stream_fmt;
  6847. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6848. if (rc < 0) {
  6849. pr_err("%s :Comamnd media format update failed %d\n",
  6850. __func__, rc);
  6851. goto fail_cmd;
  6852. }
  6853. rc = wait_event_timeout(ac->cmd_wait,
  6854. (atomic_read(&ac->cmd_state) >= 0),
  6855. msecs_to_jiffies(TIMEOUT_MS));
  6856. if (!rc) {
  6857. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6858. rc = -ETIMEDOUT;
  6859. goto fail_cmd;
  6860. }
  6861. if (atomic_read(&ac->cmd_state) > 0) {
  6862. pr_err("%s: DSP returned error[%s]\n",
  6863. __func__, adsp_err_get_err_str(
  6864. atomic_read(&ac->cmd_state)));
  6865. rc = adsp_err_get_lnx_err_code(
  6866. atomic_read(&ac->cmd_state));
  6867. goto fail_cmd;
  6868. }
  6869. return 0;
  6870. fail_cmd:
  6871. return rc;
  6872. }
  6873. EXPORT_SYMBOL(q6asm_stream_media_format_block_vorbis);
  6874. /**
  6875. * q6asm_media_format_block_ape -
  6876. * command to set mediafmt block for APE on ASM stream
  6877. *
  6878. * @ac: Audio client handle
  6879. * @cfg: APE config
  6880. * @stream_id: stream ID info
  6881. *
  6882. * Returns 0 on success or error on failure
  6883. */
  6884. int q6asm_media_format_block_ape(struct audio_client *ac,
  6885. struct asm_ape_cfg *cfg, int stream_id)
  6886. {
  6887. struct asm_ape_fmt_blk_v2 fmt;
  6888. int rc = 0;
  6889. pr_debug("%s :session[%d]rate[%d]ch[%d]\n", __func__,
  6890. ac->session, cfg->sample_rate, cfg->num_channels);
  6891. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6892. atomic_set(&ac->cmd_state, -1);
  6893. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6894. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6895. sizeof(fmt.fmtblk);
  6896. fmt.compatible_version = cfg->compatible_version;
  6897. fmt.compression_level = cfg->compression_level;
  6898. fmt.format_flags = cfg->format_flags;
  6899. fmt.blocks_per_frame = cfg->blocks_per_frame;
  6900. fmt.final_frame_blocks = cfg->final_frame_blocks;
  6901. fmt.total_frames = cfg->total_frames;
  6902. fmt.bits_per_sample = cfg->bits_per_sample;
  6903. fmt.num_channels = cfg->num_channels;
  6904. fmt.sample_rate = cfg->sample_rate;
  6905. fmt.seek_table_present = cfg->seek_table_present;
  6906. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6907. if (rc < 0) {
  6908. pr_err("%s :Comamnd media format update failed %d\n",
  6909. __func__, rc);
  6910. goto fail_cmd;
  6911. }
  6912. rc = wait_event_timeout(ac->cmd_wait,
  6913. (atomic_read(&ac->cmd_state) >= 0),
  6914. msecs_to_jiffies(TIMEOUT_MS));
  6915. if (!rc) {
  6916. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6917. rc = -ETIMEDOUT;
  6918. goto fail_cmd;
  6919. }
  6920. if (atomic_read(&ac->cmd_state) > 0) {
  6921. pr_err("%s: DSP returned error[%s]\n",
  6922. __func__, adsp_err_get_err_str(
  6923. atomic_read(&ac->cmd_state)));
  6924. rc = adsp_err_get_lnx_err_code(
  6925. atomic_read(&ac->cmd_state));
  6926. goto fail_cmd;
  6927. }
  6928. return 0;
  6929. fail_cmd:
  6930. return rc;
  6931. }
  6932. EXPORT_SYMBOL(q6asm_media_format_block_ape);
  6933. /*
  6934. * q6asm_media_format_block_dsd- Sends DSD Decoder
  6935. * configuration parameters
  6936. *
  6937. * @ac: Client session handle
  6938. * @cfg: DSD Media Format Configuration.
  6939. * @stream_id: stream id of stream to be associated with this session
  6940. *
  6941. * Return 0 on success or negative error code on failure
  6942. */
  6943. int q6asm_media_format_block_dsd(struct audio_client *ac,
  6944. struct asm_dsd_cfg *cfg, int stream_id)
  6945. {
  6946. struct asm_dsd_fmt_blk_v2 fmt;
  6947. int rc;
  6948. pr_debug("%s: session[%d] data_rate[%d] ch[%d]\n", __func__,
  6949. ac->session, cfg->dsd_data_rate, cfg->num_channels);
  6950. memset(&fmt, 0, sizeof(fmt));
  6951. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6952. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6953. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6954. sizeof(fmt.fmtblk);
  6955. fmt.num_version = cfg->num_version;
  6956. fmt.is_bitwise_big_endian = cfg->is_bitwise_big_endian;
  6957. fmt.dsd_channel_block_size = cfg->dsd_channel_block_size;
  6958. fmt.num_channels = cfg->num_channels;
  6959. fmt.dsd_data_rate = cfg->dsd_data_rate;
  6960. atomic_set(&ac->cmd_state, -1);
  6961. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6962. if (rc < 0) {
  6963. pr_err("%s: Command DSD media format update failed, err: %d\n",
  6964. __func__, rc);
  6965. goto done;
  6966. }
  6967. rc = wait_event_timeout(ac->cmd_wait,
  6968. (atomic_read(&ac->cmd_state) >= 0),
  6969. msecs_to_jiffies(TIMEOUT_MS));
  6970. if (!rc) {
  6971. pr_err("%s: timeout. waited for DSD FORMAT_UPDATE\n", __func__);
  6972. rc = -ETIMEDOUT;
  6973. goto done;
  6974. }
  6975. if (atomic_read(&ac->cmd_state) > 0) {
  6976. pr_err("%s: DSP returned error[%s]\n",
  6977. __func__, adsp_err_get_err_str(
  6978. atomic_read(&ac->cmd_state)));
  6979. rc = adsp_err_get_lnx_err_code(
  6980. atomic_read(&ac->cmd_state));
  6981. goto done;
  6982. }
  6983. return 0;
  6984. done:
  6985. return rc;
  6986. }
  6987. EXPORT_SYMBOL(q6asm_media_format_block_dsd);
  6988. /**
  6989. * q6asm_stream_media_format_block_aptx_dec -
  6990. * command to set mediafmt block for APTX dec on ASM stream
  6991. *
  6992. * @ac: Audio client handle
  6993. * @srate: sample rate
  6994. * @stream_id: stream ID info
  6995. *
  6996. * Returns 0 on success or error on failure
  6997. */
  6998. int q6asm_stream_media_format_block_aptx_dec(struct audio_client *ac,
  6999. uint32_t srate, int stream_id)
  7000. {
  7001. struct asm_aptx_dec_fmt_blk_v2 aptx_fmt;
  7002. int rc = 0;
  7003. if (!ac->session) {
  7004. pr_err("%s: ac session invalid\n", __func__);
  7005. rc = -EINVAL;
  7006. goto fail_cmd;
  7007. }
  7008. pr_debug("%s :session[%d] rate[%d] stream_id[%d]\n",
  7009. __func__, ac->session, srate, stream_id);
  7010. q6asm_stream_add_hdr(ac, &aptx_fmt.hdr, sizeof(aptx_fmt), TRUE,
  7011. stream_id);
  7012. atomic_set(&ac->cmd_state, -1);
  7013. aptx_fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  7014. aptx_fmt.fmtblk.fmt_blk_size = sizeof(aptx_fmt) - sizeof(aptx_fmt.hdr) -
  7015. sizeof(aptx_fmt.fmtblk);
  7016. aptx_fmt.sample_rate = srate;
  7017. rc = apr_send_pkt(ac->apr, (uint32_t *) &aptx_fmt);
  7018. if (rc < 0) {
  7019. pr_err("%s :Comamnd media format update failed %d\n",
  7020. __func__, rc);
  7021. goto fail_cmd;
  7022. }
  7023. rc = wait_event_timeout(ac->cmd_wait,
  7024. (atomic_read(&ac->cmd_state) >= 0),
  7025. msecs_to_jiffies(TIMEOUT_MS));
  7026. if (!rc) {
  7027. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  7028. rc = -ETIMEDOUT;
  7029. goto fail_cmd;
  7030. }
  7031. if (atomic_read(&ac->cmd_state) > 0) {
  7032. pr_err("%s: DSP returned error[%s]\n",
  7033. __func__, adsp_err_get_err_str(
  7034. atomic_read(&ac->cmd_state)));
  7035. rc = adsp_err_get_lnx_err_code(
  7036. atomic_read(&ac->cmd_state));
  7037. goto fail_cmd;
  7038. }
  7039. rc = 0;
  7040. fail_cmd:
  7041. return rc;
  7042. }
  7043. EXPORT_SYMBOL(q6asm_stream_media_format_block_aptx_dec);
  7044. static int __q6asm_ds1_set_endp_params(struct audio_client *ac, int param_id,
  7045. int param_value, int stream_id)
  7046. {
  7047. struct asm_dec_ddp_endp_param_v2 ddp_cfg;
  7048. int rc = 0;
  7049. pr_debug("%s: session[%d] stream[%d],param_id[%d]param_value[%d]",
  7050. __func__, ac->session, stream_id, param_id, param_value);
  7051. q6asm_stream_add_hdr(ac, &ddp_cfg.hdr, sizeof(ddp_cfg), TRUE,
  7052. stream_id);
  7053. atomic_set(&ac->cmd_state, -1);
  7054. /*
  7055. * Updated the token field with stream/session for compressed playback
  7056. * Platform driver must know the stream with which the command is
  7057. * associated
  7058. */
  7059. if (ac->io_mode & COMPRESSED_STREAM_IO)
  7060. q6asm_update_token(&ddp_cfg.hdr.token,
  7061. ac->session,
  7062. stream_id,
  7063. 0, /* Buffer index is NA */
  7064. 0, /* Direction flag is NA */
  7065. WAIT_CMD);
  7066. ddp_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  7067. ddp_cfg.encdec.param_id = param_id;
  7068. ddp_cfg.encdec.param_size = sizeof(struct asm_dec_ddp_endp_param_v2) -
  7069. (sizeof(struct apr_hdr) +
  7070. sizeof(struct asm_stream_cmd_set_encdec_param));
  7071. ddp_cfg.endp_param_value = param_value;
  7072. rc = apr_send_pkt(ac->apr, (uint32_t *) &ddp_cfg);
  7073. if (rc < 0) {
  7074. pr_err("%s: Command opcode[0x%x] failed %d\n",
  7075. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  7076. goto fail_cmd;
  7077. }
  7078. rc = wait_event_timeout(ac->cmd_wait,
  7079. (atomic_read(&ac->cmd_state) >= 0),
  7080. msecs_to_jiffies(TIMEOUT_MS));
  7081. if (!rc) {
  7082. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  7083. ddp_cfg.hdr.opcode);
  7084. rc = -ETIMEDOUT;
  7085. goto fail_cmd;
  7086. }
  7087. if (atomic_read(&ac->cmd_state) > 0) {
  7088. pr_err("%s: DSP returned error[%s]\n",
  7089. __func__, adsp_err_get_err_str(
  7090. atomic_read(&ac->cmd_state)));
  7091. rc = adsp_err_get_lnx_err_code(
  7092. atomic_read(&ac->cmd_state));
  7093. goto fail_cmd;
  7094. }
  7095. return 0;
  7096. fail_cmd:
  7097. return rc;
  7098. }
  7099. /**
  7100. * q6asm_ds1_set_endp_params -
  7101. * command to set DS1 params for ASM
  7102. *
  7103. * @ac: Audio client handle
  7104. * @param_id: param id
  7105. * @param_value: value of param
  7106. *
  7107. * Returns 0 on success or error on failure
  7108. */
  7109. int q6asm_ds1_set_endp_params(struct audio_client *ac,
  7110. int param_id, int param_value)
  7111. {
  7112. return __q6asm_ds1_set_endp_params(ac, param_id, param_value,
  7113. ac->stream_id);
  7114. }
  7115. /**
  7116. * q6asm_ds1_set_stream_endp_params -
  7117. * command to set DS1 params for ASM stream
  7118. *
  7119. * @ac: Audio client handle
  7120. * @param_id: param id
  7121. * @param_value: value of param
  7122. * @stream_id: stream ID info
  7123. *
  7124. * Returns 0 on success or error on failure
  7125. */
  7126. int q6asm_ds1_set_stream_endp_params(struct audio_client *ac,
  7127. int param_id, int param_value,
  7128. int stream_id)
  7129. {
  7130. return __q6asm_ds1_set_endp_params(ac, param_id, param_value,
  7131. stream_id);
  7132. }
  7133. EXPORT_SYMBOL(q6asm_ds1_set_stream_endp_params);
  7134. /**
  7135. * q6asm_memory_map -
  7136. * command to send memory map for ASM
  7137. *
  7138. * @ac: Audio client handle
  7139. * @buf_add: buffer address to map
  7140. * @dir: RX or TX session
  7141. * @bufsz: size of each buffer
  7142. * @bufcnt: buffer count
  7143. *
  7144. * Returns 0 on success or error on failure
  7145. */
  7146. int q6asm_memory_map(struct audio_client *ac, phys_addr_t buf_add, int dir,
  7147. uint32_t bufsz, uint32_t bufcnt)
  7148. {
  7149. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  7150. struct avs_shared_map_region_payload *mregions = NULL;
  7151. struct audio_port_data *port = NULL;
  7152. void *mmap_region_cmd = NULL;
  7153. void *payload = NULL;
  7154. struct asm_buffer_node *buffer_node = NULL;
  7155. int rc = 0;
  7156. int cmd_size = 0;
  7157. if (!ac) {
  7158. pr_err("%s: APR handle NULL\n", __func__);
  7159. return -EINVAL;
  7160. }
  7161. if (ac->mmap_apr == NULL) {
  7162. pr_err("%s: mmap APR handle NULL\n", __func__);
  7163. return -EINVAL;
  7164. }
  7165. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7166. buffer_node = kmalloc(sizeof(struct asm_buffer_node), GFP_KERNEL);
  7167. if (!buffer_node)
  7168. return -ENOMEM;
  7169. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  7170. + sizeof(struct avs_shared_map_region_payload) * bufcnt;
  7171. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  7172. if (mmap_region_cmd == NULL) {
  7173. rc = -EINVAL;
  7174. kfree(buffer_node);
  7175. return rc;
  7176. }
  7177. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)
  7178. mmap_region_cmd;
  7179. q6asm_add_mmaphdr(ac, &mmap_regions->hdr, cmd_size, dir);
  7180. atomic_set(&ac->mem_state, -1);
  7181. mmap_regions->hdr.opcode = ASM_CMD_SHARED_MEM_MAP_REGIONS;
  7182. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7183. mmap_regions->num_regions = bufcnt & 0x00ff;
  7184. mmap_regions->property_flag = 0x00;
  7185. payload = ((u8 *) mmap_region_cmd +
  7186. sizeof(struct avs_cmd_shared_mem_map_regions));
  7187. mregions = (struct avs_shared_map_region_payload *)payload;
  7188. ac->port[dir].tmp_hdl = 0;
  7189. port = &ac->port[dir];
  7190. pr_debug("%s: buf_add 0x%pK, bufsz: %d\n", __func__,
  7191. &buf_add, bufsz);
  7192. mregions->shm_addr_lsw = lower_32_bits(buf_add);
  7193. mregions->shm_addr_msw = msm_audio_populate_upper_32_bits(buf_add);
  7194. mregions->mem_size_bytes = bufsz;
  7195. ++mregions;
  7196. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) mmap_region_cmd);
  7197. if (rc < 0) {
  7198. pr_err("%s: mmap op[0x%x]rc[%d]\n", __func__,
  7199. mmap_regions->hdr.opcode, rc);
  7200. rc = -EINVAL;
  7201. kfree(buffer_node);
  7202. goto fail_cmd;
  7203. }
  7204. rc = wait_event_timeout(ac->mem_wait,
  7205. (atomic_read(&ac->mem_state) >= 0 &&
  7206. ac->port[dir].tmp_hdl),
  7207. msecs_to_jiffies(TIMEOUT_MS));
  7208. if (!rc) {
  7209. pr_err("%s: timeout. waited for memory_map\n", __func__);
  7210. rc = -ETIMEDOUT;
  7211. kfree(buffer_node);
  7212. goto fail_cmd;
  7213. }
  7214. if (atomic_read(&ac->mem_state) > 0) {
  7215. pr_err("%s: DSP returned error[%s] for memory_map\n",
  7216. __func__, adsp_err_get_err_str(
  7217. atomic_read(&ac->mem_state)));
  7218. rc = adsp_err_get_lnx_err_code(
  7219. atomic_read(&ac->mem_state));
  7220. kfree(buffer_node);
  7221. goto fail_cmd;
  7222. }
  7223. buffer_node->buf_phys_addr = buf_add;
  7224. buffer_node->mmap_hdl = ac->port[dir].tmp_hdl;
  7225. list_add_tail(&buffer_node->list, &ac->port[dir].mem_map_handle);
  7226. ac->port[dir].tmp_hdl = 0;
  7227. rc = 0;
  7228. fail_cmd:
  7229. kfree(mmap_region_cmd);
  7230. return rc;
  7231. }
  7232. EXPORT_SYMBOL(q6asm_memory_map);
  7233. /**
  7234. * q6asm_memory_unmap -
  7235. * command to send memory unmap for ASM
  7236. *
  7237. * @ac: Audio client handle
  7238. * @buf_add: buffer address to unmap
  7239. * @dir: RX or TX session
  7240. *
  7241. * Returns 0 on success or error on failure
  7242. */
  7243. int q6asm_memory_unmap(struct audio_client *ac, phys_addr_t buf_add, int dir)
  7244. {
  7245. struct avs_cmd_shared_mem_unmap_regions mem_unmap;
  7246. struct asm_buffer_node *buf_node = NULL;
  7247. struct list_head *ptr, *next;
  7248. int rc = 0;
  7249. if (!ac) {
  7250. pr_err("%s: APR handle NULL\n", __func__);
  7251. return -EINVAL;
  7252. }
  7253. if (this_mmap.apr == NULL) {
  7254. pr_err("%s: APR handle NULL\n", __func__);
  7255. return -EINVAL;
  7256. }
  7257. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7258. q6asm_add_mmaphdr(ac, &mem_unmap.hdr,
  7259. sizeof(struct avs_cmd_shared_mem_unmap_regions),
  7260. dir);
  7261. atomic_set(&ac->mem_state, -1);
  7262. mem_unmap.hdr.opcode = ASM_CMD_SHARED_MEM_UNMAP_REGIONS;
  7263. mem_unmap.mem_map_handle = 0;
  7264. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7265. buf_node = list_entry(ptr, struct asm_buffer_node,
  7266. list);
  7267. if (buf_node->buf_phys_addr == buf_add) {
  7268. pr_debug("%s: Found the element\n", __func__);
  7269. mem_unmap.mem_map_handle = buf_node->mmap_hdl;
  7270. break;
  7271. }
  7272. }
  7273. pr_debug("%s: mem_unmap-mem_map_handle: 0x%x\n",
  7274. __func__, mem_unmap.mem_map_handle);
  7275. if (mem_unmap.mem_map_handle == 0) {
  7276. pr_err("%s: Do not send null mem handle to DSP\n", __func__);
  7277. rc = 0;
  7278. goto fail_cmd;
  7279. }
  7280. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) &mem_unmap);
  7281. if (rc < 0) {
  7282. pr_err("%s: mem_unmap op[0x%x]rc[%d]\n", __func__,
  7283. mem_unmap.hdr.opcode, rc);
  7284. rc = -EINVAL;
  7285. goto fail_cmd;
  7286. }
  7287. rc = wait_event_timeout(ac->mem_wait,
  7288. (atomic_read(&ac->mem_state) >= 0),
  7289. msecs_to_jiffies(TIMEOUT_MS));
  7290. if (!rc) {
  7291. pr_err("%s: timeout. waited for memory_unmap of handle 0x%x\n",
  7292. __func__, mem_unmap.mem_map_handle);
  7293. rc = -ETIMEDOUT;
  7294. goto fail_cmd;
  7295. } else if (atomic_read(&ac->mem_state) > 0) {
  7296. pr_err("%s DSP returned error [%s] map handle 0x%x\n",
  7297. __func__, adsp_err_get_err_str(
  7298. atomic_read(&ac->mem_state)),
  7299. mem_unmap.mem_map_handle);
  7300. rc = adsp_err_get_lnx_err_code(
  7301. atomic_read(&ac->mem_state));
  7302. goto fail_cmd;
  7303. } else if (atomic_read(&ac->unmap_cb_success) == 0) {
  7304. pr_err("%s: Error in mem unmap callback of handle 0x%x\n",
  7305. __func__, mem_unmap.mem_map_handle);
  7306. rc = -EINVAL;
  7307. goto fail_cmd;
  7308. }
  7309. rc = 0;
  7310. fail_cmd:
  7311. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7312. buf_node = list_entry(ptr, struct asm_buffer_node,
  7313. list);
  7314. if (buf_node->buf_phys_addr == buf_add) {
  7315. list_del(&buf_node->list);
  7316. kfree(buf_node);
  7317. break;
  7318. }
  7319. }
  7320. return rc;
  7321. }
  7322. EXPORT_SYMBOL(q6asm_memory_unmap);
  7323. /**
  7324. * q6asm_memory_map_regions -
  7325. * command to send memory map regions for ASM
  7326. *
  7327. * @ac: Audio client handle
  7328. * @dir: RX or TX session
  7329. * @bufsz: size of each buffer
  7330. * @bufcnt: buffer count
  7331. * @is_contiguous: alloc contiguous mem or not
  7332. *
  7333. * Returns 0 on success or error on failure
  7334. */
  7335. static int q6asm_memory_map_regions(struct audio_client *ac, int dir,
  7336. uint32_t bufsz, uint32_t bufcnt,
  7337. bool is_contiguous)
  7338. {
  7339. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  7340. struct avs_shared_map_region_payload *mregions = NULL;
  7341. struct audio_port_data *port = NULL;
  7342. struct audio_buffer *ab = NULL;
  7343. void *mmap_region_cmd = NULL;
  7344. void *payload = NULL;
  7345. struct asm_buffer_node *buffer_node = NULL;
  7346. int rc = 0;
  7347. int i = 0;
  7348. uint32_t cmd_size = 0;
  7349. uint32_t bufcnt_t;
  7350. uint32_t bufsz_t;
  7351. if (!ac) {
  7352. pr_err("%s: APR handle NULL\n", __func__);
  7353. return -EINVAL;
  7354. }
  7355. if (ac->mmap_apr == NULL) {
  7356. pr_err("%s: mmap APR handle NULL\n", __func__);
  7357. return -EINVAL;
  7358. }
  7359. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7360. bufcnt_t = (is_contiguous) ? 1 : bufcnt;
  7361. bufsz_t = (is_contiguous) ? (bufsz * bufcnt) : bufsz;
  7362. if (is_contiguous) {
  7363. /* The size to memory map should be multiple of 4K bytes */
  7364. bufsz_t = PAGE_ALIGN(bufsz_t);
  7365. }
  7366. if (bufcnt_t > (UINT_MAX
  7367. - sizeof(struct avs_cmd_shared_mem_map_regions))
  7368. / sizeof(struct avs_shared_map_region_payload)) {
  7369. pr_err("%s: Unsigned Integer Overflow. bufcnt_t = %u\n",
  7370. __func__, bufcnt_t);
  7371. return -EINVAL;
  7372. }
  7373. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  7374. + (sizeof(struct avs_shared_map_region_payload)
  7375. * bufcnt_t);
  7376. if (bufcnt > (UINT_MAX / sizeof(struct asm_buffer_node))) {
  7377. pr_err("%s: Unsigned Integer Overflow. bufcnt = %u\n",
  7378. __func__, bufcnt);
  7379. return -EINVAL;
  7380. }
  7381. buffer_node = kzalloc(sizeof(struct asm_buffer_node) * bufcnt,
  7382. GFP_KERNEL);
  7383. if (!buffer_node)
  7384. return -ENOMEM;
  7385. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  7386. if (mmap_region_cmd == NULL) {
  7387. rc = -EINVAL;
  7388. kfree(buffer_node);
  7389. return rc;
  7390. }
  7391. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)
  7392. mmap_region_cmd;
  7393. q6asm_add_mmaphdr(ac, &mmap_regions->hdr, cmd_size, dir);
  7394. atomic_set(&ac->mem_state, -1);
  7395. pr_debug("%s: mmap_region=0x%pK token=0x%x\n", __func__,
  7396. mmap_regions, ((ac->session << 8) | dir));
  7397. mmap_regions->hdr.opcode = ASM_CMD_SHARED_MEM_MAP_REGIONS;
  7398. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7399. mmap_regions->num_regions = bufcnt_t; /*bufcnt & 0x00ff; */
  7400. mmap_regions->property_flag = 0x00;
  7401. pr_debug("%s: map_regions->nregions = %d\n", __func__,
  7402. mmap_regions->num_regions);
  7403. payload = ((u8 *) mmap_region_cmd +
  7404. sizeof(struct avs_cmd_shared_mem_map_regions));
  7405. mregions = (struct avs_shared_map_region_payload *)payload;
  7406. ac->port[dir].tmp_hdl = 0;
  7407. port = &ac->port[dir];
  7408. for (i = 0; i < bufcnt_t; i++) {
  7409. ab = &port->buf[i];
  7410. mregions->shm_addr_lsw = lower_32_bits(ab->phys);
  7411. mregions->shm_addr_msw =
  7412. msm_audio_populate_upper_32_bits(ab->phys);
  7413. mregions->mem_size_bytes = bufsz_t;
  7414. ++mregions;
  7415. }
  7416. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) mmap_region_cmd);
  7417. if (rc < 0) {
  7418. pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
  7419. mmap_regions->hdr.opcode, rc);
  7420. rc = -EINVAL;
  7421. kfree(buffer_node);
  7422. goto fail_cmd;
  7423. }
  7424. rc = wait_event_timeout(ac->mem_wait,
  7425. (atomic_read(&ac->mem_state) >= 0 &&
  7426. ac->port[dir].tmp_hdl),
  7427. msecs_to_jiffies(TIMEOUT_MS));
  7428. if (!rc) {
  7429. pr_err("%s: timeout. waited for memory_map\n", __func__);
  7430. rc = -ETIMEDOUT;
  7431. kfree(buffer_node);
  7432. goto fail_cmd;
  7433. }
  7434. if (atomic_read(&ac->mem_state) > 0) {
  7435. pr_err("%s DSP returned error for memory_map [%s]\n",
  7436. __func__, adsp_err_get_err_str(
  7437. atomic_read(&ac->mem_state)));
  7438. rc = adsp_err_get_lnx_err_code(
  7439. atomic_read(&ac->mem_state));
  7440. kfree(buffer_node);
  7441. goto fail_cmd;
  7442. }
  7443. mutex_lock(&ac->cmd_lock);
  7444. for (i = 0; i < bufcnt; i++) {
  7445. ab = &port->buf[i];
  7446. buffer_node[i].buf_phys_addr = ab->phys;
  7447. buffer_node[i].mmap_hdl = ac->port[dir].tmp_hdl;
  7448. list_add_tail(&buffer_node[i].list,
  7449. &ac->port[dir].mem_map_handle);
  7450. pr_debug("%s: i=%d, bufadd[i] = 0x%pK, maphdl[i] = 0x%x\n",
  7451. __func__, i, &buffer_node[i].buf_phys_addr,
  7452. buffer_node[i].mmap_hdl);
  7453. }
  7454. ac->port[dir].tmp_hdl = 0;
  7455. mutex_unlock(&ac->cmd_lock);
  7456. rc = 0;
  7457. fail_cmd:
  7458. kfree(mmap_region_cmd);
  7459. return rc;
  7460. }
  7461. EXPORT_SYMBOL(q6asm_memory_map_regions);
  7462. /**
  7463. * q6asm_memory_unmap_regions -
  7464. * command to send memory unmap regions for ASM
  7465. *
  7466. * @ac: Audio client handle
  7467. * @dir: RX or TX session
  7468. *
  7469. * Returns 0 on success or error on failure
  7470. */
  7471. static int q6asm_memory_unmap_regions(struct audio_client *ac, int dir)
  7472. {
  7473. struct avs_cmd_shared_mem_unmap_regions mem_unmap;
  7474. struct audio_port_data *port = NULL;
  7475. struct asm_buffer_node *buf_node = NULL;
  7476. struct list_head *ptr, *next;
  7477. phys_addr_t buf_add;
  7478. int rc = 0;
  7479. int cmd_size = 0;
  7480. if (!ac) {
  7481. pr_err("%s: APR handle NULL\n", __func__);
  7482. return -EINVAL;
  7483. }
  7484. if (ac->mmap_apr == NULL) {
  7485. pr_err("%s: mmap APR handle NULL\n", __func__);
  7486. return -EINVAL;
  7487. }
  7488. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7489. cmd_size = sizeof(struct avs_cmd_shared_mem_unmap_regions);
  7490. q6asm_add_mmaphdr(ac, &mem_unmap.hdr, cmd_size, dir);
  7491. atomic_set(&ac->mem_state, -1);
  7492. port = &ac->port[dir];
  7493. buf_add = port->buf->phys;
  7494. mem_unmap.hdr.opcode = ASM_CMD_SHARED_MEM_UNMAP_REGIONS;
  7495. mem_unmap.mem_map_handle = 0;
  7496. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7497. buf_node = list_entry(ptr, struct asm_buffer_node,
  7498. list);
  7499. if (buf_node->buf_phys_addr == buf_add) {
  7500. pr_debug("%s: Found the element\n", __func__);
  7501. mem_unmap.mem_map_handle = buf_node->mmap_hdl;
  7502. break;
  7503. }
  7504. }
  7505. pr_debug("%s: mem_unmap-mem_map_handle: 0x%x\n",
  7506. __func__, mem_unmap.mem_map_handle);
  7507. if (mem_unmap.mem_map_handle == 0) {
  7508. pr_err("%s: Do not send null mem handle to DSP\n", __func__);
  7509. rc = 0;
  7510. goto fail_cmd;
  7511. }
  7512. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) &mem_unmap);
  7513. if (rc < 0) {
  7514. pr_err("mmap_regions op[0x%x]rc[%d]\n",
  7515. mem_unmap.hdr.opcode, rc);
  7516. goto fail_cmd;
  7517. }
  7518. rc = wait_event_timeout(ac->mem_wait,
  7519. (atomic_read(&ac->mem_state) >= 0),
  7520. msecs_to_jiffies(TIMEOUT_MS));
  7521. if (!rc) {
  7522. pr_err("%s: timeout. waited for memory_unmap of handle 0x%x\n",
  7523. __func__, mem_unmap.mem_map_handle);
  7524. rc = -ETIMEDOUT;
  7525. goto fail_cmd;
  7526. } else if (atomic_read(&ac->mem_state) > 0) {
  7527. pr_err("%s: DSP returned error[%s]\n",
  7528. __func__, adsp_err_get_err_str(
  7529. atomic_read(&ac->mem_state)));
  7530. rc = adsp_err_get_lnx_err_code(
  7531. atomic_read(&ac->mem_state));
  7532. goto fail_cmd;
  7533. } else if (atomic_read(&ac->unmap_cb_success) == 0) {
  7534. pr_err("%s: Error in mem unmap callback of handle 0x%x\n",
  7535. __func__, mem_unmap.mem_map_handle);
  7536. rc = -EINVAL;
  7537. goto fail_cmd;
  7538. }
  7539. rc = 0;
  7540. fail_cmd:
  7541. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7542. buf_node = list_entry(ptr, struct asm_buffer_node,
  7543. list);
  7544. if (buf_node->buf_phys_addr == buf_add) {
  7545. list_del(&buf_node->list);
  7546. kfree(buf_node);
  7547. break;
  7548. }
  7549. }
  7550. return rc;
  7551. }
  7552. EXPORT_SYMBOL(q6asm_memory_unmap_regions);
  7553. int q6asm_set_lrgain(struct audio_client *ac, int left_gain, int right_gain)
  7554. {
  7555. struct asm_volume_ctrl_multichannel_gain multi_ch_gain;
  7556. struct param_hdr_v3 param_info;
  7557. int rc = 0;
  7558. memset(&param_info, 0, sizeof(param_info));
  7559. memset(&multi_ch_gain, 0, sizeof(multi_ch_gain));
  7560. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7561. param_info.instance_id = INSTANCE_ID_0;
  7562. param_info.param_id = ASM_PARAM_ID_MULTICHANNEL_GAIN;
  7563. param_info.param_size = sizeof(multi_ch_gain);
  7564. multi_ch_gain.gain_data[0].channeltype = PCM_CHANNEL_FL;
  7565. multi_ch_gain.gain_data[0].gain = left_gain << 15;
  7566. multi_ch_gain.gain_data[1].channeltype = PCM_CHANNEL_FR;
  7567. multi_ch_gain.gain_data[1].gain = right_gain << 15;
  7568. multi_ch_gain.num_channels = 2;
  7569. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7570. (u8 *) &multi_ch_gain);
  7571. if (rc < 0)
  7572. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7573. __func__, param_info.param_id, rc);
  7574. return rc;
  7575. }
  7576. /*
  7577. * q6asm_set_multich_gain: set multiple channel gains on an ASM session
  7578. * @ac: audio client handle
  7579. * @channels: number of channels caller intends to set gains
  7580. * @gains: list of gains of audio channels
  7581. * @ch_map: list of channel mapping. Only valid if use_default is false
  7582. * @use_default: flag to indicate whether to use default mapping
  7583. */
  7584. int q6asm_set_multich_gain(struct audio_client *ac, uint32_t channels,
  7585. uint32_t *gains, uint8_t *ch_map, bool use_default)
  7586. {
  7587. struct asm_volume_ctrl_multichannel_gain multich_gain;
  7588. struct param_hdr_v3 param_info;
  7589. int rc = 0;
  7590. int i;
  7591. u8 default_chmap[VOLUME_CONTROL_MAX_CHANNELS];
  7592. if (ac == NULL) {
  7593. pr_err("%s: Audio client is NULL\n", __func__);
  7594. return -EINVAL;
  7595. }
  7596. if (gains == NULL) {
  7597. dev_err(ac->dev, "%s: gain_list is NULL\n", __func__);
  7598. rc = -EINVAL;
  7599. goto done;
  7600. }
  7601. if (channels > VOLUME_CONTROL_MAX_CHANNELS) {
  7602. dev_err(ac->dev, "%s: Invalid channel count %d\n",
  7603. __func__, channels);
  7604. rc = -EINVAL;
  7605. goto done;
  7606. }
  7607. if (!use_default && ch_map == NULL) {
  7608. dev_err(ac->dev, "%s: NULL channel map\n", __func__);
  7609. rc = -EINVAL;
  7610. goto done;
  7611. }
  7612. memset(&param_info, 0, sizeof(param_info));
  7613. memset(&multich_gain, 0, sizeof(multich_gain));
  7614. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7615. param_info.instance_id = INSTANCE_ID_0;
  7616. param_info.param_id = ASM_PARAM_ID_MULTICHANNEL_GAIN;
  7617. param_info.param_size = sizeof(multich_gain);
  7618. if (use_default) {
  7619. rc = q6asm_map_channels(default_chmap, channels, false);
  7620. if (rc < 0)
  7621. goto done;
  7622. for (i = 0; i < channels; i++) {
  7623. multich_gain.gain_data[i].channeltype =
  7624. default_chmap[i];
  7625. multich_gain.gain_data[i].gain = gains[i] << 15;
  7626. }
  7627. } else {
  7628. for (i = 0; i < channels; i++) {
  7629. multich_gain.gain_data[i].channeltype = ch_map[i];
  7630. multich_gain.gain_data[i].gain = gains[i] << 15;
  7631. }
  7632. }
  7633. multich_gain.num_channels = channels;
  7634. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7635. (u8 *) &multich_gain);
  7636. if (rc)
  7637. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7638. __func__, param_info.param_id, rc);
  7639. done:
  7640. return rc;
  7641. }
  7642. EXPORT_SYMBOL(q6asm_set_multich_gain);
  7643. /**
  7644. * q6asm_set_mute -
  7645. * command to set mute for ASM
  7646. *
  7647. * @ac: Audio client handle
  7648. * @muteflag: mute value
  7649. *
  7650. * Returns 0 on success or error on failure
  7651. */
  7652. int q6asm_set_mute(struct audio_client *ac, int muteflag)
  7653. {
  7654. struct asm_volume_ctrl_mute_config mute;
  7655. struct param_hdr_v3 param_info;
  7656. int rc = 0;
  7657. memset(&mute, 0, sizeof(mute));
  7658. memset(&param_info, 0, sizeof(param_info));
  7659. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7660. param_info.instance_id = INSTANCE_ID_0;
  7661. param_info.param_id = ASM_PARAM_ID_VOL_CTRL_MUTE_CONFIG;
  7662. param_info.param_size = sizeof(mute);
  7663. mute.mute_flag = muteflag;
  7664. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &mute);
  7665. if (rc)
  7666. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7667. __func__, param_info.param_id, rc);
  7668. return rc;
  7669. }
  7670. EXPORT_SYMBOL(q6asm_set_mute);
  7671. static int __q6asm_set_volume(struct audio_client *ac, int volume, int instance)
  7672. {
  7673. struct asm_volume_ctrl_master_gain vol;
  7674. struct param_hdr_v3 param_info;
  7675. int rc = 0;
  7676. memset(&vol, 0, sizeof(vol));
  7677. memset(&param_info, 0, sizeof(param_info));
  7678. rc = q6asm_set_soft_volume_module_instance_ids(instance, &param_info);
  7679. if (rc) {
  7680. pr_err("%s: Failed to pack soft volume module and instance IDs, error %d\n",
  7681. __func__, rc);
  7682. return rc;
  7683. }
  7684. param_info.param_id = ASM_PARAM_ID_VOL_CTRL_MASTER_GAIN;
  7685. param_info.param_size = sizeof(vol);
  7686. vol.master_gain = volume;
  7687. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &vol);
  7688. if (rc)
  7689. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7690. __func__, param_info.param_id, rc);
  7691. return rc;
  7692. }
  7693. /**
  7694. * q6asm_set_volume -
  7695. * command to set volume for ASM
  7696. *
  7697. * @ac: Audio client handle
  7698. * @volume: volume level
  7699. *
  7700. * Returns 0 on success or error on failure
  7701. */
  7702. int q6asm_set_volume(struct audio_client *ac, int volume)
  7703. {
  7704. return __q6asm_set_volume(ac, volume, SOFT_VOLUME_INSTANCE_1);
  7705. }
  7706. EXPORT_SYMBOL(q6asm_set_volume);
  7707. int q6asm_set_volume_v2(struct audio_client *ac, int volume, int instance)
  7708. {
  7709. return __q6asm_set_volume(ac, volume, instance);
  7710. }
  7711. /**
  7712. * q6asm_set_aptx_dec_bt_addr -
  7713. * command to aptx decoder BT addr for ASM
  7714. *
  7715. * @ac: Audio client handle
  7716. * @cfg: APTX decoder bt addr config
  7717. *
  7718. * Returns 0 on success or error on failure
  7719. */
  7720. int q6asm_set_aptx_dec_bt_addr(struct audio_client *ac,
  7721. struct aptx_dec_bt_addr_cfg *cfg)
  7722. {
  7723. struct aptx_dec_bt_dev_addr paylod;
  7724. int sz = 0;
  7725. int rc = 0;
  7726. pr_debug("%s: BT addr nap %d, uap %d, lap %d\n", __func__, cfg->nap,
  7727. cfg->uap, cfg->lap);
  7728. if (ac == NULL) {
  7729. pr_err("%s: AC handle NULL\n", __func__);
  7730. rc = -EINVAL;
  7731. goto fail_cmd;
  7732. }
  7733. if (ac->apr == NULL) {
  7734. pr_err("%s: AC APR handle NULL\n", __func__);
  7735. rc = -EINVAL;
  7736. goto fail_cmd;
  7737. }
  7738. sz = sizeof(struct aptx_dec_bt_dev_addr);
  7739. q6asm_add_hdr_async(ac, &paylod.hdr, sz, TRUE);
  7740. atomic_set(&ac->cmd_state, -1);
  7741. paylod.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  7742. paylod.encdec.param_id = APTX_DECODER_BT_ADDRESS;
  7743. paylod.encdec.param_size = sz - sizeof(paylod.hdr)
  7744. - sizeof(paylod.encdec);
  7745. paylod.bt_addr_cfg.lap = cfg->lap;
  7746. paylod.bt_addr_cfg.uap = cfg->uap;
  7747. paylod.bt_addr_cfg.nap = cfg->nap;
  7748. rc = apr_send_pkt(ac->apr, (uint32_t *) &paylod);
  7749. if (rc < 0) {
  7750. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7751. __func__, paylod.encdec.param_id, rc);
  7752. rc = -EINVAL;
  7753. goto fail_cmd;
  7754. }
  7755. rc = wait_event_timeout(ac->cmd_wait,
  7756. (atomic_read(&ac->cmd_state) >= 0),
  7757. msecs_to_jiffies(TIMEOUT_MS));
  7758. if (!rc) {
  7759. pr_err("%s: timeout, set-params paramid[0x%x]\n", __func__,
  7760. paylod.encdec.param_id);
  7761. rc = -ETIMEDOUT;
  7762. goto fail_cmd;
  7763. }
  7764. if (atomic_read(&ac->cmd_state) > 0) {
  7765. pr_err("%s: DSP returned error[%s] set-params paramid[0x%x]\n",
  7766. __func__, adsp_err_get_err_str(
  7767. atomic_read(&ac->cmd_state)),
  7768. paylod.encdec.param_id);
  7769. rc = adsp_err_get_lnx_err_code(
  7770. atomic_read(&ac->cmd_state));
  7771. goto fail_cmd;
  7772. }
  7773. pr_debug("%s: set BT addr is success\n", __func__);
  7774. rc = 0;
  7775. fail_cmd:
  7776. return rc;
  7777. }
  7778. EXPORT_SYMBOL(q6asm_set_aptx_dec_bt_addr);
  7779. /**
  7780. * q6asm_send_ion_fd -
  7781. * command to send ION memory map for ASM
  7782. *
  7783. * @ac: Audio client handle
  7784. * @fd: ION file desc
  7785. *
  7786. * Returns 0 on success or error on failure
  7787. */
  7788. int q6asm_send_ion_fd(struct audio_client *ac, int fd)
  7789. {
  7790. struct dma_buf *dma_buf;
  7791. dma_addr_t paddr;
  7792. size_t pa_len = 0;
  7793. void *vaddr;
  7794. int ret;
  7795. int sz = 0;
  7796. struct avs_rtic_shared_mem_addr shm;
  7797. if (ac == NULL) {
  7798. pr_err("%s: APR handle NULL\n", __func__);
  7799. ret = -EINVAL;
  7800. goto fail_cmd;
  7801. }
  7802. if (ac->apr == NULL) {
  7803. pr_err("%s: AC APR handle NULL\n", __func__);
  7804. ret = -EINVAL;
  7805. goto fail_cmd;
  7806. }
  7807. ret = msm_audio_ion_import(&dma_buf,
  7808. fd,
  7809. NULL,
  7810. 0,
  7811. &paddr,
  7812. &pa_len,
  7813. &vaddr);
  7814. if (ret) {
  7815. pr_err("%s: audio ION import failed, rc = %d\n",
  7816. __func__, ret);
  7817. ret = -ENOMEM;
  7818. goto fail_cmd;
  7819. }
  7820. /* get payload length */
  7821. sz = sizeof(struct avs_rtic_shared_mem_addr);
  7822. q6asm_add_hdr_async(ac, &shm.hdr, sz, TRUE);
  7823. atomic_set(&ac->cmd_state, -1);
  7824. shm.shm_buf_addr_lsw = lower_32_bits(paddr);
  7825. shm.shm_buf_addr_msw = msm_audio_populate_upper_32_bits(paddr);
  7826. shm.buf_size = pa_len;
  7827. shm.shm_buf_num_regions = 1;
  7828. shm.shm_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7829. shm.shm_buf_flag = 0x00;
  7830. shm.encdec.param_id = AVS_PARAM_ID_RTIC_SHARED_MEMORY_ADDR;
  7831. shm.encdec.param_size = sizeof(struct avs_rtic_shared_mem_addr) -
  7832. sizeof(struct apr_hdr) -
  7833. sizeof(struct asm_stream_cmd_set_encdec_param_v2);
  7834. shm.encdec.service_id = OUT;
  7835. shm.encdec.reserved = 0;
  7836. shm.map_region.shm_addr_lsw = shm.shm_buf_addr_lsw;
  7837. shm.map_region.shm_addr_msw = shm.shm_buf_addr_msw;
  7838. shm.map_region.mem_size_bytes = pa_len;
  7839. shm.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2;
  7840. ret = apr_send_pkt(ac->apr, (uint32_t *) &shm);
  7841. if (ret < 0) {
  7842. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7843. __func__, shm.encdec.param_id, ret);
  7844. ret = -EINVAL;
  7845. goto fail_cmd;
  7846. }
  7847. ret = wait_event_timeout(ac->cmd_wait,
  7848. (atomic_read(&ac->cmd_state) >= 0),
  7849. msecs_to_jiffies(TIMEOUT_MS));
  7850. if (!ret) {
  7851. pr_err("%s: timeout, shm.encdec paramid[0x%x]\n", __func__,
  7852. shm.encdec.param_id);
  7853. ret = -ETIMEDOUT;
  7854. goto fail_cmd;
  7855. }
  7856. if (atomic_read(&ac->cmd_state) > 0) {
  7857. pr_err("%s: DSP returned error[%s] shm.encdec paramid[0x%x]\n",
  7858. __func__,
  7859. adsp_err_get_err_str(atomic_read(&ac->cmd_state)),
  7860. shm.encdec.param_id);
  7861. ret = adsp_err_get_lnx_err_code(atomic_read(&ac->cmd_state));
  7862. goto fail_cmd;
  7863. }
  7864. ret = 0;
  7865. fail_cmd:
  7866. return ret;
  7867. }
  7868. EXPORT_SYMBOL(q6asm_send_ion_fd);
  7869. /**
  7870. * q6asm_send_rtic_event_ack -
  7871. * command to send RTIC event ack
  7872. *
  7873. * @ac: Audio client handle
  7874. * @param: params for event ack
  7875. * @params_length: length of params
  7876. *
  7877. * Returns 0 on success or error on failure
  7878. */
  7879. int q6asm_send_rtic_event_ack(struct audio_client *ac,
  7880. void *param, uint32_t params_length)
  7881. {
  7882. char *asm_params = NULL;
  7883. int sz, rc;
  7884. struct avs_param_rtic_event_ack ack;
  7885. if (!param || !ac) {
  7886. pr_err("%s: %s is NULL\n", __func__,
  7887. (!param) ? "param" : "ac");
  7888. rc = -EINVAL;
  7889. goto done;
  7890. }
  7891. sz = sizeof(struct avs_param_rtic_event_ack) + params_length;
  7892. asm_params = kzalloc(sz, GFP_KERNEL);
  7893. if (!asm_params) {
  7894. rc = -ENOMEM;
  7895. goto done;
  7896. }
  7897. q6asm_add_hdr_async(ac, &ack.hdr,
  7898. sizeof(struct avs_param_rtic_event_ack) +
  7899. params_length, TRUE);
  7900. atomic_set(&ac->cmd_state, -1);
  7901. ack.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2;
  7902. ack.encdec.param_id = AVS_PARAM_ID_RTIC_EVENT_ACK;
  7903. ack.encdec.param_size = params_length;
  7904. ack.encdec.reserved = 0;
  7905. ack.encdec.service_id = OUT;
  7906. memcpy(asm_params, &ack, sizeof(struct avs_param_rtic_event_ack));
  7907. memcpy(asm_params + sizeof(struct avs_param_rtic_event_ack),
  7908. param, params_length);
  7909. rc = apr_send_pkt(ac->apr, (uint32_t *) asm_params);
  7910. if (rc < 0) {
  7911. pr_err("%s: apr pkt failed for rtic event ack\n", __func__);
  7912. rc = -EINVAL;
  7913. goto fail_send_param;
  7914. }
  7915. rc = wait_event_timeout(ac->cmd_wait,
  7916. (atomic_read(&ac->cmd_state) >= 0),
  7917. msecs_to_jiffies(TIMEOUT_MS));
  7918. if (!rc) {
  7919. pr_err("%s: timeout for rtic event ack cmd\n", __func__);
  7920. rc = -ETIMEDOUT;
  7921. goto fail_send_param;
  7922. }
  7923. if (atomic_read(&ac->cmd_state) > 0) {
  7924. pr_err("%s: DSP returned error[%s] for rtic event ack cmd\n",
  7925. __func__, adsp_err_get_err_str(
  7926. atomic_read(&ac->cmd_state)));
  7927. rc = adsp_err_get_lnx_err_code(
  7928. atomic_read(&ac->cmd_state));
  7929. goto fail_send_param;
  7930. }
  7931. rc = 0;
  7932. fail_send_param:
  7933. kfree(asm_params);
  7934. done:
  7935. return rc;
  7936. }
  7937. EXPORT_SYMBOL(q6asm_send_rtic_event_ack);
  7938. /**
  7939. * q6asm_set_softpause -
  7940. * command to set pause for ASM
  7941. *
  7942. * @ac: Audio client handle
  7943. * @pause_param: params for pause
  7944. *
  7945. * Returns 0 on success or error on failure
  7946. */
  7947. int q6asm_set_softpause(struct audio_client *ac,
  7948. struct asm_softpause_params *pause_param)
  7949. {
  7950. struct asm_soft_pause_params softpause;
  7951. struct param_hdr_v3 param_info;
  7952. int rc = 0;
  7953. memset(&softpause, 0, sizeof(softpause));
  7954. memset(&param_info, 0, sizeof(param_info));
  7955. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7956. param_info.instance_id = INSTANCE_ID_0;
  7957. param_info.param_id = ASM_PARAM_ID_SOFT_PAUSE_PARAMETERS;
  7958. param_info.param_size = sizeof(softpause);
  7959. softpause.enable_flag = pause_param->enable;
  7960. softpause.period = pause_param->period;
  7961. softpause.step = pause_param->step;
  7962. softpause.ramping_curve = pause_param->rampingcurve;
  7963. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7964. (u8 *) &softpause);
  7965. if (rc)
  7966. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7967. __func__, param_info.param_id, rc);
  7968. return rc;
  7969. }
  7970. EXPORT_SYMBOL(q6asm_set_softpause);
  7971. static int __q6asm_set_softvolume(struct audio_client *ac,
  7972. struct asm_softvolume_params *softvol_param,
  7973. int instance)
  7974. {
  7975. struct asm_soft_step_volume_params softvol;
  7976. struct param_hdr_v3 param_info;
  7977. int rc = 0;
  7978. memset(&softvol, 0, sizeof(softvol));
  7979. memset(&param_info, 0, sizeof(param_info));
  7980. rc = q6asm_set_soft_volume_module_instance_ids(instance, &param_info);
  7981. if (rc) {
  7982. pr_err("%s: Failed to pack soft volume module and instance IDs, error %d\n",
  7983. __func__, rc);
  7984. return rc;
  7985. }
  7986. param_info.param_id = ASM_PARAM_ID_SOFT_VOL_STEPPING_PARAMETERS;
  7987. param_info.param_size = sizeof(softvol);
  7988. softvol.period = softvol_param->period;
  7989. softvol.step = softvol_param->step;
  7990. softvol.ramping_curve = softvol_param->rampingcurve;
  7991. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7992. (u8 *) &softvol);
  7993. if (rc)
  7994. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7995. __func__, param_info.param_id, rc);
  7996. return rc;
  7997. }
  7998. /**
  7999. * q6asm_set_softvolume -
  8000. * command to set softvolume for ASM
  8001. *
  8002. * @ac: Audio client handle
  8003. * @softvol_param: params for softvol
  8004. *
  8005. * Returns 0 on success or error on failure
  8006. */
  8007. int q6asm_set_softvolume(struct audio_client *ac,
  8008. struct asm_softvolume_params *softvol_param)
  8009. {
  8010. return __q6asm_set_softvolume(ac, softvol_param,
  8011. SOFT_VOLUME_INSTANCE_1);
  8012. }
  8013. EXPORT_SYMBOL(q6asm_set_softvolume);
  8014. /**
  8015. * q6asm_set_softvolume_v2 -
  8016. * command to set softvolume V2 for ASM
  8017. *
  8018. * @ac: Audio client handle
  8019. * @softvol_param: params for softvol
  8020. * @instance: instance to apply softvol
  8021. *
  8022. * Returns 0 on success or error on failure
  8023. */
  8024. int q6asm_set_softvolume_v2(struct audio_client *ac,
  8025. struct asm_softvolume_params *softvol_param,
  8026. int instance)
  8027. {
  8028. return __q6asm_set_softvolume(ac, softvol_param, instance);
  8029. }
  8030. EXPORT_SYMBOL(q6asm_set_softvolume_v2);
  8031. /**
  8032. * q6asm_equalizer -
  8033. * command to set equalizer for ASM
  8034. *
  8035. * @ac: Audio client handle
  8036. * @eq_p: Equalizer params
  8037. *
  8038. * Returns 0 on success or error on failure
  8039. */
  8040. int q6asm_equalizer(struct audio_client *ac, void *eq_p)
  8041. {
  8042. struct asm_eq_params eq;
  8043. struct msm_audio_eq_stream_config *eq_params = NULL;
  8044. struct param_hdr_v3 param_info;
  8045. int i = 0;
  8046. int rc = 0;
  8047. if (ac == NULL) {
  8048. pr_err("%s: Audio client is NULL\n", __func__);
  8049. return -EINVAL;
  8050. }
  8051. if (eq_p == NULL) {
  8052. pr_err("%s: [%d]: Invalid Eq param\n", __func__, ac->session);
  8053. rc = -EINVAL;
  8054. goto fail_cmd;
  8055. }
  8056. memset(&eq, 0, sizeof(eq));
  8057. memset(&param_info, 0, sizeof(param_info));
  8058. eq_params = (struct msm_audio_eq_stream_config *) eq_p;
  8059. param_info.module_id = ASM_MODULE_ID_EQUALIZER;
  8060. param_info.instance_id = INSTANCE_ID_0;
  8061. param_info.param_id = ASM_PARAM_ID_EQUALIZER_PARAMETERS;
  8062. param_info.param_size = sizeof(eq);
  8063. eq.enable_flag = eq_params->enable;
  8064. eq.num_bands = eq_params->num_bands;
  8065. pr_debug("%s: enable:%d numbands:%d\n", __func__, eq_params->enable,
  8066. eq_params->num_bands);
  8067. for (i = 0; i < eq_params->num_bands; i++) {
  8068. eq.eq_bands[i].band_idx =
  8069. eq_params->eq_bands[i].band_idx;
  8070. eq.eq_bands[i].filterype =
  8071. eq_params->eq_bands[i].filter_type;
  8072. eq.eq_bands[i].center_freq_hz =
  8073. eq_params->eq_bands[i].center_freq_hz;
  8074. eq.eq_bands[i].filter_gain =
  8075. eq_params->eq_bands[i].filter_gain;
  8076. eq.eq_bands[i].q_factor =
  8077. eq_params->eq_bands[i].q_factor;
  8078. pr_debug("%s: filter_type:%u bandnum:%d\n", __func__,
  8079. eq_params->eq_bands[i].filter_type, i);
  8080. pr_debug("%s: center_freq_hz:%u bandnum:%d\n", __func__,
  8081. eq_params->eq_bands[i].center_freq_hz, i);
  8082. pr_debug("%s: filter_gain:%d bandnum:%d\n", __func__,
  8083. eq_params->eq_bands[i].filter_gain, i);
  8084. pr_debug("%s: q_factor:%d bandnum:%d\n", __func__,
  8085. eq_params->eq_bands[i].q_factor, i);
  8086. }
  8087. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &eq);
  8088. if (rc)
  8089. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  8090. __func__, param_info.param_id, rc);
  8091. fail_cmd:
  8092. return rc;
  8093. }
  8094. EXPORT_SYMBOL(q6asm_equalizer);
  8095. static int __q6asm_read(struct audio_client *ac, bool is_custom_len_reqd,
  8096. int len)
  8097. {
  8098. struct asm_data_cmd_read_v2 read;
  8099. struct asm_buffer_node *buf_node = NULL;
  8100. struct list_head *ptr, *next;
  8101. struct audio_buffer *ab;
  8102. int dsp_buf;
  8103. struct audio_port_data *port;
  8104. int rc;
  8105. if (ac == NULL) {
  8106. pr_err("%s: APR handle NULL\n", __func__);
  8107. return -EINVAL;
  8108. }
  8109. if (ac->apr == NULL) {
  8110. pr_err("%s: AC APR handle NULL\n", __func__);
  8111. return -EINVAL;
  8112. }
  8113. if (ac->io_mode & SYNC_IO_MODE) {
  8114. port = &ac->port[OUT];
  8115. q6asm_add_hdr(ac, &read.hdr, sizeof(read), FALSE);
  8116. mutex_lock(&port->lock);
  8117. dsp_buf = port->dsp_buf;
  8118. if (port->buf == NULL) {
  8119. pr_err("%s: buf is NULL\n", __func__);
  8120. mutex_unlock(&port->lock);
  8121. return -EINVAL;
  8122. }
  8123. ab = &port->buf[dsp_buf];
  8124. dev_vdbg(ac->dev, "%s: session[%d]dsp-buf[%d][%pK]cpu_buf[%d][%pK]\n",
  8125. __func__,
  8126. ac->session,
  8127. dsp_buf,
  8128. port->buf[dsp_buf].data,
  8129. port->cpu_buf,
  8130. &port->buf[port->cpu_buf].phys);
  8131. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8132. read.buf_addr_lsw = lower_32_bits(ab->phys);
  8133. read.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8134. list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
  8135. buf_node = list_entry(ptr, struct asm_buffer_node,
  8136. list);
  8137. if (buf_node->buf_phys_addr == ab->phys) {
  8138. read.mem_map_handle = buf_node->mmap_hdl;
  8139. break;
  8140. }
  8141. }
  8142. dev_vdbg(ac->dev, "memory_map handle in q6asm_read: [%0x]:",
  8143. read.mem_map_handle);
  8144. read.buf_size = is_custom_len_reqd ? len : ab->size;
  8145. read.seq_id = port->dsp_buf;
  8146. q6asm_update_token(&read.hdr.token,
  8147. 0, /* Session ID is NA */
  8148. 0, /* Stream ID is NA */
  8149. port->dsp_buf,
  8150. 0, /* Direction flag is NA */
  8151. WAIT_CMD);
  8152. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8153. port->max_buf_cnt);
  8154. mutex_unlock(&port->lock);
  8155. dev_vdbg(ac->dev, "%s: buf add[%pK] token[0x%x] uid[%d]\n",
  8156. __func__, &ab->phys, read.hdr.token,
  8157. read.seq_id);
  8158. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8159. if (rc < 0) {
  8160. pr_err("%s: read op[0x%x]rc[%d]\n",
  8161. __func__, read.hdr.opcode, rc);
  8162. goto fail_cmd;
  8163. }
  8164. return 0;
  8165. }
  8166. fail_cmd:
  8167. return -EINVAL;
  8168. }
  8169. /**
  8170. * q6asm_read -
  8171. * command to read buffer data from DSP
  8172. *
  8173. * @ac: Audio client handle
  8174. *
  8175. * Returns 0 on success or error on failure
  8176. */
  8177. int q6asm_read(struct audio_client *ac)
  8178. {
  8179. return __q6asm_read(ac, false/*is_custom_len_reqd*/, 0);
  8180. }
  8181. EXPORT_SYMBOL(q6asm_read);
  8182. /**
  8183. * q6asm_read_v2 -
  8184. * command to read buffer data from DSP
  8185. *
  8186. * @ac: Audio client handle
  8187. * @len: buffer size to read
  8188. *
  8189. * Returns 0 on success or error on failure
  8190. */
  8191. int q6asm_read_v2(struct audio_client *ac, uint32_t len)
  8192. {
  8193. return __q6asm_read(ac, true /*is_custom_len_reqd*/, len);
  8194. }
  8195. EXPORT_SYMBOL(q6asm_read_v2);
  8196. /**
  8197. * q6asm_read_nolock -
  8198. * command to read buffer data from DSP
  8199. * with no wait for ack.
  8200. *
  8201. * @ac: Audio client handle
  8202. *
  8203. * Returns 0 on success or error on failure
  8204. */
  8205. int q6asm_read_nolock(struct audio_client *ac)
  8206. {
  8207. struct asm_data_cmd_read_v2 read;
  8208. struct asm_buffer_node *buf_node = NULL;
  8209. struct list_head *ptr, *next;
  8210. struct audio_buffer *ab;
  8211. int dsp_buf;
  8212. struct audio_port_data *port;
  8213. int rc;
  8214. if (ac == NULL) {
  8215. pr_err("%s: APR handle NULL\n", __func__);
  8216. return -EINVAL;
  8217. }
  8218. if (ac->apr == NULL) {
  8219. pr_err("%s: AC APR handle NULL\n", __func__);
  8220. return -EINVAL;
  8221. }
  8222. if (ac->io_mode & SYNC_IO_MODE) {
  8223. port = &ac->port[OUT];
  8224. q6asm_add_hdr_async(ac, &read.hdr, sizeof(read), FALSE);
  8225. dsp_buf = port->dsp_buf;
  8226. ab = &port->buf[dsp_buf];
  8227. dev_vdbg(ac->dev, "%s: session[%d]dsp-buf[%d][%pK]cpu_buf[%d][%pK]\n",
  8228. __func__,
  8229. ac->session,
  8230. dsp_buf,
  8231. port->buf[dsp_buf].data,
  8232. port->cpu_buf,
  8233. &port->buf[port->cpu_buf].phys);
  8234. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8235. read.buf_addr_lsw = lower_32_bits(ab->phys);
  8236. read.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8237. read.buf_size = ab->size;
  8238. read.seq_id = port->dsp_buf;
  8239. q6asm_update_token(&read.hdr.token,
  8240. 0, /* Session ID is NA */
  8241. 0, /* Stream ID is NA */
  8242. port->dsp_buf,
  8243. 0, /* Direction flag is NA */
  8244. WAIT_CMD);
  8245. list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
  8246. buf_node = list_entry(ptr, struct asm_buffer_node,
  8247. list);
  8248. if (buf_node->buf_phys_addr == ab->phys) {
  8249. read.mem_map_handle = buf_node->mmap_hdl;
  8250. break;
  8251. }
  8252. }
  8253. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8254. port->max_buf_cnt);
  8255. dev_vdbg(ac->dev, "%s: buf add[%pK] token[0x%x] uid[%d]\n",
  8256. __func__, &ab->phys, read.hdr.token,
  8257. read.seq_id);
  8258. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8259. if (rc < 0) {
  8260. pr_err("%s: read op[0x%x]rc[%d]\n",
  8261. __func__, read.hdr.opcode, rc);
  8262. goto fail_cmd;
  8263. }
  8264. return 0;
  8265. }
  8266. fail_cmd:
  8267. return -EINVAL;
  8268. }
  8269. EXPORT_SYMBOL(q6asm_read_nolock);
  8270. /**
  8271. * q6asm_async_write -
  8272. * command to write DSP buffer
  8273. *
  8274. * @ac: Audio client handle
  8275. * @param: params for async write
  8276. *
  8277. * Returns 0 on success or error on failure
  8278. */
  8279. int q6asm_async_write(struct audio_client *ac,
  8280. struct audio_aio_write_param *param)
  8281. {
  8282. int rc = 0;
  8283. struct asm_data_cmd_write_v2 write;
  8284. struct asm_buffer_node *buf_node = NULL;
  8285. struct list_head *ptr, *next;
  8286. struct audio_buffer *ab;
  8287. struct audio_port_data *port;
  8288. phys_addr_t lbuf_phys_addr;
  8289. u32 liomode;
  8290. u32 io_compressed;
  8291. u32 io_compressed_stream;
  8292. if (ac == NULL) {
  8293. pr_err("%s: APR handle NULL\n", __func__);
  8294. return -EINVAL;
  8295. }
  8296. if (ac->apr == NULL) {
  8297. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  8298. return -EINVAL;
  8299. }
  8300. q6asm_stream_add_hdr_async(
  8301. ac, &write.hdr, sizeof(write), TRUE, ac->stream_id);
  8302. port = &ac->port[IN];
  8303. ab = &port->buf[port->dsp_buf];
  8304. /* Pass session id as token for AIO scheme */
  8305. write.hdr.token = param->uid;
  8306. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8307. write.buf_addr_lsw = lower_32_bits(param->paddr);
  8308. write.buf_addr_msw = msm_audio_populate_upper_32_bits(param->paddr);
  8309. write.buf_size = param->len;
  8310. write.timestamp_msw = param->msw_ts;
  8311. write.timestamp_lsw = param->lsw_ts;
  8312. liomode = (ASYNC_IO_MODE | NT_MODE);
  8313. io_compressed = (ASYNC_IO_MODE | COMPRESSED_IO);
  8314. io_compressed_stream = (ASYNC_IO_MODE | COMPRESSED_STREAM_IO);
  8315. if (ac->io_mode == liomode)
  8316. lbuf_phys_addr = (param->paddr - 32);
  8317. else if (ac->io_mode == io_compressed ||
  8318. ac->io_mode == io_compressed_stream)
  8319. lbuf_phys_addr = (param->paddr - param->metadata_len);
  8320. else {
  8321. if (param->flags & SET_TIMESTAMP)
  8322. lbuf_phys_addr = param->paddr -
  8323. sizeof(struct snd_codec_metadata);
  8324. else
  8325. lbuf_phys_addr = param->paddr;
  8326. }
  8327. dev_vdbg(ac->dev, "%s: token[0x%x], buf_addr[%pK], buf_size[0x%x], ts_msw[0x%x], ts_lsw[0x%x], lbuf_phys_addr: 0x[%pK]\n",
  8328. __func__,
  8329. write.hdr.token, &param->paddr,
  8330. write.buf_size, write.timestamp_msw,
  8331. write.timestamp_lsw, &lbuf_phys_addr);
  8332. /* Use 0xFF00 for disabling timestamps */
  8333. if (param->flags == 0xFF00)
  8334. write.flags = (0x00000000 | (param->flags & 0x800000FF));
  8335. else
  8336. write.flags = (0x80000000 | param->flags);
  8337. write.flags |= param->last_buffer << ASM_SHIFT_LAST_BUFFER_FLAG;
  8338. write.seq_id = param->uid;
  8339. list_for_each_safe(ptr, next, &ac->port[IN].mem_map_handle) {
  8340. buf_node = list_entry(ptr, struct asm_buffer_node,
  8341. list);
  8342. if (buf_node->buf_phys_addr == lbuf_phys_addr) {
  8343. write.mem_map_handle = buf_node->mmap_hdl;
  8344. break;
  8345. }
  8346. }
  8347. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8348. if (rc < 0) {
  8349. pr_err("%s: write op[0x%x]rc[%d]\n", __func__,
  8350. write.hdr.opcode, rc);
  8351. goto fail_cmd;
  8352. }
  8353. return 0;
  8354. fail_cmd:
  8355. return -EINVAL;
  8356. }
  8357. EXPORT_SYMBOL(q6asm_async_write);
  8358. /**
  8359. * q6asm_async_read -
  8360. * command to read DSP buffer
  8361. *
  8362. * @ac: Audio client handle
  8363. * @param: params for async read
  8364. *
  8365. * Returns 0 on success or error on failure
  8366. */
  8367. int q6asm_async_read(struct audio_client *ac,
  8368. struct audio_aio_read_param *param)
  8369. {
  8370. int rc = 0;
  8371. struct asm_data_cmd_read_v2 read;
  8372. struct asm_buffer_node *buf_node = NULL;
  8373. struct list_head *ptr, *next;
  8374. phys_addr_t lbuf_phys_addr;
  8375. u32 liomode;
  8376. u32 io_compressed;
  8377. int dir = 0;
  8378. if (ac == NULL) {
  8379. pr_err("%s: APR handle NULL\n", __func__);
  8380. return -EINVAL;
  8381. }
  8382. if (ac->apr == NULL) {
  8383. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  8384. return -EINVAL;
  8385. }
  8386. q6asm_add_hdr_async(ac, &read.hdr, sizeof(read), FALSE);
  8387. /* Pass session id as token for AIO scheme */
  8388. read.hdr.token = param->uid;
  8389. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8390. read.buf_addr_lsw = lower_32_bits(param->paddr);
  8391. read.buf_addr_msw = msm_audio_populate_upper_32_bits(param->paddr);
  8392. read.buf_size = param->len;
  8393. read.seq_id = param->uid;
  8394. liomode = (NT_MODE | ASYNC_IO_MODE);
  8395. io_compressed = (ASYNC_IO_MODE | COMPRESSED_IO);
  8396. if (ac->io_mode == liomode) {
  8397. lbuf_phys_addr = (param->paddr - 32);
  8398. /*legacy wma driver case*/
  8399. dir = IN;
  8400. } else if (ac->io_mode == io_compressed) {
  8401. lbuf_phys_addr = (param->paddr - 64);
  8402. dir = OUT;
  8403. } else {
  8404. if (param->flags & COMPRESSED_TIMESTAMP_FLAG)
  8405. lbuf_phys_addr = param->paddr -
  8406. sizeof(struct snd_codec_metadata);
  8407. else
  8408. lbuf_phys_addr = param->paddr;
  8409. dir = OUT;
  8410. }
  8411. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  8412. buf_node = list_entry(ptr, struct asm_buffer_node,
  8413. list);
  8414. if (buf_node->buf_phys_addr == lbuf_phys_addr) {
  8415. read.mem_map_handle = buf_node->mmap_hdl;
  8416. break;
  8417. }
  8418. }
  8419. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8420. if (rc < 0) {
  8421. pr_err("%s: read op[0x%x]rc[%d]\n", __func__,
  8422. read.hdr.opcode, rc);
  8423. goto fail_cmd;
  8424. }
  8425. return 0;
  8426. fail_cmd:
  8427. return -EINVAL;
  8428. }
  8429. EXPORT_SYMBOL(q6asm_async_read);
  8430. /**
  8431. * q6asm_write -
  8432. * command to write buffer data to DSP
  8433. *
  8434. * @ac: Audio client handle
  8435. * @len: buffer size
  8436. * @msw_ts: upper 32bits of timestamp
  8437. * @lsw_ts: lower 32bits of timestamp
  8438. * @flags: Flags for timestamp mode
  8439. *
  8440. * Returns 0 on success or error on failure
  8441. */
  8442. int q6asm_write(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  8443. uint32_t lsw_ts, uint32_t flags)
  8444. {
  8445. int rc = 0;
  8446. struct asm_data_cmd_write_v2 write;
  8447. struct asm_buffer_node *buf_node = NULL;
  8448. struct audio_port_data *port;
  8449. struct audio_buffer *ab;
  8450. int dsp_buf = 0;
  8451. if (ac == NULL) {
  8452. pr_err("%s: APR handle NULL\n", __func__);
  8453. return -EINVAL;
  8454. }
  8455. if (ac->apr == NULL) {
  8456. pr_err("%s: AC APR handle NULL\n", __func__);
  8457. return -EINVAL;
  8458. }
  8459. dev_vdbg(ac->dev, "%s: session[%d] len=%d\n",
  8460. __func__, ac->session, len);
  8461. if (ac->io_mode & SYNC_IO_MODE) {
  8462. port = &ac->port[IN];
  8463. q6asm_add_hdr(ac, &write.hdr, sizeof(write),
  8464. FALSE);
  8465. mutex_lock(&port->lock);
  8466. dsp_buf = port->dsp_buf;
  8467. ab = &port->buf[dsp_buf];
  8468. q6asm_update_token(&write.hdr.token,
  8469. 0, /* Session ID is NA */
  8470. 0, /* Stream ID is NA */
  8471. port->dsp_buf,
  8472. 0, /* Direction flag is NA */
  8473. NO_WAIT_CMD);
  8474. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8475. write.buf_addr_lsw = lower_32_bits(ab->phys);
  8476. write.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8477. write.buf_size = len;
  8478. write.seq_id = port->dsp_buf;
  8479. write.timestamp_lsw = lsw_ts;
  8480. write.timestamp_msw = msw_ts;
  8481. /* Use 0xFF00 for disabling timestamps */
  8482. if (flags == 0xFF00)
  8483. write.flags = (0x00000000 | (flags & 0x800000FF));
  8484. else
  8485. write.flags = (0x80000000 | flags);
  8486. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8487. port->max_buf_cnt);
  8488. buf_node = list_first_entry(&ac->port[IN].mem_map_handle,
  8489. struct asm_buffer_node,
  8490. list);
  8491. write.mem_map_handle = buf_node->mmap_hdl;
  8492. dev_vdbg(ac->dev, "%s: ab->phys[%pK]bufadd[0x%x] token[0x%x]buf_id[0x%x]buf_size[0x%x]mmaphdl[0x%x]"
  8493. , __func__,
  8494. &ab->phys,
  8495. write.buf_addr_lsw,
  8496. write.hdr.token,
  8497. write.seq_id,
  8498. write.buf_size,
  8499. write.mem_map_handle);
  8500. mutex_unlock(&port->lock);
  8501. config_debug_fs_write(ab);
  8502. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8503. if (rc < 0) {
  8504. pr_err("%s: write op[0x%x]rc[%d]\n",
  8505. __func__, write.hdr.opcode, rc);
  8506. goto fail_cmd;
  8507. }
  8508. return 0;
  8509. }
  8510. fail_cmd:
  8511. return -EINVAL;
  8512. }
  8513. EXPORT_SYMBOL(q6asm_write);
  8514. /**
  8515. * q6asm_write_nolock -
  8516. * command to write buffer data to DSP
  8517. * with no wait for ack.
  8518. *
  8519. * @ac: Audio client handle
  8520. * @len: buffer size
  8521. * @msw_ts: upper 32bits of timestamp
  8522. * @lsw_ts: lower 32bits of timestamp
  8523. * @flags: Flags for timestamp mode
  8524. *
  8525. * Returns 0 on success or error on failure
  8526. */
  8527. int q6asm_write_nolock(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  8528. uint32_t lsw_ts, uint32_t flags)
  8529. {
  8530. int rc = 0;
  8531. struct asm_data_cmd_write_v2 write;
  8532. struct asm_buffer_node *buf_node = NULL;
  8533. struct audio_port_data *port;
  8534. struct audio_buffer *ab;
  8535. int dsp_buf = 0;
  8536. if (ac == NULL) {
  8537. pr_err("%s: APR handle NULL\n", __func__);
  8538. return -EINVAL;
  8539. }
  8540. if (ac->apr == NULL) {
  8541. pr_err("%s: AC APR handle NULL\n", __func__);
  8542. return -EINVAL;
  8543. }
  8544. dev_vdbg(ac->dev, "%s: session[%d] len=%d\n",
  8545. __func__, ac->session, len);
  8546. if (ac->io_mode & SYNC_IO_MODE) {
  8547. port = &ac->port[IN];
  8548. q6asm_add_hdr_async(ac, &write.hdr, sizeof(write),
  8549. FALSE);
  8550. dsp_buf = port->dsp_buf;
  8551. ab = &port->buf[dsp_buf];
  8552. q6asm_update_token(&write.hdr.token,
  8553. 0, /* Session ID is NA */
  8554. 0, /* Stream ID is NA */
  8555. port->dsp_buf,
  8556. 0, /* Direction flag is NA */
  8557. NO_WAIT_CMD);
  8558. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8559. write.buf_addr_lsw = lower_32_bits(ab->phys);
  8560. write.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8561. write.buf_size = len;
  8562. write.seq_id = port->dsp_buf;
  8563. write.timestamp_lsw = lsw_ts;
  8564. write.timestamp_msw = msw_ts;
  8565. buf_node = list_first_entry(&ac->port[IN].mem_map_handle,
  8566. struct asm_buffer_node,
  8567. list);
  8568. write.mem_map_handle = buf_node->mmap_hdl;
  8569. /* Use 0xFF00 for disabling timestamps */
  8570. if (flags == 0xFF00)
  8571. write.flags = (0x00000000 | (flags & 0x800000FF));
  8572. else
  8573. write.flags = (0x80000000 | flags);
  8574. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8575. port->max_buf_cnt);
  8576. dev_vdbg(ac->dev, "%s: ab->phys[%pK]bufadd[0x%x]token[0x%x] buf_id[0x%x]buf_size[0x%x]mmaphdl[0x%x]"
  8577. , __func__,
  8578. &ab->phys,
  8579. write.buf_addr_lsw,
  8580. write.hdr.token,
  8581. write.seq_id,
  8582. write.buf_size,
  8583. write.mem_map_handle);
  8584. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8585. if (rc < 0) {
  8586. pr_err("%s: write op[0x%x]rc[%d]\n",
  8587. __func__, write.hdr.opcode, rc);
  8588. goto fail_cmd;
  8589. }
  8590. return 0;
  8591. }
  8592. fail_cmd:
  8593. return -EINVAL;
  8594. }
  8595. EXPORT_SYMBOL(q6asm_write_nolock);
  8596. /**
  8597. * q6asm_get_session_time -
  8598. * command to retrieve timestamp info
  8599. *
  8600. * @ac: Audio client handle
  8601. * @tstamp: pointer to fill with timestamp info
  8602. *
  8603. * Returns 0 on success or error on failure
  8604. */
  8605. int q6asm_get_session_time(struct audio_client *ac, uint64_t *tstamp)
  8606. {
  8607. struct asm_mtmx_strtr_get_params mtmx_params;
  8608. int rc;
  8609. if (ac == NULL) {
  8610. pr_err("%s: APR handle NULL\n", __func__);
  8611. return -EINVAL;
  8612. }
  8613. if (ac->apr == NULL) {
  8614. pr_err("%s: AC APR handle NULL\n", __func__);
  8615. return -EINVAL;
  8616. }
  8617. if (tstamp == NULL) {
  8618. pr_err("%s: tstamp NULL\n", __func__);
  8619. return -EINVAL;
  8620. }
  8621. q6asm_add_hdr(ac, &mtmx_params.hdr, sizeof(mtmx_params), TRUE);
  8622. mtmx_params.hdr.opcode = ASM_SESSION_CMD_GET_MTMX_STRTR_PARAMS_V2;
  8623. mtmx_params.param_info.data_payload_addr_lsw = 0;
  8624. mtmx_params.param_info.data_payload_addr_msw = 0;
  8625. mtmx_params.param_info.mem_map_handle = 0;
  8626. mtmx_params.param_info.direction = (ac->io_mode & TUN_READ_IO_MODE
  8627. ? 1 : 0);
  8628. mtmx_params.param_info.module_id =
  8629. ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8630. mtmx_params.param_info.param_id =
  8631. ASM_SESSION_MTMX_STRTR_PARAM_SESSION_TIME_V3;
  8632. mtmx_params.param_info.param_max_size =
  8633. sizeof(struct param_hdr_v1) +
  8634. sizeof(struct asm_session_mtmx_strtr_param_session_time_v3_t);
  8635. atomic_set(&ac->time_flag, 1);
  8636. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x]\n", __func__,
  8637. ac->session, mtmx_params.hdr.opcode);
  8638. rc = apr_send_pkt(ac->apr, (uint32_t *) &mtmx_params);
  8639. if (rc < 0) {
  8640. pr_err("%s: Commmand 0x%x failed %d\n", __func__,
  8641. mtmx_params.hdr.opcode, rc);
  8642. goto fail_cmd;
  8643. }
  8644. rc = wait_event_timeout(ac->time_wait,
  8645. (atomic_read(&ac->time_flag) == 0),
  8646. msecs_to_jiffies(TIMEOUT_MS));
  8647. if (!rc) {
  8648. pr_err("%s: timeout in getting session time from DSP\n",
  8649. __func__);
  8650. goto fail_cmd;
  8651. }
  8652. *tstamp = ac->time_stamp;
  8653. return 0;
  8654. fail_cmd:
  8655. return -EINVAL;
  8656. }
  8657. EXPORT_SYMBOL(q6asm_get_session_time);
  8658. /**
  8659. * q6asm_get_session_time_legacy -
  8660. * command to retrieve timestamp info
  8661. *
  8662. * @ac: Audio client handle
  8663. * @tstamp: pointer to fill with timestamp info
  8664. *
  8665. * Returns 0 on success or error on failure
  8666. */
  8667. int q6asm_get_session_time_legacy(struct audio_client *ac, uint64_t *tstamp)
  8668. {
  8669. struct apr_hdr hdr;
  8670. int rc;
  8671. if (ac == NULL) {
  8672. pr_err("%s: APR handle NULL\n", __func__);
  8673. return -EINVAL;
  8674. }
  8675. if (ac->apr == NULL) {
  8676. pr_err("%s: AC APR handle NULL\n", __func__);
  8677. return -EINVAL;
  8678. }
  8679. if (tstamp == NULL) {
  8680. pr_err("%s: tstamp NULL\n", __func__);
  8681. return -EINVAL;
  8682. }
  8683. q6asm_add_hdr(ac, &hdr, sizeof(hdr), TRUE);
  8684. hdr.opcode = ASM_SESSION_CMD_GET_SESSIONTIME_V3;
  8685. atomic_set(&ac->time_flag, 1);
  8686. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x]\n", __func__,
  8687. ac->session,
  8688. hdr.opcode);
  8689. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  8690. if (rc < 0) {
  8691. pr_err("%s: Commmand 0x%x failed %d\n",
  8692. __func__, hdr.opcode, rc);
  8693. goto fail_cmd;
  8694. }
  8695. rc = wait_event_timeout(ac->time_wait,
  8696. (atomic_read(&ac->time_flag) == 0),
  8697. msecs_to_jiffies(TIMEOUT_MS));
  8698. if (!rc) {
  8699. pr_err("%s: timeout in getting session time from DSP\n",
  8700. __func__);
  8701. goto fail_cmd;
  8702. }
  8703. *tstamp = ac->time_stamp;
  8704. return 0;
  8705. fail_cmd:
  8706. return -EINVAL;
  8707. }
  8708. EXPORT_SYMBOL(q6asm_get_session_time_legacy);
  8709. /**
  8710. * q6asm_send_mtmx_strtr_window -
  8711. * command to send matrix for window params
  8712. *
  8713. * @ac: Audio client handle
  8714. * @window_param: window params
  8715. * @param_id: param id for window
  8716. *
  8717. * Returns 0 on success or error on failure
  8718. */
  8719. int q6asm_send_mtmx_strtr_window(struct audio_client *ac,
  8720. struct asm_session_mtmx_strtr_param_window_v2_t *window_param,
  8721. uint32_t param_id)
  8722. {
  8723. struct asm_mtmx_strtr_params matrix;
  8724. int sz = 0;
  8725. int rc = 0;
  8726. pr_debug("%s: Window lsw is %d, window msw is %d\n", __func__,
  8727. window_param->window_lsw, window_param->window_msw);
  8728. if (!ac) {
  8729. pr_err("%s: audio client handle is NULL\n", __func__);
  8730. rc = -EINVAL;
  8731. goto fail_cmd;
  8732. }
  8733. if (ac->apr == NULL) {
  8734. pr_err("%s: ac->apr is NULL", __func__);
  8735. rc = -EINVAL;
  8736. goto fail_cmd;
  8737. }
  8738. sz = sizeof(struct asm_mtmx_strtr_params);
  8739. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8740. atomic_set(&ac->cmd_state, -1);
  8741. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8742. matrix.param.data_payload_addr_lsw = 0;
  8743. matrix.param.data_payload_addr_msw = 0;
  8744. matrix.param.mem_map_handle = 0;
  8745. matrix.param.data_payload_size =
  8746. sizeof(struct param_hdr_v1) +
  8747. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t);
  8748. matrix.param.direction = 0; /* RX */
  8749. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8750. matrix.data.param_id = param_id;
  8751. matrix.data.param_size =
  8752. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t);
  8753. matrix.data.reserved = 0;
  8754. memcpy(&(matrix.config.window_param),
  8755. window_param,
  8756. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t));
  8757. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8758. if (rc < 0) {
  8759. pr_err("%s: Render window start send failed paramid [0x%x]\n",
  8760. __func__, matrix.data.param_id);
  8761. rc = -EINVAL;
  8762. goto fail_cmd;
  8763. }
  8764. rc = wait_event_timeout(ac->cmd_wait,
  8765. (atomic_read(&ac->cmd_state) >= 0),
  8766. msecs_to_jiffies(TIMEOUT_MS));
  8767. if (!rc) {
  8768. pr_err("%s: timeout, Render window start paramid[0x%x]\n",
  8769. __func__, matrix.data.param_id);
  8770. rc = -ETIMEDOUT;
  8771. goto fail_cmd;
  8772. }
  8773. if (atomic_read(&ac->cmd_state) > 0) {
  8774. pr_err("%s: DSP returned error[%s]\n",
  8775. __func__, adsp_err_get_err_str(
  8776. atomic_read(&ac->cmd_state)));
  8777. rc = adsp_err_get_lnx_err_code(
  8778. atomic_read(&ac->cmd_state));
  8779. goto fail_cmd;
  8780. }
  8781. rc = 0;
  8782. fail_cmd:
  8783. return rc;
  8784. }
  8785. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_window);
  8786. /**
  8787. * q6asm_send_mtmx_strtr_render_mode -
  8788. * command to send matrix for render mode
  8789. *
  8790. * @ac: Audio client handle
  8791. * @render_mode: rendering mode
  8792. *
  8793. * Returns 0 on success or error on failure
  8794. */
  8795. int q6asm_send_mtmx_strtr_render_mode(struct audio_client *ac,
  8796. uint32_t render_mode)
  8797. {
  8798. struct asm_mtmx_strtr_params matrix;
  8799. struct asm_session_mtmx_strtr_param_render_mode_t render_param;
  8800. int sz = 0;
  8801. int rc = 0;
  8802. pr_debug("%s: render mode is %d\n", __func__, render_mode);
  8803. if (!ac) {
  8804. pr_err("%s: audio client handle is NULL\n", __func__);
  8805. rc = -EINVAL;
  8806. goto exit;
  8807. }
  8808. if (ac->apr == NULL) {
  8809. pr_err("%s: ac->apr is NULL\n", __func__);
  8810. rc = -EINVAL;
  8811. goto exit;
  8812. }
  8813. if ((render_mode != ASM_SESSION_MTMX_STRTR_PARAM_RENDER_DEFAULT) &&
  8814. (render_mode != ASM_SESSION_MTMX_STRTR_PARAM_RENDER_LOCAL_STC)) {
  8815. pr_err("%s: Invalid render mode %d\n", __func__, render_mode);
  8816. rc = -EINVAL;
  8817. goto exit;
  8818. }
  8819. memset(&render_param, 0,
  8820. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t));
  8821. render_param.flags = render_mode;
  8822. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8823. sz = sizeof(struct asm_mtmx_strtr_params);
  8824. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8825. atomic_set(&ac->cmd_state, -1);
  8826. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8827. matrix.param.data_payload_addr_lsw = 0;
  8828. matrix.param.data_payload_addr_msw = 0;
  8829. matrix.param.mem_map_handle = 0;
  8830. matrix.param.data_payload_size =
  8831. sizeof(struct param_hdr_v1) +
  8832. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t);
  8833. matrix.param.direction = 0; /* RX */
  8834. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8835. matrix.data.param_id = ASM_SESSION_MTMX_STRTR_PARAM_RENDER_MODE_CMD;
  8836. matrix.data.param_size =
  8837. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t);
  8838. matrix.data.reserved = 0;
  8839. memcpy(&(matrix.config.render_param),
  8840. &render_param,
  8841. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t));
  8842. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8843. if (rc < 0) {
  8844. pr_err("%s: Render mode send failed paramid [0x%x]\n",
  8845. __func__, matrix.data.param_id);
  8846. rc = -EINVAL;
  8847. goto exit;
  8848. }
  8849. rc = wait_event_timeout(ac->cmd_wait,
  8850. (atomic_read(&ac->cmd_state) >= 0),
  8851. msecs_to_jiffies(TIMEOUT_MS));
  8852. if (!rc) {
  8853. pr_err("%s: timeout, Render mode send paramid [0x%x]\n",
  8854. __func__, matrix.data.param_id);
  8855. rc = -ETIMEDOUT;
  8856. goto exit;
  8857. }
  8858. if (atomic_read(&ac->cmd_state) > 0) {
  8859. pr_err("%s: DSP returned error[%s]\n",
  8860. __func__, adsp_err_get_err_str(
  8861. atomic_read(&ac->cmd_state)));
  8862. rc = adsp_err_get_lnx_err_code(
  8863. atomic_read(&ac->cmd_state));
  8864. goto exit;
  8865. }
  8866. rc = 0;
  8867. exit:
  8868. return rc;
  8869. }
  8870. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_render_mode);
  8871. /**
  8872. * q6asm_send_mtmx_strtr_clk_rec_mode -
  8873. * command to send matrix for clock rec
  8874. *
  8875. * @ac: Audio client handle
  8876. * @clk_rec_mode: mode for clock rec
  8877. *
  8878. * Returns 0 on success or error on failure
  8879. */
  8880. int q6asm_send_mtmx_strtr_clk_rec_mode(struct audio_client *ac,
  8881. uint32_t clk_rec_mode)
  8882. {
  8883. struct asm_mtmx_strtr_params matrix;
  8884. struct asm_session_mtmx_strtr_param_clk_rec_t clk_rec_param;
  8885. int sz = 0;
  8886. int rc = 0;
  8887. pr_debug("%s: clk rec mode is %d\n", __func__, clk_rec_mode);
  8888. if (!ac) {
  8889. pr_err("%s: audio client handle is NULL\n", __func__);
  8890. rc = -EINVAL;
  8891. goto exit;
  8892. }
  8893. if (ac->apr == NULL) {
  8894. pr_err("%s: ac->apr is NULL\n", __func__);
  8895. rc = -EINVAL;
  8896. goto exit;
  8897. }
  8898. if ((clk_rec_mode != ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_NONE) &&
  8899. (clk_rec_mode != ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_AUTO)) {
  8900. pr_err("%s: Invalid clk rec mode %d\n", __func__, clk_rec_mode);
  8901. rc = -EINVAL;
  8902. goto exit;
  8903. }
  8904. memset(&clk_rec_param, 0,
  8905. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t));
  8906. clk_rec_param.flags = clk_rec_mode;
  8907. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8908. sz = sizeof(struct asm_mtmx_strtr_params);
  8909. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8910. atomic_set(&ac->cmd_state, -1);
  8911. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8912. matrix.param.data_payload_addr_lsw = 0;
  8913. matrix.param.data_payload_addr_msw = 0;
  8914. matrix.param.mem_map_handle = 0;
  8915. matrix.param.data_payload_size =
  8916. sizeof(struct param_hdr_v1) +
  8917. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t);
  8918. matrix.param.direction = 0; /* RX */
  8919. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8920. matrix.data.param_id = ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_CMD;
  8921. matrix.data.param_size =
  8922. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t);
  8923. matrix.data.reserved = 0;
  8924. memcpy(&(matrix.config.clk_rec_param),
  8925. &clk_rec_param,
  8926. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t));
  8927. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8928. if (rc < 0) {
  8929. pr_err("%s: clk rec mode send failed paramid [0x%x]\n",
  8930. __func__, matrix.data.param_id);
  8931. rc = -EINVAL;
  8932. goto exit;
  8933. }
  8934. rc = wait_event_timeout(ac->cmd_wait,
  8935. (atomic_read(&ac->cmd_state) >= 0),
  8936. msecs_to_jiffies(TIMEOUT_MS));
  8937. if (!rc) {
  8938. pr_err("%s: timeout, clk rec mode send paramid [0x%x]\n",
  8939. __func__, matrix.data.param_id);
  8940. rc = -ETIMEDOUT;
  8941. goto exit;
  8942. }
  8943. if (atomic_read(&ac->cmd_state) > 0) {
  8944. pr_err("%s: DSP returned error[%s]\n",
  8945. __func__, adsp_err_get_err_str(
  8946. atomic_read(&ac->cmd_state)));
  8947. rc = adsp_err_get_lnx_err_code(
  8948. atomic_read(&ac->cmd_state));
  8949. goto exit;
  8950. }
  8951. rc = 0;
  8952. exit:
  8953. return rc;
  8954. }
  8955. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_clk_rec_mode);
  8956. /**
  8957. * q6asm_send_mtmx_strtr_enable_adjust_session_clock -
  8958. * command to send matrix for adjust time
  8959. *
  8960. * @ac: Audio client handle
  8961. * @enable: flag to adjust time or not
  8962. *
  8963. * Returns 0 on success or error on failure
  8964. */
  8965. int q6asm_send_mtmx_strtr_enable_adjust_session_clock(struct audio_client *ac,
  8966. bool enable)
  8967. {
  8968. struct asm_mtmx_strtr_params matrix;
  8969. struct asm_session_mtmx_param_adjust_session_time_ctl_t adjust_time;
  8970. int sz = 0;
  8971. int rc = 0;
  8972. pr_debug("%s: adjust session enable %d\n", __func__, enable);
  8973. if (!ac) {
  8974. pr_err("%s: audio client handle is NULL\n", __func__);
  8975. rc = -EINVAL;
  8976. goto exit;
  8977. }
  8978. if (ac->apr == NULL) {
  8979. pr_err("%s: ac->apr is NULL\n", __func__);
  8980. rc = -EINVAL;
  8981. goto exit;
  8982. }
  8983. adjust_time.enable = enable;
  8984. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8985. sz = sizeof(struct asm_mtmx_strtr_params);
  8986. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8987. atomic_set(&ac->cmd_state, -1);
  8988. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8989. matrix.param.data_payload_addr_lsw = 0;
  8990. matrix.param.data_payload_addr_msw = 0;
  8991. matrix.param.mem_map_handle = 0;
  8992. matrix.param.data_payload_size =
  8993. sizeof(struct param_hdr_v1) +
  8994. sizeof(struct asm_session_mtmx_param_adjust_session_time_ctl_t);
  8995. matrix.param.direction = 0; /* RX */
  8996. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8997. matrix.data.param_id = ASM_SESSION_MTMX_PARAM_ADJUST_SESSION_TIME_CTL;
  8998. matrix.data.param_size =
  8999. sizeof(struct asm_session_mtmx_param_adjust_session_time_ctl_t);
  9000. matrix.data.reserved = 0;
  9001. matrix.config.adj_time_param.enable = adjust_time.enable;
  9002. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  9003. if (rc < 0) {
  9004. pr_err("%s: enable adjust session failed failed paramid [0x%x]\n",
  9005. __func__, matrix.data.param_id);
  9006. rc = -EINVAL;
  9007. goto exit;
  9008. }
  9009. rc = wait_event_timeout(ac->cmd_wait,
  9010. (atomic_read(&ac->cmd_state) >= 0),
  9011. msecs_to_jiffies(TIMEOUT_MS));
  9012. if (!rc) {
  9013. pr_err("%s: enable adjust session failed failed paramid [0x%x]\n",
  9014. __func__, matrix.data.param_id);
  9015. rc = -ETIMEDOUT;
  9016. goto exit;
  9017. }
  9018. if (atomic_read(&ac->cmd_state) > 0) {
  9019. pr_err("%s: DSP returned error[%s]\n",
  9020. __func__, adsp_err_get_err_str(
  9021. atomic_read(&ac->cmd_state)));
  9022. rc = adsp_err_get_lnx_err_code(
  9023. atomic_read(&ac->cmd_state));
  9024. goto exit;
  9025. }
  9026. rc = 0;
  9027. exit:
  9028. return rc;
  9029. }
  9030. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_enable_adjust_session_clock);
  9031. static int __q6asm_cmd(struct audio_client *ac, int cmd, uint32_t stream_id)
  9032. {
  9033. struct apr_hdr hdr;
  9034. int rc;
  9035. atomic_t *state;
  9036. int cnt = 0;
  9037. if (!ac) {
  9038. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9039. return -EINVAL;
  9040. }
  9041. if (ac->apr == NULL) {
  9042. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9043. return -EINVAL;
  9044. }
  9045. q6asm_stream_add_hdr(ac, &hdr, sizeof(hdr), TRUE, stream_id);
  9046. atomic_set(&ac->cmd_state, -1);
  9047. /*
  9048. * Updated the token field with stream/session for compressed playback
  9049. * Platform driver must know the the stream with which the command is
  9050. * associated
  9051. */
  9052. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9053. q6asm_update_token(&hdr.token,
  9054. ac->session,
  9055. stream_id,
  9056. 0, /* Buffer index is NA */
  9057. 0, /* Direction flag is NA */
  9058. WAIT_CMD);
  9059. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9060. __func__, hdr.token, stream_id, ac->session);
  9061. switch (cmd) {
  9062. case CMD_PAUSE:
  9063. pr_debug("%s: CMD_PAUSE\n", __func__);
  9064. hdr.opcode = ASM_SESSION_CMD_PAUSE;
  9065. state = &ac->cmd_state;
  9066. break;
  9067. case CMD_SUSPEND:
  9068. pr_debug("%s: CMD_SUSPEND\n", __func__);
  9069. hdr.opcode = ASM_SESSION_CMD_SUSPEND;
  9070. state = &ac->cmd_state;
  9071. break;
  9072. case CMD_FLUSH:
  9073. pr_debug("%s: CMD_FLUSH\n", __func__);
  9074. hdr.opcode = ASM_STREAM_CMD_FLUSH;
  9075. state = &ac->cmd_state;
  9076. break;
  9077. case CMD_OUT_FLUSH:
  9078. pr_debug("%s: CMD_OUT_FLUSH\n", __func__);
  9079. hdr.opcode = ASM_STREAM_CMD_FLUSH_READBUFS;
  9080. state = &ac->cmd_state;
  9081. break;
  9082. case CMD_EOS:
  9083. pr_debug("%s: CMD_EOS\n", __func__);
  9084. hdr.opcode = ASM_DATA_CMD_EOS;
  9085. atomic_set(&ac->cmd_state, 0);
  9086. state = &ac->cmd_state;
  9087. break;
  9088. case CMD_CLOSE:
  9089. pr_debug("%s: CMD_CLOSE\n", __func__);
  9090. hdr.opcode = ASM_STREAM_CMD_CLOSE;
  9091. state = &ac->cmd_state;
  9092. break;
  9093. default:
  9094. pr_err("%s: Invalid format[%d]\n", __func__, cmd);
  9095. rc = -EINVAL;
  9096. goto fail_cmd;
  9097. }
  9098. pr_debug("%s: session[%d]opcode[0x%x]\n", __func__,
  9099. ac->session,
  9100. hdr.opcode);
  9101. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9102. if (rc < 0) {
  9103. pr_err("%s: Commmand 0x%x failed %d\n",
  9104. __func__, hdr.opcode, rc);
  9105. rc = -EINVAL;
  9106. goto fail_cmd;
  9107. }
  9108. rc = wait_event_timeout(ac->cmd_wait, (atomic_read(state) >= 0),
  9109. msecs_to_jiffies(TIMEOUT_MS));
  9110. if (!rc) {
  9111. pr_err("%s: timeout. waited for response opcode[0x%x]\n",
  9112. __func__, hdr.opcode);
  9113. rc = -ETIMEDOUT;
  9114. goto fail_cmd;
  9115. }
  9116. if (atomic_read(state) > 0) {
  9117. pr_err("%s: DSP returned error[%s] opcode %d\n",
  9118. __func__, adsp_err_get_err_str(
  9119. atomic_read(state)),
  9120. hdr.opcode);
  9121. rc = adsp_err_get_lnx_err_code(atomic_read(state));
  9122. goto fail_cmd;
  9123. }
  9124. if (cmd == CMD_FLUSH)
  9125. q6asm_reset_buf_state(ac);
  9126. if (cmd == CMD_CLOSE) {
  9127. /* check if DSP return all buffers */
  9128. if (ac->port[IN].buf) {
  9129. for (cnt = 0; cnt < ac->port[IN].max_buf_cnt;
  9130. cnt++) {
  9131. if (ac->port[IN].buf[cnt].used == IN) {
  9132. dev_vdbg(ac->dev, "Write Buf[%d] not returned\n",
  9133. cnt);
  9134. }
  9135. }
  9136. }
  9137. if (ac->port[OUT].buf) {
  9138. for (cnt = 0; cnt < ac->port[OUT].max_buf_cnt; cnt++) {
  9139. if (ac->port[OUT].buf[cnt].used == OUT) {
  9140. dev_vdbg(ac->dev, "Read Buf[%d] not returned\n",
  9141. cnt);
  9142. }
  9143. }
  9144. }
  9145. }
  9146. return 0;
  9147. fail_cmd:
  9148. return rc;
  9149. }
  9150. /**
  9151. * q6asm_cmd -
  9152. * Function used to send commands for
  9153. * ASM with wait for ack.
  9154. *
  9155. * @ac: Audio client handle
  9156. * @cmd: command to send
  9157. *
  9158. * Returns 0 on success or error on failure
  9159. */
  9160. int q6asm_cmd(struct audio_client *ac, int cmd)
  9161. {
  9162. return __q6asm_cmd(ac, cmd, ac->stream_id);
  9163. }
  9164. EXPORT_SYMBOL(q6asm_cmd);
  9165. /**
  9166. * q6asm_stream_cmd -
  9167. * Function used to send commands for
  9168. * ASM stream with wait for ack.
  9169. *
  9170. * @ac: Audio client handle
  9171. * @cmd: command to send
  9172. * @stream_id: Stream ID
  9173. *
  9174. * Returns 0 on success or error on failure
  9175. */
  9176. int q6asm_stream_cmd(struct audio_client *ac, int cmd, uint32_t stream_id)
  9177. {
  9178. return __q6asm_cmd(ac, cmd, stream_id);
  9179. }
  9180. EXPORT_SYMBOL(q6asm_stream_cmd);
  9181. /**
  9182. * q6asm_cmd_nowait -
  9183. * Function used to send commands for
  9184. * ASM stream without wait for ack.
  9185. *
  9186. * @ac: Audio client handle
  9187. * @cmd: command to send
  9188. * @stream_id: Stream ID
  9189. *
  9190. * Returns 0 on success or error on failure
  9191. */
  9192. static int __q6asm_cmd_nowait(struct audio_client *ac, int cmd,
  9193. uint32_t stream_id)
  9194. {
  9195. struct apr_hdr hdr;
  9196. int rc;
  9197. if (!ac) {
  9198. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9199. return -EINVAL;
  9200. }
  9201. if (ac->apr == NULL) {
  9202. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9203. return -EINVAL;
  9204. }
  9205. q6asm_stream_add_hdr_async(ac, &hdr, sizeof(hdr), TRUE, stream_id);
  9206. atomic_set(&ac->cmd_state, 1);
  9207. /*
  9208. * Updated the token field with stream/session for compressed playback
  9209. * Platform driver must know the the stream with which the command is
  9210. * associated
  9211. */
  9212. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9213. q6asm_update_token(&hdr.token,
  9214. ac->session,
  9215. stream_id,
  9216. 0, /* Buffer index is NA */
  9217. 0, /* Direction flag is NA */
  9218. NO_WAIT_CMD);
  9219. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9220. __func__, hdr.token, stream_id, ac->session);
  9221. switch (cmd) {
  9222. case CMD_PAUSE:
  9223. pr_debug("%s: CMD_PAUSE\n", __func__);
  9224. hdr.opcode = ASM_SESSION_CMD_PAUSE;
  9225. break;
  9226. case CMD_EOS:
  9227. pr_debug("%s: CMD_EOS\n", __func__);
  9228. hdr.opcode = ASM_DATA_CMD_EOS;
  9229. break;
  9230. case CMD_CLOSE:
  9231. pr_debug("%s: CMD_CLOSE\n", __func__);
  9232. hdr.opcode = ASM_STREAM_CMD_CLOSE;
  9233. break;
  9234. default:
  9235. pr_err("%s: Invalid format[%d]\n", __func__, cmd);
  9236. goto fail_cmd;
  9237. }
  9238. pr_debug("%s: session[%d]opcode[0x%x]\n", __func__,
  9239. ac->session,
  9240. hdr.opcode);
  9241. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9242. if (rc < 0) {
  9243. pr_err("%s: Commmand 0x%x failed %d\n",
  9244. __func__, hdr.opcode, rc);
  9245. goto fail_cmd;
  9246. }
  9247. return 0;
  9248. fail_cmd:
  9249. return -EINVAL;
  9250. }
  9251. int q6asm_cmd_nowait(struct audio_client *ac, int cmd)
  9252. {
  9253. pr_debug("%s: stream_id: %d\n", __func__, ac->stream_id);
  9254. return __q6asm_cmd_nowait(ac, cmd, ac->stream_id);
  9255. }
  9256. EXPORT_SYMBOL(q6asm_cmd_nowait);
  9257. /**
  9258. * q6asm_stream_cmd_nowait -
  9259. * Function used to send commands for
  9260. * ASM stream without wait for ack.
  9261. *
  9262. * @ac: Audio client handle
  9263. * @cmd: command to send
  9264. * @stream_id: Stream ID
  9265. *
  9266. * Returns 0 on success or error on failure
  9267. */
  9268. int q6asm_stream_cmd_nowait(struct audio_client *ac, int cmd,
  9269. uint32_t stream_id)
  9270. {
  9271. pr_debug("%s: stream_id: %d\n", __func__, stream_id);
  9272. return __q6asm_cmd_nowait(ac, cmd, stream_id);
  9273. }
  9274. EXPORT_SYMBOL(q6asm_stream_cmd_nowait);
  9275. int __q6asm_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  9276. uint32_t initial_samples, uint32_t trailing_samples)
  9277. {
  9278. struct asm_data_cmd_remove_silence silence;
  9279. int rc = 0;
  9280. if (!ac) {
  9281. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9282. return -EINVAL;
  9283. }
  9284. if (ac->apr == NULL) {
  9285. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9286. return -EINVAL;
  9287. }
  9288. pr_debug("%s: session[%d]\n", __func__, ac->session);
  9289. q6asm_stream_add_hdr_async(ac, &silence.hdr, sizeof(silence), TRUE,
  9290. stream_id);
  9291. /*
  9292. * Updated the token field with stream/session for compressed playback
  9293. * Platform driver must know the the stream with which the command is
  9294. * associated
  9295. */
  9296. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9297. q6asm_update_token(&silence.hdr.token,
  9298. ac->session,
  9299. stream_id,
  9300. 0, /* Buffer index is NA */
  9301. 0, /* Direction flag is NA */
  9302. NO_WAIT_CMD);
  9303. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9304. __func__, silence.hdr.token, stream_id, ac->session);
  9305. silence.hdr.opcode = ASM_DATA_CMD_REMOVE_INITIAL_SILENCE;
  9306. silence.num_samples_to_remove = initial_samples;
  9307. rc = apr_send_pkt(ac->apr, (uint32_t *) &silence);
  9308. if (rc < 0) {
  9309. pr_err("%s: Commmand silence failed[%d]", __func__, rc);
  9310. goto fail_cmd;
  9311. }
  9312. silence.hdr.opcode = ASM_DATA_CMD_REMOVE_TRAILING_SILENCE;
  9313. silence.num_samples_to_remove = trailing_samples;
  9314. rc = apr_send_pkt(ac->apr, (uint32_t *) &silence);
  9315. if (rc < 0) {
  9316. pr_err("%s: Commmand silence failed[%d]", __func__, rc);
  9317. goto fail_cmd;
  9318. }
  9319. return 0;
  9320. fail_cmd:
  9321. return -EINVAL;
  9322. }
  9323. /**
  9324. * q6asm_stream_send_meta_data -
  9325. * command to send meta data for stream
  9326. *
  9327. * @ac: Audio client handle
  9328. * @stream_id: Stream ID
  9329. * @initial_samples: Initial samples of stream
  9330. * @trailing_samples: Trailing samples of stream
  9331. *
  9332. * Returns 0 on success or error on failure
  9333. */
  9334. int q6asm_stream_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  9335. uint32_t initial_samples, uint32_t trailing_samples)
  9336. {
  9337. return __q6asm_send_meta_data(ac, stream_id, initial_samples,
  9338. trailing_samples);
  9339. }
  9340. EXPORT_SYMBOL(q6asm_stream_send_meta_data);
  9341. int q6asm_send_meta_data(struct audio_client *ac, uint32_t initial_samples,
  9342. uint32_t trailing_samples)
  9343. {
  9344. return __q6asm_send_meta_data(ac, ac->stream_id, initial_samples,
  9345. trailing_samples);
  9346. }
  9347. static void q6asm_reset_buf_state(struct audio_client *ac)
  9348. {
  9349. int cnt = 0;
  9350. int loopcnt = 0;
  9351. int used;
  9352. struct audio_port_data *port = NULL;
  9353. if (ac->io_mode & SYNC_IO_MODE) {
  9354. used = (ac->io_mode & TUN_WRITE_IO_MODE ? 1 : 0);
  9355. mutex_lock(&ac->cmd_lock);
  9356. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  9357. port = &ac->port[loopcnt];
  9358. cnt = port->max_buf_cnt - 1;
  9359. port->dsp_buf = 0;
  9360. port->cpu_buf = 0;
  9361. while (cnt >= 0) {
  9362. if (!port->buf)
  9363. continue;
  9364. port->buf[cnt].used = used;
  9365. cnt--;
  9366. }
  9367. }
  9368. mutex_unlock(&ac->cmd_lock);
  9369. }
  9370. }
  9371. /**
  9372. * q6asm_reg_tx_overflow -
  9373. * command to register for TX overflow events
  9374. *
  9375. * @ac: Audio client handle
  9376. * @enable: flag to enable or disable events
  9377. *
  9378. * Returns 0 on success or error on failure
  9379. */
  9380. int q6asm_reg_tx_overflow(struct audio_client *ac, uint16_t enable)
  9381. {
  9382. struct asm_session_cmd_regx_overflow tx_overflow;
  9383. int rc;
  9384. if (!ac) {
  9385. pr_err("%s: APR handle NULL\n", __func__);
  9386. return -EINVAL;
  9387. }
  9388. if (ac->apr == NULL) {
  9389. pr_err("%s: AC APR handle NULL\n", __func__);
  9390. return -EINVAL;
  9391. }
  9392. pr_debug("%s: session[%d]enable[%d]\n", __func__,
  9393. ac->session, enable);
  9394. q6asm_add_hdr(ac, &tx_overflow.hdr, sizeof(tx_overflow), TRUE);
  9395. atomic_set(&ac->cmd_state, -1);
  9396. tx_overflow.hdr.opcode =
  9397. ASM_SESSION_CMD_REGISTER_FORX_OVERFLOW_EVENTS;
  9398. /* tx overflow event: enable */
  9399. tx_overflow.enable_flag = enable;
  9400. rc = apr_send_pkt(ac->apr, (uint32_t *) &tx_overflow);
  9401. if (rc < 0) {
  9402. pr_err("%s: tx overflow op[0x%x]rc[%d]\n",
  9403. __func__, tx_overflow.hdr.opcode, rc);
  9404. rc = -EINVAL;
  9405. goto fail_cmd;
  9406. }
  9407. rc = wait_event_timeout(ac->cmd_wait,
  9408. (atomic_read(&ac->cmd_state) >= 0),
  9409. msecs_to_jiffies(TIMEOUT_MS));
  9410. if (!rc) {
  9411. pr_err("%s: timeout. waited for tx overflow\n", __func__);
  9412. rc = -ETIMEDOUT;
  9413. goto fail_cmd;
  9414. }
  9415. if (atomic_read(&ac->cmd_state) > 0) {
  9416. pr_err("%s: DSP returned error[%s]\n",
  9417. __func__, adsp_err_get_err_str(
  9418. atomic_read(&ac->cmd_state)));
  9419. rc = adsp_err_get_lnx_err_code(
  9420. atomic_read(&ac->cmd_state));
  9421. goto fail_cmd;
  9422. }
  9423. return 0;
  9424. fail_cmd:
  9425. return rc;
  9426. }
  9427. EXPORT_SYMBOL(q6asm_reg_tx_overflow);
  9428. int q6asm_reg_rx_underflow(struct audio_client *ac, uint16_t enable)
  9429. {
  9430. struct asm_session_cmd_rgstr_rx_underflow rx_underflow;
  9431. int rc;
  9432. if (!ac) {
  9433. pr_err("%s: AC APR handle NULL\n", __func__);
  9434. return -EINVAL;
  9435. }
  9436. if (ac->apr == NULL) {
  9437. pr_err("%s: APR handle NULL\n", __func__);
  9438. return -EINVAL;
  9439. }
  9440. pr_debug("%s: session[%d]enable[%d]\n", __func__,
  9441. ac->session, enable);
  9442. q6asm_add_hdr_async(ac, &rx_underflow.hdr, sizeof(rx_underflow), FALSE);
  9443. rx_underflow.hdr.opcode =
  9444. ASM_SESSION_CMD_REGISTER_FOR_RX_UNDERFLOW_EVENTS;
  9445. /* tx overflow event: enable */
  9446. rx_underflow.enable_flag = enable;
  9447. rc = apr_send_pkt(ac->apr, (uint32_t *) &rx_underflow);
  9448. if (rc < 0) {
  9449. pr_err("%s: tx overflow op[0x%x]rc[%d]\n",
  9450. __func__, rx_underflow.hdr.opcode, rc);
  9451. goto fail_cmd;
  9452. }
  9453. return 0;
  9454. fail_cmd:
  9455. return -EINVAL;
  9456. }
  9457. /**
  9458. * q6asm_adjust_session_clock -
  9459. * command to adjust session clock
  9460. *
  9461. * @ac: Audio client handle
  9462. * @adjust_time_lsw: lower 32bits
  9463. * @adjust_time_msw: upper 32bits
  9464. *
  9465. * Returns 0 on success or error on failure
  9466. */
  9467. int q6asm_adjust_session_clock(struct audio_client *ac,
  9468. uint32_t adjust_time_lsw,
  9469. uint32_t adjust_time_msw)
  9470. {
  9471. int rc = 0;
  9472. int sz = 0;
  9473. struct asm_session_cmd_adjust_session_clock_v2 adjust_clock;
  9474. pr_debug("%s: adjust_time_lsw is %x, adjust_time_msw is %x\n", __func__,
  9475. adjust_time_lsw, adjust_time_msw);
  9476. if (!ac) {
  9477. pr_err("%s: audio client handle is NULL\n", __func__);
  9478. rc = -EINVAL;
  9479. goto fail_cmd;
  9480. }
  9481. if (ac->apr == NULL) {
  9482. pr_err("%s: ac->apr is NULL", __func__);
  9483. rc = -EINVAL;
  9484. goto fail_cmd;
  9485. }
  9486. sz = sizeof(struct asm_session_cmd_adjust_session_clock_v2);
  9487. q6asm_add_hdr(ac, &adjust_clock.hdr, sz, TRUE);
  9488. atomic_set(&ac->cmd_state, -1);
  9489. adjust_clock.hdr.opcode = ASM_SESSION_CMD_ADJUST_SESSION_CLOCK_V2;
  9490. adjust_clock.adjustime_lsw = adjust_time_lsw;
  9491. adjust_clock.adjustime_msw = adjust_time_msw;
  9492. rc = apr_send_pkt(ac->apr, (uint32_t *) &adjust_clock);
  9493. if (rc < 0) {
  9494. pr_err("%s: adjust_clock send failed paramid [0x%x]\n",
  9495. __func__, adjust_clock.hdr.opcode);
  9496. rc = -EINVAL;
  9497. goto fail_cmd;
  9498. }
  9499. rc = wait_event_timeout(ac->cmd_wait,
  9500. (atomic_read(&ac->cmd_state) >= 0),
  9501. msecs_to_jiffies(TIMEOUT_MS));
  9502. if (!rc) {
  9503. pr_err("%s: timeout, adjust_clock paramid[0x%x]\n",
  9504. __func__, adjust_clock.hdr.opcode);
  9505. rc = -ETIMEDOUT;
  9506. goto fail_cmd;
  9507. }
  9508. if (atomic_read(&ac->cmd_state) > 0) {
  9509. pr_err("%s: DSP returned error[%s]\n",
  9510. __func__, adsp_err_get_err_str(
  9511. atomic_read(&ac->cmd_state)));
  9512. rc = adsp_err_get_lnx_err_code(
  9513. atomic_read(&ac->cmd_state));
  9514. goto fail_cmd;
  9515. }
  9516. rc = 0;
  9517. fail_cmd:
  9518. return rc;
  9519. }
  9520. EXPORT_SYMBOL(q6asm_adjust_session_clock);
  9521. /*
  9522. * q6asm_get_path_delay() - get the path delay for an audio session
  9523. * @ac: audio client handle
  9524. *
  9525. * Retrieves the current audio DSP path delay for the given audio session.
  9526. *
  9527. * Return: 0 on success, error code otherwise
  9528. */
  9529. int q6asm_get_path_delay(struct audio_client *ac)
  9530. {
  9531. int rc = 0;
  9532. struct apr_hdr hdr;
  9533. if (!ac || ac->apr == NULL) {
  9534. pr_err("%s: invalid audio client\n", __func__);
  9535. return -EINVAL;
  9536. }
  9537. hdr.opcode = ASM_SESSION_CMD_GET_PATH_DELAY_V2;
  9538. q6asm_add_hdr(ac, &hdr, sizeof(hdr), TRUE);
  9539. atomic_set(&ac->cmd_state, -1);
  9540. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9541. if (rc < 0) {
  9542. pr_err("%s: Commmand 0x%x failed %d\n", __func__,
  9543. hdr.opcode, rc);
  9544. return rc;
  9545. }
  9546. rc = wait_event_timeout(ac->cmd_wait,
  9547. (atomic_read(&ac->cmd_state) >= 0),
  9548. msecs_to_jiffies(TIMEOUT_MS));
  9549. if (!rc) {
  9550. pr_err("%s: timeout. waited for response opcode[0x%x]\n",
  9551. __func__, hdr.opcode);
  9552. return -ETIMEDOUT;
  9553. }
  9554. if (atomic_read(&ac->cmd_state) > 0) {
  9555. pr_err("%s: DSP returned error[%s]\n",
  9556. __func__, adsp_err_get_err_str(
  9557. atomic_read(&ac->cmd_state)));
  9558. rc = adsp_err_get_lnx_err_code(
  9559. atomic_read(&ac->cmd_state));
  9560. return rc;
  9561. }
  9562. return 0;
  9563. }
  9564. EXPORT_SYMBOL(q6asm_get_path_delay);
  9565. int q6asm_get_apr_service_id(int session_id)
  9566. {
  9567. pr_debug("%s:\n", __func__);
  9568. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9569. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9570. return -EINVAL;
  9571. }
  9572. return ((struct apr_svc *)(session[session_id].ac)->apr)->id;
  9573. }
  9574. int q6asm_get_asm_topology(int session_id)
  9575. {
  9576. int topology = -EINVAL;
  9577. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9578. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9579. goto done;
  9580. }
  9581. if (session[session_id].ac == NULL) {
  9582. pr_err("%s: session not created for session id = %d\n",
  9583. __func__, session_id);
  9584. goto done;
  9585. }
  9586. topology = (session[session_id].ac)->topology;
  9587. done:
  9588. return topology;
  9589. }
  9590. int q6asm_get_asm_app_type(int session_id)
  9591. {
  9592. int app_type = -EINVAL;
  9593. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9594. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9595. goto done;
  9596. }
  9597. if (session[session_id].ac == NULL) {
  9598. pr_err("%s: session not created for session id = %d\n",
  9599. __func__, session_id);
  9600. goto done;
  9601. }
  9602. app_type = (session[session_id].ac)->app_type;
  9603. done:
  9604. return app_type;
  9605. }
  9606. /*
  9607. * Retrieving cal_block will mark cal_block as stale.
  9608. * Hence it cannot be reused or resent unless the flag
  9609. * is reset.
  9610. */
  9611. static int q6asm_get_asm_topology_apptype(struct q6asm_cal_info *cal_info)
  9612. {
  9613. struct cal_block_data *cal_block = NULL;
  9614. cal_info->topology_id = DEFAULT_POPP_TOPOLOGY;
  9615. cal_info->app_type = DEFAULT_APP_TYPE;
  9616. if (cal_data[ASM_TOPOLOGY_CAL] == NULL)
  9617. goto done;
  9618. mutex_lock(&cal_data[ASM_TOPOLOGY_CAL]->lock);
  9619. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_TOPOLOGY_CAL]);
  9620. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block))
  9621. goto unlock;
  9622. cal_info->topology_id = ((struct audio_cal_info_asm_top *)
  9623. cal_block->cal_info)->topology;
  9624. cal_info->app_type = ((struct audio_cal_info_asm_top *)
  9625. cal_block->cal_info)->app_type;
  9626. cal_utils_mark_cal_used(cal_block);
  9627. unlock:
  9628. mutex_unlock(&cal_data[ASM_TOPOLOGY_CAL]->lock);
  9629. done:
  9630. pr_debug("%s: Using topology %d app_type %d\n", __func__,
  9631. cal_info->topology_id, cal_info->app_type);
  9632. return 0;
  9633. }
  9634. /**
  9635. * q6asm_send_cal -
  9636. * command to send ASM calibration
  9637. *
  9638. * @ac: Audio client handle
  9639. *
  9640. * Returns 0 on success or error on failure
  9641. */
  9642. int q6asm_send_cal(struct audio_client *ac)
  9643. {
  9644. struct cal_block_data *cal_block = NULL;
  9645. struct mem_mapping_hdr mem_hdr;
  9646. u32 payload_size = 0;
  9647. int rc = -EINVAL;
  9648. pr_debug("%s:\n", __func__);
  9649. if (!ac) {
  9650. pr_err("%s: Audio client is NULL\n", __func__);
  9651. return -EINVAL;
  9652. }
  9653. if (ac->io_mode & NT_MODE) {
  9654. pr_debug("%s: called for NT MODE, exiting\n", __func__);
  9655. goto done;
  9656. }
  9657. if (cal_data[ASM_AUDSTRM_CAL] == NULL)
  9658. goto done;
  9659. if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) {
  9660. rc = 0; /* no cal is required, not error case */
  9661. goto done;
  9662. }
  9663. memset(&mem_hdr, 0, sizeof(mem_hdr));
  9664. mutex_lock(&cal_data[ASM_AUDSTRM_CAL]->lock);
  9665. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_AUDSTRM_CAL]);
  9666. if (cal_block == NULL) {
  9667. pr_err("%s: cal_block is NULL\n",
  9668. __func__);
  9669. goto unlock;
  9670. }
  9671. if (cal_utils_is_cal_stale(cal_block)) {
  9672. rc = 0; /* not error case */
  9673. pr_debug("%s: cal_block is stale\n",
  9674. __func__);
  9675. goto unlock;
  9676. }
  9677. if (cal_block->cal_data.size == 0) {
  9678. rc = 0; /* not error case */
  9679. pr_debug("%s: cal_data.size is 0, don't send cal data\n",
  9680. __func__);
  9681. goto unlock;
  9682. }
  9683. rc = remap_cal_data(ASM_AUDSTRM_CAL_TYPE, cal_block);
  9684. if (rc) {
  9685. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  9686. __func__, ASM_AUDSTRM_CAL);
  9687. goto unlock;
  9688. }
  9689. mem_hdr.data_payload_addr_lsw =
  9690. lower_32_bits(cal_block->cal_data.paddr);
  9691. mem_hdr.data_payload_addr_msw =
  9692. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  9693. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  9694. payload_size = cal_block->cal_data.size;
  9695. pr_debug("%s: phyaddr lsw = %x msw = %x, maphdl = %x calsize = %d\n",
  9696. __func__, mem_hdr.data_payload_addr_lsw,
  9697. mem_hdr.data_payload_addr_msw, mem_hdr.mem_map_handle,
  9698. payload_size);
  9699. rc = q6asm_set_pp_params(ac, &mem_hdr, NULL, payload_size);
  9700. if (rc) {
  9701. pr_err("%s: audio audstrm cal send failed\n", __func__);
  9702. goto unlock;
  9703. }
  9704. if (cal_block)
  9705. cal_utils_mark_cal_used(cal_block);
  9706. rc = 0;
  9707. unlock:
  9708. mutex_unlock(&cal_data[ASM_AUDSTRM_CAL]->lock);
  9709. done:
  9710. return rc;
  9711. }
  9712. EXPORT_SYMBOL(q6asm_send_cal);
  9713. static int get_cal_type_index(int32_t cal_type)
  9714. {
  9715. int ret = -EINVAL;
  9716. switch (cal_type) {
  9717. case ASM_TOPOLOGY_CAL_TYPE:
  9718. ret = ASM_TOPOLOGY_CAL;
  9719. break;
  9720. case ASM_CUST_TOPOLOGY_CAL_TYPE:
  9721. ret = ASM_CUSTOM_TOP_CAL;
  9722. break;
  9723. case ASM_AUDSTRM_CAL_TYPE:
  9724. ret = ASM_AUDSTRM_CAL;
  9725. break;
  9726. case ASM_RTAC_APR_CAL_TYPE:
  9727. ret = ASM_RTAC_APR_CAL;
  9728. break;
  9729. default:
  9730. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  9731. }
  9732. return ret;
  9733. }
  9734. static int q6asm_alloc_cal(int32_t cal_type,
  9735. size_t data_size, void *data)
  9736. {
  9737. int ret = 0;
  9738. int cal_index;
  9739. pr_debug("%s:\n", __func__);
  9740. cal_index = get_cal_type_index(cal_type);
  9741. if (cal_index < 0) {
  9742. pr_err("%s: could not get cal index %d!\n",
  9743. __func__, cal_index);
  9744. ret = -EINVAL;
  9745. goto done;
  9746. }
  9747. ret = cal_utils_alloc_cal(data_size, data,
  9748. cal_data[cal_index], 0, NULL);
  9749. if (ret < 0) {
  9750. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  9751. __func__, ret, cal_type);
  9752. ret = -EINVAL;
  9753. goto done;
  9754. }
  9755. done:
  9756. return ret;
  9757. }
  9758. static int q6asm_dealloc_cal(int32_t cal_type,
  9759. size_t data_size, void *data)
  9760. {
  9761. int ret = 0;
  9762. int cal_index;
  9763. pr_debug("%s:\n", __func__);
  9764. cal_index = get_cal_type_index(cal_type);
  9765. if (cal_index < 0) {
  9766. pr_err("%s: could not get cal index %d!\n",
  9767. __func__, cal_index);
  9768. ret = -EINVAL;
  9769. goto done;
  9770. }
  9771. ret = cal_utils_dealloc_cal(data_size, data,
  9772. cal_data[cal_index]);
  9773. if (ret < 0) {
  9774. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  9775. __func__, ret, cal_type);
  9776. ret = -EINVAL;
  9777. goto done;
  9778. }
  9779. done:
  9780. return ret;
  9781. }
  9782. static int q6asm_set_cal(int32_t cal_type,
  9783. size_t data_size, void *data)
  9784. {
  9785. int ret = 0;
  9786. int cal_index;
  9787. pr_debug("%s:\n", __func__);
  9788. cal_index = get_cal_type_index(cal_type);
  9789. if (cal_index < 0) {
  9790. pr_err("%s: could not get cal index %d!\n",
  9791. __func__, cal_index);
  9792. ret = -EINVAL;
  9793. goto done;
  9794. }
  9795. ret = cal_utils_set_cal(data_size, data,
  9796. cal_data[cal_index], 0, NULL);
  9797. if (ret < 0) {
  9798. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  9799. __func__, ret, cal_type);
  9800. ret = -EINVAL;
  9801. goto done;
  9802. }
  9803. if (cal_index == ASM_CUSTOM_TOP_CAL) {
  9804. mutex_lock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  9805. set_custom_topology = 1;
  9806. mutex_unlock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  9807. }
  9808. done:
  9809. return ret;
  9810. }
  9811. static void q6asm_delete_cal_data(void)
  9812. {
  9813. pr_debug("%s:\n", __func__);
  9814. cal_utils_destroy_cal_types(ASM_MAX_CAL_TYPES, cal_data);
  9815. }
  9816. static int q6asm_init_cal_data(void)
  9817. {
  9818. int ret = 0;
  9819. struct cal_type_info cal_type_info[] = {
  9820. {{ASM_TOPOLOGY_CAL_TYPE,
  9821. {NULL, NULL, NULL,
  9822. q6asm_set_cal, NULL, NULL} },
  9823. {NULL, NULL, cal_utils_match_buf_num} },
  9824. {{ASM_CUST_TOPOLOGY_CAL_TYPE,
  9825. {q6asm_alloc_cal, q6asm_dealloc_cal, NULL,
  9826. q6asm_set_cal, NULL, NULL} },
  9827. {NULL, q6asm_unmap_cal_memory, cal_utils_match_buf_num} },
  9828. {{ASM_AUDSTRM_CAL_TYPE,
  9829. {q6asm_alloc_cal, q6asm_dealloc_cal, NULL,
  9830. q6asm_set_cal, NULL, NULL} },
  9831. {NULL, q6asm_unmap_cal_memory, cal_utils_match_buf_num} },
  9832. {{ASM_RTAC_APR_CAL_TYPE,
  9833. {NULL, NULL, NULL, NULL, NULL, NULL} },
  9834. {NULL, NULL, cal_utils_match_buf_num} }
  9835. };
  9836. pr_debug("%s\n", __func__);
  9837. ret = cal_utils_create_cal_types(ASM_MAX_CAL_TYPES, cal_data,
  9838. cal_type_info);
  9839. if (ret < 0) {
  9840. pr_err("%s: could not create cal type! %d\n",
  9841. __func__, ret);
  9842. ret = -EINVAL;
  9843. goto err;
  9844. }
  9845. return ret;
  9846. err:
  9847. q6asm_delete_cal_data();
  9848. return ret;
  9849. }
  9850. static int q6asm_is_valid_session(struct apr_client_data *data, void *priv)
  9851. {
  9852. struct audio_client *ac = (struct audio_client *)priv;
  9853. union asm_token_struct asm_token;
  9854. asm_token.token = data->token;
  9855. if (asm_token._token.session_id != ac->session) {
  9856. pr_err("%s: Invalid session[%d] rxed expected[%d]",
  9857. __func__, asm_token._token.session_id, ac->session);
  9858. return -EINVAL;
  9859. }
  9860. return 0;
  9861. }
  9862. int __init q6asm_init(void)
  9863. {
  9864. int lcnt, ret;
  9865. pr_debug("%s:\n", __func__);
  9866. memset(session, 0, sizeof(struct audio_session) *
  9867. (ASM_ACTIVE_STREAMS_ALLOWED + 1));
  9868. for (lcnt = 0; lcnt <= ASM_ACTIVE_STREAMS_ALLOWED; lcnt++) {
  9869. spin_lock_init(&(session[lcnt].session_lock));
  9870. mutex_init(&(session[lcnt].mutex_lock_per_session));
  9871. }
  9872. set_custom_topology = 1;
  9873. /*setup common client used for cal mem map */
  9874. common_client.session = ASM_CONTROL_SESSION;
  9875. common_client.port[0].buf = &common_buf[0];
  9876. common_client.port[1].buf = &common_buf[1];
  9877. init_waitqueue_head(&common_client.cmd_wait);
  9878. init_waitqueue_head(&common_client.time_wait);
  9879. init_waitqueue_head(&common_client.mem_wait);
  9880. atomic_set(&common_client.time_flag, 1);
  9881. INIT_LIST_HEAD(&common_client.port[0].mem_map_handle);
  9882. INIT_LIST_HEAD(&common_client.port[1].mem_map_handle);
  9883. mutex_init(&common_client.cmd_lock);
  9884. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  9885. mutex_init(&common_client.port[lcnt].lock);
  9886. spin_lock_init(&common_client.port[lcnt].dsp_lock);
  9887. }
  9888. atomic_set(&common_client.cmd_state, 0);
  9889. atomic_set(&common_client.mem_state, 0);
  9890. ret = q6asm_init_cal_data();
  9891. if (ret)
  9892. pr_err("%s: could not init cal data! ret %d\n",
  9893. __func__, ret);
  9894. config_debug_fs_init();
  9895. return 0;
  9896. }
  9897. void q6asm_exit(void)
  9898. {
  9899. q6asm_delete_cal_data();
  9900. }