q6asm.c 278 KB

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