q6asm.c 279 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407
  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. * use_default_chmap: true if default channel map to be used
  3682. * channel_map: input channel map
  3683. * returns 0 if successful, error code otherwise
  3684. */
  3685. int q6asm_open_shared_io(struct audio_client *ac,
  3686. struct shared_io_config *config,
  3687. int dir, bool use_default_chmap, u8 *channel_map)
  3688. {
  3689. struct asm_stream_cmd_open_shared_io *open;
  3690. u8 *channel_mapping;
  3691. int i, size_of_open, num_watermarks, bufsz, bufcnt, rc, flags = 0;
  3692. struct q6asm_cal_info cal_info;
  3693. if (!ac || !config)
  3694. return -EINVAL;
  3695. if (!use_default_chmap && (channel_map == NULL)) {
  3696. pr_err("%s: No valid chan map and can't use default\n",
  3697. __func__);
  3698. return -EINVAL;
  3699. }
  3700. bufsz = config->bufsz;
  3701. bufcnt = config->bufcnt;
  3702. num_watermarks = 0;
  3703. ac->config = *config;
  3704. if (ac->session <= 0 || ac->session > SESSION_MAX) {
  3705. pr_err("%s: Session %d is out of bounds\n",
  3706. __func__, ac->session);
  3707. return -EINVAL;
  3708. }
  3709. size_of_open = sizeof(struct asm_stream_cmd_open_shared_io) +
  3710. (sizeof(struct asm_shared_watermark_level) * num_watermarks);
  3711. open = kzalloc(PAGE_ALIGN(size_of_open), GFP_KERNEL);
  3712. if (!open)
  3713. return -ENOMEM;
  3714. q6asm_stream_add_hdr(ac, &open->hdr, size_of_open, TRUE,
  3715. ac->stream_id);
  3716. atomic_set(&ac->cmd_state, 1);
  3717. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x, perf %d\n",
  3718. __func__, open->hdr.token, ac->stream_id, ac->session,
  3719. ac->perf_mode);
  3720. open->hdr.opcode =
  3721. dir == IN ? ASM_STREAM_CMD_OPEN_PULL_MODE_WRITE :
  3722. ASM_STREAM_CMD_OPEN_PUSH_MODE_READ;
  3723. pr_debug("%s perf_mode %d\n", __func__, ac->perf_mode);
  3724. if (dir == IN)
  3725. if (ac->perf_mode == ULL_POST_PROCESSING_PCM_MODE)
  3726. flags = 4 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3727. else if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE)
  3728. flags = 2 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3729. else if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3730. flags = 1 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3731. else
  3732. pr_err("Invalid perf mode for pull write\n");
  3733. else
  3734. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3735. flags = ASM_LOW_LATENCY_TX_STREAM_SESSION <<
  3736. ASM_SHIFT_STREAM_PERF_FLAG_PUSH_MODE_READ;
  3737. else
  3738. pr_err("Invalid perf mode for push read\n");
  3739. if (flags == 0) {
  3740. pr_err("%s: Invalid mode[%d]\n", __func__,
  3741. ac->perf_mode);
  3742. kfree(open);
  3743. return -EINVAL;
  3744. }
  3745. pr_debug("open.mode_flags = 0x%x\n", flags);
  3746. open->mode_flags = flags;
  3747. open->endpoint_type = ASM_END_POINT_DEVICE_MATRIX;
  3748. open->topo_bits_per_sample = config->bits_per_sample;
  3749. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3750. open->topo_id = cal_info.topology_id;
  3751. if (config->format == FORMAT_LINEAR_PCM)
  3752. open->fmt_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3753. else {
  3754. pr_err("%s: Invalid format[%d]\n", __func__, config->format);
  3755. rc = -EINVAL;
  3756. goto done;
  3757. }
  3758. rc = q6asm_set_shared_circ_buff(ac, open, bufsz, bufcnt, dir);
  3759. if (rc)
  3760. goto done;
  3761. ac->port[dir].tmp_hdl = 0;
  3762. rc = q6asm_set_shared_pos_buff(ac, open, dir);
  3763. if (rc)
  3764. goto done;
  3765. /* asm_multi_channel_pcm_fmt_blk_v3 */
  3766. open->fmt.num_channels = config->channels;
  3767. open->fmt.bits_per_sample = config->bits_per_sample;
  3768. open->fmt.sample_rate = config->rate;
  3769. open->fmt.is_signed = 1;
  3770. open->fmt.sample_word_size = config->sample_word_size;
  3771. channel_mapping = open->fmt.channel_mapping;
  3772. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  3773. if (use_default_chmap) {
  3774. rc = q6asm_map_channels(channel_mapping, config->channels,
  3775. false);
  3776. if (rc) {
  3777. pr_err("%s: Map channels failed, ret: %d\n",
  3778. __func__, rc);
  3779. goto done;
  3780. }
  3781. } else {
  3782. memcpy(channel_mapping, channel_map,
  3783. PCM_FORMAT_MAX_NUM_CHANNEL);
  3784. }
  3785. open->num_watermark_levels = num_watermarks;
  3786. for (i = 0; i < num_watermarks; i++) {
  3787. open->watermark[i].watermark_level_bytes = i *
  3788. ((bufsz * bufcnt) / num_watermarks);
  3789. pr_debug("%s: Watermark level set for %i\n",
  3790. __func__,
  3791. open->watermark[i].watermark_level_bytes);
  3792. }
  3793. rc = apr_send_pkt(ac->apr, (uint32_t *) open);
  3794. if (rc < 0) {
  3795. pr_err("%s: Open failed op[0x%x]rc[%d]\n",
  3796. __func__, open->hdr.opcode, rc);
  3797. goto done;
  3798. }
  3799. pr_debug("%s: sent open apr pkt\n", __func__);
  3800. rc = wait_event_timeout(ac->cmd_wait,
  3801. (atomic_read(&ac->cmd_state) <= 0), 5*HZ);
  3802. if (!rc) {
  3803. pr_err("%s: Timeout. Waited for open write apr pkt rc[%d]\n",
  3804. __func__, rc);
  3805. rc = -ETIMEDOUT;
  3806. goto done;
  3807. }
  3808. if (atomic_read(&ac->cmd_state) < 0) {
  3809. pr_err("%s: DSP returned error [%d]\n", __func__,
  3810. atomic_read(&ac->cmd_state));
  3811. rc = -EINVAL;
  3812. goto done;
  3813. }
  3814. ac->io_mode |= TUN_WRITE_IO_MODE;
  3815. rc = 0;
  3816. done:
  3817. kfree(open);
  3818. return rc;
  3819. }
  3820. EXPORT_SYMBOL(q6asm_open_shared_io);
  3821. /*
  3822. * q6asm_shared_io_buf: Returns handle to the shared circular buffer being
  3823. * used for pull/push mode.
  3824. * parameters
  3825. * dir - used to identify input/output port
  3826. * returns buffer handle
  3827. */
  3828. struct audio_buffer *q6asm_shared_io_buf(struct audio_client *ac,
  3829. int dir)
  3830. {
  3831. struct audio_port_data *port;
  3832. if (!ac) {
  3833. pr_err("%s: ac is null\n", __func__);
  3834. return NULL;
  3835. }
  3836. port = &ac->port[dir];
  3837. return port->buf;
  3838. }
  3839. EXPORT_SYMBOL(q6asm_shared_io_buf);
  3840. /*
  3841. * q6asm_shared_io_free: Frees memory allocated for a pull/push session
  3842. * parameters
  3843. * dir - port direction
  3844. * returns 0 if successful, error otherwise
  3845. */
  3846. int q6asm_shared_io_free(struct audio_client *ac, int dir)
  3847. {
  3848. struct audio_port_data *port;
  3849. if (!ac) {
  3850. pr_err("%s: audio client is null\n", __func__);
  3851. return -EINVAL;
  3852. }
  3853. port = &ac->port[dir];
  3854. mutex_lock(&ac->cmd_lock);
  3855. if (port->buf && port->buf->data) {
  3856. msm_audio_ion_free(port->buf->dma_buf);
  3857. port->buf->dma_buf = NULL;
  3858. port->max_buf_cnt = 0;
  3859. kfree(port->buf);
  3860. port->buf = NULL;
  3861. }
  3862. if (ac->shared_pos_buf.data) {
  3863. msm_audio_ion_free(ac->shared_pos_buf.dma_buf);
  3864. ac->shared_pos_buf.dma_buf = NULL;
  3865. }
  3866. mutex_unlock(&ac->cmd_lock);
  3867. return 0;
  3868. }
  3869. EXPORT_SYMBOL(q6asm_shared_io_free);
  3870. /*
  3871. * q6asm_get_shared_pos: Returns current read index/write index as observed
  3872. * by the DSP. Note that this is an offset and iterates from [0,BUF_SIZE - 1]
  3873. * parameters - (all output)
  3874. * read_index - offset
  3875. * wall_clk_msw1 - ADSP wallclock msw
  3876. * wall_clk_lsw1 - ADSP wallclock lsw
  3877. * returns 0 if successful, -EAGAIN if DSP failed to update after some
  3878. * retries
  3879. */
  3880. int q6asm_get_shared_pos(struct audio_client *ac, uint32_t *read_index,
  3881. uint32_t *wall_clk_msw1, uint32_t *wall_clk_lsw1)
  3882. {
  3883. struct asm_shared_position_buffer *pos_buf;
  3884. uint32_t frame_cnt1, frame_cnt2;
  3885. int i, j;
  3886. if (!ac) {
  3887. pr_err("%s: audio client is null\n", __func__);
  3888. return -EINVAL;
  3889. }
  3890. pos_buf = ac->shared_pos_buf.data;
  3891. /* always try to get the latest update in the shared pos buffer */
  3892. for (i = 0; i < 2; i++) {
  3893. /* retry until there is an update from DSP */
  3894. for (j = 0; j < 5; j++) {
  3895. frame_cnt1 = pos_buf->frame_counter;
  3896. if (frame_cnt1 != 0)
  3897. break;
  3898. }
  3899. *wall_clk_msw1 = pos_buf->wall_clock_us_msw;
  3900. *wall_clk_lsw1 = pos_buf->wall_clock_us_lsw;
  3901. *read_index = pos_buf->index;
  3902. frame_cnt2 = pos_buf->frame_counter;
  3903. if (frame_cnt1 != frame_cnt2)
  3904. continue;
  3905. return 0;
  3906. }
  3907. pr_err("%s out of tries trying to get a good read, try again\n",
  3908. __func__);
  3909. return -EAGAIN;
  3910. }
  3911. EXPORT_SYMBOL(q6asm_get_shared_pos);
  3912. /**
  3913. * q6asm_run -
  3914. * command to set ASM to run state
  3915. *
  3916. * @ac: Audio client handle
  3917. * @flags: Flags for session
  3918. * @msw_ts: upper 32bits timestamp
  3919. * @lsw_ts: lower 32bits timestamp
  3920. *
  3921. * Returns 0 on success or error on failure
  3922. */
  3923. int q6asm_run(struct audio_client *ac, uint32_t flags,
  3924. uint32_t msw_ts, uint32_t lsw_ts)
  3925. {
  3926. struct asm_session_cmd_run_v2 run;
  3927. int rc;
  3928. if (ac == NULL) {
  3929. pr_err("%s: APR handle NULL\n", __func__);
  3930. return -EINVAL;
  3931. }
  3932. if (ac->apr == NULL) {
  3933. pr_err("%s: AC APR handle NULL\n", __func__);
  3934. return -EINVAL;
  3935. }
  3936. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3937. q6asm_add_hdr(ac, &run.hdr, sizeof(run), TRUE);
  3938. atomic_set(&ac->cmd_state, -1);
  3939. run.hdr.opcode = ASM_SESSION_CMD_RUN_V2;
  3940. run.flags = flags;
  3941. run.time_lsw = lsw_ts;
  3942. run.time_msw = msw_ts;
  3943. config_debug_fs_run();
  3944. rc = apr_send_pkt(ac->apr, (uint32_t *) &run);
  3945. if (rc < 0) {
  3946. pr_err("%s: Commmand run failed[%d]",
  3947. __func__, rc);
  3948. rc = -EINVAL;
  3949. goto fail_cmd;
  3950. }
  3951. rc = wait_event_timeout(ac->cmd_wait,
  3952. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  3953. if (!rc) {
  3954. pr_err("%s: timeout. waited for run success",
  3955. __func__);
  3956. rc = -ETIMEDOUT;
  3957. goto fail_cmd;
  3958. }
  3959. if (atomic_read(&ac->cmd_state) > 0) {
  3960. pr_err("%s: DSP returned error[%s]\n",
  3961. __func__, adsp_err_get_err_str(
  3962. atomic_read(&ac->cmd_state)));
  3963. rc = adsp_err_get_lnx_err_code(
  3964. atomic_read(&ac->cmd_state));
  3965. goto fail_cmd;
  3966. }
  3967. return 0;
  3968. fail_cmd:
  3969. return rc;
  3970. }
  3971. EXPORT_SYMBOL(q6asm_run);
  3972. static int __q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  3973. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id)
  3974. {
  3975. struct asm_session_cmd_run_v2 run;
  3976. int rc;
  3977. if (ac == NULL) {
  3978. pr_err("%s: APR handle NULL\n", __func__);
  3979. return -EINVAL;
  3980. }
  3981. if (ac->apr == NULL) {
  3982. pr_err("%s: AC APR handle NULL\n", __func__);
  3983. return -EINVAL;
  3984. }
  3985. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3986. q6asm_stream_add_hdr_async(ac, &run.hdr, sizeof(run), TRUE, stream_id);
  3987. atomic_set(&ac->cmd_state, 1);
  3988. run.hdr.opcode = ASM_SESSION_CMD_RUN_V2;
  3989. run.flags = flags;
  3990. run.time_lsw = lsw_ts;
  3991. run.time_msw = msw_ts;
  3992. rc = apr_send_pkt(ac->apr, (uint32_t *) &run);
  3993. if (rc < 0) {
  3994. pr_err("%s: Commmand run failed[%d]", __func__, rc);
  3995. return -EINVAL;
  3996. }
  3997. return 0;
  3998. }
  3999. /**
  4000. * q6asm_run_nowait -
  4001. * command to set ASM to run state with no wait for ack
  4002. *
  4003. * @ac: Audio client handle
  4004. * @flags: Flags for session
  4005. * @msw_ts: upper 32bits timestamp
  4006. * @lsw_ts: lower 32bits timestamp
  4007. *
  4008. * Returns 0 on success or error on failure
  4009. */
  4010. int q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  4011. uint32_t msw_ts, uint32_t lsw_ts)
  4012. {
  4013. return __q6asm_run_nowait(ac, flags, msw_ts, lsw_ts, ac->stream_id);
  4014. }
  4015. EXPORT_SYMBOL(q6asm_run_nowait);
  4016. int q6asm_stream_run_nowait(struct audio_client *ac, uint32_t flags,
  4017. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id)
  4018. {
  4019. return __q6asm_run_nowait(ac, flags, msw_ts, lsw_ts, stream_id);
  4020. }
  4021. /**
  4022. * q6asm_enc_cfg_blk_custom -
  4023. * command to set encode cfg block for custom
  4024. *
  4025. * @ac: Audio client handle
  4026. * @sample_rate: Sample rate
  4027. * @channels: number of ASM channels
  4028. * @format: custom format flag
  4029. * @cfg: generic encoder config
  4030. *
  4031. * Returns 0 on success or error on failure
  4032. */
  4033. int q6asm_enc_cfg_blk_custom(struct audio_client *ac,
  4034. uint32_t sample_rate, uint32_t channels,
  4035. uint32_t format, void *cfg)
  4036. {
  4037. struct asm_custom_enc_cfg_t_v2 enc_cfg;
  4038. int rc = 0;
  4039. uint32_t custom_size;
  4040. struct snd_enc_generic *enc_generic = (struct snd_enc_generic *) cfg;
  4041. custom_size = enc_generic->reserved[1];
  4042. pr_debug("%s: session[%d] size[%d] res[2]=[%d] res[3]=[%d]\n",
  4043. __func__, ac->session, custom_size, enc_generic->reserved[2],
  4044. enc_generic->reserved[3]);
  4045. pr_debug("%s: res[4]=[%d] sr[%d] ch[%d] format[%d]\n",
  4046. __func__, enc_generic->reserved[4], sample_rate,
  4047. channels, format);
  4048. memset(&enc_cfg, 0, sizeof(struct asm_custom_enc_cfg_t_v2));
  4049. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4050. atomic_set(&ac->cmd_state, -1);
  4051. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4052. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4053. enc_cfg.encdec.param_size = sizeof(struct asm_custom_enc_cfg_t_v2) -
  4054. sizeof(struct asm_stream_cmd_set_encdec_param);
  4055. enc_cfg.encblk.frames_per_buf = ENC_FRAMES_PER_BUFFER;
  4056. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4057. sizeof(struct asm_enc_cfg_blk_param_v2);
  4058. enc_cfg.num_channels = channels;
  4059. enc_cfg.sample_rate = sample_rate;
  4060. if (q6asm_map_channels(enc_cfg.channel_mapping, channels, false)) {
  4061. pr_err("%s: map channels failed %d\n",
  4062. __func__, channels);
  4063. rc = -EINVAL;
  4064. goto fail_cmd;
  4065. }
  4066. if (format == FORMAT_BESPOKE && custom_size &&
  4067. custom_size <= sizeof(enc_cfg.custom_data)) {
  4068. memcpy(enc_cfg.custom_data, &enc_generic->reserved[2],
  4069. custom_size);
  4070. enc_cfg.custom_size = custom_size;
  4071. }
  4072. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4073. if (rc < 0) {
  4074. pr_err("%s: Comamnd %d failed %d\n",
  4075. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4076. rc = -EINVAL;
  4077. goto fail_cmd;
  4078. }
  4079. rc = wait_event_timeout(ac->cmd_wait,
  4080. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4081. if (!rc) {
  4082. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4083. __func__);
  4084. rc = -ETIMEDOUT;
  4085. goto fail_cmd;
  4086. }
  4087. if (atomic_read(&ac->cmd_state) > 0) {
  4088. pr_err("%s: DSP returned error[%s]\n",
  4089. __func__, adsp_err_get_err_str(
  4090. atomic_read(&ac->cmd_state)));
  4091. rc = adsp_err_get_lnx_err_code(
  4092. atomic_read(&ac->cmd_state));
  4093. goto fail_cmd;
  4094. }
  4095. return 0;
  4096. fail_cmd:
  4097. return rc;
  4098. }
  4099. EXPORT_SYMBOL(q6asm_enc_cfg_blk_custom);
  4100. /**
  4101. * q6asm_enc_cfg_blk_aac -
  4102. * command to set encode cfg block for aac
  4103. *
  4104. * @ac: Audio client handle
  4105. * @frames_per_buf: number of frames per buffer
  4106. * @sample_rate: Sample rate
  4107. * @channels: number of ASM channels
  4108. * @bit_rate: Bit rate info
  4109. * @mode: mode of AAC stream encode
  4110. * @format: aac format flag
  4111. *
  4112. * Returns 0 on success or error on failure
  4113. */
  4114. int q6asm_enc_cfg_blk_aac(struct audio_client *ac,
  4115. uint32_t frames_per_buf,
  4116. uint32_t sample_rate, uint32_t channels,
  4117. uint32_t bit_rate, uint32_t mode, uint32_t format)
  4118. {
  4119. struct asm_aac_enc_cfg_v2 enc_cfg;
  4120. int rc = 0;
  4121. pr_debug("%s: session[%d]frames[%d]SR[%d]ch[%d]bitrate[%d]mode[%d] format[%d]\n",
  4122. __func__, ac->session, frames_per_buf,
  4123. sample_rate, channels, bit_rate, mode, format);
  4124. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4125. atomic_set(&ac->cmd_state, -1);
  4126. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4127. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4128. enc_cfg.encdec.param_size = sizeof(struct asm_aac_enc_cfg_v2) -
  4129. sizeof(struct asm_stream_cmd_set_encdec_param);
  4130. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4131. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4132. sizeof(struct asm_enc_cfg_blk_param_v2);
  4133. enc_cfg.bit_rate = bit_rate;
  4134. enc_cfg.enc_mode = mode;
  4135. enc_cfg.aac_fmt_flag = format;
  4136. enc_cfg.channel_cfg = channels;
  4137. enc_cfg.sample_rate = sample_rate;
  4138. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4139. if (rc < 0) {
  4140. pr_err("%s: Comamnd %d failed %d\n",
  4141. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4142. rc = -EINVAL;
  4143. goto fail_cmd;
  4144. }
  4145. rc = wait_event_timeout(ac->cmd_wait,
  4146. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4147. if (!rc) {
  4148. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4149. __func__);
  4150. rc = -ETIMEDOUT;
  4151. goto fail_cmd;
  4152. }
  4153. if (atomic_read(&ac->cmd_state) > 0) {
  4154. pr_err("%s: DSP returned error[%s]\n",
  4155. __func__, adsp_err_get_err_str(
  4156. atomic_read(&ac->cmd_state)));
  4157. rc = adsp_err_get_lnx_err_code(
  4158. atomic_read(&ac->cmd_state));
  4159. goto fail_cmd;
  4160. }
  4161. return 0;
  4162. fail_cmd:
  4163. return rc;
  4164. }
  4165. EXPORT_SYMBOL(q6asm_enc_cfg_blk_aac);
  4166. /**
  4167. * q6asm_enc_cfg_blk_g711 -
  4168. * command to set encode cfg block for g711
  4169. *
  4170. * @ac: Audio client handle
  4171. * @frames_per_buf: number of frames per buffer
  4172. * @sample_rate: Sample rate
  4173. *
  4174. * Returns 0 on success or error on failure
  4175. */
  4176. int q6asm_enc_cfg_blk_g711(struct audio_client *ac,
  4177. uint32_t frames_per_buf,
  4178. uint32_t sample_rate)
  4179. {
  4180. struct asm_g711_enc_cfg_v2 enc_cfg;
  4181. int rc = 0;
  4182. pr_debug("%s: session[%d]frames[%d]SR[%d]\n",
  4183. __func__, ac->session, frames_per_buf,
  4184. sample_rate);
  4185. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4186. atomic_set(&ac->cmd_state, -1);
  4187. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4188. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4189. enc_cfg.encdec.param_size = sizeof(struct asm_g711_enc_cfg_v2) -
  4190. sizeof(struct asm_stream_cmd_set_encdec_param);
  4191. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4192. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4193. sizeof(struct asm_enc_cfg_blk_param_v2);
  4194. enc_cfg.sample_rate = sample_rate;
  4195. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4196. if (rc < 0) {
  4197. pr_err("%s: Comamnd %d failed %d\n",
  4198. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4199. rc = -EINVAL;
  4200. goto fail_cmd;
  4201. }
  4202. rc = wait_event_timeout(ac->cmd_wait,
  4203. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4204. if (!rc) {
  4205. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4206. __func__);
  4207. rc = -ETIMEDOUT;
  4208. goto fail_cmd;
  4209. }
  4210. if (atomic_read(&ac->cmd_state) > 0) {
  4211. pr_err("%s: DSP returned error[%s]\n",
  4212. __func__, adsp_err_get_err_str(
  4213. atomic_read(&ac->cmd_state)));
  4214. rc = adsp_err_get_lnx_err_code(
  4215. atomic_read(&ac->cmd_state));
  4216. goto fail_cmd;
  4217. }
  4218. return 0;
  4219. fail_cmd:
  4220. return rc;
  4221. }
  4222. EXPORT_SYMBOL(q6asm_enc_cfg_blk_g711);
  4223. /**
  4224. * q6asm_set_encdec_chan_map -
  4225. * command to set encdec channel map
  4226. *
  4227. * @ac: Audio client handle
  4228. * @channels: number of channels
  4229. *
  4230. * Returns 0 on success or error on failure
  4231. */
  4232. int q6asm_set_encdec_chan_map(struct audio_client *ac,
  4233. uint32_t num_channels)
  4234. {
  4235. struct asm_dec_out_chan_map_param chan_map;
  4236. u8 *channel_mapping;
  4237. int rc = 0;
  4238. pr_debug("%s: Session %d, num_channels = %d\n",
  4239. __func__, ac->session, num_channels);
  4240. q6asm_add_hdr(ac, &chan_map.hdr, sizeof(chan_map), TRUE);
  4241. atomic_set(&ac->cmd_state, -1);
  4242. chan_map.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4243. chan_map.encdec.param_id = ASM_PARAM_ID_DEC_OUTPUT_CHAN_MAP;
  4244. chan_map.encdec.param_size = sizeof(struct asm_dec_out_chan_map_param) -
  4245. (sizeof(struct apr_hdr) +
  4246. sizeof(struct asm_stream_cmd_set_encdec_param));
  4247. chan_map.num_channels = num_channels;
  4248. channel_mapping = chan_map.channel_mapping;
  4249. memset(channel_mapping, PCM_CHANNEL_NULL, MAX_CHAN_MAP_CHANNELS);
  4250. if (q6asm_map_channels(channel_mapping, num_channels, false)) {
  4251. pr_err("%s: map channels failed %d\n", __func__, num_channels);
  4252. return -EINVAL;
  4253. }
  4254. rc = apr_send_pkt(ac->apr, (uint32_t *) &chan_map);
  4255. if (rc < 0) {
  4256. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  4257. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  4258. ASM_PARAM_ID_DEC_OUTPUT_CHAN_MAP, rc);
  4259. goto fail_cmd;
  4260. }
  4261. rc = wait_event_timeout(ac->cmd_wait,
  4262. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4263. if (!rc) {
  4264. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  4265. chan_map.hdr.opcode);
  4266. rc = -ETIMEDOUT;
  4267. goto fail_cmd;
  4268. }
  4269. if (atomic_read(&ac->cmd_state) > 0) {
  4270. pr_err("%s: DSP returned error[%s]\n",
  4271. __func__, adsp_err_get_err_str(
  4272. atomic_read(&ac->cmd_state)));
  4273. rc = adsp_err_get_lnx_err_code(
  4274. atomic_read(&ac->cmd_state));
  4275. goto fail_cmd;
  4276. }
  4277. return 0;
  4278. fail_cmd:
  4279. return rc;
  4280. }
  4281. EXPORT_SYMBOL(q6asm_set_encdec_chan_map);
  4282. /*
  4283. * q6asm_enc_cfg_blk_pcm_v4 - sends encoder configuration parameters
  4284. *
  4285. * @ac: Client session handle
  4286. * @rate: sample rate
  4287. * @channels: number of channels
  4288. * @bits_per_sample: bit width of encoder session
  4289. * @use_default_chmap: true if default channel map to be used
  4290. * @use_back_flavor: to configure back left and right channel
  4291. * @channel_map: input channel map
  4292. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4293. * @endianness: endianness of the pcm data
  4294. * @mode: Mode to provide additional info about the pcm input data
  4295. */
  4296. int q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  4297. uint32_t rate, uint32_t channels,
  4298. uint16_t bits_per_sample, bool use_default_chmap,
  4299. bool use_back_flavor, u8 *channel_map,
  4300. uint16_t sample_word_size, uint16_t endianness,
  4301. uint16_t mode)
  4302. {
  4303. struct asm_multi_channel_pcm_enc_cfg_v4 enc_cfg;
  4304. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4305. u8 *channel_mapping;
  4306. u32 frames_per_buf = 0;
  4307. int rc;
  4308. if (!use_default_chmap && (channel_map == NULL)) {
  4309. pr_err("%s: No valid chan map and can't use default\n",
  4310. __func__);
  4311. rc = -EINVAL;
  4312. goto fail_cmd;
  4313. }
  4314. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4315. ac->session, rate, channels,
  4316. bits_per_sample, sample_word_size);
  4317. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4318. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4319. atomic_set(&ac->cmd_state, -1);
  4320. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4321. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4322. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4323. sizeof(enc_cfg.encdec);
  4324. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4325. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4326. sizeof(enc_fg_blk);
  4327. enc_cfg.num_channels = channels;
  4328. enc_cfg.bits_per_sample = bits_per_sample;
  4329. enc_cfg.sample_rate = rate;
  4330. enc_cfg.is_signed = 1;
  4331. enc_cfg.sample_word_size = sample_word_size;
  4332. enc_cfg.endianness = endianness;
  4333. enc_cfg.mode = mode;
  4334. channel_mapping = enc_cfg.channel_mapping;
  4335. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4336. if (use_default_chmap) {
  4337. pr_debug("%s: setting default channel map for %d channels",
  4338. __func__, channels);
  4339. if (q6asm_map_channels(channel_mapping, channels,
  4340. use_back_flavor)) {
  4341. pr_err("%s: map channels failed %d\n",
  4342. __func__, channels);
  4343. rc = -EINVAL;
  4344. goto fail_cmd;
  4345. }
  4346. } else {
  4347. pr_debug("%s: Using pre-defined channel map", __func__);
  4348. memcpy(channel_mapping, channel_map,
  4349. PCM_FORMAT_MAX_NUM_CHANNEL);
  4350. }
  4351. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4352. if (rc < 0) {
  4353. pr_err("%s: Command open failed %d\n", __func__, rc);
  4354. goto fail_cmd;
  4355. }
  4356. rc = wait_event_timeout(ac->cmd_wait,
  4357. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4358. if (!rc) {
  4359. pr_err("%s: timeout opcode[0x%x]\n",
  4360. __func__, enc_cfg.hdr.opcode);
  4361. rc = -ETIMEDOUT;
  4362. goto fail_cmd;
  4363. }
  4364. if (atomic_read(&ac->cmd_state) > 0) {
  4365. pr_err("%s: DSP returned error[%s]\n",
  4366. __func__, adsp_err_get_err_str(
  4367. atomic_read(&ac->cmd_state)));
  4368. rc = adsp_err_get_lnx_err_code(
  4369. atomic_read(&ac->cmd_state));
  4370. goto fail_cmd;
  4371. }
  4372. return 0;
  4373. fail_cmd:
  4374. return rc;
  4375. }
  4376. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v4);
  4377. /*
  4378. * q6asm_enc_cfg_blk_pcm_v3 - sends encoder configuration parameters
  4379. *
  4380. * @ac: Client session handle
  4381. * @rate: sample rate
  4382. * @channels: number of channels
  4383. * @bits_per_sample: bit width of encoder session
  4384. * @use_default_chmap: true if default channel map to be used
  4385. * @use_back_flavor: to configure back left and right channel
  4386. * @channel_map: input channel map
  4387. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4388. */
  4389. int q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  4390. uint32_t rate, uint32_t channels,
  4391. uint16_t bits_per_sample, bool use_default_chmap,
  4392. bool use_back_flavor, u8 *channel_map,
  4393. uint16_t sample_word_size)
  4394. {
  4395. struct asm_multi_channel_pcm_enc_cfg_v3 enc_cfg;
  4396. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4397. u8 *channel_mapping;
  4398. u32 frames_per_buf = 0;
  4399. int rc;
  4400. if (!use_default_chmap && (channel_map == NULL)) {
  4401. pr_err("%s: No valid chan map and can't use default\n",
  4402. __func__);
  4403. rc = -EINVAL;
  4404. goto fail_cmd;
  4405. }
  4406. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4407. ac->session, rate, channels,
  4408. bits_per_sample, sample_word_size);
  4409. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4410. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4411. atomic_set(&ac->cmd_state, -1);
  4412. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4413. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4414. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4415. sizeof(enc_cfg.encdec);
  4416. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4417. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4418. sizeof(enc_fg_blk);
  4419. enc_cfg.num_channels = channels;
  4420. enc_cfg.bits_per_sample = bits_per_sample;
  4421. enc_cfg.sample_rate = rate;
  4422. enc_cfg.is_signed = 1;
  4423. enc_cfg.sample_word_size = sample_word_size;
  4424. channel_mapping = enc_cfg.channel_mapping;
  4425. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4426. if (use_default_chmap) {
  4427. pr_debug("%s: setting default channel map for %d channels",
  4428. __func__, channels);
  4429. if (q6asm_map_channels(channel_mapping, channels,
  4430. use_back_flavor)) {
  4431. pr_err("%s: map channels failed %d\n",
  4432. __func__, channels);
  4433. rc = -EINVAL;
  4434. goto fail_cmd;
  4435. }
  4436. } else {
  4437. pr_debug("%s: Using pre-defined channel map", __func__);
  4438. memcpy(channel_mapping, channel_map,
  4439. PCM_FORMAT_MAX_NUM_CHANNEL);
  4440. }
  4441. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4442. if (rc < 0) {
  4443. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4444. goto fail_cmd;
  4445. }
  4446. rc = wait_event_timeout(ac->cmd_wait,
  4447. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4448. if (!rc) {
  4449. pr_err("%s: timeout opcode[0x%x]\n",
  4450. __func__, enc_cfg.hdr.opcode);
  4451. rc = -ETIMEDOUT;
  4452. goto fail_cmd;
  4453. }
  4454. if (atomic_read(&ac->cmd_state) > 0) {
  4455. pr_err("%s: DSP returned error[%s]\n",
  4456. __func__, adsp_err_get_err_str(
  4457. atomic_read(&ac->cmd_state)));
  4458. rc = adsp_err_get_lnx_err_code(
  4459. atomic_read(&ac->cmd_state));
  4460. goto fail_cmd;
  4461. }
  4462. return 0;
  4463. fail_cmd:
  4464. return rc;
  4465. }
  4466. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v3);
  4467. /**
  4468. * q6asm_enc_cfg_blk_pcm_v2 -
  4469. * command to set encode config block for pcm_v2
  4470. *
  4471. * @ac: Audio client handle
  4472. * @rate: sample rate
  4473. * @channels: number of channels
  4474. * @bits_per_sample: number of bits per sample
  4475. * @use_default_chmap: Flag indicating to use default ch_map or not
  4476. * @use_back_flavor: back flavor flag
  4477. * @channel_map: Custom channel map settings
  4478. *
  4479. * Returns 0 on success or error on failure
  4480. */
  4481. int q6asm_enc_cfg_blk_pcm_v2(struct audio_client *ac,
  4482. uint32_t rate, uint32_t channels, uint16_t bits_per_sample,
  4483. bool use_default_chmap, bool use_back_flavor, u8 *channel_map)
  4484. {
  4485. struct asm_multi_channel_pcm_enc_cfg_v2 enc_cfg;
  4486. u8 *channel_mapping;
  4487. u32 frames_per_buf = 0;
  4488. int rc = 0;
  4489. if (!use_default_chmap && (channel_map == NULL)) {
  4490. pr_err("%s: No valid chan map and can't use default\n",
  4491. __func__);
  4492. return -EINVAL;
  4493. }
  4494. pr_debug("%s: Session %d, rate = %d, channels = %d\n", __func__,
  4495. ac->session, rate, channels);
  4496. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4497. atomic_set(&ac->cmd_state, -1);
  4498. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4499. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4500. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4501. sizeof(enc_cfg.encdec);
  4502. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4503. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4504. sizeof(struct asm_enc_cfg_blk_param_v2);
  4505. enc_cfg.num_channels = channels;
  4506. enc_cfg.bits_per_sample = bits_per_sample;
  4507. enc_cfg.sample_rate = rate;
  4508. enc_cfg.is_signed = 1;
  4509. channel_mapping = enc_cfg.channel_mapping;
  4510. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4511. if (use_default_chmap) {
  4512. pr_debug("%s: setting default channel map for %d channels",
  4513. __func__, channels);
  4514. if (q6asm_map_channels(channel_mapping, channels,
  4515. use_back_flavor)) {
  4516. pr_err("%s: map channels failed %d\n",
  4517. __func__, channels);
  4518. return -EINVAL;
  4519. }
  4520. } else {
  4521. pr_debug("%s: Using pre-defined channel map", __func__);
  4522. memcpy(channel_mapping, channel_map,
  4523. PCM_FORMAT_MAX_NUM_CHANNEL);
  4524. }
  4525. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4526. if (rc < 0) {
  4527. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4528. rc = -EINVAL;
  4529. goto fail_cmd;
  4530. }
  4531. rc = wait_event_timeout(ac->cmd_wait,
  4532. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4533. if (!rc) {
  4534. pr_err("%s: timeout opcode[0x%x]\n",
  4535. __func__, enc_cfg.hdr.opcode);
  4536. rc = -ETIMEDOUT;
  4537. goto fail_cmd;
  4538. }
  4539. if (atomic_read(&ac->cmd_state) > 0) {
  4540. pr_err("%s: DSP returned error[%s]\n",
  4541. __func__, adsp_err_get_err_str(
  4542. atomic_read(&ac->cmd_state)));
  4543. rc = adsp_err_get_lnx_err_code(
  4544. atomic_read(&ac->cmd_state));
  4545. goto fail_cmd;
  4546. }
  4547. return 0;
  4548. fail_cmd:
  4549. return rc;
  4550. }
  4551. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v2);
  4552. static int __q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  4553. uint32_t rate, uint32_t channels,
  4554. uint16_t bits_per_sample,
  4555. uint16_t sample_word_size,
  4556. uint16_t endianness,
  4557. uint16_t mode)
  4558. {
  4559. return q6asm_enc_cfg_blk_pcm_v4(ac, rate, channels,
  4560. bits_per_sample, true, false, NULL,
  4561. sample_word_size, endianness, mode);
  4562. }
  4563. static int __q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  4564. uint32_t rate, uint32_t channels,
  4565. uint16_t bits_per_sample,
  4566. uint16_t sample_word_size)
  4567. {
  4568. return q6asm_enc_cfg_blk_pcm_v3(ac, rate, channels,
  4569. bits_per_sample, true, false, NULL,
  4570. sample_word_size);
  4571. }
  4572. static int __q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  4573. uint32_t rate, uint32_t channels, uint16_t bits_per_sample)
  4574. {
  4575. return q6asm_enc_cfg_blk_pcm_v2(ac, rate, channels,
  4576. bits_per_sample, true, false, NULL);
  4577. }
  4578. /**
  4579. * q6asm_enc_cfg_blk_pcm -
  4580. * command to set encode config block for pcm
  4581. *
  4582. * @ac: Audio client handle
  4583. * @rate: sample rate
  4584. * @channels: number of channels
  4585. *
  4586. * Returns 0 on success or error on failure
  4587. */
  4588. int q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  4589. uint32_t rate, uint32_t channels)
  4590. {
  4591. return __q6asm_enc_cfg_blk_pcm(ac, rate, channels, 16);
  4592. }
  4593. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm);
  4594. int q6asm_enc_cfg_blk_pcm_format_support(struct audio_client *ac,
  4595. uint32_t rate, uint32_t channels, uint16_t bits_per_sample)
  4596. {
  4597. return __q6asm_enc_cfg_blk_pcm(ac, rate, channels, bits_per_sample);
  4598. }
  4599. /*
  4600. * q6asm_enc_cfg_blk_pcm_format_support_v3 - sends encoder configuration
  4601. * parameters
  4602. *
  4603. * @ac: Client session handle
  4604. * @rate: sample rate
  4605. * @channels: number of channels
  4606. * @bits_per_sample: bit width of encoder session
  4607. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4608. */
  4609. int q6asm_enc_cfg_blk_pcm_format_support_v3(struct audio_client *ac,
  4610. uint32_t rate, uint32_t channels,
  4611. uint16_t bits_per_sample,
  4612. uint16_t sample_word_size)
  4613. {
  4614. return __q6asm_enc_cfg_blk_pcm_v3(ac, rate, channels,
  4615. bits_per_sample, sample_word_size);
  4616. }
  4617. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v3);
  4618. /*
  4619. * q6asm_enc_cfg_blk_pcm_format_support_v4 - sends encoder configuration
  4620. * parameters
  4621. *
  4622. * @ac: Client session handle
  4623. * @rate: sample rate
  4624. * @channels: number of channels
  4625. * @bits_per_sample: bit width of encoder session
  4626. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4627. * @endianness: endianness of the pcm data
  4628. * @mode: Mode to provide additional info about the pcm input data
  4629. */
  4630. int q6asm_enc_cfg_blk_pcm_format_support_v4(struct audio_client *ac,
  4631. uint32_t rate, uint32_t channels,
  4632. uint16_t bits_per_sample,
  4633. uint16_t sample_word_size,
  4634. uint16_t endianness,
  4635. uint16_t mode)
  4636. {
  4637. return __q6asm_enc_cfg_blk_pcm_v4(ac, rate, channels,
  4638. bits_per_sample, sample_word_size,
  4639. endianness, mode);
  4640. }
  4641. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v4);
  4642. /**
  4643. * q6asm_enc_cfg_blk_pcm_native -
  4644. * command to set encode config block for pcm_native
  4645. *
  4646. * @ac: Audio client handle
  4647. * @rate: sample rate
  4648. * @channels: number of channels
  4649. *
  4650. * Returns 0 on success or error on failure
  4651. */
  4652. int q6asm_enc_cfg_blk_pcm_native(struct audio_client *ac,
  4653. uint32_t rate, uint32_t channels)
  4654. {
  4655. struct asm_multi_channel_pcm_enc_cfg_v2 enc_cfg;
  4656. u8 *channel_mapping;
  4657. u32 frames_per_buf = 0;
  4658. int rc = 0;
  4659. pr_debug("%s: Session %d, rate = %d, channels = %d\n", __func__,
  4660. ac->session, rate, channels);
  4661. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4662. atomic_set(&ac->cmd_state, -1);
  4663. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4664. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4665. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4666. sizeof(enc_cfg.encdec);
  4667. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4668. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4669. sizeof(struct asm_enc_cfg_blk_param_v2);
  4670. enc_cfg.num_channels = 0;/*channels;*/
  4671. enc_cfg.bits_per_sample = 16;
  4672. enc_cfg.sample_rate = 0;/*rate;*/
  4673. enc_cfg.is_signed = 1;
  4674. channel_mapping = enc_cfg.channel_mapping;
  4675. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4676. if (q6asm_map_channels(channel_mapping, channels, false)) {
  4677. pr_err("%s: map channels failed %d\n", __func__, channels);
  4678. return -EINVAL;
  4679. }
  4680. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4681. if (rc < 0) {
  4682. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4683. rc = -EINVAL;
  4684. goto fail_cmd;
  4685. }
  4686. rc = wait_event_timeout(ac->cmd_wait,
  4687. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4688. if (!rc) {
  4689. pr_err("%s: timeout opcode[0x%x]\n",
  4690. __func__, enc_cfg.hdr.opcode);
  4691. rc = -ETIMEDOUT;
  4692. goto fail_cmd;
  4693. }
  4694. if (atomic_read(&ac->cmd_state) > 0) {
  4695. pr_err("%s: DSP returned error[%s]\n",
  4696. __func__, adsp_err_get_err_str(
  4697. atomic_read(&ac->cmd_state)));
  4698. rc = adsp_err_get_lnx_err_code(
  4699. atomic_read(&ac->cmd_state));
  4700. goto fail_cmd;
  4701. }
  4702. return 0;
  4703. fail_cmd:
  4704. return rc;
  4705. }
  4706. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_native);
  4707. static int q6asm_map_channels(u8 *channel_mapping, uint32_t channels,
  4708. bool use_back_flavor)
  4709. {
  4710. u8 *lchannel_mapping;
  4711. lchannel_mapping = channel_mapping;
  4712. pr_debug("%s: channels passed: %d\n", __func__, channels);
  4713. if (channels == 1) {
  4714. lchannel_mapping[0] = PCM_CHANNEL_FC;
  4715. } else if (channels == 2) {
  4716. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4717. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4718. } else if (channels == 3) {
  4719. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4720. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4721. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4722. } else if (channels == 4) {
  4723. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4724. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4725. lchannel_mapping[2] = use_back_flavor ?
  4726. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  4727. lchannel_mapping[3] = use_back_flavor ?
  4728. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  4729. } else if (channels == 5) {
  4730. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4731. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4732. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4733. lchannel_mapping[3] = use_back_flavor ?
  4734. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  4735. lchannel_mapping[4] = use_back_flavor ?
  4736. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  4737. } else if (channels == 6) {
  4738. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4739. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4740. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4741. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  4742. lchannel_mapping[4] = use_back_flavor ?
  4743. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  4744. lchannel_mapping[5] = use_back_flavor ?
  4745. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  4746. } else if (channels == 7) {
  4747. /*
  4748. * Configured for 5.1 channel mapping + 1 channel for debug
  4749. * Can be customized based on DSP.
  4750. */
  4751. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4752. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4753. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4754. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  4755. lchannel_mapping[4] = use_back_flavor ?
  4756. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  4757. lchannel_mapping[5] = use_back_flavor ?
  4758. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  4759. lchannel_mapping[6] = PCM_CHANNEL_CS;
  4760. } else if (channels == 8) {
  4761. lchannel_mapping[0] = PCM_CHANNEL_FL;
  4762. lchannel_mapping[1] = PCM_CHANNEL_FR;
  4763. lchannel_mapping[2] = PCM_CHANNEL_FC;
  4764. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  4765. lchannel_mapping[4] = PCM_CHANNEL_LB;
  4766. lchannel_mapping[5] = PCM_CHANNEL_RB;
  4767. lchannel_mapping[6] = PCM_CHANNEL_LS;
  4768. lchannel_mapping[7] = PCM_CHANNEL_RS;
  4769. } else {
  4770. pr_err("%s: ERROR.unsupported num_ch = %u\n",
  4771. __func__, channels);
  4772. return -EINVAL;
  4773. }
  4774. return 0;
  4775. }
  4776. /**
  4777. * q6asm_enable_sbrps -
  4778. * command to enable sbrps for ASM
  4779. *
  4780. * @ac: Audio client handle
  4781. * @sbr_ps_enable: flag for sbr_ps enable or disable
  4782. *
  4783. * Returns 0 on success or error on failure
  4784. */
  4785. int q6asm_enable_sbrps(struct audio_client *ac,
  4786. uint32_t sbr_ps_enable)
  4787. {
  4788. struct asm_aac_sbr_ps_flag_param sbrps;
  4789. u32 frames_per_buf = 0;
  4790. int rc = 0;
  4791. pr_debug("%s: Session %d\n", __func__, ac->session);
  4792. q6asm_add_hdr(ac, &sbrps.hdr, sizeof(sbrps), TRUE);
  4793. atomic_set(&ac->cmd_state, -1);
  4794. sbrps.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4795. sbrps.encdec.param_id = ASM_PARAM_ID_AAC_SBR_PS_FLAG;
  4796. sbrps.encdec.param_size = sizeof(struct asm_aac_sbr_ps_flag_param) -
  4797. sizeof(struct asm_stream_cmd_set_encdec_param);
  4798. sbrps.encblk.frames_per_buf = frames_per_buf;
  4799. sbrps.encblk.enc_cfg_blk_size = sbrps.encdec.param_size -
  4800. sizeof(struct asm_enc_cfg_blk_param_v2);
  4801. sbrps.sbr_ps_flag = sbr_ps_enable;
  4802. rc = apr_send_pkt(ac->apr, (uint32_t *) &sbrps);
  4803. if (rc < 0) {
  4804. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  4805. __func__,
  4806. ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  4807. ASM_PARAM_ID_AAC_SBR_PS_FLAG, rc);
  4808. rc = -EINVAL;
  4809. goto fail_cmd;
  4810. }
  4811. rc = wait_event_timeout(ac->cmd_wait,
  4812. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4813. if (!rc) {
  4814. pr_err("%s: timeout opcode[0x%x] ", __func__, sbrps.hdr.opcode);
  4815. rc = -ETIMEDOUT;
  4816. goto fail_cmd;
  4817. }
  4818. if (atomic_read(&ac->cmd_state) > 0) {
  4819. pr_err("%s: DSP returned error[%s]\n",
  4820. __func__, adsp_err_get_err_str(
  4821. atomic_read(&ac->cmd_state)));
  4822. rc = adsp_err_get_lnx_err_code(
  4823. atomic_read(&ac->cmd_state));
  4824. goto fail_cmd;
  4825. }
  4826. return 0;
  4827. fail_cmd:
  4828. return rc;
  4829. }
  4830. EXPORT_SYMBOL(q6asm_enable_sbrps);
  4831. /**
  4832. * q6asm_cfg_dual_mono_aac -
  4833. * command to set config for dual mono aac
  4834. *
  4835. * @ac: Audio client handle
  4836. * @sce_left: left sce val
  4837. * @sce_right: right sce val
  4838. *
  4839. * Returns 0 on success or error on failure
  4840. */
  4841. int q6asm_cfg_dual_mono_aac(struct audio_client *ac,
  4842. uint16_t sce_left, uint16_t sce_right)
  4843. {
  4844. struct asm_aac_dual_mono_mapping_param dual_mono;
  4845. int rc = 0;
  4846. pr_debug("%s: Session %d, sce_left = %d, sce_right = %d\n",
  4847. __func__, ac->session, sce_left, sce_right);
  4848. q6asm_add_hdr(ac, &dual_mono.hdr, sizeof(dual_mono), TRUE);
  4849. atomic_set(&ac->cmd_state, -1);
  4850. dual_mono.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4851. dual_mono.encdec.param_id = ASM_PARAM_ID_AAC_DUAL_MONO_MAPPING;
  4852. dual_mono.encdec.param_size = sizeof(dual_mono.left_channel_sce) +
  4853. sizeof(dual_mono.right_channel_sce);
  4854. dual_mono.left_channel_sce = sce_left;
  4855. dual_mono.right_channel_sce = sce_right;
  4856. rc = apr_send_pkt(ac->apr, (uint32_t *) &dual_mono);
  4857. if (rc < 0) {
  4858. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  4859. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  4860. ASM_PARAM_ID_AAC_DUAL_MONO_MAPPING, rc);
  4861. rc = -EINVAL;
  4862. goto fail_cmd;
  4863. }
  4864. rc = wait_event_timeout(ac->cmd_wait,
  4865. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4866. if (!rc) {
  4867. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  4868. dual_mono.hdr.opcode);
  4869. rc = -ETIMEDOUT;
  4870. goto fail_cmd;
  4871. }
  4872. if (atomic_read(&ac->cmd_state) > 0) {
  4873. pr_err("%s: DSP returned error[%s]\n",
  4874. __func__, adsp_err_get_err_str(
  4875. atomic_read(&ac->cmd_state)));
  4876. rc = adsp_err_get_lnx_err_code(
  4877. atomic_read(&ac->cmd_state));
  4878. goto fail_cmd;
  4879. }
  4880. return 0;
  4881. fail_cmd:
  4882. return rc;
  4883. }
  4884. EXPORT_SYMBOL(q6asm_cfg_dual_mono_aac);
  4885. /* Support for selecting stereo mixing coefficients for B family not done */
  4886. int q6asm_cfg_aac_sel_mix_coef(struct audio_client *ac, uint32_t mix_coeff)
  4887. {
  4888. struct asm_aac_stereo_mix_coeff_selection_param_v2 aac_mix_coeff;
  4889. int rc = 0;
  4890. q6asm_add_hdr(ac, &aac_mix_coeff.hdr, sizeof(aac_mix_coeff), TRUE);
  4891. atomic_set(&ac->cmd_state, -1);
  4892. aac_mix_coeff.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4893. aac_mix_coeff.param_id =
  4894. ASM_PARAM_ID_AAC_STEREO_MIX_COEFF_SELECTION_FLAG_V2;
  4895. aac_mix_coeff.param_size =
  4896. sizeof(struct asm_aac_stereo_mix_coeff_selection_param_v2);
  4897. aac_mix_coeff.aac_stereo_mix_coeff_flag = mix_coeff;
  4898. pr_debug("%s: mix_coeff = %u\n", __func__, mix_coeff);
  4899. rc = apr_send_pkt(ac->apr, (uint32_t *) &aac_mix_coeff);
  4900. if (rc < 0) {
  4901. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  4902. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  4903. ASM_PARAM_ID_AAC_STEREO_MIX_COEFF_SELECTION_FLAG_V2,
  4904. rc);
  4905. rc = -EINVAL;
  4906. goto fail_cmd;
  4907. }
  4908. rc = wait_event_timeout(ac->cmd_wait,
  4909. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4910. if (!rc) {
  4911. pr_err("%s: timeout opcode[0x%x]\n",
  4912. __func__, aac_mix_coeff.hdr.opcode);
  4913. rc = -ETIMEDOUT;
  4914. goto fail_cmd;
  4915. }
  4916. if (atomic_read(&ac->cmd_state) > 0) {
  4917. pr_err("%s: DSP returned error[%s]\n",
  4918. __func__, adsp_err_get_err_str(
  4919. atomic_read(&ac->cmd_state)));
  4920. rc = adsp_err_get_lnx_err_code(
  4921. atomic_read(&ac->cmd_state));
  4922. goto fail_cmd;
  4923. }
  4924. return 0;
  4925. fail_cmd:
  4926. return rc;
  4927. }
  4928. EXPORT_SYMBOL(q6asm_cfg_aac_sel_mix_coef);
  4929. /**
  4930. * q6asm_enc_cfg_blk_qcelp -
  4931. * command to set encode config block for QCELP
  4932. *
  4933. * @ac: Audio client handle
  4934. * @frames_per_buf: Number of frames per buffer
  4935. * @min_rate: Minimum Enc rate
  4936. * @max_rate: Maximum Enc rate
  4937. * reduced_rate_level: Reduced rate level
  4938. * @rate_modulation_cmd: rate modulation command
  4939. *
  4940. * Returns 0 on success or error on failure
  4941. */
  4942. int q6asm_enc_cfg_blk_qcelp(struct audio_client *ac, uint32_t frames_per_buf,
  4943. uint16_t min_rate, uint16_t max_rate,
  4944. uint16_t reduced_rate_level, uint16_t rate_modulation_cmd)
  4945. {
  4946. struct asm_v13k_enc_cfg enc_cfg;
  4947. int rc = 0;
  4948. 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",
  4949. __func__,
  4950. ac->session, frames_per_buf, min_rate, max_rate,
  4951. reduced_rate_level, rate_modulation_cmd);
  4952. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4953. atomic_set(&ac->cmd_state, -1);
  4954. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4955. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4956. enc_cfg.encdec.param_size = sizeof(struct asm_v13k_enc_cfg) -
  4957. sizeof(struct asm_stream_cmd_set_encdec_param);
  4958. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4959. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4960. sizeof(struct asm_enc_cfg_blk_param_v2);
  4961. enc_cfg.min_rate = min_rate;
  4962. enc_cfg.max_rate = max_rate;
  4963. enc_cfg.reduced_rate_cmd = reduced_rate_level;
  4964. enc_cfg.rate_mod_cmd = rate_modulation_cmd;
  4965. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4966. if (rc < 0) {
  4967. pr_err("%s: Comamnd %d failed %d\n",
  4968. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4969. rc = -EINVAL;
  4970. goto fail_cmd;
  4971. }
  4972. rc = wait_event_timeout(ac->cmd_wait,
  4973. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4974. if (!rc) {
  4975. pr_err("%s: timeout. waited for setencdec v13k resp\n",
  4976. __func__);
  4977. rc = -ETIMEDOUT;
  4978. goto fail_cmd;
  4979. }
  4980. if (atomic_read(&ac->cmd_state) > 0) {
  4981. pr_err("%s: DSP returned error[%s]\n",
  4982. __func__, adsp_err_get_err_str(
  4983. atomic_read(&ac->cmd_state)));
  4984. rc = adsp_err_get_lnx_err_code(
  4985. atomic_read(&ac->cmd_state));
  4986. goto fail_cmd;
  4987. }
  4988. return 0;
  4989. fail_cmd:
  4990. return rc;
  4991. }
  4992. EXPORT_SYMBOL(q6asm_enc_cfg_blk_qcelp);
  4993. /**
  4994. * q6asm_enc_cfg_blk_evrc -
  4995. * command to set encode config block for EVRC
  4996. *
  4997. * @ac: Audio client handle
  4998. * @frames_per_buf: Number of frames per buffer
  4999. * @min_rate: Minimum Enc rate
  5000. * @max_rate: Maximum Enc rate
  5001. * @rate_modulation_cmd: rate modulation command
  5002. *
  5003. * Returns 0 on success or error on failure
  5004. */
  5005. int q6asm_enc_cfg_blk_evrc(struct audio_client *ac, uint32_t frames_per_buf,
  5006. uint16_t min_rate, uint16_t max_rate,
  5007. uint16_t rate_modulation_cmd)
  5008. {
  5009. struct asm_evrc_enc_cfg enc_cfg;
  5010. int rc = 0;
  5011. pr_debug("%s: session[%d]frames[%d]min_rate[0x%4x]max_rate[0x%4x] rate_modulation_cmd[0x%4x]\n",
  5012. __func__, ac->session,
  5013. frames_per_buf, min_rate, max_rate, rate_modulation_cmd);
  5014. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5015. atomic_set(&ac->cmd_state, -1);
  5016. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5017. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5018. enc_cfg.encdec.param_size = sizeof(struct asm_evrc_enc_cfg) -
  5019. sizeof(struct asm_stream_cmd_set_encdec_param);
  5020. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5021. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5022. sizeof(struct asm_enc_cfg_blk_param_v2);
  5023. enc_cfg.min_rate = min_rate;
  5024. enc_cfg.max_rate = max_rate;
  5025. enc_cfg.rate_mod_cmd = rate_modulation_cmd;
  5026. enc_cfg.reserved = 0;
  5027. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5028. if (rc < 0) {
  5029. pr_err("%s: Comamnd %d failed %d\n",
  5030. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5031. rc = -EINVAL;
  5032. goto fail_cmd;
  5033. }
  5034. rc = wait_event_timeout(ac->cmd_wait,
  5035. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5036. if (!rc) {
  5037. pr_err("%s: timeout. waited for encdec evrc\n", __func__);
  5038. rc = -ETIMEDOUT;
  5039. goto fail_cmd;
  5040. }
  5041. if (atomic_read(&ac->cmd_state) > 0) {
  5042. pr_err("%s: DSP returned error[%s]\n",
  5043. __func__, adsp_err_get_err_str(
  5044. atomic_read(&ac->cmd_state)));
  5045. rc = adsp_err_get_lnx_err_code(
  5046. atomic_read(&ac->cmd_state));
  5047. goto fail_cmd;
  5048. }
  5049. return 0;
  5050. fail_cmd:
  5051. return rc;
  5052. }
  5053. EXPORT_SYMBOL(q6asm_enc_cfg_blk_evrc);
  5054. /**
  5055. * q6asm_enc_cfg_blk_amrnb -
  5056. * command to set encode config block for AMRNB
  5057. *
  5058. * @ac: Audio client handle
  5059. * @frames_per_buf: Number of frames per buffer
  5060. * @band_mode: Band mode used
  5061. * @dtx_enable: DTX en flag
  5062. *
  5063. * Returns 0 on success or error on failure
  5064. */
  5065. int q6asm_enc_cfg_blk_amrnb(struct audio_client *ac, uint32_t frames_per_buf,
  5066. uint16_t band_mode, uint16_t dtx_enable)
  5067. {
  5068. struct asm_amrnb_enc_cfg enc_cfg;
  5069. int rc = 0;
  5070. pr_debug("%s: session[%d]frames[%d]band_mode[0x%4x]dtx_enable[0x%4x]\n",
  5071. __func__, ac->session, frames_per_buf, band_mode, dtx_enable);
  5072. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5073. atomic_set(&ac->cmd_state, -1);
  5074. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5075. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5076. enc_cfg.encdec.param_size = sizeof(struct asm_amrnb_enc_cfg) -
  5077. sizeof(struct asm_stream_cmd_set_encdec_param);
  5078. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5079. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5080. sizeof(struct asm_enc_cfg_blk_param_v2);
  5081. enc_cfg.enc_mode = band_mode;
  5082. enc_cfg.dtx_mode = dtx_enable;
  5083. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5084. if (rc < 0) {
  5085. pr_err("%s: Comamnd %d failed %d\n",
  5086. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5087. rc = -EINVAL;
  5088. goto fail_cmd;
  5089. }
  5090. rc = wait_event_timeout(ac->cmd_wait,
  5091. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5092. if (!rc) {
  5093. pr_err("%s: timeout. waited for set encdec amrnb\n", __func__);
  5094. rc = -ETIMEDOUT;
  5095. goto fail_cmd;
  5096. }
  5097. if (atomic_read(&ac->cmd_state) > 0) {
  5098. pr_err("%s: DSP returned error[%s]\n",
  5099. __func__, adsp_err_get_err_str(
  5100. atomic_read(&ac->cmd_state)));
  5101. rc = adsp_err_get_lnx_err_code(
  5102. atomic_read(&ac->cmd_state));
  5103. goto fail_cmd;
  5104. }
  5105. return 0;
  5106. fail_cmd:
  5107. return rc;
  5108. }
  5109. EXPORT_SYMBOL(q6asm_enc_cfg_blk_amrnb);
  5110. /**
  5111. * q6asm_enc_cfg_blk_amrwb -
  5112. * command to set encode config block for AMRWB
  5113. *
  5114. * @ac: Audio client handle
  5115. * @frames_per_buf: Number of frames per buffer
  5116. * @band_mode: Band mode used
  5117. * @dtx_enable: DTX en flag
  5118. *
  5119. * Returns 0 on success or error on failure
  5120. */
  5121. int q6asm_enc_cfg_blk_amrwb(struct audio_client *ac, uint32_t frames_per_buf,
  5122. uint16_t band_mode, uint16_t dtx_enable)
  5123. {
  5124. struct asm_amrwb_enc_cfg enc_cfg;
  5125. int rc = 0;
  5126. pr_debug("%s: session[%d]frames[%d]band_mode[0x%4x]dtx_enable[0x%4x]\n",
  5127. __func__, ac->session, frames_per_buf, band_mode, dtx_enable);
  5128. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5129. atomic_set(&ac->cmd_state, -1);
  5130. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5131. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5132. enc_cfg.encdec.param_size = sizeof(struct asm_amrwb_enc_cfg) -
  5133. sizeof(struct asm_stream_cmd_set_encdec_param);
  5134. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5135. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5136. sizeof(struct asm_enc_cfg_blk_param_v2);
  5137. enc_cfg.enc_mode = band_mode;
  5138. enc_cfg.dtx_mode = dtx_enable;
  5139. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5140. if (rc < 0) {
  5141. pr_err("%s: Comamnd %d failed %d\n",
  5142. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5143. rc = -EINVAL;
  5144. goto fail_cmd;
  5145. }
  5146. rc = wait_event_timeout(ac->cmd_wait,
  5147. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5148. if (!rc) {
  5149. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  5150. rc = -ETIMEDOUT;
  5151. goto fail_cmd;
  5152. }
  5153. if (atomic_read(&ac->cmd_state) > 0) {
  5154. pr_err("%s: DSP returned error[%s]\n",
  5155. __func__, adsp_err_get_err_str(
  5156. atomic_read(&ac->cmd_state)));
  5157. rc = adsp_err_get_lnx_err_code(
  5158. atomic_read(&ac->cmd_state));
  5159. goto fail_cmd;
  5160. }
  5161. return 0;
  5162. fail_cmd:
  5163. return rc;
  5164. }
  5165. EXPORT_SYMBOL(q6asm_enc_cfg_blk_amrwb);
  5166. static int __q6asm_media_format_block_pcm(struct audio_client *ac,
  5167. uint32_t rate, uint32_t channels,
  5168. uint16_t bits_per_sample, int stream_id,
  5169. bool use_default_chmap, char *channel_map)
  5170. {
  5171. struct asm_multi_channel_pcm_fmt_blk_v2 fmt;
  5172. u8 *channel_mapping;
  5173. int rc = 0;
  5174. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session, rate,
  5175. channels);
  5176. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5177. atomic_set(&ac->cmd_state, -1);
  5178. /*
  5179. * Updated the token field with stream/session for compressed playback
  5180. * Platform driver must know the the stream with which the command is
  5181. * associated
  5182. */
  5183. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5184. q6asm_update_token(&fmt.hdr.token,
  5185. ac->session,
  5186. stream_id,
  5187. 0, /* Buffer index is NA */
  5188. 0, /* Direction flag is NA */
  5189. WAIT_CMD);
  5190. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5191. __func__, fmt.hdr.token, stream_id, ac->session);
  5192. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5193. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5194. sizeof(fmt.fmt_blk);
  5195. fmt.num_channels = channels;
  5196. fmt.bits_per_sample = bits_per_sample;
  5197. fmt.sample_rate = rate;
  5198. fmt.is_signed = 1;
  5199. channel_mapping = fmt.channel_mapping;
  5200. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5201. if (use_default_chmap) {
  5202. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5203. pr_err("%s: map channels failed %d\n",
  5204. __func__, channels);
  5205. return -EINVAL;
  5206. }
  5207. } else {
  5208. memcpy(channel_mapping, channel_map,
  5209. PCM_FORMAT_MAX_NUM_CHANNEL);
  5210. }
  5211. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5212. if (rc < 0) {
  5213. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5214. rc = -EINVAL;
  5215. goto fail_cmd;
  5216. }
  5217. rc = wait_event_timeout(ac->cmd_wait,
  5218. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5219. if (!rc) {
  5220. pr_err("%s: timeout. waited for format update\n", __func__);
  5221. rc = -ETIMEDOUT;
  5222. goto fail_cmd;
  5223. }
  5224. if (atomic_read(&ac->cmd_state) > 0) {
  5225. pr_err("%s: DSP returned error[%s]\n",
  5226. __func__, adsp_err_get_err_str(
  5227. atomic_read(&ac->cmd_state)));
  5228. rc = adsp_err_get_lnx_err_code(
  5229. atomic_read(&ac->cmd_state));
  5230. goto fail_cmd;
  5231. }
  5232. return 0;
  5233. fail_cmd:
  5234. return rc;
  5235. }
  5236. static int __q6asm_media_format_block_pcm_v3(struct audio_client *ac,
  5237. uint32_t rate, uint32_t channels,
  5238. uint16_t bits_per_sample,
  5239. int stream_id,
  5240. bool use_default_chmap,
  5241. char *channel_map,
  5242. uint16_t sample_word_size)
  5243. {
  5244. struct asm_multi_channel_pcm_fmt_blk_param_v3 fmt;
  5245. u8 *channel_mapping;
  5246. int rc;
  5247. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5248. ac->session, rate, channels,
  5249. bits_per_sample, sample_word_size);
  5250. memset(&fmt, 0, sizeof(fmt));
  5251. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5252. atomic_set(&ac->cmd_state, -1);
  5253. /*
  5254. * Updated the token field with stream/session for compressed playback
  5255. * Platform driver must know the the stream with which the command is
  5256. * associated
  5257. */
  5258. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5259. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5260. (stream_id & 0xFF);
  5261. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5262. __func__, fmt.hdr.token, stream_id, ac->session);
  5263. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5264. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5265. sizeof(fmt.fmt_blk);
  5266. fmt.param.num_channels = channels;
  5267. fmt.param.bits_per_sample = bits_per_sample;
  5268. fmt.param.sample_rate = rate;
  5269. fmt.param.is_signed = 1;
  5270. fmt.param.sample_word_size = sample_word_size;
  5271. channel_mapping = fmt.param.channel_mapping;
  5272. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5273. if (use_default_chmap) {
  5274. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5275. pr_err("%s: map channels failed %d\n",
  5276. __func__, channels);
  5277. rc = -EINVAL;
  5278. goto fail_cmd;
  5279. }
  5280. } else {
  5281. memcpy(channel_mapping, channel_map,
  5282. PCM_FORMAT_MAX_NUM_CHANNEL);
  5283. }
  5284. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5285. if (rc < 0) {
  5286. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5287. rc = -EINVAL;
  5288. goto fail_cmd;
  5289. }
  5290. rc = wait_event_timeout(ac->cmd_wait,
  5291. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5292. if (!rc) {
  5293. pr_err("%s: timeout. waited for format update\n", __func__);
  5294. rc = -ETIMEDOUT;
  5295. goto fail_cmd;
  5296. }
  5297. if (atomic_read(&ac->cmd_state) > 0) {
  5298. pr_err("%s: DSP returned error[%s]\n",
  5299. __func__, adsp_err_get_err_str(
  5300. atomic_read(&ac->cmd_state)));
  5301. rc = adsp_err_get_lnx_err_code(
  5302. atomic_read(&ac->cmd_state));
  5303. goto fail_cmd;
  5304. }
  5305. return 0;
  5306. fail_cmd:
  5307. return rc;
  5308. }
  5309. static int __q6asm_media_format_block_pcm_v4(struct audio_client *ac,
  5310. uint32_t rate, uint32_t channels,
  5311. uint16_t bits_per_sample,
  5312. int stream_id,
  5313. bool use_default_chmap,
  5314. char *channel_map,
  5315. uint16_t sample_word_size,
  5316. uint16_t endianness,
  5317. uint16_t mode)
  5318. {
  5319. struct asm_multi_channel_pcm_fmt_blk_param_v4 fmt;
  5320. u8 *channel_mapping;
  5321. int rc;
  5322. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5323. ac->session, rate, channels,
  5324. bits_per_sample, sample_word_size);
  5325. memset(&fmt, 0, sizeof(fmt));
  5326. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5327. atomic_set(&ac->cmd_state, -1);
  5328. /*
  5329. * Updated the token field with stream/session for compressed playback
  5330. * Platform driver must know the the stream with which the command is
  5331. * associated
  5332. */
  5333. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5334. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5335. (stream_id & 0xFF);
  5336. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5337. __func__, fmt.hdr.token, stream_id, ac->session);
  5338. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5339. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5340. sizeof(fmt.fmt_blk);
  5341. fmt.param.num_channels = channels;
  5342. fmt.param.bits_per_sample = bits_per_sample;
  5343. fmt.param.sample_rate = rate;
  5344. fmt.param.is_signed = 1;
  5345. fmt.param.sample_word_size = sample_word_size;
  5346. fmt.param.endianness = endianness;
  5347. fmt.param.mode = mode;
  5348. channel_mapping = fmt.param.channel_mapping;
  5349. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5350. if (use_default_chmap) {
  5351. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5352. pr_err("%s: map channels failed %d\n",
  5353. __func__, channels);
  5354. rc = -EINVAL;
  5355. goto fail_cmd;
  5356. }
  5357. } else {
  5358. memcpy(channel_mapping, channel_map,
  5359. PCM_FORMAT_MAX_NUM_CHANNEL);
  5360. }
  5361. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5362. if (rc < 0) {
  5363. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5364. rc = -EINVAL;
  5365. goto fail_cmd;
  5366. }
  5367. rc = wait_event_timeout(ac->cmd_wait,
  5368. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5369. if (!rc) {
  5370. pr_err("%s: timeout. waited for format update\n", __func__);
  5371. rc = -ETIMEDOUT;
  5372. goto fail_cmd;
  5373. }
  5374. if (atomic_read(&ac->cmd_state) > 0) {
  5375. pr_err("%s: DSP returned error[%s]\n",
  5376. __func__, adsp_err_get_err_str(
  5377. atomic_read(&ac->cmd_state)));
  5378. rc = adsp_err_get_lnx_err_code(
  5379. atomic_read(&ac->cmd_state));
  5380. goto fail_cmd;
  5381. }
  5382. return 0;
  5383. fail_cmd:
  5384. return rc;
  5385. }
  5386. /**
  5387. * q6asm_media_format_block_pcm -
  5388. * command to set mediafmt block for PCM on ASM stream
  5389. *
  5390. * @ac: Audio client handle
  5391. * @rate: sample rate
  5392. * @channels: number of ASM channels
  5393. *
  5394. * Returns 0 on success or error on failure
  5395. */
  5396. int q6asm_media_format_block_pcm(struct audio_client *ac,
  5397. uint32_t rate, uint32_t channels)
  5398. {
  5399. return __q6asm_media_format_block_pcm(ac, rate,
  5400. channels, 16, ac->stream_id,
  5401. true, NULL);
  5402. }
  5403. EXPORT_SYMBOL(q6asm_media_format_block_pcm);
  5404. /**
  5405. * q6asm_media_format_block_pcm_format_support -
  5406. * command to set mediafmt block for PCM format support
  5407. *
  5408. * @ac: Audio client handle
  5409. * @rate: sample rate
  5410. * @channels: number of ASM channels
  5411. * @bits_per_sample: number of bits per sample
  5412. *
  5413. * Returns 0 on success or error on failure
  5414. */
  5415. int q6asm_media_format_block_pcm_format_support(struct audio_client *ac,
  5416. uint32_t rate, uint32_t channels,
  5417. uint16_t bits_per_sample)
  5418. {
  5419. return __q6asm_media_format_block_pcm(ac, rate,
  5420. channels, bits_per_sample, ac->stream_id,
  5421. true, NULL);
  5422. }
  5423. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support);
  5424. int q6asm_media_format_block_pcm_format_support_v2(struct audio_client *ac,
  5425. uint32_t rate, uint32_t channels,
  5426. uint16_t bits_per_sample, int stream_id,
  5427. bool use_default_chmap, char *channel_map)
  5428. {
  5429. if (!use_default_chmap && (channel_map == NULL)) {
  5430. pr_err("%s: No valid chan map and can't use default\n",
  5431. __func__);
  5432. return -EINVAL;
  5433. }
  5434. return __q6asm_media_format_block_pcm(ac, rate,
  5435. channels, bits_per_sample, stream_id,
  5436. use_default_chmap, channel_map);
  5437. }
  5438. /*
  5439. * q6asm_media_format_block_pcm_format_support_v3- sends pcm decoder
  5440. * configuration parameters
  5441. *
  5442. * @ac: Client session handle
  5443. * @rate: sample rate
  5444. * @channels: number of channels
  5445. * @bits_per_sample: bit width of encoder session
  5446. * @stream_id: stream id of stream to be associated with this session
  5447. * @use_default_chmap: true if default channel map to be used
  5448. * @channel_map: input channel map
  5449. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5450. */
  5451. int q6asm_media_format_block_pcm_format_support_v3(struct audio_client *ac,
  5452. uint32_t rate,
  5453. uint32_t channels,
  5454. uint16_t bits_per_sample,
  5455. int stream_id,
  5456. bool use_default_chmap,
  5457. char *channel_map,
  5458. uint16_t sample_word_size)
  5459. {
  5460. if (!use_default_chmap && (channel_map == NULL)) {
  5461. pr_err("%s: No valid chan map and can't use default\n",
  5462. __func__);
  5463. return -EINVAL;
  5464. }
  5465. return __q6asm_media_format_block_pcm_v3(ac, rate,
  5466. channels, bits_per_sample, stream_id,
  5467. use_default_chmap, channel_map,
  5468. sample_word_size);
  5469. }
  5470. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v3);
  5471. /*
  5472. * q6asm_media_format_block_pcm_format_support_v4- sends pcm decoder
  5473. * configuration parameters
  5474. *
  5475. * @ac: Client session handle
  5476. * @rate: sample rate
  5477. * @channels: number of channels
  5478. * @bits_per_sample: bit width of encoder session
  5479. * @stream_id: stream id of stream to be associated with this session
  5480. * @use_default_chmap: true if default channel map to be used
  5481. * @channel_map: input channel map
  5482. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5483. * @endianness: endianness of the pcm data
  5484. * @mode: Mode to provide additional info about the pcm input data
  5485. */
  5486. int q6asm_media_format_block_pcm_format_support_v4(struct audio_client *ac,
  5487. uint32_t rate,
  5488. uint32_t channels,
  5489. uint16_t bits_per_sample,
  5490. int stream_id,
  5491. bool use_default_chmap,
  5492. char *channel_map,
  5493. uint16_t sample_word_size,
  5494. uint16_t endianness,
  5495. uint16_t mode)
  5496. {
  5497. if (!use_default_chmap && (channel_map == NULL)) {
  5498. pr_err("%s: No valid chan map and can't use default\n",
  5499. __func__);
  5500. return -EINVAL;
  5501. }
  5502. return __q6asm_media_format_block_pcm_v4(ac, rate,
  5503. channels, bits_per_sample, stream_id,
  5504. use_default_chmap, channel_map,
  5505. sample_word_size, endianness,
  5506. mode);
  5507. }
  5508. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v4);
  5509. static int __q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  5510. uint32_t rate, uint32_t channels,
  5511. bool use_default_chmap, char *channel_map,
  5512. uint16_t bits_per_sample)
  5513. {
  5514. struct asm_multi_channel_pcm_fmt_blk_v2 fmt;
  5515. u8 *channel_mapping;
  5516. int rc = 0;
  5517. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session, rate,
  5518. channels);
  5519. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  5520. atomic_set(&ac->cmd_state, -1);
  5521. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5522. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5523. sizeof(fmt.fmt_blk);
  5524. fmt.num_channels = channels;
  5525. fmt.bits_per_sample = bits_per_sample;
  5526. fmt.sample_rate = rate;
  5527. fmt.is_signed = 1;
  5528. channel_mapping = fmt.channel_mapping;
  5529. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5530. if (use_default_chmap) {
  5531. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5532. pr_err("%s: map channels failed %d\n",
  5533. __func__, channels);
  5534. return -EINVAL;
  5535. }
  5536. } else {
  5537. memcpy(channel_mapping, channel_map,
  5538. PCM_FORMAT_MAX_NUM_CHANNEL);
  5539. }
  5540. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5541. if (rc < 0) {
  5542. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5543. rc = -EINVAL;
  5544. goto fail_cmd;
  5545. }
  5546. rc = wait_event_timeout(ac->cmd_wait,
  5547. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5548. if (!rc) {
  5549. pr_err("%s: timeout. waited for format update\n", __func__);
  5550. rc = -ETIMEDOUT;
  5551. goto fail_cmd;
  5552. }
  5553. if (atomic_read(&ac->cmd_state) > 0) {
  5554. pr_err("%s: DSP returned error[%s]\n",
  5555. __func__, adsp_err_get_err_str(
  5556. atomic_read(&ac->cmd_state)));
  5557. rc = adsp_err_get_lnx_err_code(
  5558. atomic_read(&ac->cmd_state));
  5559. goto fail_cmd;
  5560. }
  5561. return 0;
  5562. fail_cmd:
  5563. return rc;
  5564. }
  5565. static int __q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  5566. uint32_t rate,
  5567. uint32_t channels,
  5568. bool use_default_chmap,
  5569. char *channel_map,
  5570. uint16_t bits_per_sample,
  5571. uint16_t sample_word_size)
  5572. {
  5573. struct asm_multi_channel_pcm_fmt_blk_param_v3 fmt;
  5574. u8 *channel_mapping;
  5575. int rc;
  5576. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5577. ac->session, rate, channels,
  5578. bits_per_sample, sample_word_size);
  5579. memset(&fmt, 0, sizeof(fmt));
  5580. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  5581. atomic_set(&ac->cmd_state, -1);
  5582. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5583. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5584. sizeof(fmt.fmt_blk);
  5585. fmt.param.num_channels = channels;
  5586. fmt.param.bits_per_sample = bits_per_sample;
  5587. fmt.param.sample_rate = rate;
  5588. fmt.param.is_signed = 1;
  5589. fmt.param.sample_word_size = sample_word_size;
  5590. channel_mapping = fmt.param.channel_mapping;
  5591. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5592. if (use_default_chmap) {
  5593. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5594. pr_err("%s: map channels failed %d\n",
  5595. __func__, channels);
  5596. rc = -EINVAL;
  5597. goto fail_cmd;
  5598. }
  5599. } else {
  5600. memcpy(channel_mapping, channel_map,
  5601. PCM_FORMAT_MAX_NUM_CHANNEL);
  5602. }
  5603. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5604. if (rc < 0) {
  5605. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5606. goto fail_cmd;
  5607. }
  5608. rc = wait_event_timeout(ac->cmd_wait,
  5609. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5610. if (!rc) {
  5611. pr_err("%s: timeout. waited for format update\n", __func__);
  5612. rc = -ETIMEDOUT;
  5613. goto fail_cmd;
  5614. }
  5615. if (atomic_read(&ac->cmd_state) > 0) {
  5616. pr_err("%s: DSP returned error[%s]\n",
  5617. __func__, adsp_err_get_err_str(
  5618. atomic_read(&ac->cmd_state)));
  5619. rc = adsp_err_get_lnx_err_code(
  5620. atomic_read(&ac->cmd_state));
  5621. goto fail_cmd;
  5622. }
  5623. return 0;
  5624. fail_cmd:
  5625. return rc;
  5626. }
  5627. static int __q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  5628. uint32_t rate,
  5629. uint32_t channels,
  5630. bool use_default_chmap,
  5631. char *channel_map,
  5632. uint16_t bits_per_sample,
  5633. uint16_t sample_word_size,
  5634. uint16_t endianness,
  5635. uint16_t mode)
  5636. {
  5637. struct asm_multi_channel_pcm_fmt_blk_param_v4 fmt;
  5638. u8 *channel_mapping;
  5639. int rc;
  5640. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5641. ac->session, rate, channels,
  5642. bits_per_sample, sample_word_size);
  5643. memset(&fmt, 0, sizeof(fmt));
  5644. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  5645. atomic_set(&ac->cmd_state, -1);
  5646. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5647. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5648. sizeof(fmt.fmt_blk);
  5649. fmt.param.num_channels = channels;
  5650. fmt.param.bits_per_sample = bits_per_sample;
  5651. fmt.param.sample_rate = rate;
  5652. fmt.param.is_signed = 1;
  5653. fmt.param.sample_word_size = sample_word_size;
  5654. fmt.param.endianness = endianness;
  5655. fmt.param.mode = mode;
  5656. channel_mapping = fmt.param.channel_mapping;
  5657. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5658. if (use_default_chmap) {
  5659. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5660. pr_err("%s: map channels failed %d\n",
  5661. __func__, channels);
  5662. rc = -EINVAL;
  5663. goto fail_cmd;
  5664. }
  5665. } else {
  5666. memcpy(channel_mapping, channel_map,
  5667. PCM_FORMAT_MAX_NUM_CHANNEL);
  5668. }
  5669. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5670. if (rc < 0) {
  5671. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5672. goto fail_cmd;
  5673. }
  5674. rc = wait_event_timeout(ac->cmd_wait,
  5675. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5676. if (!rc) {
  5677. pr_err("%s: timeout. waited for format update\n", __func__);
  5678. rc = -ETIMEDOUT;
  5679. goto fail_cmd;
  5680. }
  5681. if (atomic_read(&ac->cmd_state) > 0) {
  5682. pr_err("%s: DSP returned error[%s]\n",
  5683. __func__, adsp_err_get_err_str(
  5684. atomic_read(&ac->cmd_state)));
  5685. rc = adsp_err_get_lnx_err_code(
  5686. atomic_read(&ac->cmd_state));
  5687. goto fail_cmd;
  5688. }
  5689. return 0;
  5690. fail_cmd:
  5691. return rc;
  5692. }
  5693. int q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  5694. uint32_t rate, uint32_t channels,
  5695. bool use_default_chmap, char *channel_map)
  5696. {
  5697. return __q6asm_media_format_block_multi_ch_pcm(ac, rate,
  5698. channels, use_default_chmap, channel_map, 16);
  5699. }
  5700. int q6asm_media_format_block_multi_ch_pcm_v2(
  5701. struct audio_client *ac,
  5702. uint32_t rate, uint32_t channels,
  5703. bool use_default_chmap, char *channel_map,
  5704. uint16_t bits_per_sample)
  5705. {
  5706. return __q6asm_media_format_block_multi_ch_pcm(ac, rate,
  5707. channels, use_default_chmap, channel_map,
  5708. bits_per_sample);
  5709. }
  5710. /*
  5711. * q6asm_media_format_block_multi_ch_pcm_v3 - sends pcm decoder configuration
  5712. * parameters
  5713. *
  5714. * @ac: Client session handle
  5715. * @rate: sample rate
  5716. * @channels: number of channels
  5717. * @bits_per_sample: bit width of encoder session
  5718. * @use_default_chmap: true if default channel map to be used
  5719. * @channel_map: input channel map
  5720. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5721. */
  5722. int q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  5723. uint32_t rate, uint32_t channels,
  5724. bool use_default_chmap,
  5725. char *channel_map,
  5726. uint16_t bits_per_sample,
  5727. uint16_t sample_word_size)
  5728. {
  5729. return __q6asm_media_format_block_multi_ch_pcm_v3(ac, rate, channels,
  5730. use_default_chmap,
  5731. channel_map,
  5732. bits_per_sample,
  5733. sample_word_size);
  5734. }
  5735. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v3);
  5736. /*
  5737. * q6asm_media_format_block_multi_ch_pcm_v4 - sends pcm decoder configuration
  5738. * parameters
  5739. *
  5740. * @ac: Client session handle
  5741. * @rate: sample rate
  5742. * @channels: number of channels
  5743. * @bits_per_sample: bit width of encoder session
  5744. * @use_default_chmap: true if default channel map to be used
  5745. * @channel_map: input channel map
  5746. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5747. * @endianness: endianness of the pcm data
  5748. * @mode: Mode to provide additional info about the pcm input data
  5749. */
  5750. int q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  5751. uint32_t rate, uint32_t channels,
  5752. bool use_default_chmap,
  5753. char *channel_map,
  5754. uint16_t bits_per_sample,
  5755. uint16_t sample_word_size,
  5756. uint16_t endianness,
  5757. uint16_t mode)
  5758. {
  5759. return __q6asm_media_format_block_multi_ch_pcm_v4(ac, rate, channels,
  5760. use_default_chmap,
  5761. channel_map,
  5762. bits_per_sample,
  5763. sample_word_size,
  5764. endianness,
  5765. mode);
  5766. }
  5767. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v4);
  5768. /*
  5769. * q6asm_media_format_block_gen_compr - set up generic compress format params
  5770. *
  5771. * @ac: Client session handle
  5772. * @rate: sample rate
  5773. * @channels: number of channels
  5774. * @use_default_chmap: true if default channel map to be used
  5775. * @channel_map: input channel map
  5776. * @bits_per_sample: bit width of gen compress stream
  5777. */
  5778. int q6asm_media_format_block_gen_compr(struct audio_client *ac,
  5779. uint32_t rate, uint32_t channels,
  5780. bool use_default_chmap, char *channel_map,
  5781. uint16_t bits_per_sample)
  5782. {
  5783. struct asm_generic_compressed_fmt_blk_t fmt;
  5784. u8 *channel_mapping;
  5785. int rc = 0;
  5786. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]\n",
  5787. __func__, ac->session, rate,
  5788. channels, bits_per_sample);
  5789. memset(&fmt, 0, sizeof(fmt));
  5790. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  5791. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5792. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5793. sizeof(fmt.fmt_blk);
  5794. fmt.num_channels = channels;
  5795. fmt.bits_per_sample = bits_per_sample;
  5796. fmt.sampling_rate = rate;
  5797. channel_mapping = fmt.channel_mapping;
  5798. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5799. if (use_default_chmap) {
  5800. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5801. pr_err("%s: map channels failed %d\n",
  5802. __func__, channels);
  5803. return -EINVAL;
  5804. }
  5805. } else {
  5806. memcpy(channel_mapping, channel_map,
  5807. PCM_FORMAT_MAX_NUM_CHANNEL);
  5808. }
  5809. atomic_set(&ac->cmd_state, -1);
  5810. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5811. if (rc < 0) {
  5812. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5813. rc = -EINVAL;
  5814. goto fail_cmd;
  5815. }
  5816. rc = wait_event_timeout(ac->cmd_wait,
  5817. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5818. if (!rc) {
  5819. pr_err("%s: timeout. waited for format update\n", __func__);
  5820. rc = -ETIMEDOUT;
  5821. goto fail_cmd;
  5822. }
  5823. if (atomic_read(&ac->cmd_state) > 0) {
  5824. pr_err("%s: DSP returned error[%s]\n",
  5825. __func__, adsp_err_get_err_str(
  5826. atomic_read(&ac->cmd_state)));
  5827. rc = adsp_err_get_lnx_err_code(
  5828. atomic_read(&ac->cmd_state));
  5829. }
  5830. return 0;
  5831. fail_cmd:
  5832. return rc;
  5833. }
  5834. EXPORT_SYMBOL(q6asm_media_format_block_gen_compr);
  5835. /*
  5836. * q6asm_media_format_block_iec - set up IEC61937 (compressed) or IEC60958
  5837. * (pcm) format params. Both audio standards
  5838. * use the same format and are used for
  5839. * HDMI or SPDIF.
  5840. *
  5841. * @ac: Client session handle
  5842. * @rate: sample rate
  5843. * @channels: number of channels
  5844. */
  5845. int q6asm_media_format_block_iec(struct audio_client *ac,
  5846. uint32_t rate, uint32_t channels)
  5847. {
  5848. struct asm_iec_compressed_fmt_blk_t fmt;
  5849. int rc = 0;
  5850. pr_debug("%s: session[%d]rate[%d]ch[%d]\n",
  5851. __func__, ac->session, rate,
  5852. channels);
  5853. memset(&fmt, 0, sizeof(fmt));
  5854. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  5855. fmt.hdr.opcode = ASM_DATA_CMD_IEC_60958_MEDIA_FMT;
  5856. fmt.num_channels = channels;
  5857. fmt.sampling_rate = rate;
  5858. atomic_set(&ac->cmd_state, -1);
  5859. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5860. if (rc < 0) {
  5861. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5862. rc = -EINVAL;
  5863. goto fail_cmd;
  5864. }
  5865. rc = wait_event_timeout(ac->cmd_wait,
  5866. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5867. if (!rc) {
  5868. pr_err("%s: timeout. waited for format update\n", __func__);
  5869. rc = -ETIMEDOUT;
  5870. goto fail_cmd;
  5871. }
  5872. if (atomic_read(&ac->cmd_state) > 0) {
  5873. pr_err("%s: DSP returned error[%s]\n",
  5874. __func__, adsp_err_get_err_str(
  5875. atomic_read(&ac->cmd_state)));
  5876. rc = adsp_err_get_lnx_err_code(
  5877. atomic_read(&ac->cmd_state));
  5878. }
  5879. return 0;
  5880. fail_cmd:
  5881. return rc;
  5882. }
  5883. EXPORT_SYMBOL(q6asm_media_format_block_iec);
  5884. static int __q6asm_media_format_block_multi_aac(struct audio_client *ac,
  5885. struct asm_aac_cfg *cfg, int stream_id)
  5886. {
  5887. struct asm_aac_fmt_blk_v2 fmt;
  5888. int rc = 0;
  5889. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session,
  5890. cfg->sample_rate, cfg->ch_cfg);
  5891. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5892. atomic_set(&ac->cmd_state, -1);
  5893. /*
  5894. * Updated the token field with stream/session for compressed playback
  5895. * Platform driver must know the the stream with which the command is
  5896. * associated
  5897. */
  5898. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5899. q6asm_update_token(&fmt.hdr.token,
  5900. ac->session,
  5901. stream_id,
  5902. 0, /* Buffer index is NA */
  5903. 0, /* Direction flag is NA */
  5904. WAIT_CMD);
  5905. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5906. __func__, fmt.hdr.token, stream_id, ac->session);
  5907. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5908. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5909. sizeof(fmt.fmt_blk);
  5910. fmt.aac_fmt_flag = cfg->format;
  5911. fmt.audio_objype = cfg->aot;
  5912. /* If zero, PCE is assumed to be available in bitstream*/
  5913. fmt.total_size_of_PCE_bits = 0;
  5914. fmt.channel_config = cfg->ch_cfg;
  5915. fmt.sample_rate = cfg->sample_rate;
  5916. pr_debug("%s: format=0x%x cfg_size=%d aac-cfg=0x%x aot=%d ch=%d sr=%d\n",
  5917. __func__, fmt.aac_fmt_flag, fmt.fmt_blk.fmt_blk_size,
  5918. fmt.aac_fmt_flag,
  5919. fmt.audio_objype,
  5920. fmt.channel_config,
  5921. fmt.sample_rate);
  5922. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5923. if (rc < 0) {
  5924. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5925. rc = -EINVAL;
  5926. goto fail_cmd;
  5927. }
  5928. rc = wait_event_timeout(ac->cmd_wait,
  5929. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5930. if (!rc) {
  5931. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  5932. rc = -ETIMEDOUT;
  5933. goto fail_cmd;
  5934. }
  5935. if (atomic_read(&ac->cmd_state) > 0) {
  5936. pr_err("%s: DSP returned error[%s]\n",
  5937. __func__, adsp_err_get_err_str(
  5938. atomic_read(&ac->cmd_state)));
  5939. rc = adsp_err_get_lnx_err_code(
  5940. atomic_read(&ac->cmd_state));
  5941. goto fail_cmd;
  5942. }
  5943. return 0;
  5944. fail_cmd:
  5945. return rc;
  5946. }
  5947. /**
  5948. * q6asm_media_format_block_multi_aac -
  5949. * command to set mediafmt block for multi_aac on ASM stream
  5950. *
  5951. * @ac: Audio client handle
  5952. * @cfg: multi_aac config
  5953. *
  5954. * Returns 0 on success or error on failure
  5955. */
  5956. int q6asm_media_format_block_multi_aac(struct audio_client *ac,
  5957. struct asm_aac_cfg *cfg)
  5958. {
  5959. return __q6asm_media_format_block_multi_aac(ac, cfg, ac->stream_id);
  5960. }
  5961. EXPORT_SYMBOL(q6asm_media_format_block_multi_aac);
  5962. /**
  5963. * q6asm_media_format_block_aac -
  5964. * command to set mediafmt block for aac on ASM
  5965. *
  5966. * @ac: Audio client handle
  5967. * @cfg: aac config
  5968. *
  5969. * Returns 0 on success or error on failure
  5970. */
  5971. int q6asm_media_format_block_aac(struct audio_client *ac,
  5972. struct asm_aac_cfg *cfg)
  5973. {
  5974. return __q6asm_media_format_block_multi_aac(ac, cfg, ac->stream_id);
  5975. }
  5976. EXPORT_SYMBOL(q6asm_media_format_block_aac);
  5977. /**
  5978. * q6asm_stream_media_format_block_aac -
  5979. * command to set mediafmt block for aac on ASM stream
  5980. *
  5981. * @ac: Audio client handle
  5982. * @cfg: aac config
  5983. * @stream_id: stream ID info
  5984. *
  5985. * Returns 0 on success or error on failure
  5986. */
  5987. int q6asm_stream_media_format_block_aac(struct audio_client *ac,
  5988. struct asm_aac_cfg *cfg, int stream_id)
  5989. {
  5990. return __q6asm_media_format_block_multi_aac(ac, cfg, stream_id);
  5991. }
  5992. EXPORT_SYMBOL(q6asm_stream_media_format_block_aac);
  5993. /**
  5994. * q6asm_media_format_block_wma -
  5995. * command to set mediafmt block for wma on ASM stream
  5996. *
  5997. * @ac: Audio client handle
  5998. * @cfg: wma config
  5999. * @stream_id: stream ID info
  6000. *
  6001. * Returns 0 on success or error on failure
  6002. */
  6003. int q6asm_media_format_block_wma(struct audio_client *ac,
  6004. void *cfg, int stream_id)
  6005. {
  6006. struct asm_wmastdv9_fmt_blk_v2 fmt;
  6007. struct asm_wma_cfg *wma_cfg = (struct asm_wma_cfg *)cfg;
  6008. int rc = 0;
  6009. 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",
  6010. ac->session, wma_cfg->format_tag, wma_cfg->sample_rate,
  6011. wma_cfg->ch_cfg, wma_cfg->avg_bytes_per_sec,
  6012. wma_cfg->block_align, wma_cfg->valid_bits_per_sample,
  6013. wma_cfg->ch_mask, wma_cfg->encode_opt);
  6014. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6015. atomic_set(&ac->cmd_state, -1);
  6016. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6017. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6018. sizeof(fmt.fmtblk);
  6019. fmt.fmtag = wma_cfg->format_tag;
  6020. fmt.num_channels = wma_cfg->ch_cfg;
  6021. fmt.sample_rate = wma_cfg->sample_rate;
  6022. fmt.avg_bytes_per_sec = wma_cfg->avg_bytes_per_sec;
  6023. fmt.blk_align = wma_cfg->block_align;
  6024. fmt.bits_per_sample =
  6025. wma_cfg->valid_bits_per_sample;
  6026. fmt.channel_mask = wma_cfg->ch_mask;
  6027. fmt.enc_options = wma_cfg->encode_opt;
  6028. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6029. if (rc < 0) {
  6030. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6031. rc = -EINVAL;
  6032. goto fail_cmd;
  6033. }
  6034. rc = wait_event_timeout(ac->cmd_wait,
  6035. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6036. if (!rc) {
  6037. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6038. rc = -ETIMEDOUT;
  6039. goto fail_cmd;
  6040. }
  6041. if (atomic_read(&ac->cmd_state) > 0) {
  6042. pr_err("%s: DSP returned error[%s]\n",
  6043. __func__, adsp_err_get_err_str(
  6044. atomic_read(&ac->cmd_state)));
  6045. rc = adsp_err_get_lnx_err_code(
  6046. atomic_read(&ac->cmd_state));
  6047. goto fail_cmd;
  6048. }
  6049. return 0;
  6050. fail_cmd:
  6051. return rc;
  6052. }
  6053. EXPORT_SYMBOL(q6asm_media_format_block_wma);
  6054. /**
  6055. * q6asm_media_format_block_wmapro -
  6056. * command to set mediafmt block for wmapro on ASM stream
  6057. *
  6058. * @ac: Audio client handle
  6059. * @cfg: wmapro config
  6060. * @stream_id: stream ID info
  6061. *
  6062. * Returns 0 on success or error on failure
  6063. */
  6064. int q6asm_media_format_block_wmapro(struct audio_client *ac,
  6065. void *cfg, int stream_id)
  6066. {
  6067. struct asm_wmaprov10_fmt_blk_v2 fmt;
  6068. struct asm_wmapro_cfg *wmapro_cfg = (struct asm_wmapro_cfg *)cfg;
  6069. int rc = 0;
  6070. 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",
  6071. __func__,
  6072. ac->session, wmapro_cfg->format_tag, wmapro_cfg->sample_rate,
  6073. wmapro_cfg->ch_cfg, wmapro_cfg->avg_bytes_per_sec,
  6074. wmapro_cfg->block_align, wmapro_cfg->valid_bits_per_sample,
  6075. wmapro_cfg->ch_mask, wmapro_cfg->encode_opt,
  6076. wmapro_cfg->adv_encode_opt, wmapro_cfg->adv_encode_opt2);
  6077. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6078. atomic_set(&ac->cmd_state, -1);
  6079. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6080. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6081. sizeof(fmt.fmtblk);
  6082. fmt.fmtag = wmapro_cfg->format_tag;
  6083. fmt.num_channels = wmapro_cfg->ch_cfg;
  6084. fmt.sample_rate = wmapro_cfg->sample_rate;
  6085. fmt.avg_bytes_per_sec =
  6086. wmapro_cfg->avg_bytes_per_sec;
  6087. fmt.blk_align = wmapro_cfg->block_align;
  6088. fmt.bits_per_sample = wmapro_cfg->valid_bits_per_sample;
  6089. fmt.channel_mask = wmapro_cfg->ch_mask;
  6090. fmt.enc_options = wmapro_cfg->encode_opt;
  6091. fmt.usAdvancedEncodeOpt = wmapro_cfg->adv_encode_opt;
  6092. fmt.advanced_enc_options2 = wmapro_cfg->adv_encode_opt2;
  6093. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6094. if (rc < 0) {
  6095. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6096. rc = -EINVAL;
  6097. goto fail_cmd;
  6098. }
  6099. rc = wait_event_timeout(ac->cmd_wait,
  6100. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6101. if (!rc) {
  6102. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6103. rc = -ETIMEDOUT;
  6104. goto fail_cmd;
  6105. }
  6106. if (atomic_read(&ac->cmd_state) > 0) {
  6107. pr_err("%s: DSP returned error[%s]\n",
  6108. __func__, adsp_err_get_err_str(
  6109. atomic_read(&ac->cmd_state)));
  6110. rc = adsp_err_get_lnx_err_code(
  6111. atomic_read(&ac->cmd_state));
  6112. goto fail_cmd;
  6113. }
  6114. return 0;
  6115. fail_cmd:
  6116. return rc;
  6117. }
  6118. EXPORT_SYMBOL(q6asm_media_format_block_wmapro);
  6119. /**
  6120. * q6asm_media_format_block_amrwbplus -
  6121. * command to set mediafmt block for amrwbplus on ASM stream
  6122. *
  6123. * @ac: Audio client handle
  6124. * @cfg: amrwbplus config
  6125. * @stream_id: stream ID info
  6126. *
  6127. * Returns 0 on success or error on failure
  6128. */
  6129. int q6asm_media_format_block_amrwbplus(struct audio_client *ac,
  6130. struct asm_amrwbplus_cfg *cfg)
  6131. {
  6132. struct asm_amrwbplus_fmt_blk_v2 fmt;
  6133. int rc = 0;
  6134. pr_debug("%s: session[%d]band-mode[%d]frame-fmt[%d]ch[%d]\n",
  6135. __func__,
  6136. ac->session,
  6137. cfg->amr_band_mode,
  6138. cfg->amr_frame_fmt,
  6139. cfg->num_channels);
  6140. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6141. atomic_set(&ac->cmd_state, -1);
  6142. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6143. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6144. sizeof(fmt.fmtblk);
  6145. fmt.amr_frame_fmt = cfg->amr_frame_fmt;
  6146. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6147. if (rc < 0) {
  6148. pr_err("%s: Comamnd media format update failed.. %d\n",
  6149. __func__, rc);
  6150. rc = -EINVAL;
  6151. goto fail_cmd;
  6152. }
  6153. rc = wait_event_timeout(ac->cmd_wait,
  6154. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6155. if (!rc) {
  6156. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6157. rc = -ETIMEDOUT;
  6158. goto fail_cmd;
  6159. }
  6160. if (atomic_read(&ac->cmd_state) > 0) {
  6161. pr_err("%s: DSP returned error[%s]\n",
  6162. __func__, adsp_err_get_err_str(
  6163. atomic_read(&ac->cmd_state)));
  6164. rc = adsp_err_get_lnx_err_code(
  6165. atomic_read(&ac->cmd_state));
  6166. goto fail_cmd;
  6167. }
  6168. return 0;
  6169. fail_cmd:
  6170. return rc;
  6171. }
  6172. EXPORT_SYMBOL(q6asm_media_format_block_amrwbplus);
  6173. /**
  6174. * q6asm_stream_media_format_block_flac -
  6175. * command to set mediafmt block for flac on ASM stream
  6176. *
  6177. * @ac: Audio client handle
  6178. * @cfg: FLAC config
  6179. * @stream_id: stream ID info
  6180. *
  6181. * Returns 0 on success or error on failure
  6182. */
  6183. int q6asm_stream_media_format_block_flac(struct audio_client *ac,
  6184. struct asm_flac_cfg *cfg, int stream_id)
  6185. {
  6186. struct asm_flac_fmt_blk_v2 fmt;
  6187. int rc = 0;
  6188. pr_debug("%s :session[%d] rate[%d] ch[%d] size[%d] stream_id[%d]\n",
  6189. __func__, ac->session, cfg->sample_rate, cfg->ch_cfg,
  6190. cfg->sample_size, stream_id);
  6191. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6192. atomic_set(&ac->cmd_state, -1);
  6193. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6194. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6195. sizeof(fmt.fmtblk);
  6196. fmt.is_stream_info_present = cfg->stream_info_present;
  6197. fmt.num_channels = cfg->ch_cfg;
  6198. fmt.min_blk_size = cfg->min_blk_size;
  6199. fmt.max_blk_size = cfg->max_blk_size;
  6200. fmt.sample_rate = cfg->sample_rate;
  6201. fmt.min_frame_size = cfg->min_frame_size;
  6202. fmt.max_frame_size = cfg->max_frame_size;
  6203. fmt.sample_size = cfg->sample_size;
  6204. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6205. if (rc < 0) {
  6206. pr_err("%s :Comamnd media format update failed %d\n",
  6207. __func__, rc);
  6208. goto fail_cmd;
  6209. }
  6210. rc = wait_event_timeout(ac->cmd_wait,
  6211. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6212. if (!rc) {
  6213. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6214. rc = -ETIMEDOUT;
  6215. goto fail_cmd;
  6216. }
  6217. if (atomic_read(&ac->cmd_state) > 0) {
  6218. pr_err("%s: DSP returned error[%s]\n",
  6219. __func__, adsp_err_get_err_str(
  6220. atomic_read(&ac->cmd_state)));
  6221. rc = adsp_err_get_lnx_err_code(
  6222. atomic_read(&ac->cmd_state));
  6223. goto fail_cmd;
  6224. }
  6225. return 0;
  6226. fail_cmd:
  6227. return rc;
  6228. }
  6229. EXPORT_SYMBOL(q6asm_stream_media_format_block_flac);
  6230. /**
  6231. * q6asm_media_format_block_alac -
  6232. * command to set mediafmt block for alac on ASM stream
  6233. *
  6234. * @ac: Audio client handle
  6235. * @cfg: ALAC config
  6236. * @stream_id: stream ID info
  6237. *
  6238. * Returns 0 on success or error on failure
  6239. */
  6240. int q6asm_media_format_block_alac(struct audio_client *ac,
  6241. struct asm_alac_cfg *cfg, int stream_id)
  6242. {
  6243. struct asm_alac_fmt_blk_v2 fmt;
  6244. int rc = 0;
  6245. pr_debug("%s :session[%d]rate[%d]ch[%d]\n", __func__,
  6246. ac->session, cfg->sample_rate, cfg->num_channels);
  6247. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6248. atomic_set(&ac->cmd_state, -1);
  6249. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6250. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6251. sizeof(fmt.fmtblk);
  6252. fmt.frame_length = cfg->frame_length;
  6253. fmt.compatible_version = cfg->compatible_version;
  6254. fmt.bit_depth = cfg->bit_depth;
  6255. fmt.pb = cfg->pb;
  6256. fmt.mb = cfg->mb;
  6257. fmt.kb = cfg->kb;
  6258. fmt.num_channels = cfg->num_channels;
  6259. fmt.max_run = cfg->max_run;
  6260. fmt.max_frame_bytes = cfg->max_frame_bytes;
  6261. fmt.avg_bit_rate = cfg->avg_bit_rate;
  6262. fmt.sample_rate = cfg->sample_rate;
  6263. fmt.channel_layout_tag = cfg->channel_layout_tag;
  6264. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6265. if (rc < 0) {
  6266. pr_err("%s :Comamnd media format update failed %d\n",
  6267. __func__, rc);
  6268. goto fail_cmd;
  6269. }
  6270. rc = wait_event_timeout(ac->cmd_wait,
  6271. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6272. if (!rc) {
  6273. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6274. rc = -ETIMEDOUT;
  6275. goto fail_cmd;
  6276. }
  6277. if (atomic_read(&ac->cmd_state) > 0) {
  6278. pr_err("%s: DSP returned error[%s]\n",
  6279. __func__, adsp_err_get_err_str(
  6280. atomic_read(&ac->cmd_state)));
  6281. rc = adsp_err_get_lnx_err_code(
  6282. atomic_read(&ac->cmd_state));
  6283. goto fail_cmd;
  6284. }
  6285. return 0;
  6286. fail_cmd:
  6287. return rc;
  6288. }
  6289. EXPORT_SYMBOL(q6asm_media_format_block_alac);
  6290. /*
  6291. * q6asm_media_format_block_g711 - sends g711 decoder configuration
  6292. * parameters
  6293. * @ac: Client session handle
  6294. * @cfg: Audio stream manager configuration parameters
  6295. * @stream_id: Stream id
  6296. */
  6297. int q6asm_media_format_block_g711(struct audio_client *ac,
  6298. struct asm_g711_dec_cfg *cfg, int stream_id)
  6299. {
  6300. struct asm_g711_dec_fmt_blk_v2 fmt;
  6301. int rc = 0;
  6302. if (!ac) {
  6303. pr_err("%s: audio client is null\n", __func__);
  6304. return -EINVAL;
  6305. }
  6306. if (!cfg) {
  6307. pr_err("%s: Invalid ASM config\n", __func__);
  6308. return -EINVAL;
  6309. }
  6310. if (stream_id <= 0) {
  6311. pr_err("%s: Invalid stream id\n", __func__);
  6312. return -EINVAL;
  6313. }
  6314. pr_debug("%s :session[%d]rate[%d]\n", __func__,
  6315. ac->session, cfg->sample_rate);
  6316. memset(&fmt, 0, sizeof(struct asm_g711_dec_fmt_blk_v2));
  6317. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6318. atomic_set(&ac->cmd_state, -1);
  6319. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6320. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6321. sizeof(fmt.fmtblk);
  6322. fmt.sample_rate = cfg->sample_rate;
  6323. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6324. if (rc < 0) {
  6325. pr_err("%s :Command media format update failed %d\n",
  6326. __func__, rc);
  6327. goto fail_cmd;
  6328. }
  6329. rc = wait_event_timeout(ac->cmd_wait,
  6330. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6331. if (!rc) {
  6332. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6333. rc = -ETIMEDOUT;
  6334. goto fail_cmd;
  6335. }
  6336. if (atomic_read(&ac->cmd_state) > 0) {
  6337. pr_err("%s: DSP returned error[%s]\n",
  6338. __func__, adsp_err_get_err_str(
  6339. atomic_read(&ac->cmd_state)));
  6340. rc = adsp_err_get_lnx_err_code(
  6341. atomic_read(&ac->cmd_state));
  6342. goto fail_cmd;
  6343. }
  6344. return 0;
  6345. fail_cmd:
  6346. return rc;
  6347. }
  6348. EXPORT_SYMBOL(q6asm_media_format_block_g711);
  6349. /**
  6350. * q6asm_stream_media_format_block_vorbis -
  6351. * command to set mediafmt block for vorbis on ASM stream
  6352. *
  6353. * @ac: Audio client handle
  6354. * @cfg: vorbis config
  6355. * @stream_id: stream ID info
  6356. *
  6357. * Returns 0 on success or error on failure
  6358. */
  6359. int q6asm_stream_media_format_block_vorbis(struct audio_client *ac,
  6360. struct asm_vorbis_cfg *cfg, int stream_id)
  6361. {
  6362. struct asm_vorbis_fmt_blk_v2 fmt;
  6363. int rc = 0;
  6364. pr_debug("%s :session[%d] bit_stream_fmt[%d] stream_id[%d]\n",
  6365. __func__, ac->session, cfg->bit_stream_fmt, stream_id);
  6366. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6367. atomic_set(&ac->cmd_state, -1);
  6368. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6369. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6370. sizeof(fmt.fmtblk);
  6371. fmt.bit_stream_fmt = cfg->bit_stream_fmt;
  6372. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6373. if (rc < 0) {
  6374. pr_err("%s :Comamnd media format update failed %d\n",
  6375. __func__, rc);
  6376. goto fail_cmd;
  6377. }
  6378. rc = wait_event_timeout(ac->cmd_wait,
  6379. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6380. if (!rc) {
  6381. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6382. rc = -ETIMEDOUT;
  6383. goto fail_cmd;
  6384. }
  6385. if (atomic_read(&ac->cmd_state) > 0) {
  6386. pr_err("%s: DSP returned error[%s]\n",
  6387. __func__, adsp_err_get_err_str(
  6388. atomic_read(&ac->cmd_state)));
  6389. rc = adsp_err_get_lnx_err_code(
  6390. atomic_read(&ac->cmd_state));
  6391. goto fail_cmd;
  6392. }
  6393. return 0;
  6394. fail_cmd:
  6395. return rc;
  6396. }
  6397. EXPORT_SYMBOL(q6asm_stream_media_format_block_vorbis);
  6398. /**
  6399. * q6asm_media_format_block_ape -
  6400. * command to set mediafmt block for APE on ASM stream
  6401. *
  6402. * @ac: Audio client handle
  6403. * @cfg: APE config
  6404. * @stream_id: stream ID info
  6405. *
  6406. * Returns 0 on success or error on failure
  6407. */
  6408. int q6asm_media_format_block_ape(struct audio_client *ac,
  6409. struct asm_ape_cfg *cfg, int stream_id)
  6410. {
  6411. struct asm_ape_fmt_blk_v2 fmt;
  6412. int rc = 0;
  6413. pr_debug("%s :session[%d]rate[%d]ch[%d]\n", __func__,
  6414. ac->session, cfg->sample_rate, cfg->num_channels);
  6415. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6416. atomic_set(&ac->cmd_state, -1);
  6417. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6418. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6419. sizeof(fmt.fmtblk);
  6420. fmt.compatible_version = cfg->compatible_version;
  6421. fmt.compression_level = cfg->compression_level;
  6422. fmt.format_flags = cfg->format_flags;
  6423. fmt.blocks_per_frame = cfg->blocks_per_frame;
  6424. fmt.final_frame_blocks = cfg->final_frame_blocks;
  6425. fmt.total_frames = cfg->total_frames;
  6426. fmt.bits_per_sample = cfg->bits_per_sample;
  6427. fmt.num_channels = cfg->num_channels;
  6428. fmt.sample_rate = cfg->sample_rate;
  6429. fmt.seek_table_present = cfg->seek_table_present;
  6430. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6431. if (rc < 0) {
  6432. pr_err("%s :Comamnd media format update failed %d\n",
  6433. __func__, rc);
  6434. goto fail_cmd;
  6435. }
  6436. rc = wait_event_timeout(ac->cmd_wait,
  6437. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6438. if (!rc) {
  6439. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6440. rc = -ETIMEDOUT;
  6441. goto fail_cmd;
  6442. }
  6443. if (atomic_read(&ac->cmd_state) > 0) {
  6444. pr_err("%s: DSP returned error[%s]\n",
  6445. __func__, adsp_err_get_err_str(
  6446. atomic_read(&ac->cmd_state)));
  6447. rc = adsp_err_get_lnx_err_code(
  6448. atomic_read(&ac->cmd_state));
  6449. goto fail_cmd;
  6450. }
  6451. return 0;
  6452. fail_cmd:
  6453. return rc;
  6454. }
  6455. EXPORT_SYMBOL(q6asm_media_format_block_ape);
  6456. /*
  6457. * q6asm_media_format_block_dsd- Sends DSD Decoder
  6458. * configuration parameters
  6459. *
  6460. * @ac: Client session handle
  6461. * @cfg: DSD Media Format Configuration.
  6462. * @stream_id: stream id of stream to be associated with this session
  6463. *
  6464. * Return 0 on success or negative error code on failure
  6465. */
  6466. int q6asm_media_format_block_dsd(struct audio_client *ac,
  6467. struct asm_dsd_cfg *cfg, int stream_id)
  6468. {
  6469. struct asm_dsd_fmt_blk_v2 fmt;
  6470. int rc;
  6471. pr_debug("%s: session[%d] data_rate[%d] ch[%d]\n", __func__,
  6472. ac->session, cfg->dsd_data_rate, cfg->num_channels);
  6473. memset(&fmt, 0, sizeof(fmt));
  6474. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6475. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6476. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6477. sizeof(fmt.fmtblk);
  6478. fmt.num_version = cfg->num_version;
  6479. fmt.is_bitwise_big_endian = cfg->is_bitwise_big_endian;
  6480. fmt.dsd_channel_block_size = cfg->dsd_channel_block_size;
  6481. fmt.num_channels = cfg->num_channels;
  6482. fmt.dsd_data_rate = cfg->dsd_data_rate;
  6483. atomic_set(&ac->cmd_state, -1);
  6484. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6485. if (rc < 0) {
  6486. pr_err("%s: Command DSD media format update failed, err: %d\n",
  6487. __func__, rc);
  6488. goto done;
  6489. }
  6490. rc = wait_event_timeout(ac->cmd_wait,
  6491. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6492. if (!rc) {
  6493. pr_err("%s: timeout. waited for DSD FORMAT_UPDATE\n", __func__);
  6494. rc = -ETIMEDOUT;
  6495. goto done;
  6496. }
  6497. if (atomic_read(&ac->cmd_state) > 0) {
  6498. pr_err("%s: DSP returned error[%s]\n",
  6499. __func__, adsp_err_get_err_str(
  6500. atomic_read(&ac->cmd_state)));
  6501. rc = adsp_err_get_lnx_err_code(
  6502. atomic_read(&ac->cmd_state));
  6503. goto done;
  6504. }
  6505. return 0;
  6506. done:
  6507. return rc;
  6508. }
  6509. EXPORT_SYMBOL(q6asm_media_format_block_dsd);
  6510. /**
  6511. * q6asm_stream_media_format_block_aptx_dec -
  6512. * command to set mediafmt block for APTX dec on ASM stream
  6513. *
  6514. * @ac: Audio client handle
  6515. * @srate: sample rate
  6516. * @stream_id: stream ID info
  6517. *
  6518. * Returns 0 on success or error on failure
  6519. */
  6520. int q6asm_stream_media_format_block_aptx_dec(struct audio_client *ac,
  6521. uint32_t srate, int stream_id)
  6522. {
  6523. struct asm_aptx_dec_fmt_blk_v2 aptx_fmt;
  6524. int rc = 0;
  6525. if (!ac->session) {
  6526. pr_err("%s: ac session invalid\n", __func__);
  6527. rc = -EINVAL;
  6528. goto fail_cmd;
  6529. }
  6530. pr_debug("%s :session[%d] rate[%d] stream_id[%d]\n",
  6531. __func__, ac->session, srate, stream_id);
  6532. q6asm_stream_add_hdr(ac, &aptx_fmt.hdr, sizeof(aptx_fmt), TRUE,
  6533. stream_id);
  6534. atomic_set(&ac->cmd_state, -1);
  6535. aptx_fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6536. aptx_fmt.fmtblk.fmt_blk_size = sizeof(aptx_fmt) - sizeof(aptx_fmt.hdr) -
  6537. sizeof(aptx_fmt.fmtblk);
  6538. aptx_fmt.sample_rate = srate;
  6539. rc = apr_send_pkt(ac->apr, (uint32_t *) &aptx_fmt);
  6540. if (rc < 0) {
  6541. pr_err("%s :Comamnd media format update failed %d\n",
  6542. __func__, rc);
  6543. goto fail_cmd;
  6544. }
  6545. rc = wait_event_timeout(ac->cmd_wait,
  6546. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6547. if (!rc) {
  6548. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6549. rc = -ETIMEDOUT;
  6550. goto fail_cmd;
  6551. }
  6552. if (atomic_read(&ac->cmd_state) > 0) {
  6553. pr_err("%s: DSP returned error[%s]\n",
  6554. __func__, adsp_err_get_err_str(
  6555. atomic_read(&ac->cmd_state)));
  6556. rc = adsp_err_get_lnx_err_code(
  6557. atomic_read(&ac->cmd_state));
  6558. goto fail_cmd;
  6559. }
  6560. rc = 0;
  6561. fail_cmd:
  6562. return rc;
  6563. }
  6564. EXPORT_SYMBOL(q6asm_stream_media_format_block_aptx_dec);
  6565. static int __q6asm_ds1_set_endp_params(struct audio_client *ac, int param_id,
  6566. int param_value, int stream_id)
  6567. {
  6568. struct asm_dec_ddp_endp_param_v2 ddp_cfg;
  6569. int rc = 0;
  6570. pr_debug("%s: session[%d] stream[%d],param_id[%d]param_value[%d]",
  6571. __func__, ac->session, stream_id, param_id, param_value);
  6572. q6asm_stream_add_hdr(ac, &ddp_cfg.hdr, sizeof(ddp_cfg), TRUE,
  6573. stream_id);
  6574. atomic_set(&ac->cmd_state, -1);
  6575. /*
  6576. * Updated the token field with stream/session for compressed playback
  6577. * Platform driver must know the stream with which the command is
  6578. * associated
  6579. */
  6580. if (ac->io_mode & COMPRESSED_STREAM_IO)
  6581. q6asm_update_token(&ddp_cfg.hdr.token,
  6582. ac->session,
  6583. stream_id,
  6584. 0, /* Buffer index is NA */
  6585. 0, /* Direction flag is NA */
  6586. WAIT_CMD);
  6587. ddp_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  6588. ddp_cfg.encdec.param_id = param_id;
  6589. ddp_cfg.encdec.param_size = sizeof(struct asm_dec_ddp_endp_param_v2) -
  6590. (sizeof(struct apr_hdr) +
  6591. sizeof(struct asm_stream_cmd_set_encdec_param));
  6592. ddp_cfg.endp_param_value = param_value;
  6593. rc = apr_send_pkt(ac->apr, (uint32_t *) &ddp_cfg);
  6594. if (rc < 0) {
  6595. pr_err("%s: Command opcode[0x%x] failed %d\n",
  6596. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  6597. goto fail_cmd;
  6598. }
  6599. rc = wait_event_timeout(ac->cmd_wait,
  6600. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6601. if (!rc) {
  6602. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  6603. ddp_cfg.hdr.opcode);
  6604. rc = -ETIMEDOUT;
  6605. goto fail_cmd;
  6606. }
  6607. if (atomic_read(&ac->cmd_state) > 0) {
  6608. pr_err("%s: DSP returned error[%s]\n",
  6609. __func__, adsp_err_get_err_str(
  6610. atomic_read(&ac->cmd_state)));
  6611. rc = adsp_err_get_lnx_err_code(
  6612. atomic_read(&ac->cmd_state));
  6613. goto fail_cmd;
  6614. }
  6615. return 0;
  6616. fail_cmd:
  6617. return rc;
  6618. }
  6619. /**
  6620. * q6asm_ds1_set_endp_params -
  6621. * command to set DS1 params for ASM
  6622. *
  6623. * @ac: Audio client handle
  6624. * @param_id: param id
  6625. * @param_value: value of param
  6626. *
  6627. * Returns 0 on success or error on failure
  6628. */
  6629. int q6asm_ds1_set_endp_params(struct audio_client *ac,
  6630. int param_id, int param_value)
  6631. {
  6632. return __q6asm_ds1_set_endp_params(ac, param_id, param_value,
  6633. ac->stream_id);
  6634. }
  6635. /**
  6636. * q6asm_ds1_set_stream_endp_params -
  6637. * command to set DS1 params for ASM stream
  6638. *
  6639. * @ac: Audio client handle
  6640. * @param_id: param id
  6641. * @param_value: value of param
  6642. * @stream_id: stream ID info
  6643. *
  6644. * Returns 0 on success or error on failure
  6645. */
  6646. int q6asm_ds1_set_stream_endp_params(struct audio_client *ac,
  6647. int param_id, int param_value,
  6648. int stream_id)
  6649. {
  6650. return __q6asm_ds1_set_endp_params(ac, param_id, param_value,
  6651. stream_id);
  6652. }
  6653. EXPORT_SYMBOL(q6asm_ds1_set_stream_endp_params);
  6654. /**
  6655. * q6asm_memory_map -
  6656. * command to send memory map for ASM
  6657. *
  6658. * @ac: Audio client handle
  6659. * @buf_add: buffer address to map
  6660. * @dir: RX or TX session
  6661. * @bufsz: size of each buffer
  6662. * @bufcnt: buffer count
  6663. *
  6664. * Returns 0 on success or error on failure
  6665. */
  6666. int q6asm_memory_map(struct audio_client *ac, phys_addr_t buf_add, int dir,
  6667. uint32_t bufsz, uint32_t bufcnt)
  6668. {
  6669. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  6670. struct avs_shared_map_region_payload *mregions = NULL;
  6671. struct audio_port_data *port = NULL;
  6672. void *mmap_region_cmd = NULL;
  6673. void *payload = NULL;
  6674. struct asm_buffer_node *buffer_node = NULL;
  6675. int rc = 0;
  6676. int cmd_size = 0;
  6677. if (!ac) {
  6678. pr_err("%s: APR handle NULL\n", __func__);
  6679. return -EINVAL;
  6680. }
  6681. if (ac->mmap_apr == NULL) {
  6682. pr_err("%s: mmap APR handle NULL\n", __func__);
  6683. return -EINVAL;
  6684. }
  6685. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  6686. buffer_node = kmalloc(sizeof(struct asm_buffer_node), GFP_KERNEL);
  6687. if (!buffer_node)
  6688. return -ENOMEM;
  6689. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  6690. + sizeof(struct avs_shared_map_region_payload) * bufcnt;
  6691. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  6692. if (mmap_region_cmd == NULL) {
  6693. rc = -EINVAL;
  6694. kfree(buffer_node);
  6695. return rc;
  6696. }
  6697. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)
  6698. mmap_region_cmd;
  6699. q6asm_add_mmaphdr(ac, &mmap_regions->hdr, cmd_size, dir);
  6700. atomic_set(&ac->mem_state, -1);
  6701. mmap_regions->hdr.opcode = ASM_CMD_SHARED_MEM_MAP_REGIONS;
  6702. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  6703. mmap_regions->num_regions = bufcnt & 0x00ff;
  6704. mmap_regions->property_flag = 0x00;
  6705. payload = ((u8 *) mmap_region_cmd +
  6706. sizeof(struct avs_cmd_shared_mem_map_regions));
  6707. mregions = (struct avs_shared_map_region_payload *)payload;
  6708. ac->port[dir].tmp_hdl = 0;
  6709. port = &ac->port[dir];
  6710. pr_debug("%s: buf_add 0x%pK, bufsz: %d\n", __func__,
  6711. &buf_add, bufsz);
  6712. mregions->shm_addr_lsw = lower_32_bits(buf_add);
  6713. mregions->shm_addr_msw = msm_audio_populate_upper_32_bits(buf_add);
  6714. mregions->mem_size_bytes = bufsz;
  6715. ++mregions;
  6716. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) mmap_region_cmd);
  6717. if (rc < 0) {
  6718. pr_err("%s: mmap op[0x%x]rc[%d]\n", __func__,
  6719. mmap_regions->hdr.opcode, rc);
  6720. rc = -EINVAL;
  6721. kfree(buffer_node);
  6722. goto fail_cmd;
  6723. }
  6724. rc = wait_event_timeout(ac->mem_wait,
  6725. (atomic_read(&ac->mem_state) >= 0 &&
  6726. ac->port[dir].tmp_hdl), 5*HZ);
  6727. if (!rc) {
  6728. pr_err("%s: timeout. waited for memory_map\n", __func__);
  6729. rc = -ETIMEDOUT;
  6730. kfree(buffer_node);
  6731. goto fail_cmd;
  6732. }
  6733. if (atomic_read(&ac->mem_state) > 0) {
  6734. pr_err("%s: DSP returned error[%s] for memory_map\n",
  6735. __func__, adsp_err_get_err_str(
  6736. atomic_read(&ac->mem_state)));
  6737. rc = adsp_err_get_lnx_err_code(
  6738. atomic_read(&ac->mem_state));
  6739. kfree(buffer_node);
  6740. goto fail_cmd;
  6741. }
  6742. buffer_node->buf_phys_addr = buf_add;
  6743. buffer_node->mmap_hdl = ac->port[dir].tmp_hdl;
  6744. list_add_tail(&buffer_node->list, &ac->port[dir].mem_map_handle);
  6745. ac->port[dir].tmp_hdl = 0;
  6746. rc = 0;
  6747. fail_cmd:
  6748. kfree(mmap_region_cmd);
  6749. return rc;
  6750. }
  6751. EXPORT_SYMBOL(q6asm_memory_map);
  6752. /**
  6753. * q6asm_memory_unmap -
  6754. * command to send memory unmap for ASM
  6755. *
  6756. * @ac: Audio client handle
  6757. * @buf_add: buffer address to unmap
  6758. * @dir: RX or TX session
  6759. *
  6760. * Returns 0 on success or error on failure
  6761. */
  6762. int q6asm_memory_unmap(struct audio_client *ac, phys_addr_t buf_add, int dir)
  6763. {
  6764. struct avs_cmd_shared_mem_unmap_regions mem_unmap;
  6765. struct asm_buffer_node *buf_node = NULL;
  6766. struct list_head *ptr, *next;
  6767. int rc = 0;
  6768. if (!ac) {
  6769. pr_err("%s: APR handle NULL\n", __func__);
  6770. return -EINVAL;
  6771. }
  6772. if (this_mmap.apr == NULL) {
  6773. pr_err("%s: APR handle NULL\n", __func__);
  6774. return -EINVAL;
  6775. }
  6776. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  6777. q6asm_add_mmaphdr(ac, &mem_unmap.hdr,
  6778. sizeof(struct avs_cmd_shared_mem_unmap_regions),
  6779. dir);
  6780. atomic_set(&ac->mem_state, -1);
  6781. mem_unmap.hdr.opcode = ASM_CMD_SHARED_MEM_UNMAP_REGIONS;
  6782. mem_unmap.mem_map_handle = 0;
  6783. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  6784. buf_node = list_entry(ptr, struct asm_buffer_node,
  6785. list);
  6786. if (buf_node->buf_phys_addr == buf_add) {
  6787. pr_debug("%s: Found the element\n", __func__);
  6788. mem_unmap.mem_map_handle = buf_node->mmap_hdl;
  6789. break;
  6790. }
  6791. }
  6792. pr_debug("%s: mem_unmap-mem_map_handle: 0x%x\n",
  6793. __func__, mem_unmap.mem_map_handle);
  6794. if (mem_unmap.mem_map_handle == 0) {
  6795. pr_err("%s: Do not send null mem handle to DSP\n", __func__);
  6796. rc = 0;
  6797. goto fail_cmd;
  6798. }
  6799. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) &mem_unmap);
  6800. if (rc < 0) {
  6801. pr_err("%s: mem_unmap op[0x%x]rc[%d]\n", __func__,
  6802. mem_unmap.hdr.opcode, rc);
  6803. rc = -EINVAL;
  6804. goto fail_cmd;
  6805. }
  6806. rc = wait_event_timeout(ac->mem_wait,
  6807. (atomic_read(&ac->mem_state) >= 0), 5 * HZ);
  6808. if (!rc) {
  6809. pr_err("%s: timeout. waited for memory_unmap of handle 0x%x\n",
  6810. __func__, mem_unmap.mem_map_handle);
  6811. rc = -ETIMEDOUT;
  6812. goto fail_cmd;
  6813. } else if (atomic_read(&ac->mem_state) > 0) {
  6814. pr_err("%s DSP returned error [%s] map handle 0x%x\n",
  6815. __func__, adsp_err_get_err_str(
  6816. atomic_read(&ac->mem_state)),
  6817. mem_unmap.mem_map_handle);
  6818. rc = adsp_err_get_lnx_err_code(
  6819. atomic_read(&ac->mem_state));
  6820. goto fail_cmd;
  6821. } else if (atomic_read(&ac->unmap_cb_success) == 0) {
  6822. pr_err("%s: Error in mem unmap callback of handle 0x%x\n",
  6823. __func__, mem_unmap.mem_map_handle);
  6824. rc = -EINVAL;
  6825. goto fail_cmd;
  6826. }
  6827. rc = 0;
  6828. fail_cmd:
  6829. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  6830. buf_node = list_entry(ptr, struct asm_buffer_node,
  6831. list);
  6832. if (buf_node->buf_phys_addr == buf_add) {
  6833. list_del(&buf_node->list);
  6834. kfree(buf_node);
  6835. break;
  6836. }
  6837. }
  6838. return rc;
  6839. }
  6840. EXPORT_SYMBOL(q6asm_memory_unmap);
  6841. /**
  6842. * q6asm_memory_map_regions -
  6843. * command to send memory map regions for ASM
  6844. *
  6845. * @ac: Audio client handle
  6846. * @dir: RX or TX session
  6847. * @bufsz: size of each buffer
  6848. * @bufcnt: buffer count
  6849. * @is_contiguous: alloc contiguous mem or not
  6850. *
  6851. * Returns 0 on success or error on failure
  6852. */
  6853. static int q6asm_memory_map_regions(struct audio_client *ac, int dir,
  6854. uint32_t bufsz, uint32_t bufcnt,
  6855. bool is_contiguous)
  6856. {
  6857. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  6858. struct avs_shared_map_region_payload *mregions = NULL;
  6859. struct audio_port_data *port = NULL;
  6860. struct audio_buffer *ab = NULL;
  6861. void *mmap_region_cmd = NULL;
  6862. void *payload = NULL;
  6863. struct asm_buffer_node *buffer_node = NULL;
  6864. int rc = 0;
  6865. int i = 0;
  6866. uint32_t cmd_size = 0;
  6867. uint32_t bufcnt_t;
  6868. uint32_t bufsz_t;
  6869. if (!ac) {
  6870. pr_err("%s: APR handle NULL\n", __func__);
  6871. return -EINVAL;
  6872. }
  6873. if (ac->mmap_apr == NULL) {
  6874. pr_err("%s: mmap APR handle NULL\n", __func__);
  6875. return -EINVAL;
  6876. }
  6877. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  6878. bufcnt_t = (is_contiguous) ? 1 : bufcnt;
  6879. bufsz_t = (is_contiguous) ? (bufsz * bufcnt) : bufsz;
  6880. if (is_contiguous) {
  6881. /* The size to memory map should be multiple of 4K bytes */
  6882. bufsz_t = PAGE_ALIGN(bufsz_t);
  6883. }
  6884. if (bufcnt_t > (UINT_MAX
  6885. - sizeof(struct avs_cmd_shared_mem_map_regions))
  6886. / sizeof(struct avs_shared_map_region_payload)) {
  6887. pr_err("%s: Unsigned Integer Overflow. bufcnt_t = %u\n",
  6888. __func__, bufcnt_t);
  6889. return -EINVAL;
  6890. }
  6891. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  6892. + (sizeof(struct avs_shared_map_region_payload)
  6893. * bufcnt_t);
  6894. if (bufcnt > (UINT_MAX / sizeof(struct asm_buffer_node))) {
  6895. pr_err("%s: Unsigned Integer Overflow. bufcnt = %u\n",
  6896. __func__, bufcnt);
  6897. return -EINVAL;
  6898. }
  6899. buffer_node = kzalloc(sizeof(struct asm_buffer_node) * bufcnt,
  6900. GFP_KERNEL);
  6901. if (!buffer_node)
  6902. return -ENOMEM;
  6903. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  6904. if (mmap_region_cmd == NULL) {
  6905. rc = -EINVAL;
  6906. kfree(buffer_node);
  6907. return rc;
  6908. }
  6909. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)
  6910. mmap_region_cmd;
  6911. q6asm_add_mmaphdr(ac, &mmap_regions->hdr, cmd_size, dir);
  6912. atomic_set(&ac->mem_state, -1);
  6913. pr_debug("%s: mmap_region=0x%pK token=0x%x\n", __func__,
  6914. mmap_regions, ((ac->session << 8) | dir));
  6915. mmap_regions->hdr.opcode = ASM_CMD_SHARED_MEM_MAP_REGIONS;
  6916. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  6917. mmap_regions->num_regions = bufcnt_t; /*bufcnt & 0x00ff; */
  6918. mmap_regions->property_flag = 0x00;
  6919. pr_debug("%s: map_regions->nregions = %d\n", __func__,
  6920. mmap_regions->num_regions);
  6921. payload = ((u8 *) mmap_region_cmd +
  6922. sizeof(struct avs_cmd_shared_mem_map_regions));
  6923. mregions = (struct avs_shared_map_region_payload *)payload;
  6924. ac->port[dir].tmp_hdl = 0;
  6925. port = &ac->port[dir];
  6926. for (i = 0; i < bufcnt_t; i++) {
  6927. ab = &port->buf[i];
  6928. mregions->shm_addr_lsw = lower_32_bits(ab->phys);
  6929. mregions->shm_addr_msw =
  6930. msm_audio_populate_upper_32_bits(ab->phys);
  6931. mregions->mem_size_bytes = bufsz_t;
  6932. ++mregions;
  6933. }
  6934. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) mmap_region_cmd);
  6935. if (rc < 0) {
  6936. pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
  6937. mmap_regions->hdr.opcode, rc);
  6938. rc = -EINVAL;
  6939. kfree(buffer_node);
  6940. goto fail_cmd;
  6941. }
  6942. rc = wait_event_timeout(ac->mem_wait,
  6943. (atomic_read(&ac->mem_state) >= 0 &&
  6944. ac->port[dir].tmp_hdl), 5*HZ);
  6945. if (!rc) {
  6946. pr_err("%s: timeout. waited for memory_map\n", __func__);
  6947. rc = -ETIMEDOUT;
  6948. kfree(buffer_node);
  6949. goto fail_cmd;
  6950. }
  6951. if (atomic_read(&ac->mem_state) > 0) {
  6952. pr_err("%s DSP returned error for memory_map [%s]\n",
  6953. __func__, adsp_err_get_err_str(
  6954. atomic_read(&ac->mem_state)));
  6955. rc = adsp_err_get_lnx_err_code(
  6956. atomic_read(&ac->mem_state));
  6957. kfree(buffer_node);
  6958. goto fail_cmd;
  6959. }
  6960. mutex_lock(&ac->cmd_lock);
  6961. for (i = 0; i < bufcnt; i++) {
  6962. ab = &port->buf[i];
  6963. buffer_node[i].buf_phys_addr = ab->phys;
  6964. buffer_node[i].mmap_hdl = ac->port[dir].tmp_hdl;
  6965. list_add_tail(&buffer_node[i].list,
  6966. &ac->port[dir].mem_map_handle);
  6967. pr_debug("%s: i=%d, bufadd[i] = 0x%pK, maphdl[i] = 0x%x\n",
  6968. __func__, i, &buffer_node[i].buf_phys_addr,
  6969. buffer_node[i].mmap_hdl);
  6970. }
  6971. ac->port[dir].tmp_hdl = 0;
  6972. mutex_unlock(&ac->cmd_lock);
  6973. rc = 0;
  6974. fail_cmd:
  6975. kfree(mmap_region_cmd);
  6976. return rc;
  6977. }
  6978. EXPORT_SYMBOL(q6asm_memory_map_regions);
  6979. /**
  6980. * q6asm_memory_unmap_regions -
  6981. * command to send memory unmap regions for ASM
  6982. *
  6983. * @ac: Audio client handle
  6984. * @dir: RX or TX session
  6985. *
  6986. * Returns 0 on success or error on failure
  6987. */
  6988. static int q6asm_memory_unmap_regions(struct audio_client *ac, int dir)
  6989. {
  6990. struct avs_cmd_shared_mem_unmap_regions mem_unmap;
  6991. struct audio_port_data *port = NULL;
  6992. struct asm_buffer_node *buf_node = NULL;
  6993. struct list_head *ptr, *next;
  6994. phys_addr_t buf_add;
  6995. int rc = 0;
  6996. int cmd_size = 0;
  6997. if (!ac) {
  6998. pr_err("%s: APR handle NULL\n", __func__);
  6999. return -EINVAL;
  7000. }
  7001. if (ac->mmap_apr == NULL) {
  7002. pr_err("%s: mmap APR handle NULL\n", __func__);
  7003. return -EINVAL;
  7004. }
  7005. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7006. cmd_size = sizeof(struct avs_cmd_shared_mem_unmap_regions);
  7007. q6asm_add_mmaphdr(ac, &mem_unmap.hdr, cmd_size, dir);
  7008. atomic_set(&ac->mem_state, -1);
  7009. port = &ac->port[dir];
  7010. buf_add = port->buf->phys;
  7011. mem_unmap.hdr.opcode = ASM_CMD_SHARED_MEM_UNMAP_REGIONS;
  7012. mem_unmap.mem_map_handle = 0;
  7013. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7014. buf_node = list_entry(ptr, struct asm_buffer_node,
  7015. list);
  7016. if (buf_node->buf_phys_addr == buf_add) {
  7017. pr_debug("%s: Found the element\n", __func__);
  7018. mem_unmap.mem_map_handle = buf_node->mmap_hdl;
  7019. break;
  7020. }
  7021. }
  7022. pr_debug("%s: mem_unmap-mem_map_handle: 0x%x\n",
  7023. __func__, mem_unmap.mem_map_handle);
  7024. if (mem_unmap.mem_map_handle == 0) {
  7025. pr_err("%s: Do not send null mem handle to DSP\n", __func__);
  7026. rc = 0;
  7027. goto fail_cmd;
  7028. }
  7029. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) &mem_unmap);
  7030. if (rc < 0) {
  7031. pr_err("mmap_regions op[0x%x]rc[%d]\n",
  7032. mem_unmap.hdr.opcode, rc);
  7033. goto fail_cmd;
  7034. }
  7035. rc = wait_event_timeout(ac->mem_wait,
  7036. (atomic_read(&ac->mem_state) >= 0), 5*HZ);
  7037. if (!rc) {
  7038. pr_err("%s: timeout. waited for memory_unmap of handle 0x%x\n",
  7039. __func__, mem_unmap.mem_map_handle);
  7040. rc = -ETIMEDOUT;
  7041. goto fail_cmd;
  7042. } else if (atomic_read(&ac->mem_state) > 0) {
  7043. pr_err("%s: DSP returned error[%s]\n",
  7044. __func__, adsp_err_get_err_str(
  7045. atomic_read(&ac->mem_state)));
  7046. rc = adsp_err_get_lnx_err_code(
  7047. atomic_read(&ac->mem_state));
  7048. goto fail_cmd;
  7049. } else if (atomic_read(&ac->unmap_cb_success) == 0) {
  7050. pr_err("%s: Error in mem unmap callback of handle 0x%x\n",
  7051. __func__, mem_unmap.mem_map_handle);
  7052. rc = -EINVAL;
  7053. goto fail_cmd;
  7054. }
  7055. rc = 0;
  7056. fail_cmd:
  7057. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7058. buf_node = list_entry(ptr, struct asm_buffer_node,
  7059. list);
  7060. if (buf_node->buf_phys_addr == buf_add) {
  7061. list_del(&buf_node->list);
  7062. kfree(buf_node);
  7063. break;
  7064. }
  7065. }
  7066. return rc;
  7067. }
  7068. EXPORT_SYMBOL(q6asm_memory_unmap_regions);
  7069. int q6asm_set_lrgain(struct audio_client *ac, int left_gain, int right_gain)
  7070. {
  7071. struct asm_volume_ctrl_multichannel_gain multi_ch_gain;
  7072. struct param_hdr_v3 param_info;
  7073. int rc = 0;
  7074. memset(&param_info, 0, sizeof(param_info));
  7075. memset(&multi_ch_gain, 0, sizeof(multi_ch_gain));
  7076. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7077. param_info.instance_id = INSTANCE_ID_0;
  7078. param_info.param_id = ASM_PARAM_ID_MULTICHANNEL_GAIN;
  7079. param_info.param_size = sizeof(multi_ch_gain);
  7080. multi_ch_gain.gain_data[0].channeltype = PCM_CHANNEL_FL;
  7081. multi_ch_gain.gain_data[0].gain = left_gain << 15;
  7082. multi_ch_gain.gain_data[1].channeltype = PCM_CHANNEL_FR;
  7083. multi_ch_gain.gain_data[1].gain = right_gain << 15;
  7084. multi_ch_gain.num_channels = 2;
  7085. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7086. (u8 *) &multi_ch_gain);
  7087. if (rc < 0)
  7088. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7089. __func__, param_info.param_id, rc);
  7090. return rc;
  7091. }
  7092. /*
  7093. * q6asm_set_multich_gain: set multiple channel gains on an ASM session
  7094. * @ac: audio client handle
  7095. * @channels: number of channels caller intends to set gains
  7096. * @gains: list of gains of audio channels
  7097. * @ch_map: list of channel mapping. Only valid if use_default is false
  7098. * @use_default: flag to indicate whether to use default mapping
  7099. */
  7100. int q6asm_set_multich_gain(struct audio_client *ac, uint32_t channels,
  7101. uint32_t *gains, uint8_t *ch_map, bool use_default)
  7102. {
  7103. struct asm_volume_ctrl_multichannel_gain multich_gain;
  7104. struct param_hdr_v3 param_info;
  7105. int rc = 0;
  7106. int i;
  7107. u8 default_chmap[VOLUME_CONTROL_MAX_CHANNELS];
  7108. if (ac == NULL) {
  7109. pr_err("%s: Audio client is NULL\n", __func__);
  7110. return -EINVAL;
  7111. }
  7112. if (gains == NULL) {
  7113. dev_err(ac->dev, "%s: gain_list is NULL\n", __func__);
  7114. rc = -EINVAL;
  7115. goto done;
  7116. }
  7117. if (channels > VOLUME_CONTROL_MAX_CHANNELS) {
  7118. dev_err(ac->dev, "%s: Invalid channel count %d\n",
  7119. __func__, channels);
  7120. rc = -EINVAL;
  7121. goto done;
  7122. }
  7123. if (!use_default && ch_map == NULL) {
  7124. dev_err(ac->dev, "%s: NULL channel map\n", __func__);
  7125. rc = -EINVAL;
  7126. goto done;
  7127. }
  7128. memset(&param_info, 0, sizeof(param_info));
  7129. memset(&multich_gain, 0, sizeof(multich_gain));
  7130. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7131. param_info.instance_id = INSTANCE_ID_0;
  7132. param_info.param_id = ASM_PARAM_ID_MULTICHANNEL_GAIN;
  7133. param_info.param_size = sizeof(multich_gain);
  7134. if (use_default) {
  7135. rc = q6asm_map_channels(default_chmap, channels, false);
  7136. if (rc < 0)
  7137. goto done;
  7138. for (i = 0; i < channels; i++) {
  7139. multich_gain.gain_data[i].channeltype =
  7140. default_chmap[i];
  7141. multich_gain.gain_data[i].gain = gains[i] << 15;
  7142. }
  7143. } else {
  7144. for (i = 0; i < channels; i++) {
  7145. multich_gain.gain_data[i].channeltype = ch_map[i];
  7146. multich_gain.gain_data[i].gain = gains[i] << 15;
  7147. }
  7148. }
  7149. multich_gain.num_channels = channels;
  7150. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7151. (u8 *) &multich_gain);
  7152. if (rc)
  7153. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7154. __func__, param_info.param_id, rc);
  7155. done:
  7156. return rc;
  7157. }
  7158. EXPORT_SYMBOL(q6asm_set_multich_gain);
  7159. /**
  7160. * q6asm_set_mute -
  7161. * command to set mute for ASM
  7162. *
  7163. * @ac: Audio client handle
  7164. * @muteflag: mute value
  7165. *
  7166. * Returns 0 on success or error on failure
  7167. */
  7168. int q6asm_set_mute(struct audio_client *ac, int muteflag)
  7169. {
  7170. struct asm_volume_ctrl_mute_config mute;
  7171. struct param_hdr_v3 param_info;
  7172. int rc = 0;
  7173. memset(&mute, 0, sizeof(mute));
  7174. memset(&param_info, 0, sizeof(param_info));
  7175. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7176. param_info.instance_id = INSTANCE_ID_0;
  7177. param_info.param_id = ASM_PARAM_ID_VOL_CTRL_MUTE_CONFIG;
  7178. param_info.param_size = sizeof(mute);
  7179. mute.mute_flag = muteflag;
  7180. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &mute);
  7181. if (rc)
  7182. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7183. __func__, param_info.param_id, rc);
  7184. return rc;
  7185. }
  7186. EXPORT_SYMBOL(q6asm_set_mute);
  7187. static int __q6asm_set_volume(struct audio_client *ac, int volume, int instance)
  7188. {
  7189. struct asm_volume_ctrl_master_gain vol;
  7190. struct param_hdr_v3 param_info;
  7191. int rc = 0;
  7192. memset(&vol, 0, sizeof(vol));
  7193. memset(&param_info, 0, sizeof(param_info));
  7194. rc = q6asm_set_soft_volume_module_instance_ids(instance, &param_info);
  7195. if (rc) {
  7196. pr_err("%s: Failed to pack soft volume module and instance IDs, error %d\n",
  7197. __func__, rc);
  7198. return rc;
  7199. }
  7200. param_info.param_id = ASM_PARAM_ID_VOL_CTRL_MASTER_GAIN;
  7201. param_info.param_size = sizeof(vol);
  7202. vol.master_gain = volume;
  7203. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &vol);
  7204. if (rc)
  7205. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7206. __func__, param_info.param_id, rc);
  7207. return rc;
  7208. }
  7209. /**
  7210. * q6asm_set_volume -
  7211. * command to set volume for ASM
  7212. *
  7213. * @ac: Audio client handle
  7214. * @volume: volume level
  7215. *
  7216. * Returns 0 on success or error on failure
  7217. */
  7218. int q6asm_set_volume(struct audio_client *ac, int volume)
  7219. {
  7220. return __q6asm_set_volume(ac, volume, SOFT_VOLUME_INSTANCE_1);
  7221. }
  7222. EXPORT_SYMBOL(q6asm_set_volume);
  7223. int q6asm_set_volume_v2(struct audio_client *ac, int volume, int instance)
  7224. {
  7225. return __q6asm_set_volume(ac, volume, instance);
  7226. }
  7227. /**
  7228. * q6asm_set_aptx_dec_bt_addr -
  7229. * command to aptx decoder BT addr for ASM
  7230. *
  7231. * @ac: Audio client handle
  7232. * @cfg: APTX decoder bt addr config
  7233. *
  7234. * Returns 0 on success or error on failure
  7235. */
  7236. int q6asm_set_aptx_dec_bt_addr(struct audio_client *ac,
  7237. struct aptx_dec_bt_addr_cfg *cfg)
  7238. {
  7239. struct aptx_dec_bt_dev_addr paylod;
  7240. int sz = 0;
  7241. int rc = 0;
  7242. pr_debug("%s: BT addr nap %d, uap %d, lap %d\n", __func__, cfg->nap,
  7243. cfg->uap, cfg->lap);
  7244. if (ac == NULL) {
  7245. pr_err("%s: AC handle NULL\n", __func__);
  7246. rc = -EINVAL;
  7247. goto fail_cmd;
  7248. }
  7249. if (ac->apr == NULL) {
  7250. pr_err("%s: AC APR handle NULL\n", __func__);
  7251. rc = -EINVAL;
  7252. goto fail_cmd;
  7253. }
  7254. sz = sizeof(struct aptx_dec_bt_dev_addr);
  7255. q6asm_add_hdr_async(ac, &paylod.hdr, sz, TRUE);
  7256. atomic_set(&ac->cmd_state, -1);
  7257. paylod.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  7258. paylod.encdec.param_id = APTX_DECODER_BT_ADDRESS;
  7259. paylod.encdec.param_size = sz - sizeof(paylod.hdr)
  7260. - sizeof(paylod.encdec);
  7261. paylod.bt_addr_cfg.lap = cfg->lap;
  7262. paylod.bt_addr_cfg.uap = cfg->uap;
  7263. paylod.bt_addr_cfg.nap = cfg->nap;
  7264. rc = apr_send_pkt(ac->apr, (uint32_t *) &paylod);
  7265. if (rc < 0) {
  7266. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7267. __func__, paylod.encdec.param_id, rc);
  7268. rc = -EINVAL;
  7269. goto fail_cmd;
  7270. }
  7271. rc = wait_event_timeout(ac->cmd_wait,
  7272. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  7273. if (!rc) {
  7274. pr_err("%s: timeout, set-params paramid[0x%x]\n", __func__,
  7275. paylod.encdec.param_id);
  7276. rc = -ETIMEDOUT;
  7277. goto fail_cmd;
  7278. }
  7279. if (atomic_read(&ac->cmd_state) > 0) {
  7280. pr_err("%s: DSP returned error[%s] set-params paramid[0x%x]\n",
  7281. __func__, adsp_err_get_err_str(
  7282. atomic_read(&ac->cmd_state)),
  7283. paylod.encdec.param_id);
  7284. rc = adsp_err_get_lnx_err_code(
  7285. atomic_read(&ac->cmd_state));
  7286. goto fail_cmd;
  7287. }
  7288. pr_debug("%s: set BT addr is success\n", __func__);
  7289. rc = 0;
  7290. fail_cmd:
  7291. return rc;
  7292. }
  7293. EXPORT_SYMBOL(q6asm_set_aptx_dec_bt_addr);
  7294. /**
  7295. * q6asm_send_ion_fd -
  7296. * command to send ION memory map for ASM
  7297. *
  7298. * @ac: Audio client handle
  7299. * @fd: ION file desc
  7300. *
  7301. * Returns 0 on success or error on failure
  7302. */
  7303. int q6asm_send_ion_fd(struct audio_client *ac, int fd)
  7304. {
  7305. struct dma_buf *dma_buf;
  7306. dma_addr_t paddr;
  7307. size_t pa_len = 0;
  7308. void *vaddr;
  7309. int ret;
  7310. int sz = 0;
  7311. struct avs_rtic_shared_mem_addr shm;
  7312. if (ac == NULL) {
  7313. pr_err("%s: APR handle NULL\n", __func__);
  7314. ret = -EINVAL;
  7315. goto fail_cmd;
  7316. }
  7317. if (ac->apr == NULL) {
  7318. pr_err("%s: AC APR handle NULL\n", __func__);
  7319. ret = -EINVAL;
  7320. goto fail_cmd;
  7321. }
  7322. ret = msm_audio_ion_import(&dma_buf,
  7323. fd,
  7324. NULL,
  7325. 0,
  7326. &paddr,
  7327. &pa_len,
  7328. &vaddr);
  7329. if (ret) {
  7330. pr_err("%s: audio ION import failed, rc = %d\n",
  7331. __func__, ret);
  7332. ret = -ENOMEM;
  7333. goto fail_cmd;
  7334. }
  7335. /* get payload length */
  7336. sz = sizeof(struct avs_rtic_shared_mem_addr);
  7337. q6asm_add_hdr_async(ac, &shm.hdr, sz, TRUE);
  7338. atomic_set(&ac->cmd_state, -1);
  7339. shm.shm_buf_addr_lsw = lower_32_bits(paddr);
  7340. shm.shm_buf_addr_msw = msm_audio_populate_upper_32_bits(paddr);
  7341. shm.buf_size = pa_len;
  7342. shm.shm_buf_num_regions = 1;
  7343. shm.shm_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7344. shm.shm_buf_flag = 0x00;
  7345. shm.encdec.param_id = AVS_PARAM_ID_RTIC_SHARED_MEMORY_ADDR;
  7346. shm.encdec.param_size = sizeof(struct avs_rtic_shared_mem_addr) -
  7347. sizeof(struct apr_hdr) -
  7348. sizeof(struct asm_stream_cmd_set_encdec_param_v2);
  7349. shm.encdec.service_id = OUT;
  7350. shm.encdec.reserved = 0;
  7351. shm.map_region.shm_addr_lsw = shm.shm_buf_addr_lsw;
  7352. shm.map_region.shm_addr_msw = shm.shm_buf_addr_msw;
  7353. shm.map_region.mem_size_bytes = pa_len;
  7354. shm.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2;
  7355. ret = apr_send_pkt(ac->apr, (uint32_t *) &shm);
  7356. if (ret < 0) {
  7357. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7358. __func__, shm.encdec.param_id, ret);
  7359. ret = -EINVAL;
  7360. goto fail_cmd;
  7361. }
  7362. ret = wait_event_timeout(ac->cmd_wait,
  7363. (atomic_read(&ac->cmd_state) >= 0), 1*HZ);
  7364. if (!ret) {
  7365. pr_err("%s: timeout, shm.encdec paramid[0x%x]\n", __func__,
  7366. shm.encdec.param_id);
  7367. ret = -ETIMEDOUT;
  7368. goto fail_cmd;
  7369. }
  7370. if (atomic_read(&ac->cmd_state) > 0) {
  7371. pr_err("%s: DSP returned error[%s] shm.encdec paramid[0x%x]\n",
  7372. __func__,
  7373. adsp_err_get_err_str(atomic_read(&ac->cmd_state)),
  7374. shm.encdec.param_id);
  7375. ret = adsp_err_get_lnx_err_code(atomic_read(&ac->cmd_state));
  7376. goto fail_cmd;
  7377. }
  7378. ret = 0;
  7379. fail_cmd:
  7380. return ret;
  7381. }
  7382. EXPORT_SYMBOL(q6asm_send_ion_fd);
  7383. /**
  7384. * q6asm_send_rtic_event_ack -
  7385. * command to send RTIC event ack
  7386. *
  7387. * @ac: Audio client handle
  7388. * @param: params for event ack
  7389. * @params_length: length of params
  7390. *
  7391. * Returns 0 on success or error on failure
  7392. */
  7393. int q6asm_send_rtic_event_ack(struct audio_client *ac,
  7394. void *param, uint32_t params_length)
  7395. {
  7396. char *asm_params = NULL;
  7397. int sz, rc;
  7398. struct avs_param_rtic_event_ack ack;
  7399. if (!param || !ac) {
  7400. pr_err("%s: %s is NULL\n", __func__,
  7401. (!param) ? "param" : "ac");
  7402. rc = -EINVAL;
  7403. goto done;
  7404. }
  7405. sz = sizeof(struct avs_param_rtic_event_ack) + params_length;
  7406. asm_params = kzalloc(sz, GFP_KERNEL);
  7407. if (!asm_params) {
  7408. rc = -ENOMEM;
  7409. goto done;
  7410. }
  7411. q6asm_add_hdr_async(ac, &ack.hdr,
  7412. sizeof(struct avs_param_rtic_event_ack) +
  7413. params_length, TRUE);
  7414. atomic_set(&ac->cmd_state, -1);
  7415. ack.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2;
  7416. ack.encdec.param_id = AVS_PARAM_ID_RTIC_EVENT_ACK;
  7417. ack.encdec.param_size = params_length;
  7418. ack.encdec.reserved = 0;
  7419. ack.encdec.service_id = OUT;
  7420. memcpy(asm_params, &ack, sizeof(struct avs_param_rtic_event_ack));
  7421. memcpy(asm_params + sizeof(struct avs_param_rtic_event_ack),
  7422. param, params_length);
  7423. rc = apr_send_pkt(ac->apr, (uint32_t *) asm_params);
  7424. if (rc < 0) {
  7425. pr_err("%s: apr pkt failed for rtic event ack\n", __func__);
  7426. rc = -EINVAL;
  7427. goto fail_send_param;
  7428. }
  7429. rc = wait_event_timeout(ac->cmd_wait,
  7430. (atomic_read(&ac->cmd_state) >= 0), 1 * HZ);
  7431. if (!rc) {
  7432. pr_err("%s: timeout for rtic event ack cmd\n", __func__);
  7433. rc = -ETIMEDOUT;
  7434. goto fail_send_param;
  7435. }
  7436. if (atomic_read(&ac->cmd_state) > 0) {
  7437. pr_err("%s: DSP returned error[%s] for rtic event ack cmd\n",
  7438. __func__, adsp_err_get_err_str(
  7439. atomic_read(&ac->cmd_state)));
  7440. rc = adsp_err_get_lnx_err_code(
  7441. atomic_read(&ac->cmd_state));
  7442. goto fail_send_param;
  7443. }
  7444. rc = 0;
  7445. fail_send_param:
  7446. kfree(asm_params);
  7447. done:
  7448. return rc;
  7449. }
  7450. EXPORT_SYMBOL(q6asm_send_rtic_event_ack);
  7451. /**
  7452. * q6asm_set_softpause -
  7453. * command to set pause for ASM
  7454. *
  7455. * @ac: Audio client handle
  7456. * @pause_param: params for pause
  7457. *
  7458. * Returns 0 on success or error on failure
  7459. */
  7460. int q6asm_set_softpause(struct audio_client *ac,
  7461. struct asm_softpause_params *pause_param)
  7462. {
  7463. struct asm_soft_pause_params softpause;
  7464. struct param_hdr_v3 param_info;
  7465. int rc = 0;
  7466. memset(&softpause, 0, sizeof(softpause));
  7467. memset(&param_info, 0, sizeof(param_info));
  7468. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7469. param_info.instance_id = INSTANCE_ID_0;
  7470. param_info.param_id = ASM_PARAM_ID_SOFT_PAUSE_PARAMETERS;
  7471. param_info.param_size = sizeof(softpause);
  7472. softpause.enable_flag = pause_param->enable;
  7473. softpause.period = pause_param->period;
  7474. softpause.step = pause_param->step;
  7475. softpause.ramping_curve = pause_param->rampingcurve;
  7476. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7477. (u8 *) &softpause);
  7478. if (rc)
  7479. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7480. __func__, param_info.param_id, rc);
  7481. return rc;
  7482. }
  7483. EXPORT_SYMBOL(q6asm_set_softpause);
  7484. static int __q6asm_set_softvolume(struct audio_client *ac,
  7485. struct asm_softvolume_params *softvol_param,
  7486. int instance)
  7487. {
  7488. struct asm_soft_step_volume_params softvol;
  7489. struct param_hdr_v3 param_info;
  7490. int rc = 0;
  7491. memset(&softvol, 0, sizeof(softvol));
  7492. memset(&param_info, 0, sizeof(param_info));
  7493. rc = q6asm_set_soft_volume_module_instance_ids(instance, &param_info);
  7494. if (rc) {
  7495. pr_err("%s: Failed to pack soft volume module and instance IDs, error %d\n",
  7496. __func__, rc);
  7497. return rc;
  7498. }
  7499. param_info.param_id = ASM_PARAM_ID_SOFT_VOL_STEPPING_PARAMETERS;
  7500. param_info.param_size = sizeof(softvol);
  7501. softvol.period = softvol_param->period;
  7502. softvol.step = softvol_param->step;
  7503. softvol.ramping_curve = softvol_param->rampingcurve;
  7504. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7505. (u8 *) &softvol);
  7506. if (rc)
  7507. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7508. __func__, param_info.param_id, rc);
  7509. return rc;
  7510. }
  7511. /**
  7512. * q6asm_set_softvolume -
  7513. * command to set softvolume for ASM
  7514. *
  7515. * @ac: Audio client handle
  7516. * @softvol_param: params for softvol
  7517. *
  7518. * Returns 0 on success or error on failure
  7519. */
  7520. int q6asm_set_softvolume(struct audio_client *ac,
  7521. struct asm_softvolume_params *softvol_param)
  7522. {
  7523. return __q6asm_set_softvolume(ac, softvol_param,
  7524. SOFT_VOLUME_INSTANCE_1);
  7525. }
  7526. EXPORT_SYMBOL(q6asm_set_softvolume);
  7527. /**
  7528. * q6asm_set_softvolume_v2 -
  7529. * command to set softvolume V2 for ASM
  7530. *
  7531. * @ac: Audio client handle
  7532. * @softvol_param: params for softvol
  7533. * @instance: instance to apply softvol
  7534. *
  7535. * Returns 0 on success or error on failure
  7536. */
  7537. int q6asm_set_softvolume_v2(struct audio_client *ac,
  7538. struct asm_softvolume_params *softvol_param,
  7539. int instance)
  7540. {
  7541. return __q6asm_set_softvolume(ac, softvol_param, instance);
  7542. }
  7543. EXPORT_SYMBOL(q6asm_set_softvolume_v2);
  7544. /**
  7545. * q6asm_equalizer -
  7546. * command to set equalizer for ASM
  7547. *
  7548. * @ac: Audio client handle
  7549. * @eq_p: Equalizer params
  7550. *
  7551. * Returns 0 on success or error on failure
  7552. */
  7553. int q6asm_equalizer(struct audio_client *ac, void *eq_p)
  7554. {
  7555. struct asm_eq_params eq;
  7556. struct msm_audio_eq_stream_config *eq_params = NULL;
  7557. struct param_hdr_v3 param_info;
  7558. int i = 0;
  7559. int rc = 0;
  7560. if (ac == NULL) {
  7561. pr_err("%s: Audio client is NULL\n", __func__);
  7562. return -EINVAL;
  7563. }
  7564. if (eq_p == NULL) {
  7565. pr_err("%s: [%d]: Invalid Eq param\n", __func__, ac->session);
  7566. rc = -EINVAL;
  7567. goto fail_cmd;
  7568. }
  7569. memset(&eq, 0, sizeof(eq));
  7570. memset(&param_info, 0, sizeof(param_info));
  7571. eq_params = (struct msm_audio_eq_stream_config *) eq_p;
  7572. param_info.module_id = ASM_MODULE_ID_EQUALIZER;
  7573. param_info.instance_id = INSTANCE_ID_0;
  7574. param_info.param_id = ASM_PARAM_ID_EQUALIZER_PARAMETERS;
  7575. param_info.param_size = sizeof(eq);
  7576. eq.enable_flag = eq_params->enable;
  7577. eq.num_bands = eq_params->num_bands;
  7578. pr_debug("%s: enable:%d numbands:%d\n", __func__, eq_params->enable,
  7579. eq_params->num_bands);
  7580. for (i = 0; i < eq_params->num_bands; i++) {
  7581. eq.eq_bands[i].band_idx =
  7582. eq_params->eq_bands[i].band_idx;
  7583. eq.eq_bands[i].filterype =
  7584. eq_params->eq_bands[i].filter_type;
  7585. eq.eq_bands[i].center_freq_hz =
  7586. eq_params->eq_bands[i].center_freq_hz;
  7587. eq.eq_bands[i].filter_gain =
  7588. eq_params->eq_bands[i].filter_gain;
  7589. eq.eq_bands[i].q_factor =
  7590. eq_params->eq_bands[i].q_factor;
  7591. pr_debug("%s: filter_type:%u bandnum:%d\n", __func__,
  7592. eq_params->eq_bands[i].filter_type, i);
  7593. pr_debug("%s: center_freq_hz:%u bandnum:%d\n", __func__,
  7594. eq_params->eq_bands[i].center_freq_hz, i);
  7595. pr_debug("%s: filter_gain:%d bandnum:%d\n", __func__,
  7596. eq_params->eq_bands[i].filter_gain, i);
  7597. pr_debug("%s: q_factor:%d bandnum:%d\n", __func__,
  7598. eq_params->eq_bands[i].q_factor, i);
  7599. }
  7600. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &eq);
  7601. if (rc)
  7602. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7603. __func__, param_info.param_id, rc);
  7604. fail_cmd:
  7605. return rc;
  7606. }
  7607. EXPORT_SYMBOL(q6asm_equalizer);
  7608. static int __q6asm_read(struct audio_client *ac, bool is_custom_len_reqd,
  7609. int len)
  7610. {
  7611. struct asm_data_cmd_read_v2 read;
  7612. struct asm_buffer_node *buf_node = NULL;
  7613. struct list_head *ptr, *next;
  7614. struct audio_buffer *ab;
  7615. int dsp_buf;
  7616. struct audio_port_data *port;
  7617. int rc;
  7618. if (ac == NULL) {
  7619. pr_err("%s: APR handle NULL\n", __func__);
  7620. return -EINVAL;
  7621. }
  7622. if (ac->apr == NULL) {
  7623. pr_err("%s: AC APR handle NULL\n", __func__);
  7624. return -EINVAL;
  7625. }
  7626. if (ac->io_mode & SYNC_IO_MODE) {
  7627. port = &ac->port[OUT];
  7628. q6asm_add_hdr(ac, &read.hdr, sizeof(read), FALSE);
  7629. mutex_lock(&port->lock);
  7630. dsp_buf = port->dsp_buf;
  7631. if (port->buf == NULL) {
  7632. pr_err("%s: buf is NULL\n", __func__);
  7633. mutex_unlock(&port->lock);
  7634. return -EINVAL;
  7635. }
  7636. ab = &port->buf[dsp_buf];
  7637. dev_vdbg(ac->dev, "%s: session[%d]dsp-buf[%d][%pK]cpu_buf[%d][%pK]\n",
  7638. __func__,
  7639. ac->session,
  7640. dsp_buf,
  7641. port->buf[dsp_buf].data,
  7642. port->cpu_buf,
  7643. &port->buf[port->cpu_buf].phys);
  7644. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  7645. read.buf_addr_lsw = lower_32_bits(ab->phys);
  7646. read.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  7647. list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
  7648. buf_node = list_entry(ptr, struct asm_buffer_node,
  7649. list);
  7650. if (buf_node->buf_phys_addr == ab->phys) {
  7651. read.mem_map_handle = buf_node->mmap_hdl;
  7652. break;
  7653. }
  7654. }
  7655. dev_vdbg(ac->dev, "memory_map handle in q6asm_read: [%0x]:",
  7656. read.mem_map_handle);
  7657. read.buf_size = is_custom_len_reqd ? len : ab->size;
  7658. read.seq_id = port->dsp_buf;
  7659. q6asm_update_token(&read.hdr.token,
  7660. 0, /* Session ID is NA */
  7661. 0, /* Stream ID is NA */
  7662. port->dsp_buf,
  7663. 0, /* Direction flag is NA */
  7664. WAIT_CMD);
  7665. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  7666. port->max_buf_cnt);
  7667. mutex_unlock(&port->lock);
  7668. dev_vdbg(ac->dev, "%s: buf add[%pK] token[0x%x] uid[%d]\n",
  7669. __func__, &ab->phys, read.hdr.token,
  7670. read.seq_id);
  7671. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  7672. if (rc < 0) {
  7673. pr_err("%s: read op[0x%x]rc[%d]\n",
  7674. __func__, read.hdr.opcode, rc);
  7675. goto fail_cmd;
  7676. }
  7677. return 0;
  7678. }
  7679. fail_cmd:
  7680. return -EINVAL;
  7681. }
  7682. /**
  7683. * q6asm_read -
  7684. * command to read buffer data from DSP
  7685. *
  7686. * @ac: Audio client handle
  7687. *
  7688. * Returns 0 on success or error on failure
  7689. */
  7690. int q6asm_read(struct audio_client *ac)
  7691. {
  7692. return __q6asm_read(ac, false/*is_custom_len_reqd*/, 0);
  7693. }
  7694. EXPORT_SYMBOL(q6asm_read);
  7695. /**
  7696. * q6asm_read_v2 -
  7697. * command to read buffer data from DSP
  7698. *
  7699. * @ac: Audio client handle
  7700. * @len: buffer size to read
  7701. *
  7702. * Returns 0 on success or error on failure
  7703. */
  7704. int q6asm_read_v2(struct audio_client *ac, uint32_t len)
  7705. {
  7706. return __q6asm_read(ac, true /*is_custom_len_reqd*/, len);
  7707. }
  7708. EXPORT_SYMBOL(q6asm_read_v2);
  7709. /**
  7710. * q6asm_read_nolock -
  7711. * command to read buffer data from DSP
  7712. * with no wait for ack.
  7713. *
  7714. * @ac: Audio client handle
  7715. *
  7716. * Returns 0 on success or error on failure
  7717. */
  7718. int q6asm_read_nolock(struct audio_client *ac)
  7719. {
  7720. struct asm_data_cmd_read_v2 read;
  7721. struct asm_buffer_node *buf_node = NULL;
  7722. struct list_head *ptr, *next;
  7723. struct audio_buffer *ab;
  7724. int dsp_buf;
  7725. struct audio_port_data *port;
  7726. int rc;
  7727. if (ac == NULL) {
  7728. pr_err("%s: APR handle NULL\n", __func__);
  7729. return -EINVAL;
  7730. }
  7731. if (ac->apr == NULL) {
  7732. pr_err("%s: AC APR handle NULL\n", __func__);
  7733. return -EINVAL;
  7734. }
  7735. if (ac->io_mode & SYNC_IO_MODE) {
  7736. port = &ac->port[OUT];
  7737. q6asm_add_hdr_async(ac, &read.hdr, sizeof(read), FALSE);
  7738. dsp_buf = port->dsp_buf;
  7739. ab = &port->buf[dsp_buf];
  7740. dev_vdbg(ac->dev, "%s: session[%d]dsp-buf[%d][%pK]cpu_buf[%d][%pK]\n",
  7741. __func__,
  7742. ac->session,
  7743. dsp_buf,
  7744. port->buf[dsp_buf].data,
  7745. port->cpu_buf,
  7746. &port->buf[port->cpu_buf].phys);
  7747. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  7748. read.buf_addr_lsw = lower_32_bits(ab->phys);
  7749. read.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  7750. read.buf_size = ab->size;
  7751. read.seq_id = port->dsp_buf;
  7752. q6asm_update_token(&read.hdr.token,
  7753. 0, /* Session ID is NA */
  7754. 0, /* Stream ID is NA */
  7755. port->dsp_buf,
  7756. 0, /* Direction flag is NA */
  7757. WAIT_CMD);
  7758. list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
  7759. buf_node = list_entry(ptr, struct asm_buffer_node,
  7760. list);
  7761. if (buf_node->buf_phys_addr == ab->phys) {
  7762. read.mem_map_handle = buf_node->mmap_hdl;
  7763. break;
  7764. }
  7765. }
  7766. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  7767. port->max_buf_cnt);
  7768. dev_vdbg(ac->dev, "%s: buf add[%pK] token[0x%x] uid[%d]\n",
  7769. __func__, &ab->phys, read.hdr.token,
  7770. read.seq_id);
  7771. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  7772. if (rc < 0) {
  7773. pr_err("%s: read op[0x%x]rc[%d]\n",
  7774. __func__, read.hdr.opcode, rc);
  7775. goto fail_cmd;
  7776. }
  7777. return 0;
  7778. }
  7779. fail_cmd:
  7780. return -EINVAL;
  7781. }
  7782. EXPORT_SYMBOL(q6asm_read_nolock);
  7783. /**
  7784. * q6asm_async_write -
  7785. * command to write DSP buffer
  7786. *
  7787. * @ac: Audio client handle
  7788. * @param: params for async write
  7789. *
  7790. * Returns 0 on success or error on failure
  7791. */
  7792. int q6asm_async_write(struct audio_client *ac,
  7793. struct audio_aio_write_param *param)
  7794. {
  7795. int rc = 0;
  7796. struct asm_data_cmd_write_v2 write;
  7797. struct asm_buffer_node *buf_node = NULL;
  7798. struct list_head *ptr, *next;
  7799. struct audio_buffer *ab;
  7800. struct audio_port_data *port;
  7801. phys_addr_t lbuf_phys_addr;
  7802. u32 liomode;
  7803. u32 io_compressed;
  7804. u32 io_compressed_stream;
  7805. if (ac == NULL) {
  7806. pr_err("%s: APR handle NULL\n", __func__);
  7807. return -EINVAL;
  7808. }
  7809. if (ac->apr == NULL) {
  7810. pr_err("%s: AC APR handle NULL\n", __func__);
  7811. return -EINVAL;
  7812. }
  7813. q6asm_stream_add_hdr_async(
  7814. ac, &write.hdr, sizeof(write), TRUE, ac->stream_id);
  7815. port = &ac->port[IN];
  7816. ab = &port->buf[port->dsp_buf];
  7817. /* Pass session id as token for AIO scheme */
  7818. write.hdr.token = param->uid;
  7819. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  7820. write.buf_addr_lsw = lower_32_bits(param->paddr);
  7821. write.buf_addr_msw = msm_audio_populate_upper_32_bits(param->paddr);
  7822. write.buf_size = param->len;
  7823. write.timestamp_msw = param->msw_ts;
  7824. write.timestamp_lsw = param->lsw_ts;
  7825. liomode = (ASYNC_IO_MODE | NT_MODE);
  7826. io_compressed = (ASYNC_IO_MODE | COMPRESSED_IO);
  7827. io_compressed_stream = (ASYNC_IO_MODE | COMPRESSED_STREAM_IO);
  7828. if (ac->io_mode == liomode)
  7829. lbuf_phys_addr = (param->paddr - 32);
  7830. else if (ac->io_mode == io_compressed ||
  7831. ac->io_mode == io_compressed_stream)
  7832. lbuf_phys_addr = (param->paddr - param->metadata_len);
  7833. else {
  7834. if (param->flags & SET_TIMESTAMP)
  7835. lbuf_phys_addr = param->paddr -
  7836. sizeof(struct snd_codec_metadata);
  7837. else
  7838. lbuf_phys_addr = param->paddr;
  7839. }
  7840. 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",
  7841. __func__,
  7842. write.hdr.token, &param->paddr,
  7843. write.buf_size, write.timestamp_msw,
  7844. write.timestamp_lsw, &lbuf_phys_addr);
  7845. /* Use 0xFF00 for disabling timestamps */
  7846. if (param->flags == 0xFF00)
  7847. write.flags = (0x00000000 | (param->flags & 0x800000FF));
  7848. else
  7849. write.flags = (0x80000000 | param->flags);
  7850. write.flags |= param->last_buffer << ASM_SHIFT_LAST_BUFFER_FLAG;
  7851. write.seq_id = param->uid;
  7852. list_for_each_safe(ptr, next, &ac->port[IN].mem_map_handle) {
  7853. buf_node = list_entry(ptr, struct asm_buffer_node,
  7854. list);
  7855. if (buf_node->buf_phys_addr == lbuf_phys_addr) {
  7856. write.mem_map_handle = buf_node->mmap_hdl;
  7857. break;
  7858. }
  7859. }
  7860. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  7861. if (rc < 0) {
  7862. pr_err("%s: write op[0x%x]rc[%d]\n", __func__,
  7863. write.hdr.opcode, rc);
  7864. goto fail_cmd;
  7865. }
  7866. return 0;
  7867. fail_cmd:
  7868. return -EINVAL;
  7869. }
  7870. EXPORT_SYMBOL(q6asm_async_write);
  7871. /**
  7872. * q6asm_async_read -
  7873. * command to read DSP buffer
  7874. *
  7875. * @ac: Audio client handle
  7876. * @param: params for async read
  7877. *
  7878. * Returns 0 on success or error on failure
  7879. */
  7880. int q6asm_async_read(struct audio_client *ac,
  7881. struct audio_aio_read_param *param)
  7882. {
  7883. int rc = 0;
  7884. struct asm_data_cmd_read_v2 read;
  7885. struct asm_buffer_node *buf_node = NULL;
  7886. struct list_head *ptr, *next;
  7887. phys_addr_t lbuf_phys_addr;
  7888. u32 liomode;
  7889. u32 io_compressed;
  7890. int dir = 0;
  7891. if (ac == NULL) {
  7892. pr_err("%s: APR handle NULL\n", __func__);
  7893. return -EINVAL;
  7894. }
  7895. if (ac->apr == NULL) {
  7896. pr_err("%s: AC APR handle NULL\n", __func__);
  7897. return -EINVAL;
  7898. }
  7899. q6asm_add_hdr_async(ac, &read.hdr, sizeof(read), FALSE);
  7900. /* Pass session id as token for AIO scheme */
  7901. read.hdr.token = param->uid;
  7902. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  7903. read.buf_addr_lsw = lower_32_bits(param->paddr);
  7904. read.buf_addr_msw = msm_audio_populate_upper_32_bits(param->paddr);
  7905. read.buf_size = param->len;
  7906. read.seq_id = param->uid;
  7907. liomode = (NT_MODE | ASYNC_IO_MODE);
  7908. io_compressed = (ASYNC_IO_MODE | COMPRESSED_IO);
  7909. if (ac->io_mode == liomode) {
  7910. lbuf_phys_addr = (param->paddr - 32);
  7911. /*legacy wma driver case*/
  7912. dir = IN;
  7913. } else if (ac->io_mode == io_compressed) {
  7914. lbuf_phys_addr = (param->paddr - 64);
  7915. dir = OUT;
  7916. } else {
  7917. if (param->flags & COMPRESSED_TIMESTAMP_FLAG)
  7918. lbuf_phys_addr = param->paddr -
  7919. sizeof(struct snd_codec_metadata);
  7920. else
  7921. lbuf_phys_addr = param->paddr;
  7922. dir = OUT;
  7923. }
  7924. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7925. buf_node = list_entry(ptr, struct asm_buffer_node,
  7926. list);
  7927. if (buf_node->buf_phys_addr == lbuf_phys_addr) {
  7928. read.mem_map_handle = buf_node->mmap_hdl;
  7929. break;
  7930. }
  7931. }
  7932. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  7933. if (rc < 0) {
  7934. pr_err("%s: read op[0x%x]rc[%d]\n", __func__,
  7935. read.hdr.opcode, rc);
  7936. goto fail_cmd;
  7937. }
  7938. return 0;
  7939. fail_cmd:
  7940. return -EINVAL;
  7941. }
  7942. EXPORT_SYMBOL(q6asm_async_read);
  7943. /**
  7944. * q6asm_write -
  7945. * command to write buffer data to DSP
  7946. *
  7947. * @ac: Audio client handle
  7948. * @len: buffer size
  7949. * @msw_ts: upper 32bits of timestamp
  7950. * @lsw_ts: lower 32bits of timestamp
  7951. * @flags: Flags for timestamp mode
  7952. *
  7953. * Returns 0 on success or error on failure
  7954. */
  7955. int q6asm_write(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  7956. uint32_t lsw_ts, uint32_t flags)
  7957. {
  7958. int rc = 0;
  7959. struct asm_data_cmd_write_v2 write;
  7960. struct asm_buffer_node *buf_node = NULL;
  7961. struct audio_port_data *port;
  7962. struct audio_buffer *ab;
  7963. int dsp_buf = 0;
  7964. if (ac == NULL) {
  7965. pr_err("%s: APR handle NULL\n", __func__);
  7966. return -EINVAL;
  7967. }
  7968. if (ac->apr == NULL) {
  7969. pr_err("%s: AC APR handle NULL\n", __func__);
  7970. return -EINVAL;
  7971. }
  7972. dev_vdbg(ac->dev, "%s: session[%d] len=%d\n",
  7973. __func__, ac->session, len);
  7974. if (ac->io_mode & SYNC_IO_MODE) {
  7975. port = &ac->port[IN];
  7976. q6asm_add_hdr(ac, &write.hdr, sizeof(write),
  7977. FALSE);
  7978. mutex_lock(&port->lock);
  7979. dsp_buf = port->dsp_buf;
  7980. ab = &port->buf[dsp_buf];
  7981. q6asm_update_token(&write.hdr.token,
  7982. 0, /* Session ID is NA */
  7983. 0, /* Stream ID is NA */
  7984. port->dsp_buf,
  7985. 0, /* Direction flag is NA */
  7986. NO_WAIT_CMD);
  7987. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  7988. write.buf_addr_lsw = lower_32_bits(ab->phys);
  7989. write.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  7990. write.buf_size = len;
  7991. write.seq_id = port->dsp_buf;
  7992. write.timestamp_lsw = lsw_ts;
  7993. write.timestamp_msw = msw_ts;
  7994. /* Use 0xFF00 for disabling timestamps */
  7995. if (flags == 0xFF00)
  7996. write.flags = (0x00000000 | (flags & 0x800000FF));
  7997. else
  7998. write.flags = (0x80000000 | flags);
  7999. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8000. port->max_buf_cnt);
  8001. buf_node = list_first_entry(&ac->port[IN].mem_map_handle,
  8002. struct asm_buffer_node,
  8003. list);
  8004. write.mem_map_handle = buf_node->mmap_hdl;
  8005. 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]"
  8006. , __func__,
  8007. &ab->phys,
  8008. write.buf_addr_lsw,
  8009. write.hdr.token,
  8010. write.seq_id,
  8011. write.buf_size,
  8012. write.mem_map_handle);
  8013. mutex_unlock(&port->lock);
  8014. config_debug_fs_write(ab);
  8015. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8016. if (rc < 0) {
  8017. pr_err("%s: write op[0x%x]rc[%d]\n",
  8018. __func__, write.hdr.opcode, rc);
  8019. goto fail_cmd;
  8020. }
  8021. return 0;
  8022. }
  8023. fail_cmd:
  8024. return -EINVAL;
  8025. }
  8026. EXPORT_SYMBOL(q6asm_write);
  8027. /**
  8028. * q6asm_write_nolock -
  8029. * command to write buffer data to DSP
  8030. * with no wait for ack.
  8031. *
  8032. * @ac: Audio client handle
  8033. * @len: buffer size
  8034. * @msw_ts: upper 32bits of timestamp
  8035. * @lsw_ts: lower 32bits of timestamp
  8036. * @flags: Flags for timestamp mode
  8037. *
  8038. * Returns 0 on success or error on failure
  8039. */
  8040. int q6asm_write_nolock(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  8041. uint32_t lsw_ts, uint32_t flags)
  8042. {
  8043. int rc = 0;
  8044. struct asm_data_cmd_write_v2 write;
  8045. struct asm_buffer_node *buf_node = NULL;
  8046. struct audio_port_data *port;
  8047. struct audio_buffer *ab;
  8048. int dsp_buf = 0;
  8049. if (ac == NULL) {
  8050. pr_err("%s: APR handle NULL\n", __func__);
  8051. return -EINVAL;
  8052. }
  8053. if (ac->apr == NULL) {
  8054. pr_err("%s: AC APR handle NULL\n", __func__);
  8055. return -EINVAL;
  8056. }
  8057. dev_vdbg(ac->dev, "%s: session[%d] len=%d\n",
  8058. __func__, ac->session, len);
  8059. if (ac->io_mode & SYNC_IO_MODE) {
  8060. port = &ac->port[IN];
  8061. q6asm_add_hdr_async(ac, &write.hdr, sizeof(write),
  8062. FALSE);
  8063. dsp_buf = port->dsp_buf;
  8064. ab = &port->buf[dsp_buf];
  8065. q6asm_update_token(&write.hdr.token,
  8066. 0, /* Session ID is NA */
  8067. 0, /* Stream ID is NA */
  8068. port->dsp_buf,
  8069. 0, /* Direction flag is NA */
  8070. NO_WAIT_CMD);
  8071. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8072. write.buf_addr_lsw = lower_32_bits(ab->phys);
  8073. write.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8074. write.buf_size = len;
  8075. write.seq_id = port->dsp_buf;
  8076. write.timestamp_lsw = lsw_ts;
  8077. write.timestamp_msw = msw_ts;
  8078. buf_node = list_first_entry(&ac->port[IN].mem_map_handle,
  8079. struct asm_buffer_node,
  8080. list);
  8081. write.mem_map_handle = buf_node->mmap_hdl;
  8082. /* Use 0xFF00 for disabling timestamps */
  8083. if (flags == 0xFF00)
  8084. write.flags = (0x00000000 | (flags & 0x800000FF));
  8085. else
  8086. write.flags = (0x80000000 | flags);
  8087. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8088. port->max_buf_cnt);
  8089. 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]"
  8090. , __func__,
  8091. &ab->phys,
  8092. write.buf_addr_lsw,
  8093. write.hdr.token,
  8094. write.seq_id,
  8095. write.buf_size,
  8096. write.mem_map_handle);
  8097. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8098. if (rc < 0) {
  8099. pr_err("%s: write op[0x%x]rc[%d]\n",
  8100. __func__, write.hdr.opcode, rc);
  8101. goto fail_cmd;
  8102. }
  8103. return 0;
  8104. }
  8105. fail_cmd:
  8106. return -EINVAL;
  8107. }
  8108. EXPORT_SYMBOL(q6asm_write_nolock);
  8109. /**
  8110. * q6asm_get_session_time -
  8111. * command to retrieve timestamp info
  8112. *
  8113. * @ac: Audio client handle
  8114. * @tstamp: pointer to fill with timestamp info
  8115. *
  8116. * Returns 0 on success or error on failure
  8117. */
  8118. int q6asm_get_session_time(struct audio_client *ac, uint64_t *tstamp)
  8119. {
  8120. struct asm_mtmx_strtr_get_params mtmx_params;
  8121. int rc;
  8122. if (ac == NULL) {
  8123. pr_err("%s: APR handle NULL\n", __func__);
  8124. return -EINVAL;
  8125. }
  8126. if (ac->apr == NULL) {
  8127. pr_err("%s: AC APR handle NULL\n", __func__);
  8128. return -EINVAL;
  8129. }
  8130. if (tstamp == NULL) {
  8131. pr_err("%s: tstamp NULL\n", __func__);
  8132. return -EINVAL;
  8133. }
  8134. q6asm_add_hdr(ac, &mtmx_params.hdr, sizeof(mtmx_params), TRUE);
  8135. mtmx_params.hdr.opcode = ASM_SESSION_CMD_GET_MTMX_STRTR_PARAMS_V2;
  8136. mtmx_params.param_info.data_payload_addr_lsw = 0;
  8137. mtmx_params.param_info.data_payload_addr_msw = 0;
  8138. mtmx_params.param_info.mem_map_handle = 0;
  8139. mtmx_params.param_info.direction = (ac->io_mode & TUN_READ_IO_MODE
  8140. ? 1 : 0);
  8141. mtmx_params.param_info.module_id =
  8142. ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8143. mtmx_params.param_info.param_id =
  8144. ASM_SESSION_MTMX_STRTR_PARAM_SESSION_TIME_V3;
  8145. mtmx_params.param_info.param_max_size =
  8146. sizeof(struct param_hdr_v1) +
  8147. sizeof(struct asm_session_mtmx_strtr_param_session_time_v3_t);
  8148. atomic_set(&ac->time_flag, 1);
  8149. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x]\n", __func__,
  8150. ac->session, mtmx_params.hdr.opcode);
  8151. rc = apr_send_pkt(ac->apr, (uint32_t *) &mtmx_params);
  8152. if (rc < 0) {
  8153. pr_err("%s: Commmand 0x%x failed %d\n", __func__,
  8154. mtmx_params.hdr.opcode, rc);
  8155. goto fail_cmd;
  8156. }
  8157. rc = wait_event_timeout(ac->time_wait,
  8158. (atomic_read(&ac->time_flag) == 0), 5*HZ);
  8159. if (!rc) {
  8160. pr_err("%s: timeout in getting session time from DSP\n",
  8161. __func__);
  8162. goto fail_cmd;
  8163. }
  8164. *tstamp = ac->time_stamp;
  8165. return 0;
  8166. fail_cmd:
  8167. return -EINVAL;
  8168. }
  8169. EXPORT_SYMBOL(q6asm_get_session_time);
  8170. /**
  8171. * q6asm_get_session_time_legacy -
  8172. * command to retrieve timestamp info
  8173. *
  8174. * @ac: Audio client handle
  8175. * @tstamp: pointer to fill with timestamp info
  8176. *
  8177. * Returns 0 on success or error on failure
  8178. */
  8179. int q6asm_get_session_time_legacy(struct audio_client *ac, uint64_t *tstamp)
  8180. {
  8181. struct apr_hdr hdr;
  8182. int rc;
  8183. if (ac == NULL) {
  8184. pr_err("%s: APR handle NULL\n", __func__);
  8185. return -EINVAL;
  8186. }
  8187. if (ac->apr == NULL) {
  8188. pr_err("%s: AC APR handle NULL\n", __func__);
  8189. return -EINVAL;
  8190. }
  8191. if (tstamp == NULL) {
  8192. pr_err("%s: tstamp NULL\n", __func__);
  8193. return -EINVAL;
  8194. }
  8195. q6asm_add_hdr(ac, &hdr, sizeof(hdr), TRUE);
  8196. hdr.opcode = ASM_SESSION_CMD_GET_SESSIONTIME_V3;
  8197. atomic_set(&ac->time_flag, 1);
  8198. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x]\n", __func__,
  8199. ac->session,
  8200. hdr.opcode);
  8201. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  8202. if (rc < 0) {
  8203. pr_err("%s: Commmand 0x%x failed %d\n",
  8204. __func__, hdr.opcode, rc);
  8205. goto fail_cmd;
  8206. }
  8207. rc = wait_event_timeout(ac->time_wait,
  8208. (atomic_read(&ac->time_flag) == 0), 5*HZ);
  8209. if (!rc) {
  8210. pr_err("%s: timeout in getting session time from DSP\n",
  8211. __func__);
  8212. goto fail_cmd;
  8213. }
  8214. *tstamp = ac->time_stamp;
  8215. return 0;
  8216. fail_cmd:
  8217. return -EINVAL;
  8218. }
  8219. EXPORT_SYMBOL(q6asm_get_session_time_legacy);
  8220. /**
  8221. * q6asm_send_mtmx_strtr_window -
  8222. * command to send matrix for window params
  8223. *
  8224. * @ac: Audio client handle
  8225. * @window_param: window params
  8226. * @param_id: param id for window
  8227. *
  8228. * Returns 0 on success or error on failure
  8229. */
  8230. int q6asm_send_mtmx_strtr_window(struct audio_client *ac,
  8231. struct asm_session_mtmx_strtr_param_window_v2_t *window_param,
  8232. uint32_t param_id)
  8233. {
  8234. struct asm_mtmx_strtr_params matrix;
  8235. int sz = 0;
  8236. int rc = 0;
  8237. pr_debug("%s: Window lsw is %d, window msw is %d\n", __func__,
  8238. window_param->window_lsw, window_param->window_msw);
  8239. if (!ac) {
  8240. pr_err("%s: audio client handle is NULL\n", __func__);
  8241. rc = -EINVAL;
  8242. goto fail_cmd;
  8243. }
  8244. if (ac->apr == NULL) {
  8245. pr_err("%s: ac->apr is NULL", __func__);
  8246. rc = -EINVAL;
  8247. goto fail_cmd;
  8248. }
  8249. sz = sizeof(struct asm_mtmx_strtr_params);
  8250. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8251. atomic_set(&ac->cmd_state, -1);
  8252. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8253. matrix.param.data_payload_addr_lsw = 0;
  8254. matrix.param.data_payload_addr_msw = 0;
  8255. matrix.param.mem_map_handle = 0;
  8256. matrix.param.data_payload_size =
  8257. sizeof(struct param_hdr_v1) +
  8258. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t);
  8259. matrix.param.direction = 0; /* RX */
  8260. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8261. matrix.data.param_id = param_id;
  8262. matrix.data.param_size =
  8263. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t);
  8264. matrix.data.reserved = 0;
  8265. memcpy(&(matrix.config.window_param),
  8266. window_param,
  8267. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t));
  8268. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8269. if (rc < 0) {
  8270. pr_err("%s: Render window start send failed paramid [0x%x]\n",
  8271. __func__, matrix.data.param_id);
  8272. rc = -EINVAL;
  8273. goto fail_cmd;
  8274. }
  8275. rc = wait_event_timeout(ac->cmd_wait,
  8276. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  8277. if (!rc) {
  8278. pr_err("%s: timeout, Render window start paramid[0x%x]\n",
  8279. __func__, matrix.data.param_id);
  8280. rc = -ETIMEDOUT;
  8281. goto fail_cmd;
  8282. }
  8283. if (atomic_read(&ac->cmd_state) > 0) {
  8284. pr_err("%s: DSP returned error[%s]\n",
  8285. __func__, adsp_err_get_err_str(
  8286. atomic_read(&ac->cmd_state)));
  8287. rc = adsp_err_get_lnx_err_code(
  8288. atomic_read(&ac->cmd_state));
  8289. goto fail_cmd;
  8290. }
  8291. rc = 0;
  8292. fail_cmd:
  8293. return rc;
  8294. }
  8295. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_window);
  8296. /**
  8297. * q6asm_send_mtmx_strtr_render_mode -
  8298. * command to send matrix for render mode
  8299. *
  8300. * @ac: Audio client handle
  8301. * @render_mode: rendering mode
  8302. *
  8303. * Returns 0 on success or error on failure
  8304. */
  8305. int q6asm_send_mtmx_strtr_render_mode(struct audio_client *ac,
  8306. uint32_t render_mode)
  8307. {
  8308. struct asm_mtmx_strtr_params matrix;
  8309. struct asm_session_mtmx_strtr_param_render_mode_t render_param;
  8310. int sz = 0;
  8311. int rc = 0;
  8312. pr_debug("%s: render mode is %d\n", __func__, render_mode);
  8313. if (!ac) {
  8314. pr_err("%s: audio client handle is NULL\n", __func__);
  8315. rc = -EINVAL;
  8316. goto exit;
  8317. }
  8318. if (ac->apr == NULL) {
  8319. pr_err("%s: ac->apr is NULL\n", __func__);
  8320. rc = -EINVAL;
  8321. goto exit;
  8322. }
  8323. if ((render_mode != ASM_SESSION_MTMX_STRTR_PARAM_RENDER_DEFAULT) &&
  8324. (render_mode != ASM_SESSION_MTMX_STRTR_PARAM_RENDER_LOCAL_STC)) {
  8325. pr_err("%s: Invalid render mode %d\n", __func__, render_mode);
  8326. rc = -EINVAL;
  8327. goto exit;
  8328. }
  8329. memset(&render_param, 0,
  8330. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t));
  8331. render_param.flags = render_mode;
  8332. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8333. sz = sizeof(struct asm_mtmx_strtr_params);
  8334. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8335. atomic_set(&ac->cmd_state, -1);
  8336. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8337. matrix.param.data_payload_addr_lsw = 0;
  8338. matrix.param.data_payload_addr_msw = 0;
  8339. matrix.param.mem_map_handle = 0;
  8340. matrix.param.data_payload_size =
  8341. sizeof(struct param_hdr_v1) +
  8342. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t);
  8343. matrix.param.direction = 0; /* RX */
  8344. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8345. matrix.data.param_id = ASM_SESSION_MTMX_STRTR_PARAM_RENDER_MODE_CMD;
  8346. matrix.data.param_size =
  8347. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t);
  8348. matrix.data.reserved = 0;
  8349. memcpy(&(matrix.config.render_param),
  8350. &render_param,
  8351. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t));
  8352. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8353. if (rc < 0) {
  8354. pr_err("%s: Render mode send failed paramid [0x%x]\n",
  8355. __func__, matrix.data.param_id);
  8356. rc = -EINVAL;
  8357. goto exit;
  8358. }
  8359. rc = wait_event_timeout(ac->cmd_wait,
  8360. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  8361. if (!rc) {
  8362. pr_err("%s: timeout, Render mode send paramid [0x%x]\n",
  8363. __func__, matrix.data.param_id);
  8364. rc = -ETIMEDOUT;
  8365. goto exit;
  8366. }
  8367. if (atomic_read(&ac->cmd_state) > 0) {
  8368. pr_err("%s: DSP returned error[%s]\n",
  8369. __func__, adsp_err_get_err_str(
  8370. atomic_read(&ac->cmd_state)));
  8371. rc = adsp_err_get_lnx_err_code(
  8372. atomic_read(&ac->cmd_state));
  8373. goto exit;
  8374. }
  8375. rc = 0;
  8376. exit:
  8377. return rc;
  8378. }
  8379. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_render_mode);
  8380. /**
  8381. * q6asm_send_mtmx_strtr_clk_rec_mode -
  8382. * command to send matrix for clock rec
  8383. *
  8384. * @ac: Audio client handle
  8385. * @clk_rec_mode: mode for clock rec
  8386. *
  8387. * Returns 0 on success or error on failure
  8388. */
  8389. int q6asm_send_mtmx_strtr_clk_rec_mode(struct audio_client *ac,
  8390. uint32_t clk_rec_mode)
  8391. {
  8392. struct asm_mtmx_strtr_params matrix;
  8393. struct asm_session_mtmx_strtr_param_clk_rec_t clk_rec_param;
  8394. int sz = 0;
  8395. int rc = 0;
  8396. pr_debug("%s: clk rec mode is %d\n", __func__, clk_rec_mode);
  8397. if (!ac) {
  8398. pr_err("%s: audio client handle is NULL\n", __func__);
  8399. rc = -EINVAL;
  8400. goto exit;
  8401. }
  8402. if (ac->apr == NULL) {
  8403. pr_err("%s: ac->apr is NULL\n", __func__);
  8404. rc = -EINVAL;
  8405. goto exit;
  8406. }
  8407. if ((clk_rec_mode != ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_NONE) &&
  8408. (clk_rec_mode != ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_AUTO)) {
  8409. pr_err("%s: Invalid clk rec mode %d\n", __func__, clk_rec_mode);
  8410. rc = -EINVAL;
  8411. goto exit;
  8412. }
  8413. memset(&clk_rec_param, 0,
  8414. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t));
  8415. clk_rec_param.flags = clk_rec_mode;
  8416. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8417. sz = sizeof(struct asm_mtmx_strtr_params);
  8418. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8419. atomic_set(&ac->cmd_state, -1);
  8420. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8421. matrix.param.data_payload_addr_lsw = 0;
  8422. matrix.param.data_payload_addr_msw = 0;
  8423. matrix.param.mem_map_handle = 0;
  8424. matrix.param.data_payload_size =
  8425. sizeof(struct param_hdr_v1) +
  8426. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t);
  8427. matrix.param.direction = 0; /* RX */
  8428. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8429. matrix.data.param_id = ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_CMD;
  8430. matrix.data.param_size =
  8431. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t);
  8432. matrix.data.reserved = 0;
  8433. memcpy(&(matrix.config.clk_rec_param),
  8434. &clk_rec_param,
  8435. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t));
  8436. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8437. if (rc < 0) {
  8438. pr_err("%s: clk rec mode send failed paramid [0x%x]\n",
  8439. __func__, matrix.data.param_id);
  8440. rc = -EINVAL;
  8441. goto exit;
  8442. }
  8443. rc = wait_event_timeout(ac->cmd_wait,
  8444. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  8445. if (!rc) {
  8446. pr_err("%s: timeout, clk rec mode send paramid [0x%x]\n",
  8447. __func__, matrix.data.param_id);
  8448. rc = -ETIMEDOUT;
  8449. goto exit;
  8450. }
  8451. if (atomic_read(&ac->cmd_state) > 0) {
  8452. pr_err("%s: DSP returned error[%s]\n",
  8453. __func__, adsp_err_get_err_str(
  8454. atomic_read(&ac->cmd_state)));
  8455. rc = adsp_err_get_lnx_err_code(
  8456. atomic_read(&ac->cmd_state));
  8457. goto exit;
  8458. }
  8459. rc = 0;
  8460. exit:
  8461. return rc;
  8462. }
  8463. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_clk_rec_mode);
  8464. /**
  8465. * q6asm_send_mtmx_strtr_enable_adjust_session_clock -
  8466. * command to send matrix for adjust time
  8467. *
  8468. * @ac: Audio client handle
  8469. * @enable: flag to adjust time or not
  8470. *
  8471. * Returns 0 on success or error on failure
  8472. */
  8473. int q6asm_send_mtmx_strtr_enable_adjust_session_clock(struct audio_client *ac,
  8474. bool enable)
  8475. {
  8476. struct asm_mtmx_strtr_params matrix;
  8477. struct asm_session_mtmx_param_adjust_session_time_ctl_t adjust_time;
  8478. int sz = 0;
  8479. int rc = 0;
  8480. pr_debug("%s: adjust session enable %d\n", __func__, enable);
  8481. if (!ac) {
  8482. pr_err("%s: audio client handle is NULL\n", __func__);
  8483. rc = -EINVAL;
  8484. goto exit;
  8485. }
  8486. if (ac->apr == NULL) {
  8487. pr_err("%s: ac->apr is NULL\n", __func__);
  8488. rc = -EINVAL;
  8489. goto exit;
  8490. }
  8491. adjust_time.enable = enable;
  8492. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8493. sz = sizeof(struct asm_mtmx_strtr_params);
  8494. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8495. atomic_set(&ac->cmd_state, -1);
  8496. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8497. matrix.param.data_payload_addr_lsw = 0;
  8498. matrix.param.data_payload_addr_msw = 0;
  8499. matrix.param.mem_map_handle = 0;
  8500. matrix.param.data_payload_size =
  8501. sizeof(struct param_hdr_v1) +
  8502. sizeof(struct asm_session_mtmx_param_adjust_session_time_ctl_t);
  8503. matrix.param.direction = 0; /* RX */
  8504. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8505. matrix.data.param_id = ASM_SESSION_MTMX_PARAM_ADJUST_SESSION_TIME_CTL;
  8506. matrix.data.param_size =
  8507. sizeof(struct asm_session_mtmx_param_adjust_session_time_ctl_t);
  8508. matrix.data.reserved = 0;
  8509. matrix.config.adj_time_param.enable = adjust_time.enable;
  8510. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8511. if (rc < 0) {
  8512. pr_err("%s: enable adjust session failed failed paramid [0x%x]\n",
  8513. __func__, matrix.data.param_id);
  8514. rc = -EINVAL;
  8515. goto exit;
  8516. }
  8517. rc = wait_event_timeout(ac->cmd_wait,
  8518. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  8519. if (!rc) {
  8520. pr_err("%s: enable adjust session failed failed paramid [0x%x]\n",
  8521. __func__, matrix.data.param_id);
  8522. rc = -ETIMEDOUT;
  8523. goto exit;
  8524. }
  8525. if (atomic_read(&ac->cmd_state) > 0) {
  8526. pr_err("%s: DSP returned error[%s]\n",
  8527. __func__, adsp_err_get_err_str(
  8528. atomic_read(&ac->cmd_state)));
  8529. rc = adsp_err_get_lnx_err_code(
  8530. atomic_read(&ac->cmd_state));
  8531. goto exit;
  8532. }
  8533. rc = 0;
  8534. exit:
  8535. return rc;
  8536. }
  8537. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_enable_adjust_session_clock);
  8538. static int __q6asm_cmd(struct audio_client *ac, int cmd, uint32_t stream_id)
  8539. {
  8540. struct apr_hdr hdr;
  8541. int rc;
  8542. atomic_t *state;
  8543. int cnt = 0;
  8544. if (!ac) {
  8545. pr_err("%s: APR handle NULL\n", __func__);
  8546. return -EINVAL;
  8547. }
  8548. if (ac->apr == NULL) {
  8549. pr_err("%s: AC APR handle NULL\n", __func__);
  8550. return -EINVAL;
  8551. }
  8552. q6asm_stream_add_hdr(ac, &hdr, sizeof(hdr), TRUE, stream_id);
  8553. atomic_set(&ac->cmd_state, -1);
  8554. /*
  8555. * Updated the token field with stream/session for compressed playback
  8556. * Platform driver must know the the stream with which the command is
  8557. * associated
  8558. */
  8559. if (ac->io_mode & COMPRESSED_STREAM_IO)
  8560. q6asm_update_token(&hdr.token,
  8561. ac->session,
  8562. stream_id,
  8563. 0, /* Buffer index is NA */
  8564. 0, /* Direction flag is NA */
  8565. WAIT_CMD);
  8566. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  8567. __func__, hdr.token, stream_id, ac->session);
  8568. switch (cmd) {
  8569. case CMD_PAUSE:
  8570. pr_debug("%s: CMD_PAUSE\n", __func__);
  8571. hdr.opcode = ASM_SESSION_CMD_PAUSE;
  8572. state = &ac->cmd_state;
  8573. break;
  8574. case CMD_SUSPEND:
  8575. pr_debug("%s: CMD_SUSPEND\n", __func__);
  8576. hdr.opcode = ASM_SESSION_CMD_SUSPEND;
  8577. state = &ac->cmd_state;
  8578. break;
  8579. case CMD_FLUSH:
  8580. pr_debug("%s: CMD_FLUSH\n", __func__);
  8581. hdr.opcode = ASM_STREAM_CMD_FLUSH;
  8582. state = &ac->cmd_state;
  8583. break;
  8584. case CMD_OUT_FLUSH:
  8585. pr_debug("%s: CMD_OUT_FLUSH\n", __func__);
  8586. hdr.opcode = ASM_STREAM_CMD_FLUSH_READBUFS;
  8587. state = &ac->cmd_state;
  8588. break;
  8589. case CMD_EOS:
  8590. pr_debug("%s: CMD_EOS\n", __func__);
  8591. hdr.opcode = ASM_DATA_CMD_EOS;
  8592. atomic_set(&ac->cmd_state, 0);
  8593. state = &ac->cmd_state;
  8594. break;
  8595. case CMD_CLOSE:
  8596. pr_debug("%s: CMD_CLOSE\n", __func__);
  8597. hdr.opcode = ASM_STREAM_CMD_CLOSE;
  8598. state = &ac->cmd_state;
  8599. break;
  8600. default:
  8601. pr_err("%s: Invalid format[%d]\n", __func__, cmd);
  8602. rc = -EINVAL;
  8603. goto fail_cmd;
  8604. }
  8605. pr_debug("%s: session[%d]opcode[0x%x]\n", __func__,
  8606. ac->session,
  8607. hdr.opcode);
  8608. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  8609. if (rc < 0) {
  8610. pr_err("%s: Commmand 0x%x failed %d\n",
  8611. __func__, hdr.opcode, rc);
  8612. rc = -EINVAL;
  8613. goto fail_cmd;
  8614. }
  8615. rc = wait_event_timeout(ac->cmd_wait, (atomic_read(state) >= 0), 5*HZ);
  8616. if (!rc) {
  8617. pr_err("%s: timeout. waited for response opcode[0x%x]\n",
  8618. __func__, hdr.opcode);
  8619. rc = -ETIMEDOUT;
  8620. goto fail_cmd;
  8621. }
  8622. if (atomic_read(state) > 0) {
  8623. pr_err("%s: DSP returned error[%s] opcode %d\n",
  8624. __func__, adsp_err_get_err_str(
  8625. atomic_read(state)),
  8626. hdr.opcode);
  8627. rc = adsp_err_get_lnx_err_code(atomic_read(state));
  8628. goto fail_cmd;
  8629. }
  8630. if (cmd == CMD_FLUSH)
  8631. q6asm_reset_buf_state(ac);
  8632. if (cmd == CMD_CLOSE) {
  8633. /* check if DSP return all buffers */
  8634. if (ac->port[IN].buf) {
  8635. for (cnt = 0; cnt < ac->port[IN].max_buf_cnt;
  8636. cnt++) {
  8637. if (ac->port[IN].buf[cnt].used == IN) {
  8638. dev_vdbg(ac->dev, "Write Buf[%d] not returned\n",
  8639. cnt);
  8640. }
  8641. }
  8642. }
  8643. if (ac->port[OUT].buf) {
  8644. for (cnt = 0; cnt < ac->port[OUT].max_buf_cnt; cnt++) {
  8645. if (ac->port[OUT].buf[cnt].used == OUT) {
  8646. dev_vdbg(ac->dev, "Read Buf[%d] not returned\n",
  8647. cnt);
  8648. }
  8649. }
  8650. }
  8651. }
  8652. return 0;
  8653. fail_cmd:
  8654. return rc;
  8655. }
  8656. /**
  8657. * q6asm_cmd -
  8658. * Function used to send commands for
  8659. * ASM with wait for ack.
  8660. *
  8661. * @ac: Audio client handle
  8662. * @cmd: command to send
  8663. *
  8664. * Returns 0 on success or error on failure
  8665. */
  8666. int q6asm_cmd(struct audio_client *ac, int cmd)
  8667. {
  8668. return __q6asm_cmd(ac, cmd, ac->stream_id);
  8669. }
  8670. EXPORT_SYMBOL(q6asm_cmd);
  8671. /**
  8672. * q6asm_stream_cmd -
  8673. * Function used to send commands for
  8674. * ASM stream with wait for ack.
  8675. *
  8676. * @ac: Audio client handle
  8677. * @cmd: command to send
  8678. * @stream_id: Stream ID
  8679. *
  8680. * Returns 0 on success or error on failure
  8681. */
  8682. int q6asm_stream_cmd(struct audio_client *ac, int cmd, uint32_t stream_id)
  8683. {
  8684. return __q6asm_cmd(ac, cmd, stream_id);
  8685. }
  8686. EXPORT_SYMBOL(q6asm_stream_cmd);
  8687. /**
  8688. * q6asm_cmd_nowait -
  8689. * Function used to send commands for
  8690. * ASM stream without wait for ack.
  8691. *
  8692. * @ac: Audio client handle
  8693. * @cmd: command to send
  8694. * @stream_id: Stream ID
  8695. *
  8696. * Returns 0 on success or error on failure
  8697. */
  8698. static int __q6asm_cmd_nowait(struct audio_client *ac, int cmd,
  8699. uint32_t stream_id)
  8700. {
  8701. struct apr_hdr hdr;
  8702. int rc;
  8703. if (!ac) {
  8704. pr_err("%s: APR handle NULL\n", __func__);
  8705. return -EINVAL;
  8706. }
  8707. if (ac->apr == NULL) {
  8708. pr_err("%s: AC APR handle NULL\n", __func__);
  8709. return -EINVAL;
  8710. }
  8711. q6asm_stream_add_hdr_async(ac, &hdr, sizeof(hdr), TRUE, stream_id);
  8712. atomic_set(&ac->cmd_state, 1);
  8713. /*
  8714. * Updated the token field with stream/session for compressed playback
  8715. * Platform driver must know the the stream with which the command is
  8716. * associated
  8717. */
  8718. if (ac->io_mode & COMPRESSED_STREAM_IO)
  8719. q6asm_update_token(&hdr.token,
  8720. ac->session,
  8721. stream_id,
  8722. 0, /* Buffer index is NA */
  8723. 0, /* Direction flag is NA */
  8724. NO_WAIT_CMD);
  8725. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  8726. __func__, hdr.token, stream_id, ac->session);
  8727. switch (cmd) {
  8728. case CMD_PAUSE:
  8729. pr_debug("%s: CMD_PAUSE\n", __func__);
  8730. hdr.opcode = ASM_SESSION_CMD_PAUSE;
  8731. break;
  8732. case CMD_EOS:
  8733. pr_debug("%s: CMD_EOS\n", __func__);
  8734. hdr.opcode = ASM_DATA_CMD_EOS;
  8735. break;
  8736. case CMD_CLOSE:
  8737. pr_debug("%s: CMD_CLOSE\n", __func__);
  8738. hdr.opcode = ASM_STREAM_CMD_CLOSE;
  8739. break;
  8740. default:
  8741. pr_err("%s: Invalid format[%d]\n", __func__, cmd);
  8742. goto fail_cmd;
  8743. }
  8744. pr_debug("%s: session[%d]opcode[0x%x]\n", __func__,
  8745. ac->session,
  8746. hdr.opcode);
  8747. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  8748. if (rc < 0) {
  8749. pr_err("%s: Commmand 0x%x failed %d\n",
  8750. __func__, hdr.opcode, rc);
  8751. goto fail_cmd;
  8752. }
  8753. return 0;
  8754. fail_cmd:
  8755. return -EINVAL;
  8756. }
  8757. int q6asm_cmd_nowait(struct audio_client *ac, int cmd)
  8758. {
  8759. pr_debug("%s: stream_id: %d\n", __func__, ac->stream_id);
  8760. return __q6asm_cmd_nowait(ac, cmd, ac->stream_id);
  8761. }
  8762. EXPORT_SYMBOL(q6asm_cmd_nowait);
  8763. /**
  8764. * q6asm_stream_cmd_nowait -
  8765. * Function used to send commands for
  8766. * ASM stream without wait for ack.
  8767. *
  8768. * @ac: Audio client handle
  8769. * @cmd: command to send
  8770. * @stream_id: Stream ID
  8771. *
  8772. * Returns 0 on success or error on failure
  8773. */
  8774. int q6asm_stream_cmd_nowait(struct audio_client *ac, int cmd,
  8775. uint32_t stream_id)
  8776. {
  8777. pr_debug("%s: stream_id: %d\n", __func__, stream_id);
  8778. return __q6asm_cmd_nowait(ac, cmd, stream_id);
  8779. }
  8780. EXPORT_SYMBOL(q6asm_stream_cmd_nowait);
  8781. int __q6asm_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  8782. uint32_t initial_samples, uint32_t trailing_samples)
  8783. {
  8784. struct asm_data_cmd_remove_silence silence;
  8785. int rc = 0;
  8786. if (!ac) {
  8787. pr_err("%s: APR handle NULL\n", __func__);
  8788. return -EINVAL;
  8789. }
  8790. if (ac->apr == NULL) {
  8791. pr_err("%s: AC APR handle NULL\n", __func__);
  8792. return -EINVAL;
  8793. }
  8794. pr_debug("%s: session[%d]\n", __func__, ac->session);
  8795. q6asm_stream_add_hdr_async(ac, &silence.hdr, sizeof(silence), TRUE,
  8796. stream_id);
  8797. /*
  8798. * Updated the token field with stream/session for compressed playback
  8799. * Platform driver must know the the stream with which the command is
  8800. * associated
  8801. */
  8802. if (ac->io_mode & COMPRESSED_STREAM_IO)
  8803. q6asm_update_token(&silence.hdr.token,
  8804. ac->session,
  8805. stream_id,
  8806. 0, /* Buffer index is NA */
  8807. 0, /* Direction flag is NA */
  8808. NO_WAIT_CMD);
  8809. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  8810. __func__, silence.hdr.token, stream_id, ac->session);
  8811. silence.hdr.opcode = ASM_DATA_CMD_REMOVE_INITIAL_SILENCE;
  8812. silence.num_samples_to_remove = initial_samples;
  8813. rc = apr_send_pkt(ac->apr, (uint32_t *) &silence);
  8814. if (rc < 0) {
  8815. pr_err("%s: Commmand silence failed[%d]", __func__, rc);
  8816. goto fail_cmd;
  8817. }
  8818. silence.hdr.opcode = ASM_DATA_CMD_REMOVE_TRAILING_SILENCE;
  8819. silence.num_samples_to_remove = trailing_samples;
  8820. rc = apr_send_pkt(ac->apr, (uint32_t *) &silence);
  8821. if (rc < 0) {
  8822. pr_err("%s: Commmand silence failed[%d]", __func__, rc);
  8823. goto fail_cmd;
  8824. }
  8825. return 0;
  8826. fail_cmd:
  8827. return -EINVAL;
  8828. }
  8829. /**
  8830. * q6asm_stream_send_meta_data -
  8831. * command to send meta data for stream
  8832. *
  8833. * @ac: Audio client handle
  8834. * @stream_id: Stream ID
  8835. * @initial_samples: Initial samples of stream
  8836. * @trailing_samples: Trailing samples of stream
  8837. *
  8838. * Returns 0 on success or error on failure
  8839. */
  8840. int q6asm_stream_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  8841. uint32_t initial_samples, uint32_t trailing_samples)
  8842. {
  8843. return __q6asm_send_meta_data(ac, stream_id, initial_samples,
  8844. trailing_samples);
  8845. }
  8846. EXPORT_SYMBOL(q6asm_stream_send_meta_data);
  8847. int q6asm_send_meta_data(struct audio_client *ac, uint32_t initial_samples,
  8848. uint32_t trailing_samples)
  8849. {
  8850. return __q6asm_send_meta_data(ac, ac->stream_id, initial_samples,
  8851. trailing_samples);
  8852. }
  8853. static void q6asm_reset_buf_state(struct audio_client *ac)
  8854. {
  8855. int cnt = 0;
  8856. int loopcnt = 0;
  8857. int used;
  8858. struct audio_port_data *port = NULL;
  8859. if (ac->io_mode & SYNC_IO_MODE) {
  8860. used = (ac->io_mode & TUN_WRITE_IO_MODE ? 1 : 0);
  8861. mutex_lock(&ac->cmd_lock);
  8862. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  8863. port = &ac->port[loopcnt];
  8864. cnt = port->max_buf_cnt - 1;
  8865. port->dsp_buf = 0;
  8866. port->cpu_buf = 0;
  8867. while (cnt >= 0) {
  8868. if (!port->buf)
  8869. continue;
  8870. port->buf[cnt].used = used;
  8871. cnt--;
  8872. }
  8873. }
  8874. mutex_unlock(&ac->cmd_lock);
  8875. }
  8876. }
  8877. /**
  8878. * q6asm_reg_tx_overflow -
  8879. * command to register for TX overflow events
  8880. *
  8881. * @ac: Audio client handle
  8882. * @enable: flag to enable or disable events
  8883. *
  8884. * Returns 0 on success or error on failure
  8885. */
  8886. int q6asm_reg_tx_overflow(struct audio_client *ac, uint16_t enable)
  8887. {
  8888. struct asm_session_cmd_regx_overflow tx_overflow;
  8889. int rc;
  8890. if (!ac) {
  8891. pr_err("%s: APR handle NULL\n", __func__);
  8892. return -EINVAL;
  8893. }
  8894. if (ac->apr == NULL) {
  8895. pr_err("%s: AC APR handle NULL\n", __func__);
  8896. return -EINVAL;
  8897. }
  8898. pr_debug("%s: session[%d]enable[%d]\n", __func__,
  8899. ac->session, enable);
  8900. q6asm_add_hdr(ac, &tx_overflow.hdr, sizeof(tx_overflow), TRUE);
  8901. atomic_set(&ac->cmd_state, -1);
  8902. tx_overflow.hdr.opcode =
  8903. ASM_SESSION_CMD_REGISTER_FORX_OVERFLOW_EVENTS;
  8904. /* tx overflow event: enable */
  8905. tx_overflow.enable_flag = enable;
  8906. rc = apr_send_pkt(ac->apr, (uint32_t *) &tx_overflow);
  8907. if (rc < 0) {
  8908. pr_err("%s: tx overflow op[0x%x]rc[%d]\n",
  8909. __func__, tx_overflow.hdr.opcode, rc);
  8910. rc = -EINVAL;
  8911. goto fail_cmd;
  8912. }
  8913. rc = wait_event_timeout(ac->cmd_wait,
  8914. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  8915. if (!rc) {
  8916. pr_err("%s: timeout. waited for tx overflow\n", __func__);
  8917. rc = -ETIMEDOUT;
  8918. goto fail_cmd;
  8919. }
  8920. if (atomic_read(&ac->cmd_state) > 0) {
  8921. pr_err("%s: DSP returned error[%s]\n",
  8922. __func__, adsp_err_get_err_str(
  8923. atomic_read(&ac->cmd_state)));
  8924. rc = adsp_err_get_lnx_err_code(
  8925. atomic_read(&ac->cmd_state));
  8926. goto fail_cmd;
  8927. }
  8928. return 0;
  8929. fail_cmd:
  8930. return rc;
  8931. }
  8932. EXPORT_SYMBOL(q6asm_reg_tx_overflow);
  8933. int q6asm_reg_rx_underflow(struct audio_client *ac, uint16_t enable)
  8934. {
  8935. struct asm_session_cmd_rgstr_rx_underflow rx_underflow;
  8936. int rc;
  8937. if (!ac) {
  8938. pr_err("%s: AC APR handle NULL\n", __func__);
  8939. return -EINVAL;
  8940. }
  8941. if (ac->apr == NULL) {
  8942. pr_err("%s: APR handle NULL\n", __func__);
  8943. return -EINVAL;
  8944. }
  8945. pr_debug("%s: session[%d]enable[%d]\n", __func__,
  8946. ac->session, enable);
  8947. q6asm_add_hdr_async(ac, &rx_underflow.hdr, sizeof(rx_underflow), FALSE);
  8948. rx_underflow.hdr.opcode =
  8949. ASM_SESSION_CMD_REGISTER_FOR_RX_UNDERFLOW_EVENTS;
  8950. /* tx overflow event: enable */
  8951. rx_underflow.enable_flag = enable;
  8952. rc = apr_send_pkt(ac->apr, (uint32_t *) &rx_underflow);
  8953. if (rc < 0) {
  8954. pr_err("%s: tx overflow op[0x%x]rc[%d]\n",
  8955. __func__, rx_underflow.hdr.opcode, rc);
  8956. goto fail_cmd;
  8957. }
  8958. return 0;
  8959. fail_cmd:
  8960. return -EINVAL;
  8961. }
  8962. /**
  8963. * q6asm_adjust_session_clock -
  8964. * command to adjust session clock
  8965. *
  8966. * @ac: Audio client handle
  8967. * @adjust_time_lsw: lower 32bits
  8968. * @adjust_time_msw: upper 32bits
  8969. *
  8970. * Returns 0 on success or error on failure
  8971. */
  8972. int q6asm_adjust_session_clock(struct audio_client *ac,
  8973. uint32_t adjust_time_lsw,
  8974. uint32_t adjust_time_msw)
  8975. {
  8976. int rc = 0;
  8977. int sz = 0;
  8978. struct asm_session_cmd_adjust_session_clock_v2 adjust_clock;
  8979. pr_debug("%s: adjust_time_lsw is %x, adjust_time_msw is %x\n", __func__,
  8980. adjust_time_lsw, adjust_time_msw);
  8981. if (!ac) {
  8982. pr_err("%s: audio client handle is NULL\n", __func__);
  8983. rc = -EINVAL;
  8984. goto fail_cmd;
  8985. }
  8986. if (ac->apr == NULL) {
  8987. pr_err("%s: ac->apr is NULL", __func__);
  8988. rc = -EINVAL;
  8989. goto fail_cmd;
  8990. }
  8991. sz = sizeof(struct asm_session_cmd_adjust_session_clock_v2);
  8992. q6asm_add_hdr(ac, &adjust_clock.hdr, sz, TRUE);
  8993. atomic_set(&ac->cmd_state, -1);
  8994. adjust_clock.hdr.opcode = ASM_SESSION_CMD_ADJUST_SESSION_CLOCK_V2;
  8995. adjust_clock.adjustime_lsw = adjust_time_lsw;
  8996. adjust_clock.adjustime_msw = adjust_time_msw;
  8997. rc = apr_send_pkt(ac->apr, (uint32_t *) &adjust_clock);
  8998. if (rc < 0) {
  8999. pr_err("%s: adjust_clock send failed paramid [0x%x]\n",
  9000. __func__, adjust_clock.hdr.opcode);
  9001. rc = -EINVAL;
  9002. goto fail_cmd;
  9003. }
  9004. rc = wait_event_timeout(ac->cmd_wait,
  9005. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  9006. if (!rc) {
  9007. pr_err("%s: timeout, adjust_clock paramid[0x%x]\n",
  9008. __func__, adjust_clock.hdr.opcode);
  9009. rc = -ETIMEDOUT;
  9010. goto fail_cmd;
  9011. }
  9012. if (atomic_read(&ac->cmd_state) > 0) {
  9013. pr_err("%s: DSP returned error[%s]\n",
  9014. __func__, adsp_err_get_err_str(
  9015. atomic_read(&ac->cmd_state)));
  9016. rc = adsp_err_get_lnx_err_code(
  9017. atomic_read(&ac->cmd_state));
  9018. goto fail_cmd;
  9019. }
  9020. rc = 0;
  9021. fail_cmd:
  9022. return rc;
  9023. }
  9024. EXPORT_SYMBOL(q6asm_adjust_session_clock);
  9025. /*
  9026. * q6asm_get_path_delay() - get the path delay for an audio session
  9027. * @ac: audio client handle
  9028. *
  9029. * Retrieves the current audio DSP path delay for the given audio session.
  9030. *
  9031. * Return: 0 on success, error code otherwise
  9032. */
  9033. int q6asm_get_path_delay(struct audio_client *ac)
  9034. {
  9035. int rc = 0;
  9036. struct apr_hdr hdr;
  9037. if (!ac || ac->apr == NULL) {
  9038. pr_err("%s: invalid audio client\n", __func__);
  9039. return -EINVAL;
  9040. }
  9041. hdr.opcode = ASM_SESSION_CMD_GET_PATH_DELAY_V2;
  9042. q6asm_add_hdr(ac, &hdr, sizeof(hdr), TRUE);
  9043. atomic_set(&ac->cmd_state, -1);
  9044. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9045. if (rc < 0) {
  9046. pr_err("%s: Commmand 0x%x failed %d\n", __func__,
  9047. hdr.opcode, rc);
  9048. return rc;
  9049. }
  9050. rc = wait_event_timeout(ac->cmd_wait,
  9051. (atomic_read(&ac->cmd_state) >= 0), 5 * HZ);
  9052. if (!rc) {
  9053. pr_err("%s: timeout. waited for response opcode[0x%x]\n",
  9054. __func__, hdr.opcode);
  9055. return -ETIMEDOUT;
  9056. }
  9057. if (atomic_read(&ac->cmd_state) > 0) {
  9058. pr_err("%s: DSP returned error[%s]\n",
  9059. __func__, adsp_err_get_err_str(
  9060. atomic_read(&ac->cmd_state)));
  9061. rc = adsp_err_get_lnx_err_code(
  9062. atomic_read(&ac->cmd_state));
  9063. return rc;
  9064. }
  9065. return 0;
  9066. }
  9067. EXPORT_SYMBOL(q6asm_get_path_delay);
  9068. int q6asm_get_apr_service_id(int session_id)
  9069. {
  9070. pr_debug("%s:\n", __func__);
  9071. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9072. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9073. return -EINVAL;
  9074. }
  9075. return ((struct apr_svc *)(session[session_id].ac)->apr)->id;
  9076. }
  9077. int q6asm_get_asm_topology(int session_id)
  9078. {
  9079. int topology = -EINVAL;
  9080. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9081. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9082. goto done;
  9083. }
  9084. if (session[session_id].ac == NULL) {
  9085. pr_err("%s: session not created for session id = %d\n",
  9086. __func__, session_id);
  9087. goto done;
  9088. }
  9089. topology = (session[session_id].ac)->topology;
  9090. done:
  9091. return topology;
  9092. }
  9093. int q6asm_get_asm_app_type(int session_id)
  9094. {
  9095. int app_type = -EINVAL;
  9096. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9097. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9098. goto done;
  9099. }
  9100. if (session[session_id].ac == NULL) {
  9101. pr_err("%s: session not created for session id = %d\n",
  9102. __func__, session_id);
  9103. goto done;
  9104. }
  9105. app_type = (session[session_id].ac)->app_type;
  9106. done:
  9107. return app_type;
  9108. }
  9109. /*
  9110. * Retrieving cal_block will mark cal_block as stale.
  9111. * Hence it cannot be reused or resent unless the flag
  9112. * is reset.
  9113. */
  9114. static int q6asm_get_asm_topology_apptype(struct q6asm_cal_info *cal_info)
  9115. {
  9116. struct cal_block_data *cal_block = NULL;
  9117. cal_info->topology_id = DEFAULT_POPP_TOPOLOGY;
  9118. cal_info->app_type = DEFAULT_APP_TYPE;
  9119. if (cal_data[ASM_TOPOLOGY_CAL] == NULL)
  9120. goto done;
  9121. mutex_lock(&cal_data[ASM_TOPOLOGY_CAL]->lock);
  9122. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_TOPOLOGY_CAL]);
  9123. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block))
  9124. goto unlock;
  9125. cal_info->topology_id = ((struct audio_cal_info_asm_top *)
  9126. cal_block->cal_info)->topology;
  9127. cal_info->app_type = ((struct audio_cal_info_asm_top *)
  9128. cal_block->cal_info)->app_type;
  9129. cal_utils_mark_cal_used(cal_block);
  9130. unlock:
  9131. mutex_unlock(&cal_data[ASM_TOPOLOGY_CAL]->lock);
  9132. done:
  9133. pr_debug("%s: Using topology %d app_type %d\n", __func__,
  9134. cal_info->topology_id, cal_info->app_type);
  9135. return 0;
  9136. }
  9137. /**
  9138. * q6asm_send_cal -
  9139. * command to send ASM calibration
  9140. *
  9141. * @ac: Audio client handle
  9142. *
  9143. * Returns 0 on success or error on failure
  9144. */
  9145. int q6asm_send_cal(struct audio_client *ac)
  9146. {
  9147. struct cal_block_data *cal_block = NULL;
  9148. struct mem_mapping_hdr mem_hdr;
  9149. u32 payload_size = 0;
  9150. int rc = -EINVAL;
  9151. pr_debug("%s:\n", __func__);
  9152. if (!ac) {
  9153. pr_err("%s: Audio client is NULL\n", __func__);
  9154. return -EINVAL;
  9155. }
  9156. if (ac->io_mode & NT_MODE) {
  9157. pr_debug("%s: called for NT MODE, exiting\n", __func__);
  9158. goto done;
  9159. }
  9160. if (cal_data[ASM_AUDSTRM_CAL] == NULL)
  9161. goto done;
  9162. if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) {
  9163. rc = 0; /* no cal is required, not error case */
  9164. goto done;
  9165. }
  9166. memset(&mem_hdr, 0, sizeof(mem_hdr));
  9167. mutex_lock(&cal_data[ASM_AUDSTRM_CAL]->lock);
  9168. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_AUDSTRM_CAL]);
  9169. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  9170. rc = 0; /* not error case */
  9171. pr_err("%s: cal_block is NULL or stale\n",
  9172. __func__);
  9173. goto unlock;
  9174. }
  9175. if (cal_block->cal_data.size == 0) {
  9176. rc = 0; /* not error case */
  9177. pr_debug("%s: cal_data.size is 0, don't send cal data\n",
  9178. __func__);
  9179. goto unlock;
  9180. }
  9181. rc = remap_cal_data(ASM_AUDSTRM_CAL_TYPE, cal_block);
  9182. if (rc) {
  9183. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  9184. __func__, ASM_AUDSTRM_CAL);
  9185. goto unlock;
  9186. }
  9187. mem_hdr.data_payload_addr_lsw =
  9188. lower_32_bits(cal_block->cal_data.paddr);
  9189. mem_hdr.data_payload_addr_msw =
  9190. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  9191. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  9192. payload_size = cal_block->cal_data.size;
  9193. pr_debug("%s: phyaddr lsw = %x msw = %x, maphdl = %x calsize = %d\n",
  9194. __func__, mem_hdr.data_payload_addr_lsw,
  9195. mem_hdr.data_payload_addr_msw, mem_hdr.mem_map_handle,
  9196. payload_size);
  9197. rc = q6asm_set_pp_params(ac, &mem_hdr, NULL, payload_size);
  9198. if (rc) {
  9199. pr_err("%s: audio audstrm cal send failed\n", __func__);
  9200. goto unlock;
  9201. }
  9202. if (cal_block)
  9203. cal_utils_mark_cal_used(cal_block);
  9204. rc = 0;
  9205. unlock:
  9206. mutex_unlock(&cal_data[ASM_AUDSTRM_CAL]->lock);
  9207. done:
  9208. return rc;
  9209. }
  9210. EXPORT_SYMBOL(q6asm_send_cal);
  9211. static int get_cal_type_index(int32_t cal_type)
  9212. {
  9213. int ret = -EINVAL;
  9214. switch (cal_type) {
  9215. case ASM_TOPOLOGY_CAL_TYPE:
  9216. ret = ASM_TOPOLOGY_CAL;
  9217. break;
  9218. case ASM_CUST_TOPOLOGY_CAL_TYPE:
  9219. ret = ASM_CUSTOM_TOP_CAL;
  9220. break;
  9221. case ASM_AUDSTRM_CAL_TYPE:
  9222. ret = ASM_AUDSTRM_CAL;
  9223. break;
  9224. case ASM_RTAC_APR_CAL_TYPE:
  9225. ret = ASM_RTAC_APR_CAL;
  9226. break;
  9227. default:
  9228. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  9229. }
  9230. return ret;
  9231. }
  9232. static int q6asm_alloc_cal(int32_t cal_type,
  9233. size_t data_size, void *data)
  9234. {
  9235. int ret = 0;
  9236. int cal_index;
  9237. pr_debug("%s:\n", __func__);
  9238. cal_index = get_cal_type_index(cal_type);
  9239. if (cal_index < 0) {
  9240. pr_err("%s: could not get cal index %d!\n",
  9241. __func__, cal_index);
  9242. ret = -EINVAL;
  9243. goto done;
  9244. }
  9245. ret = cal_utils_alloc_cal(data_size, data,
  9246. cal_data[cal_index], 0, NULL);
  9247. if (ret < 0) {
  9248. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  9249. __func__, ret, cal_type);
  9250. ret = -EINVAL;
  9251. goto done;
  9252. }
  9253. done:
  9254. return ret;
  9255. }
  9256. static int q6asm_dealloc_cal(int32_t cal_type,
  9257. size_t data_size, void *data)
  9258. {
  9259. int ret = 0;
  9260. int cal_index;
  9261. pr_debug("%s:\n", __func__);
  9262. cal_index = get_cal_type_index(cal_type);
  9263. if (cal_index < 0) {
  9264. pr_err("%s: could not get cal index %d!\n",
  9265. __func__, cal_index);
  9266. ret = -EINVAL;
  9267. goto done;
  9268. }
  9269. ret = cal_utils_dealloc_cal(data_size, data,
  9270. cal_data[cal_index]);
  9271. if (ret < 0) {
  9272. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  9273. __func__, ret, cal_type);
  9274. ret = -EINVAL;
  9275. goto done;
  9276. }
  9277. done:
  9278. return ret;
  9279. }
  9280. static int q6asm_set_cal(int32_t cal_type,
  9281. size_t data_size, void *data)
  9282. {
  9283. int ret = 0;
  9284. int cal_index;
  9285. pr_debug("%s:\n", __func__);
  9286. cal_index = get_cal_type_index(cal_type);
  9287. if (cal_index < 0) {
  9288. pr_err("%s: could not get cal index %d!\n",
  9289. __func__, cal_index);
  9290. ret = -EINVAL;
  9291. goto done;
  9292. }
  9293. ret = cal_utils_set_cal(data_size, data,
  9294. cal_data[cal_index], 0, NULL);
  9295. if (ret < 0) {
  9296. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  9297. __func__, ret, cal_type);
  9298. ret = -EINVAL;
  9299. goto done;
  9300. }
  9301. if (cal_index == ASM_CUSTOM_TOP_CAL) {
  9302. mutex_lock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  9303. set_custom_topology = 1;
  9304. mutex_unlock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  9305. }
  9306. done:
  9307. return ret;
  9308. }
  9309. static void q6asm_delete_cal_data(void)
  9310. {
  9311. pr_debug("%s:\n", __func__);
  9312. cal_utils_destroy_cal_types(ASM_MAX_CAL_TYPES, cal_data);
  9313. }
  9314. static int q6asm_init_cal_data(void)
  9315. {
  9316. int ret = 0;
  9317. struct cal_type_info cal_type_info[] = {
  9318. {{ASM_TOPOLOGY_CAL_TYPE,
  9319. {NULL, NULL, NULL,
  9320. q6asm_set_cal, NULL, NULL} },
  9321. {NULL, NULL, cal_utils_match_buf_num} },
  9322. {{ASM_CUST_TOPOLOGY_CAL_TYPE,
  9323. {q6asm_alloc_cal, q6asm_dealloc_cal, NULL,
  9324. q6asm_set_cal, NULL, NULL} },
  9325. {NULL, q6asm_unmap_cal_memory, cal_utils_match_buf_num} },
  9326. {{ASM_AUDSTRM_CAL_TYPE,
  9327. {q6asm_alloc_cal, q6asm_dealloc_cal, NULL,
  9328. q6asm_set_cal, NULL, NULL} },
  9329. {NULL, q6asm_unmap_cal_memory, cal_utils_match_buf_num} },
  9330. {{ASM_RTAC_APR_CAL_TYPE,
  9331. {NULL, NULL, NULL, NULL, NULL, NULL} },
  9332. {NULL, NULL, cal_utils_match_buf_num} }
  9333. };
  9334. pr_debug("%s\n", __func__);
  9335. ret = cal_utils_create_cal_types(ASM_MAX_CAL_TYPES, cal_data,
  9336. cal_type_info);
  9337. if (ret < 0) {
  9338. pr_err("%s: could not create cal type! %d\n",
  9339. __func__, ret);
  9340. ret = -EINVAL;
  9341. goto err;
  9342. }
  9343. return ret;
  9344. err:
  9345. q6asm_delete_cal_data();
  9346. return ret;
  9347. }
  9348. static int q6asm_is_valid_session(struct apr_client_data *data, void *priv)
  9349. {
  9350. struct audio_client *ac = (struct audio_client *)priv;
  9351. union asm_token_struct asm_token;
  9352. asm_token.token = data->token;
  9353. if (asm_token._token.session_id != ac->session) {
  9354. pr_err("%s: Invalid session[%d] rxed expected[%d]",
  9355. __func__, asm_token._token.session_id, ac->session);
  9356. return -EINVAL;
  9357. }
  9358. return 0;
  9359. }
  9360. int __init q6asm_init(void)
  9361. {
  9362. int lcnt, ret;
  9363. pr_debug("%s:\n", __func__);
  9364. memset(session, 0, sizeof(struct audio_session) *
  9365. (ASM_ACTIVE_STREAMS_ALLOWED + 1));
  9366. for (lcnt = 0; lcnt <= ASM_ACTIVE_STREAMS_ALLOWED; lcnt++) {
  9367. spin_lock_init(&(session[lcnt].session_lock));
  9368. mutex_init(&(session[lcnt].mutex_lock_per_session));
  9369. }
  9370. set_custom_topology = 1;
  9371. /*setup common client used for cal mem map */
  9372. common_client.session = ASM_CONTROL_SESSION;
  9373. common_client.port[0].buf = &common_buf[0];
  9374. common_client.port[1].buf = &common_buf[1];
  9375. init_waitqueue_head(&common_client.cmd_wait);
  9376. init_waitqueue_head(&common_client.time_wait);
  9377. init_waitqueue_head(&common_client.mem_wait);
  9378. atomic_set(&common_client.time_flag, 1);
  9379. INIT_LIST_HEAD(&common_client.port[0].mem_map_handle);
  9380. INIT_LIST_HEAD(&common_client.port[1].mem_map_handle);
  9381. mutex_init(&common_client.cmd_lock);
  9382. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  9383. mutex_init(&common_client.port[lcnt].lock);
  9384. spin_lock_init(&common_client.port[lcnt].dsp_lock);
  9385. }
  9386. atomic_set(&common_client.cmd_state, 0);
  9387. atomic_set(&common_client.mem_state, 0);
  9388. ret = q6asm_init_cal_data();
  9389. if (ret)
  9390. pr_err("%s: could not init cal data! ret %d\n",
  9391. __func__, ret);
  9392. config_debug_fs_init();
  9393. return 0;
  9394. }
  9395. void q6asm_exit(void)
  9396. {
  9397. q6asm_delete_cal_data();
  9398. }