q6asm.c 302 KB

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