q6asm.c 254 KB

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