q6asm.c 277 KB

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