q6asm.c 271 KB

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