q6asm.c 305 KB

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