q6asm.c 304 KB

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