q6asm.c 276 KB

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