q6asm.c 298 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035
  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_STREAM_CMD_REGISTER_IEC_61937_FMT_UPDATE:
  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
  2122. pr_debug("%s: payload size of %x is less than expected.\n",
  2123. __func__, data->payload_size);
  2124. i = is_adsp_raise_event(data->opcode);
  2125. if (i < 0) {
  2126. spin_unlock_irqrestore(
  2127. &(session[session_id].session_lock), flags);
  2128. return 0;
  2129. }
  2130. /* repack payload for asm_stream_pp_event
  2131. * package is composed of event type + size + actual payload
  2132. */
  2133. payload_size = data->payload_size;
  2134. if (payload_size > UINT_MAX - sizeof(struct msm_adsp_event_data)) {
  2135. pr_err("%s: payload size = %d exceeds limit.\n",
  2136. __func__, payload_size);
  2137. spin_unlock(&(session[session_id].session_lock));
  2138. return -EINVAL;
  2139. }
  2140. pp_event_package = kzalloc(payload_size
  2141. + sizeof(struct msm_adsp_event_data),
  2142. GFP_ATOMIC);
  2143. if (!pp_event_package) {
  2144. spin_unlock_irqrestore(
  2145. &(session[session_id].session_lock), flags);
  2146. return -ENOMEM;
  2147. }
  2148. pp_event_package->event_type = i;
  2149. pp_event_package->payload_len = payload_size;
  2150. memcpy((void *)pp_event_package->payload,
  2151. data->payload, payload_size);
  2152. ac->cb(data->opcode, data->token,
  2153. (void *)pp_event_package, ac->priv);
  2154. kfree(pp_event_package);
  2155. spin_unlock_irqrestore(
  2156. &(session[session_id].session_lock), flags);
  2157. return 0;
  2158. case ASM_SESSION_CMDRSP_ADJUST_SESSION_CLOCK_V2:
  2159. if (data->payload_size >= 3 * sizeof(uint32_t))
  2160. pr_debug("%s: ASM_SESSION_CMDRSP_ADJUST_SESSION_CLOCK_V2 sesion %d status 0x%x msw %u lsw %u\n",
  2161. __func__, ac->session, payload[0], payload[2],
  2162. payload[1]);
  2163. else
  2164. pr_err("%s: payload size of %x is less than expected.\n",
  2165. __func__, data->payload_size);
  2166. wake_up(&ac->cmd_wait);
  2167. break;
  2168. case ASM_SESSION_CMDRSP_GET_PATH_DELAY_V2:
  2169. if (data->payload_size >= 3 * sizeof(uint32_t))
  2170. pr_debug("%s: ASM_SESSION_CMDRSP_GET_PATH_DELAY_V2 session %d status 0x%x msw %u lsw %u\n",
  2171. __func__, ac->session, payload[0], payload[2],
  2172. payload[1]);
  2173. else
  2174. pr_err("%s: payload size of %x is less than expected.\n",
  2175. __func__, data->payload_size);
  2176. if (payload[0] == 0 && data->payload_size >= 2 * sizeof(uint32_t)) {
  2177. atomic_set(&ac->cmd_state, 0);
  2178. /* ignore msw, as a delay that large shouldn't happen */
  2179. ac->path_delay = payload[1];
  2180. } else {
  2181. atomic_set(&ac->cmd_state, payload[0]);
  2182. ac->path_delay = UINT_MAX;
  2183. }
  2184. wake_up(&ac->cmd_wait);
  2185. break;
  2186. }
  2187. if (ac->cb)
  2188. ac->cb(data->opcode, data->token,
  2189. data->payload, ac->priv);
  2190. spin_unlock_irqrestore(
  2191. &(session[session_id].session_lock), flags);
  2192. return 0;
  2193. }
  2194. /**
  2195. * q6asm_is_cpu_buf_avail -
  2196. * retrieve next CPU buf avail
  2197. *
  2198. * @dir: RX or TX direction
  2199. * @ac: Audio client handle
  2200. * @size: size pointer to be updated with size of buffer
  2201. * @index: index pointer to be updated with
  2202. * CPU buffer index available
  2203. *
  2204. * Returns buffer pointer on success or NULL on failure
  2205. */
  2206. void *q6asm_is_cpu_buf_avail(int dir, struct audio_client *ac, uint32_t *size,
  2207. uint32_t *index)
  2208. {
  2209. void *data;
  2210. unsigned char idx;
  2211. struct audio_port_data *port;
  2212. if (!ac || ((dir != IN) && (dir != OUT))) {
  2213. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2214. return NULL;
  2215. }
  2216. if (ac->io_mode & SYNC_IO_MODE) {
  2217. port = &ac->port[dir];
  2218. mutex_lock(&port->lock);
  2219. idx = port->cpu_buf;
  2220. if (port->buf == NULL) {
  2221. pr_err("%s: Buffer pointer null\n", __func__);
  2222. mutex_unlock(&port->lock);
  2223. return NULL;
  2224. }
  2225. /* dir 0: used = 0 means buf in use
  2226. * dir 1: used = 1 means buf in use
  2227. */
  2228. if (port->buf[idx].used == dir) {
  2229. /* To make it more robust, we could loop and get the
  2230. * next avail buf, its risky though
  2231. */
  2232. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2233. __func__, idx, dir);
  2234. mutex_unlock(&port->lock);
  2235. return NULL;
  2236. }
  2237. *size = port->buf[idx].actual_size;
  2238. *index = port->cpu_buf;
  2239. data = port->buf[idx].data;
  2240. dev_vdbg(ac->dev, "%s: session[%d]index[%d] data[%pK]size[%d]\n",
  2241. __func__,
  2242. ac->session,
  2243. port->cpu_buf,
  2244. data, *size);
  2245. /* By default increase the cpu_buf cnt
  2246. * user accesses this function,increase cpu
  2247. * buf(to avoid another api)
  2248. */
  2249. port->buf[idx].used = dir;
  2250. port->cpu_buf = q6asm_get_next_buf(ac, port->cpu_buf,
  2251. port->max_buf_cnt);
  2252. mutex_unlock(&port->lock);
  2253. return data;
  2254. }
  2255. return NULL;
  2256. }
  2257. EXPORT_SYMBOL(q6asm_is_cpu_buf_avail);
  2258. /**
  2259. * q6asm_cpu_buf_release -
  2260. * releases cpu buffer for ASM
  2261. *
  2262. * @dir: RX or TX direction
  2263. * @ac: Audio client handle
  2264. *
  2265. * Returns 0 on success or error on failure
  2266. */
  2267. int q6asm_cpu_buf_release(int dir, struct audio_client *ac)
  2268. {
  2269. struct audio_port_data *port;
  2270. int ret = 0;
  2271. int idx;
  2272. if (!ac || ((dir != IN) && (dir != OUT))) {
  2273. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2274. ret = -EINVAL;
  2275. goto exit;
  2276. }
  2277. if (ac->io_mode & SYNC_IO_MODE) {
  2278. port = &ac->port[dir];
  2279. mutex_lock(&port->lock);
  2280. idx = port->cpu_buf;
  2281. if (port->cpu_buf == 0) {
  2282. port->cpu_buf = port->max_buf_cnt - 1;
  2283. } else if (port->cpu_buf < port->max_buf_cnt) {
  2284. port->cpu_buf = port->cpu_buf - 1;
  2285. } else {
  2286. pr_err("%s: buffer index(%d) out of range\n",
  2287. __func__, port->cpu_buf);
  2288. ret = -EINVAL;
  2289. mutex_unlock(&port->lock);
  2290. goto exit;
  2291. }
  2292. port->buf[port->cpu_buf].used = dir ^ 1;
  2293. mutex_unlock(&port->lock);
  2294. }
  2295. exit:
  2296. return ret;
  2297. }
  2298. EXPORT_SYMBOL(q6asm_cpu_buf_release);
  2299. /**
  2300. * q6asm_is_cpu_buf_avail_nolock -
  2301. * retrieve next CPU buf avail without lock acquire
  2302. *
  2303. * @dir: RX or TX direction
  2304. * @ac: Audio client handle
  2305. * @size: size pointer to be updated with size of buffer
  2306. * @index: index pointer to be updated with
  2307. * CPU buffer index available
  2308. *
  2309. * Returns buffer pointer on success or NULL on failure
  2310. */
  2311. void *q6asm_is_cpu_buf_avail_nolock(int dir, struct audio_client *ac,
  2312. uint32_t *size, uint32_t *index)
  2313. {
  2314. void *data;
  2315. unsigned char idx;
  2316. struct audio_port_data *port;
  2317. if (!ac || ((dir != IN) && (dir != OUT))) {
  2318. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2319. return NULL;
  2320. }
  2321. port = &ac->port[dir];
  2322. idx = port->cpu_buf;
  2323. if (port->buf == NULL) {
  2324. pr_err("%s: Buffer pointer null\n", __func__);
  2325. return NULL;
  2326. }
  2327. /*
  2328. * dir 0: used = 0 means buf in use
  2329. * dir 1: used = 1 means buf in use
  2330. */
  2331. if (port->buf[idx].used == dir) {
  2332. /*
  2333. * To make it more robust, we could loop and get the
  2334. * next avail buf, its risky though
  2335. */
  2336. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2337. __func__, idx, dir);
  2338. return NULL;
  2339. }
  2340. *size = port->buf[idx].actual_size;
  2341. *index = port->cpu_buf;
  2342. data = port->buf[idx].data;
  2343. dev_vdbg(ac->dev, "%s: session[%d]index[%d] data[%pK]size[%d]\n",
  2344. __func__, ac->session, port->cpu_buf,
  2345. data, *size);
  2346. /*
  2347. * By default increase the cpu_buf cnt
  2348. * user accesses this function,increase cpu
  2349. * buf(to avoid another api)
  2350. */
  2351. port->buf[idx].used = dir;
  2352. port->cpu_buf = q6asm_get_next_buf(ac, port->cpu_buf,
  2353. port->max_buf_cnt);
  2354. return data;
  2355. }
  2356. EXPORT_SYMBOL(q6asm_is_cpu_buf_avail_nolock);
  2357. int q6asm_is_dsp_buf_avail(int dir, struct audio_client *ac)
  2358. {
  2359. int ret = -1;
  2360. struct audio_port_data *port;
  2361. uint32_t idx;
  2362. if (!ac || (dir != OUT)) {
  2363. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  2364. return ret;
  2365. }
  2366. if (ac->io_mode & SYNC_IO_MODE) {
  2367. port = &ac->port[dir];
  2368. mutex_lock(&port->lock);
  2369. idx = port->dsp_buf;
  2370. if (port->buf[idx].used == (dir ^ 1)) {
  2371. /* To make it more robust, we could loop and get the
  2372. * next avail buf, its risky though
  2373. */
  2374. pr_err("%s: Next buf idx[0x%x] not available, dir[%d]\n",
  2375. __func__, idx, dir);
  2376. mutex_unlock(&port->lock);
  2377. return ret;
  2378. }
  2379. dev_vdbg(ac->dev, "%s: session[%d]dsp_buf=%d cpu_buf=%d\n",
  2380. __func__,
  2381. ac->session, port->dsp_buf, port->cpu_buf);
  2382. ret = ((port->dsp_buf != port->cpu_buf) ? 0 : -1);
  2383. mutex_unlock(&port->lock);
  2384. }
  2385. return ret;
  2386. }
  2387. static void __q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2388. uint32_t pkt_size, uint32_t cmd_flg, uint32_t stream_id)
  2389. {
  2390. unsigned long flags = 0;
  2391. dev_vdbg(ac->dev, "%s: pkt_size=%d cmd_flg=%d session=%d stream_id=%d\n",
  2392. __func__, pkt_size, cmd_flg, ac->session, stream_id);
  2393. mutex_lock(&ac->cmd_lock);
  2394. spin_lock_irqsave(&(session[ac->session].session_lock), flags);
  2395. if (ac->apr == NULL) {
  2396. pr_err("%s: AC APR handle NULL", __func__);
  2397. spin_unlock_irqrestore(
  2398. &(session[ac->session].session_lock), flags);
  2399. mutex_unlock(&ac->cmd_lock);
  2400. return;
  2401. }
  2402. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2403. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2404. APR_PKT_VER);
  2405. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2406. hdr->src_domain = APR_DOMAIN_APPS;
  2407. hdr->dest_svc = APR_SVC_ASM;
  2408. hdr->dest_domain = APR_DOMAIN_ADSP;
  2409. hdr->src_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2410. hdr->dest_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2411. if (cmd_flg)
  2412. q6asm_update_token(&hdr->token,
  2413. ac->session,
  2414. 0, /* Stream ID is NA */
  2415. 0, /* Buffer index is NA */
  2416. 0, /* Direction flag is NA */
  2417. WAIT_CMD);
  2418. hdr->pkt_size = pkt_size;
  2419. spin_unlock_irqrestore(
  2420. &(session[ac->session].session_lock), flags);
  2421. mutex_unlock(&ac->cmd_lock);
  2422. }
  2423. static void q6asm_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2424. uint32_t pkt_size, uint32_t cmd_flg)
  2425. {
  2426. __q6asm_add_hdr(ac, hdr, pkt_size, cmd_flg, ac->stream_id);
  2427. }
  2428. static void q6asm_stream_add_hdr(struct audio_client *ac, struct apr_hdr *hdr,
  2429. uint32_t pkt_size, uint32_t cmd_flg, int32_t stream_id)
  2430. {
  2431. __q6asm_add_hdr(ac, hdr, pkt_size, cmd_flg, stream_id);
  2432. }
  2433. static void __q6asm_add_hdr_async(struct audio_client *ac, struct apr_hdr *hdr,
  2434. uint32_t pkt_size, uint32_t cmd_flg,
  2435. uint32_t stream_id, u8 no_wait_flag)
  2436. {
  2437. dev_vdbg(ac->dev, "%s: pkt_size = %d, cmd_flg = %d, session = %d stream_id=%d\n",
  2438. __func__, pkt_size, cmd_flg, ac->session, stream_id);
  2439. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2440. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2441. APR_PKT_VER);
  2442. if (ac->apr == NULL) {
  2443. pr_err("%s: AC APR is NULL", __func__);
  2444. return;
  2445. }
  2446. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2447. hdr->src_domain = APR_DOMAIN_APPS;
  2448. hdr->dest_svc = APR_SVC_ASM;
  2449. hdr->dest_domain = APR_DOMAIN_ADSP;
  2450. hdr->src_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2451. hdr->dest_port = ((ac->session << 8) & 0xFF00) | (stream_id);
  2452. if (cmd_flg) {
  2453. q6asm_update_token(&hdr->token,
  2454. ac->session,
  2455. 0, /* Stream ID is NA */
  2456. 0, /* Buffer index is NA */
  2457. 0, /* Direction flag is NA */
  2458. no_wait_flag);
  2459. }
  2460. hdr->pkt_size = pkt_size;
  2461. }
  2462. static void q6asm_add_hdr_async(struct audio_client *ac, struct apr_hdr *hdr,
  2463. uint32_t pkt_size, uint32_t cmd_flg)
  2464. {
  2465. __q6asm_add_hdr_async(ac, hdr, pkt_size, cmd_flg,
  2466. ac->stream_id, WAIT_CMD);
  2467. }
  2468. static void q6asm_stream_add_hdr_async(struct audio_client *ac,
  2469. struct apr_hdr *hdr, uint32_t pkt_size,
  2470. uint32_t cmd_flg, int32_t stream_id)
  2471. {
  2472. __q6asm_add_hdr_async(ac, hdr, pkt_size, cmd_flg,
  2473. stream_id, NO_WAIT_CMD);
  2474. }
  2475. static void q6asm_add_hdr_custom_topology(struct audio_client *ac,
  2476. struct apr_hdr *hdr,
  2477. uint32_t pkt_size)
  2478. {
  2479. pr_debug("%s: pkt_size=%d session=%d\n",
  2480. __func__, pkt_size, ac->session);
  2481. if (ac->apr == NULL) {
  2482. pr_err("%s: AC APR handle NULL\n", __func__);
  2483. return;
  2484. }
  2485. mutex_lock(&ac->cmd_lock);
  2486. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2487. APR_HDR_LEN(sizeof(struct apr_hdr)),
  2488. APR_PKT_VER);
  2489. hdr->src_svc = ((struct apr_svc *)ac->apr)->id;
  2490. hdr->src_domain = APR_DOMAIN_APPS;
  2491. hdr->dest_svc = APR_SVC_ASM;
  2492. hdr->dest_domain = APR_DOMAIN_ADSP;
  2493. hdr->src_port = ((ac->session << 8) & 0xFF00) | 0x01;
  2494. hdr->dest_port = 0;
  2495. q6asm_update_token(&hdr->token,
  2496. ac->session,
  2497. 0, /* Stream ID is NA */
  2498. 0, /* Buffer index is NA */
  2499. 0, /* Direction flag is NA */
  2500. WAIT_CMD);
  2501. hdr->pkt_size = pkt_size;
  2502. mutex_unlock(&ac->cmd_lock);
  2503. }
  2504. static void q6asm_add_mmaphdr(struct audio_client *ac, struct apr_hdr *hdr,
  2505. u32 pkt_size, int dir)
  2506. {
  2507. pr_debug("%s: pkt size=%d\n",
  2508. __func__, pkt_size);
  2509. hdr->hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2510. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2511. hdr->src_port = 0;
  2512. hdr->dest_port = 0;
  2513. q6asm_update_token(&hdr->token,
  2514. ac->session,
  2515. 0, /* Stream ID is NA */
  2516. 0, /* Buffer index is NA */
  2517. dir,
  2518. WAIT_CMD);
  2519. hdr->pkt_size = pkt_size;
  2520. }
  2521. /**
  2522. * q6asm_set_pp_params
  2523. * command to set ASM parameter data
  2524. * send memory mapping header for out of band case
  2525. * send pre-packed parameter data for in band case
  2526. *
  2527. * @ac: audio client handle
  2528. * @mem_hdr: memory mapping header
  2529. * @param_data: pre-packed parameter payload
  2530. * @param_size: size of pre-packed parameter data
  2531. *
  2532. * Returns 0 on success or error on failure
  2533. */
  2534. int q6asm_set_pp_params(struct audio_client *ac,
  2535. struct mem_mapping_hdr *mem_hdr, u8 *param_data,
  2536. u32 param_size)
  2537. {
  2538. struct asm_stream_cmd_set_pp_params *asm_set_param = NULL;
  2539. int pkt_size = 0;
  2540. int ret = 0;
  2541. int session_id = 0;
  2542. if (ac == NULL) {
  2543. pr_err("%s: Audio Client is NULL\n", __func__);
  2544. return -EINVAL;
  2545. } else if (ac->apr == NULL) {
  2546. pr_err("%s: APR pointer is NULL\n", __func__);
  2547. return -EINVAL;
  2548. }
  2549. session_id = q6asm_get_session_id_from_audio_client(ac);
  2550. if (!session_id)
  2551. return -EINVAL;
  2552. pkt_size = sizeof(struct asm_stream_cmd_set_pp_params);
  2553. /* Add param size to packet size when sending in-band only */
  2554. if (param_data != NULL)
  2555. pkt_size += param_size;
  2556. asm_set_param = kzalloc(pkt_size, GFP_KERNEL);
  2557. if (!asm_set_param)
  2558. return -ENOMEM;
  2559. mutex_lock(&session[session_id].mutex_lock_per_session);
  2560. if (!q6asm_is_valid_audio_client(ac)) {
  2561. ret = -EINVAL;
  2562. goto done;
  2563. }
  2564. if (ac->apr == NULL) {
  2565. pr_err("%s: AC APR handle NULL\n", __func__);
  2566. ret = -EINVAL;
  2567. goto done;
  2568. }
  2569. q6asm_add_hdr_async(ac, &asm_set_param->apr_hdr, pkt_size, TRUE);
  2570. /* With pre-packed data, only the opcode differs from V2 and V3. */
  2571. if (q6common_is_instance_id_supported())
  2572. asm_set_param->apr_hdr.opcode = ASM_STREAM_CMD_SET_PP_PARAMS_V3;
  2573. else
  2574. asm_set_param->apr_hdr.opcode = ASM_STREAM_CMD_SET_PP_PARAMS_V2;
  2575. asm_set_param->payload_size = param_size;
  2576. if (mem_hdr != NULL) {
  2577. /* Out of band case */
  2578. asm_set_param->mem_hdr = *mem_hdr;
  2579. } else if (param_data != NULL) {
  2580. /*
  2581. * In band case. Parameter data must be pre-packed with its
  2582. * header before calling this function. Use
  2583. * q6common_pack_pp_params to pack parameter data and header
  2584. * correctly.
  2585. */
  2586. memcpy(&asm_set_param->param_data, param_data, param_size);
  2587. } else {
  2588. pr_err("%s: Received NULL pointers for both mem header and param data\n",
  2589. __func__);
  2590. ret = -EINVAL;
  2591. goto done;
  2592. }
  2593. atomic_set(&ac->cmd_state_pp, -1);
  2594. ret = apr_send_pkt(ac->apr, (uint32_t *)asm_set_param);
  2595. if (ret < 0) {
  2596. pr_err("%s: apr send failed rc %d\n", __func__, ret);
  2597. ret = -EINVAL;
  2598. goto done;
  2599. }
  2600. ret = wait_event_timeout(ac->cmd_wait,
  2601. atomic_read(&ac->cmd_state_pp) >= 0,
  2602. msecs_to_jiffies(TIMEOUT_MS));
  2603. if (!ret) {
  2604. pr_err("%s: timeout sending apr pkt\n", __func__);
  2605. ret = -ETIMEDOUT;
  2606. goto done;
  2607. }
  2608. if (atomic_read(&ac->cmd_state_pp) > 0) {
  2609. pr_err("%s: DSP returned error[%s]\n", __func__,
  2610. adsp_err_get_err_str(atomic_read(&ac->cmd_state_pp)));
  2611. ret = adsp_err_get_lnx_err_code(atomic_read(&ac->cmd_state_pp));
  2612. goto done;
  2613. }
  2614. ret = 0;
  2615. done:
  2616. mutex_unlock(&session[session_id].mutex_lock_per_session);
  2617. kfree(asm_set_param);
  2618. return ret;
  2619. }
  2620. EXPORT_SYMBOL(q6asm_set_pp_params);
  2621. /**
  2622. * q6asm_pack_and_set_pp_param_in_band
  2623. * command to pack and set parameter data for in band case
  2624. *
  2625. * @ac: audio client handle
  2626. * @param_hdr: parameter header
  2627. * @param_data: parameter data
  2628. *
  2629. * Returns 0 on success or error on failure
  2630. */
  2631. int q6asm_pack_and_set_pp_param_in_band(struct audio_client *ac,
  2632. struct param_hdr_v3 param_hdr,
  2633. u8 *param_data)
  2634. {
  2635. u8 *packed_data = NULL;
  2636. u32 packed_size = sizeof(union param_hdrs) + param_hdr.param_size;
  2637. int ret = 0;
  2638. if (ac == NULL) {
  2639. pr_err("%s: Audio Client is NULL\n", __func__);
  2640. return -EINVAL;
  2641. }
  2642. packed_data = kzalloc(packed_size, GFP_KERNEL);
  2643. if (packed_data == NULL)
  2644. return -ENOMEM;
  2645. ret = q6common_pack_pp_params(packed_data, &param_hdr, param_data,
  2646. &packed_size);
  2647. if (ret) {
  2648. pr_err("%s: Failed to pack params, error %d\n", __func__, ret);
  2649. goto done;
  2650. }
  2651. ret = q6asm_set_pp_params(ac, NULL, packed_data, packed_size);
  2652. done:
  2653. kfree(packed_data);
  2654. return ret;
  2655. }
  2656. EXPORT_SYMBOL(q6asm_pack_and_set_pp_param_in_band);
  2657. /**
  2658. * q6asm_set_soft_volume_module_instance_ids
  2659. * command to set module and instance ids for soft volume
  2660. *
  2661. * @instance: soft volume instance
  2662. * @param_hdr: parameter header
  2663. *
  2664. * Returns 0 on success or error on failure
  2665. */
  2666. int q6asm_set_soft_volume_module_instance_ids(int instance,
  2667. struct param_hdr_v3 *param_hdr)
  2668. {
  2669. if (param_hdr == NULL) {
  2670. pr_err("%s: Param header is NULL\n", __func__);
  2671. return -EINVAL;
  2672. }
  2673. switch (instance) {
  2674. case SOFT_VOLUME_INSTANCE_2:
  2675. param_hdr->module_id = ASM_MODULE_ID_VOL_CTRL2;
  2676. param_hdr->instance_id = INSTANCE_ID_0;
  2677. return 0;
  2678. case SOFT_VOLUME_INSTANCE_1:
  2679. param_hdr->module_id = ASM_MODULE_ID_VOL_CTRL;
  2680. param_hdr->instance_id = INSTANCE_ID_0;
  2681. return 0;
  2682. default:
  2683. pr_err("%s: Invalid instance %d\n", __func__, instance);
  2684. return -EINVAL;
  2685. }
  2686. }
  2687. EXPORT_SYMBOL(q6asm_set_soft_volume_module_instance_ids);
  2688. /**
  2689. * q6asm_open_read_compressed -
  2690. * command to open ASM in compressed read mode
  2691. *
  2692. * @ac: Audio client handle
  2693. * @format: capture format for ASM
  2694. * @passthrough_flag: flag to indicate passthrough option
  2695. *
  2696. * Returns 0 on success or error on failure
  2697. */
  2698. int q6asm_open_read_compressed(struct audio_client *ac, uint32_t format,
  2699. uint32_t passthrough_flag)
  2700. {
  2701. int rc = 0;
  2702. struct asm_stream_cmd_open_read_compressed open;
  2703. if (ac == NULL) {
  2704. pr_err("%s: ac[%pK] NULL\n", __func__, ac);
  2705. rc = -EINVAL;
  2706. goto fail_cmd;
  2707. }
  2708. if (ac->apr == NULL) {
  2709. pr_err("%s: APR handle[%pK] NULL\n", __func__, ac->apr);
  2710. rc = -EINVAL;
  2711. goto fail_cmd;
  2712. }
  2713. pr_debug("%s: session[%d] wr_format[0x%x]\n", __func__, ac->session,
  2714. format);
  2715. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  2716. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READ_COMPRESSED;
  2717. atomic_set(&ac->cmd_state, -1);
  2718. /*
  2719. * Below flag indicates whether DSP shall keep IEC61937 packing or
  2720. * unpack to raw compressed format
  2721. */
  2722. if (format == FORMAT_IEC61937) {
  2723. open.mode_flags = 0x1;
  2724. pr_debug("%s: Flag 1 IEC61937 output\n", __func__);
  2725. } else {
  2726. open.mode_flags = 0;
  2727. open.frames_per_buf = 1;
  2728. pr_debug("%s: Flag 0 RAW_COMPR output\n", __func__);
  2729. }
  2730. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  2731. if (rc < 0) {
  2732. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  2733. __func__, open.hdr.opcode, rc);
  2734. rc = -EINVAL;
  2735. goto fail_cmd;
  2736. }
  2737. rc = wait_event_timeout(ac->cmd_wait,
  2738. (atomic_read(&ac->cmd_state) >= 0),
  2739. msecs_to_jiffies(TIMEOUT_MS));
  2740. if (!rc) {
  2741. pr_err("%s: timeout. waited for OPEN_READ_COMPR rc[%d]\n",
  2742. __func__, rc);
  2743. rc = -ETIMEDOUT;
  2744. goto fail_cmd;
  2745. }
  2746. if (atomic_read(&ac->cmd_state) > 0) {
  2747. pr_err("%s: DSP returned error[%s]\n",
  2748. __func__, adsp_err_get_err_str(
  2749. atomic_read(&ac->cmd_state)));
  2750. rc = adsp_err_get_lnx_err_code(
  2751. atomic_read(&ac->cmd_state));
  2752. goto fail_cmd;
  2753. }
  2754. return 0;
  2755. fail_cmd:
  2756. return rc;
  2757. }
  2758. EXPORT_SYMBOL(q6asm_open_read_compressed);
  2759. static int __q6asm_open_read(struct audio_client *ac,
  2760. uint32_t format, uint16_t bits_per_sample,
  2761. uint32_t pcm_format_block_ver,
  2762. bool ts_mode, uint32_t enc_cfg_id)
  2763. {
  2764. int rc = 0x00;
  2765. struct asm_stream_cmd_open_read_v3 open;
  2766. struct q6asm_cal_info cal_info;
  2767. config_debug_fs_reset_index();
  2768. if (ac == NULL) {
  2769. pr_err("%s: APR handle NULL\n", __func__);
  2770. return -EINVAL;
  2771. }
  2772. if (ac->apr == NULL) {
  2773. pr_err("%s: AC APR handle NULL\n", __func__);
  2774. return -EINVAL;
  2775. }
  2776. pr_debug("%s: session[%d]\n", __func__, ac->session);
  2777. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  2778. atomic_set(&ac->cmd_state, -1);
  2779. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READ_V3;
  2780. /* Stream prio : High, provide meta info with encoded frames */
  2781. open.src_endpointype = ASM_END_POINT_DEVICE_MATRIX;
  2782. rc = q6asm_get_asm_topology_apptype(&cal_info);
  2783. open.preprocopo_id = cal_info.topology_id;
  2784. open.bits_per_sample = bits_per_sample;
  2785. open.mode_flags = 0x0;
  2786. ac->topology = open.preprocopo_id;
  2787. ac->app_type = cal_info.app_type;
  2788. if (ac->perf_mode == LOW_LATENCY_PCM_MODE) {
  2789. open.mode_flags |= ASM_LOW_LATENCY_TX_STREAM_SESSION <<
  2790. ASM_SHIFT_STREAM_PERF_MODE_FLAG_IN_OPEN_READ;
  2791. } else {
  2792. open.mode_flags |= ASM_LEGACY_STREAM_SESSION <<
  2793. ASM_SHIFT_STREAM_PERF_MODE_FLAG_IN_OPEN_READ;
  2794. }
  2795. switch (format) {
  2796. case FORMAT_LINEAR_PCM:
  2797. open.mode_flags |= 0x00;
  2798. open.enc_cfg_id = q6asm_get_pcm_format_id(pcm_format_block_ver);
  2799. if (ts_mode)
  2800. open.mode_flags |= ABSOLUTE_TIMESTAMP_ENABLE;
  2801. break;
  2802. case FORMAT_MPEG4_AAC:
  2803. open.mode_flags |= BUFFER_META_ENABLE;
  2804. open.enc_cfg_id = ASM_MEDIA_FMT_AAC_V2;
  2805. break;
  2806. case FORMAT_G711_ALAW_FS:
  2807. open.mode_flags |= BUFFER_META_ENABLE;
  2808. open.enc_cfg_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  2809. break;
  2810. case FORMAT_G711_MLAW_FS:
  2811. open.mode_flags |= BUFFER_META_ENABLE;
  2812. open.enc_cfg_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  2813. break;
  2814. case FORMAT_V13K:
  2815. open.mode_flags |= BUFFER_META_ENABLE;
  2816. open.enc_cfg_id = ASM_MEDIA_FMT_V13K_FS;
  2817. break;
  2818. case FORMAT_EVRC:
  2819. open.mode_flags |= BUFFER_META_ENABLE;
  2820. open.enc_cfg_id = ASM_MEDIA_FMT_EVRC_FS;
  2821. break;
  2822. case FORMAT_AMRNB:
  2823. open.mode_flags |= BUFFER_META_ENABLE;
  2824. open.enc_cfg_id = ASM_MEDIA_FMT_AMRNB_FS;
  2825. break;
  2826. case FORMAT_AMRWB:
  2827. open.mode_flags |= BUFFER_META_ENABLE;
  2828. open.enc_cfg_id = ASM_MEDIA_FMT_AMRWB_FS;
  2829. break;
  2830. case FORMAT_BESPOKE:
  2831. open.mode_flags |= BUFFER_META_ENABLE;
  2832. open.enc_cfg_id = enc_cfg_id;
  2833. if (ts_mode)
  2834. open.mode_flags |= ABSOLUTE_TIMESTAMP_ENABLE;
  2835. break;
  2836. default:
  2837. pr_err("%s: Invalid format 0x%x\n",
  2838. __func__, format);
  2839. rc = -EINVAL;
  2840. goto fail_cmd;
  2841. }
  2842. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  2843. if (rc < 0) {
  2844. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  2845. __func__, open.hdr.opcode, rc);
  2846. rc = -EINVAL;
  2847. goto fail_cmd;
  2848. }
  2849. rc = wait_event_timeout(ac->cmd_wait,
  2850. (atomic_read(&ac->cmd_state) >= 0),
  2851. msecs_to_jiffies(TIMEOUT_MS));
  2852. if (!rc) {
  2853. pr_err("%s: timeout. waited for open read\n",
  2854. __func__);
  2855. rc = -ETIMEDOUT;
  2856. goto fail_cmd;
  2857. }
  2858. if (atomic_read(&ac->cmd_state) > 0) {
  2859. pr_err("%s: DSP returned error[%s]\n",
  2860. __func__, adsp_err_get_err_str(
  2861. atomic_read(&ac->cmd_state)));
  2862. rc = adsp_err_get_lnx_err_code(
  2863. atomic_read(&ac->cmd_state));
  2864. goto fail_cmd;
  2865. }
  2866. ac->io_mode |= TUN_READ_IO_MODE;
  2867. return 0;
  2868. fail_cmd:
  2869. return rc;
  2870. }
  2871. /**
  2872. * q6asm_open_read -
  2873. * command to open ASM in read mode
  2874. *
  2875. * @ac: Audio client handle
  2876. * @format: capture format for ASM
  2877. *
  2878. * Returns 0 on success or error on failure
  2879. */
  2880. int q6asm_open_read(struct audio_client *ac,
  2881. uint32_t format)
  2882. {
  2883. return __q6asm_open_read(ac, format, 16,
  2884. PCM_MEDIA_FORMAT_V2 /*media fmt block ver*/,
  2885. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2886. }
  2887. EXPORT_SYMBOL(q6asm_open_read);
  2888. int q6asm_open_read_v2(struct audio_client *ac, uint32_t format,
  2889. uint16_t bits_per_sample)
  2890. {
  2891. return __q6asm_open_read(ac, format, bits_per_sample,
  2892. PCM_MEDIA_FORMAT_V2 /*media fmt block ver*/,
  2893. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2894. }
  2895. /*
  2896. * asm_open_read_v3 - Opens audio capture session
  2897. *
  2898. * @ac: Client session handle
  2899. * @format: encoder format
  2900. * @bits_per_sample: bit width of capture session
  2901. */
  2902. int q6asm_open_read_v3(struct audio_client *ac, uint32_t format,
  2903. uint16_t bits_per_sample)
  2904. {
  2905. return __q6asm_open_read(ac, format, bits_per_sample,
  2906. PCM_MEDIA_FORMAT_V3/*media fmt block ver*/,
  2907. false/*ts_mode*/, ENC_CFG_ID_NONE);
  2908. }
  2909. EXPORT_SYMBOL(q6asm_open_read_v3);
  2910. /*
  2911. * asm_open_read_v4 - Opens audio capture session
  2912. *
  2913. * @ac: Client session handle
  2914. * @format: encoder format
  2915. * @bits_per_sample: bit width of capture session
  2916. * @ts_mode: timestamp mode
  2917. */
  2918. int q6asm_open_read_v4(struct audio_client *ac, uint32_t format,
  2919. uint16_t bits_per_sample, bool ts_mode,
  2920. uint32_t enc_cfg_id)
  2921. {
  2922. return __q6asm_open_read(ac, format, bits_per_sample,
  2923. PCM_MEDIA_FORMAT_V4 /*media fmt block ver*/,
  2924. ts_mode, enc_cfg_id);
  2925. }
  2926. EXPORT_SYMBOL(q6asm_open_read_v4);
  2927. /*
  2928. * asm_open_read_v5 - Opens audio capture session
  2929. *
  2930. * @ac: Client session handle
  2931. * @format: encoder format
  2932. * @bits_per_sample: bit width of capture session
  2933. * @ts_mode: timestamp mode
  2934. */
  2935. int q6asm_open_read_v5(struct audio_client *ac, uint32_t format,
  2936. uint16_t bits_per_sample, bool ts_mode, uint32_t enc_cfg_id)
  2937. {
  2938. return __q6asm_open_read(ac, format, bits_per_sample,
  2939. PCM_MEDIA_FORMAT_V5 /*media fmt block ver*/,
  2940. ts_mode, enc_cfg_id);
  2941. }
  2942. EXPORT_SYMBOL(q6asm_open_read_v5);
  2943. /**
  2944. * q6asm_open_write_compressed -
  2945. * command to open ASM in compressed write mode
  2946. *
  2947. * @ac: Audio client handle
  2948. * @format: playback format for ASM
  2949. * @passthrough_flag: flag to indicate passthrough option
  2950. *
  2951. * Returns 0 on success or error on failure
  2952. */
  2953. int q6asm_open_write_compressed(struct audio_client *ac, uint32_t format,
  2954. uint32_t passthrough_flag)
  2955. {
  2956. int rc = 0;
  2957. struct asm_stream_cmd_open_write_compressed open;
  2958. if (ac == NULL) {
  2959. pr_err("%s: ac[%pK] NULL\n", __func__, ac);
  2960. rc = -EINVAL;
  2961. goto fail_cmd;
  2962. }
  2963. if (ac->apr == NULL) {
  2964. pr_err("%s: APR handle[%pK] NULL\n", __func__, ac->apr);
  2965. rc = -EINVAL;
  2966. goto fail_cmd;
  2967. }
  2968. pr_debug("%s: session[%d] wr_format[0x%x]", __func__, ac->session,
  2969. format);
  2970. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  2971. open.hdr.opcode = ASM_STREAM_CMD_OPEN_WRITE_COMPRESSED;
  2972. atomic_set(&ac->cmd_state, -1);
  2973. switch (format) {
  2974. case FORMAT_AC3:
  2975. open.fmt_id = ASM_MEDIA_FMT_AC3;
  2976. break;
  2977. case FORMAT_EAC3:
  2978. open.fmt_id = ASM_MEDIA_FMT_EAC3;
  2979. break;
  2980. case FORMAT_DTS:
  2981. open.fmt_id = ASM_MEDIA_FMT_DTS;
  2982. break;
  2983. case FORMAT_DSD:
  2984. open.fmt_id = ASM_MEDIA_FMT_DSD;
  2985. break;
  2986. case FORMAT_GEN_COMPR:
  2987. open.fmt_id = ASM_MEDIA_FMT_GENERIC_COMPRESSED;
  2988. break;
  2989. case FORMAT_TRUEHD:
  2990. open.fmt_id = ASM_MEDIA_FMT_TRUEHD;
  2991. break;
  2992. case FORMAT_IEC61937:
  2993. open.fmt_id = ASM_MEDIA_FMT_IEC;
  2994. break;
  2995. default:
  2996. pr_err("%s: Invalid format[%d]\n", __func__, format);
  2997. rc = -EINVAL;
  2998. goto fail_cmd;
  2999. }
  3000. /* Below flag indicates the DSP that Compressed audio input
  3001. * stream is not IEC 61937 or IEC 60958 packetizied
  3002. */
  3003. if (passthrough_flag == COMPRESSED_PASSTHROUGH ||
  3004. passthrough_flag == COMPRESSED_PASSTHROUGH_DSD ||
  3005. passthrough_flag == COMPRESSED_PASSTHROUGH_GEN) {
  3006. open.flags = 0x0;
  3007. pr_debug("%s: Flag 0 COMPRESSED_PASSTHROUGH\n", __func__);
  3008. } else if (passthrough_flag == COMPRESSED_PASSTHROUGH_CONVERT) {
  3009. open.flags = 0x8;
  3010. pr_debug("%s: Flag 8 - COMPRESSED_PASSTHROUGH_CONVERT\n",
  3011. __func__);
  3012. } else if (passthrough_flag == COMPRESSED_PASSTHROUGH_IEC61937) {
  3013. open.flags = 0x1;
  3014. pr_debug("%s: Flag 1 - COMPRESSED_PASSTHROUGH_IEC61937\n",
  3015. __func__);
  3016. } else {
  3017. pr_err("%s: Invalid passthrough type[%d]\n",
  3018. __func__, passthrough_flag);
  3019. rc = -EINVAL;
  3020. goto fail_cmd;
  3021. }
  3022. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3023. if (rc < 0) {
  3024. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3025. __func__, open.hdr.opcode, rc);
  3026. rc = -EINVAL;
  3027. goto fail_cmd;
  3028. }
  3029. rc = wait_event_timeout(ac->cmd_wait,
  3030. (atomic_read(&ac->cmd_state) >= 0),
  3031. msecs_to_jiffies(TIMEOUT_MS));
  3032. if (!rc) {
  3033. pr_err("%s: timeout. waited for OPEN_WRITE_COMPR rc[%d]\n",
  3034. __func__, rc);
  3035. rc = -ETIMEDOUT;
  3036. goto fail_cmd;
  3037. }
  3038. if (atomic_read(&ac->cmd_state) > 0) {
  3039. pr_err("%s: DSP returned error[%s]\n",
  3040. __func__, adsp_err_get_err_str(
  3041. atomic_read(&ac->cmd_state)));
  3042. rc = adsp_err_get_lnx_err_code(
  3043. atomic_read(&ac->cmd_state));
  3044. goto fail_cmd;
  3045. }
  3046. return 0;
  3047. fail_cmd:
  3048. return rc;
  3049. }
  3050. EXPORT_SYMBOL(q6asm_open_write_compressed);
  3051. static int __q6asm_open_write(struct audio_client *ac, uint32_t format,
  3052. uint16_t bits_per_sample, uint32_t stream_id,
  3053. bool is_gapless_mode,
  3054. uint32_t pcm_format_block_ver)
  3055. {
  3056. int rc = 0x00;
  3057. struct asm_stream_cmd_open_write_v3 open;
  3058. struct q6asm_cal_info cal_info;
  3059. if (ac == NULL) {
  3060. pr_err("%s: APR handle NULL\n", __func__);
  3061. return -EINVAL;
  3062. }
  3063. if (ac->apr == NULL) {
  3064. pr_err("%s: AC APR handle NULL\n", __func__);
  3065. return -EINVAL;
  3066. }
  3067. dev_vdbg(ac->dev, "%s: session[%d] wr_format[0x%x]\n",
  3068. __func__, ac->session, format);
  3069. q6asm_stream_add_hdr(ac, &open.hdr, sizeof(open), TRUE, stream_id);
  3070. atomic_set(&ac->cmd_state, -1);
  3071. /*
  3072. * Updated the token field with stream/session for compressed playback
  3073. * Platform driver must know the the stream with which the command is
  3074. * associated
  3075. */
  3076. if (ac->io_mode & COMPRESSED_STREAM_IO)
  3077. q6asm_update_token(&open.hdr.token,
  3078. ac->session,
  3079. stream_id,
  3080. 0, /* Buffer index is NA */
  3081. 0, /* Direction flag is NA */
  3082. WAIT_CMD);
  3083. dev_vdbg(ac->dev, "%s: token = 0x%x, stream_id %d, session 0x%x\n",
  3084. __func__, open.hdr.token, stream_id, ac->session);
  3085. open.hdr.opcode = ASM_STREAM_CMD_OPEN_WRITE_V3;
  3086. open.mode_flags = 0x00;
  3087. if (ac->perf_mode == ULL_POST_PROCESSING_PCM_MODE)
  3088. open.mode_flags |= ASM_ULL_POST_PROCESSING_STREAM_SESSION;
  3089. else if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE)
  3090. open.mode_flags |= ASM_ULTRA_LOW_LATENCY_STREAM_SESSION;
  3091. else if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3092. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3093. else {
  3094. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3095. if (is_gapless_mode)
  3096. open.mode_flags |= 1 << ASM_SHIFT_GAPLESS_MODE_FLAG;
  3097. }
  3098. /* source endpoint : matrix */
  3099. open.sink_endpointype = ASM_END_POINT_DEVICE_MATRIX;
  3100. open.bits_per_sample = bits_per_sample;
  3101. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3102. open.postprocopo_id = cal_info.topology_id;
  3103. if (ac->perf_mode != LEGACY_PCM_MODE)
  3104. open.postprocopo_id = ASM_STREAM_POSTPROCOPO_ID_NONE;
  3105. pr_debug("%s: perf_mode %d asm_topology 0x%x bps %d\n", __func__,
  3106. ac->perf_mode, open.postprocopo_id, open.bits_per_sample);
  3107. /*
  3108. * For Gapless playback it will use the same session for next stream,
  3109. * So use the same topology
  3110. */
  3111. if (!ac->topology) {
  3112. ac->topology = open.postprocopo_id;
  3113. ac->app_type = cal_info.app_type;
  3114. }
  3115. switch (format) {
  3116. case FORMAT_LINEAR_PCM:
  3117. open.dec_fmt_id = q6asm_get_pcm_format_id(pcm_format_block_ver);
  3118. break;
  3119. case FORMAT_MPEG4_AAC:
  3120. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3121. break;
  3122. case FORMAT_MPEG4_MULTI_AAC:
  3123. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3124. break;
  3125. case FORMAT_WMA_V9:
  3126. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V9_V2;
  3127. break;
  3128. case FORMAT_WMA_V10PRO:
  3129. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V10PRO_V2;
  3130. break;
  3131. case FORMAT_MP3:
  3132. open.dec_fmt_id = ASM_MEDIA_FMT_MP3;
  3133. break;
  3134. case FORMAT_AC3:
  3135. open.dec_fmt_id = ASM_MEDIA_FMT_AC3;
  3136. break;
  3137. case FORMAT_EAC3:
  3138. open.dec_fmt_id = ASM_MEDIA_FMT_EAC3;
  3139. break;
  3140. case FORMAT_MP2:
  3141. open.dec_fmt_id = ASM_MEDIA_FMT_MP2;
  3142. break;
  3143. case FORMAT_FLAC:
  3144. open.dec_fmt_id = ASM_MEDIA_FMT_FLAC;
  3145. break;
  3146. case FORMAT_ALAC:
  3147. open.dec_fmt_id = ASM_MEDIA_FMT_ALAC;
  3148. break;
  3149. case FORMAT_VORBIS:
  3150. open.dec_fmt_id = ASM_MEDIA_FMT_VORBIS;
  3151. break;
  3152. case FORMAT_APE:
  3153. open.dec_fmt_id = ASM_MEDIA_FMT_APE;
  3154. break;
  3155. case FORMAT_DSD:
  3156. open.dec_fmt_id = ASM_MEDIA_FMT_DSD;
  3157. break;
  3158. case FORMAT_APTX:
  3159. open.dec_fmt_id = ASM_MEDIA_FMT_APTX;
  3160. break;
  3161. case FORMAT_GEN_COMPR:
  3162. open.dec_fmt_id = ASM_MEDIA_FMT_GENERIC_COMPRESSED;
  3163. break;
  3164. default:
  3165. pr_err("%s: Invalid format 0x%x\n", __func__, format);
  3166. rc = -EINVAL;
  3167. goto fail_cmd;
  3168. }
  3169. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3170. if (rc < 0) {
  3171. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3172. __func__, open.hdr.opcode, rc);
  3173. rc = -EINVAL;
  3174. goto fail_cmd;
  3175. }
  3176. rc = wait_event_timeout(ac->cmd_wait,
  3177. (atomic_read(&ac->cmd_state) >= 0),
  3178. msecs_to_jiffies(TIMEOUT_MS));
  3179. if (!rc) {
  3180. pr_err("%s: timeout. waited for open write\n", __func__);
  3181. rc = -ETIMEDOUT;
  3182. goto fail_cmd;
  3183. }
  3184. if (atomic_read(&ac->cmd_state) > 0) {
  3185. pr_err("%s: DSP returned error[%s]\n",
  3186. __func__, adsp_err_get_err_str(
  3187. atomic_read(&ac->cmd_state)));
  3188. rc = adsp_err_get_lnx_err_code(
  3189. atomic_read(&ac->cmd_state));
  3190. goto fail_cmd;
  3191. }
  3192. ac->io_mode |= TUN_WRITE_IO_MODE;
  3193. return 0;
  3194. fail_cmd:
  3195. return rc;
  3196. }
  3197. int q6asm_open_write(struct audio_client *ac, uint32_t format)
  3198. {
  3199. return __q6asm_open_write(ac, format, 16, ac->stream_id,
  3200. false /*gapless*/,
  3201. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3202. }
  3203. EXPORT_SYMBOL(q6asm_open_write);
  3204. int q6asm_open_write_v2(struct audio_client *ac, uint32_t format,
  3205. uint16_t bits_per_sample)
  3206. {
  3207. return __q6asm_open_write(ac, format, bits_per_sample,
  3208. ac->stream_id, false /*gapless*/,
  3209. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3210. }
  3211. /*
  3212. * q6asm_open_write_v3 - Opens audio playback session
  3213. *
  3214. * @ac: Client session handle
  3215. * @format: decoder format
  3216. * @bits_per_sample: bit width of playback session
  3217. */
  3218. int q6asm_open_write_v3(struct audio_client *ac, uint32_t format,
  3219. uint16_t bits_per_sample)
  3220. {
  3221. return __q6asm_open_write(ac, format, bits_per_sample,
  3222. ac->stream_id, false /*gapless*/,
  3223. PCM_MEDIA_FORMAT_V3 /*pcm_format_block_ver*/);
  3224. }
  3225. EXPORT_SYMBOL(q6asm_open_write_v3);
  3226. /*
  3227. * q6asm_open_write_v4 - Opens audio playback session
  3228. *
  3229. * @ac: Client session handle
  3230. * @format: decoder format
  3231. * @bits_per_sample: bit width of playback session
  3232. */
  3233. int q6asm_open_write_v4(struct audio_client *ac, uint32_t format,
  3234. uint16_t bits_per_sample)
  3235. {
  3236. return __q6asm_open_write(ac, format, bits_per_sample,
  3237. ac->stream_id, false /*gapless*/,
  3238. PCM_MEDIA_FORMAT_V4 /*pcm_format_block_ver*/);
  3239. }
  3240. EXPORT_SYMBOL(q6asm_open_write_v4);
  3241. int q6asm_stream_open_write_v2(struct audio_client *ac, uint32_t format,
  3242. uint16_t bits_per_sample, int32_t stream_id,
  3243. bool is_gapless_mode)
  3244. {
  3245. return __q6asm_open_write(ac, format, bits_per_sample,
  3246. stream_id, is_gapless_mode,
  3247. PCM_MEDIA_FORMAT_V2 /*pcm_format_block_ver*/);
  3248. }
  3249. /*
  3250. * q6asm_stream_open_write_v3 - Creates audio stream for playback
  3251. *
  3252. * @ac: Client session handle
  3253. * @format: asm playback format
  3254. * @bits_per_sample: bit width of requested stream
  3255. * @stream_id: stream id of stream to be associated with this session
  3256. * @is_gapless_mode: true if gapless mode needs to be enabled
  3257. */
  3258. int q6asm_stream_open_write_v3(struct audio_client *ac, uint32_t format,
  3259. uint16_t bits_per_sample, int32_t stream_id,
  3260. bool is_gapless_mode)
  3261. {
  3262. return __q6asm_open_write(ac, format, bits_per_sample,
  3263. stream_id, is_gapless_mode,
  3264. PCM_MEDIA_FORMAT_V3 /*pcm_format_block_ver*/);
  3265. }
  3266. EXPORT_SYMBOL(q6asm_stream_open_write_v3);
  3267. /*
  3268. * q6asm_open_write_v5 - Opens audio playback session
  3269. *
  3270. * @ac: Client session handle
  3271. * @format: decoder format
  3272. * @bits_per_sample: bit width of playback session
  3273. */
  3274. int q6asm_open_write_v5(struct audio_client *ac, uint32_t format,
  3275. uint16_t bits_per_sample)
  3276. {
  3277. return __q6asm_open_write(ac, format, bits_per_sample,
  3278. ac->stream_id, false /*gapless*/,
  3279. PCM_MEDIA_FORMAT_V5 /*pcm_format_block_ver*/);
  3280. }
  3281. EXPORT_SYMBOL(q6asm_open_write_v5);
  3282. /*
  3283. * q6asm_stream_open_write_v4 - Creates audio stream for playback
  3284. *
  3285. * @ac: Client session handle
  3286. * @format: asm playback format
  3287. * @bits_per_sample: bit width of requested stream
  3288. * @stream_id: stream id of stream to be associated with this session
  3289. * @is_gapless_mode: true if gapless mode needs to be enabled
  3290. */
  3291. int q6asm_stream_open_write_v4(struct audio_client *ac, uint32_t format,
  3292. uint16_t bits_per_sample, int32_t stream_id,
  3293. bool is_gapless_mode)
  3294. {
  3295. return __q6asm_open_write(ac, format, bits_per_sample,
  3296. stream_id, is_gapless_mode,
  3297. PCM_MEDIA_FORMAT_V4 /*pcm_format_block_ver*/);
  3298. }
  3299. EXPORT_SYMBOL(q6asm_stream_open_write_v4);
  3300. /*
  3301. * q6asm_stream_open_write_v5 - Creates audio stream for playback
  3302. *
  3303. * @ac: Client session handle
  3304. * @format: asm playback format
  3305. * @bits_per_sample: bit width of requested stream
  3306. * @stream_id: stream id of stream to be associated with this session
  3307. * @is_gapless_mode: true if gapless mode needs to be enabled
  3308. */
  3309. int q6asm_stream_open_write_v5(struct audio_client *ac, uint32_t format,
  3310. uint16_t bits_per_sample, int32_t stream_id,
  3311. bool is_gapless_mode)
  3312. {
  3313. return __q6asm_open_write(ac, format, bits_per_sample,
  3314. stream_id, is_gapless_mode,
  3315. PCM_MEDIA_FORMAT_V5 /*pcm_format_block_ver*/);
  3316. }
  3317. EXPORT_SYMBOL(q6asm_stream_open_write_v5);
  3318. static int __q6asm_open_read_write(struct audio_client *ac, uint32_t rd_format,
  3319. uint32_t wr_format, bool is_meta_data_mode,
  3320. uint32_t bits_per_sample,
  3321. bool overwrite_topology, int topology)
  3322. {
  3323. int rc = 0x00;
  3324. struct asm_stream_cmd_open_readwrite_v2 open;
  3325. struct q6asm_cal_info cal_info;
  3326. if (ac == NULL) {
  3327. pr_err("%s: APR handle NULL\n", __func__);
  3328. return -EINVAL;
  3329. }
  3330. if (ac->apr == NULL) {
  3331. pr_err("%s: AC APR handle NULL\n", __func__);
  3332. return -EINVAL;
  3333. }
  3334. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3335. pr_debug("%s: wr_format[0x%x]rd_format[0x%x]\n",
  3336. __func__, wr_format, rd_format);
  3337. ac->io_mode |= NT_MODE;
  3338. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3339. atomic_set(&ac->cmd_state, -1);
  3340. open.hdr.opcode = ASM_STREAM_CMD_OPEN_READWRITE_V2;
  3341. open.mode_flags = is_meta_data_mode ? BUFFER_META_ENABLE : 0;
  3342. open.bits_per_sample = bits_per_sample;
  3343. /* source endpoint : matrix */
  3344. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3345. open.postprocopo_id = cal_info.topology_id;
  3346. open.postprocopo_id = overwrite_topology ?
  3347. topology : open.postprocopo_id;
  3348. ac->topology = open.postprocopo_id;
  3349. ac->app_type = cal_info.app_type;
  3350. switch (wr_format) {
  3351. case FORMAT_LINEAR_PCM:
  3352. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3353. open.dec_fmt_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3354. break;
  3355. case FORMAT_MPEG4_AAC:
  3356. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3357. break;
  3358. case FORMAT_MPEG4_MULTI_AAC:
  3359. open.dec_fmt_id = ASM_MEDIA_FMT_AAC_V2;
  3360. break;
  3361. case FORMAT_WMA_V9:
  3362. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V9_V2;
  3363. break;
  3364. case FORMAT_WMA_V10PRO:
  3365. open.dec_fmt_id = ASM_MEDIA_FMT_WMA_V10PRO_V2;
  3366. break;
  3367. case FORMAT_AMRNB:
  3368. open.dec_fmt_id = ASM_MEDIA_FMT_AMRNB_FS;
  3369. break;
  3370. case FORMAT_AMRWB:
  3371. open.dec_fmt_id = ASM_MEDIA_FMT_AMRWB_FS;
  3372. break;
  3373. case FORMAT_AMR_WB_PLUS:
  3374. open.dec_fmt_id = ASM_MEDIA_FMT_AMR_WB_PLUS_V2;
  3375. break;
  3376. case FORMAT_V13K:
  3377. open.dec_fmt_id = ASM_MEDIA_FMT_V13K_FS;
  3378. break;
  3379. case FORMAT_EVRC:
  3380. open.dec_fmt_id = ASM_MEDIA_FMT_EVRC_FS;
  3381. break;
  3382. case FORMAT_EVRCB:
  3383. open.dec_fmt_id = ASM_MEDIA_FMT_EVRCB_FS;
  3384. break;
  3385. case FORMAT_EVRCWB:
  3386. open.dec_fmt_id = ASM_MEDIA_FMT_EVRCWB_FS;
  3387. break;
  3388. case FORMAT_MP3:
  3389. open.dec_fmt_id = ASM_MEDIA_FMT_MP3;
  3390. break;
  3391. case FORMAT_ALAC:
  3392. open.dec_fmt_id = ASM_MEDIA_FMT_ALAC;
  3393. break;
  3394. case FORMAT_APE:
  3395. open.dec_fmt_id = ASM_MEDIA_FMT_APE;
  3396. break;
  3397. case FORMAT_DSD:
  3398. open.dec_fmt_id = ASM_MEDIA_FMT_DSD;
  3399. break;
  3400. case FORMAT_G711_ALAW_FS:
  3401. open.dec_fmt_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  3402. break;
  3403. case FORMAT_G711_MLAW_FS:
  3404. open.dec_fmt_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  3405. break;
  3406. default:
  3407. pr_err("%s: Invalid format 0x%x\n",
  3408. __func__, wr_format);
  3409. rc = -EINVAL;
  3410. goto fail_cmd;
  3411. }
  3412. switch (rd_format) {
  3413. case FORMAT_LINEAR_PCM:
  3414. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3415. open.enc_cfg_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3416. break;
  3417. case FORMAT_MPEG4_AAC:
  3418. open.enc_cfg_id = ASM_MEDIA_FMT_AAC_V2;
  3419. break;
  3420. case FORMAT_G711_ALAW_FS:
  3421. open.enc_cfg_id = ASM_MEDIA_FMT_G711_ALAW_FS;
  3422. break;
  3423. case FORMAT_G711_MLAW_FS:
  3424. open.enc_cfg_id = ASM_MEDIA_FMT_G711_MLAW_FS;
  3425. break;
  3426. case FORMAT_V13K:
  3427. open.enc_cfg_id = ASM_MEDIA_FMT_V13K_FS;
  3428. break;
  3429. case FORMAT_EVRC:
  3430. open.enc_cfg_id = ASM_MEDIA_FMT_EVRC_FS;
  3431. break;
  3432. case FORMAT_AMRNB:
  3433. open.enc_cfg_id = ASM_MEDIA_FMT_AMRNB_FS;
  3434. break;
  3435. case FORMAT_AMRWB:
  3436. open.enc_cfg_id = ASM_MEDIA_FMT_AMRWB_FS;
  3437. break;
  3438. case FORMAT_ALAC:
  3439. open.enc_cfg_id = ASM_MEDIA_FMT_ALAC;
  3440. break;
  3441. case FORMAT_APE:
  3442. open.enc_cfg_id = ASM_MEDIA_FMT_APE;
  3443. break;
  3444. default:
  3445. pr_err("%s: Invalid format 0x%x\n",
  3446. __func__, rd_format);
  3447. rc = -EINVAL;
  3448. goto fail_cmd;
  3449. }
  3450. dev_vdbg(ac->dev, "%s: rdformat[0x%x]wrformat[0x%x]\n", __func__,
  3451. open.enc_cfg_id, open.dec_fmt_id);
  3452. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3453. if (rc < 0) {
  3454. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3455. __func__, open.hdr.opcode, rc);
  3456. rc = -EINVAL;
  3457. goto fail_cmd;
  3458. }
  3459. rc = wait_event_timeout(ac->cmd_wait,
  3460. (atomic_read(&ac->cmd_state) >= 0),
  3461. msecs_to_jiffies(TIMEOUT_MS));
  3462. if (!rc) {
  3463. pr_err("%s: timeout. waited for open read-write\n",
  3464. __func__);
  3465. rc = -ETIMEDOUT;
  3466. goto fail_cmd;
  3467. }
  3468. if (atomic_read(&ac->cmd_state) > 0) {
  3469. pr_err("%s: DSP returned error[%s]\n",
  3470. __func__, adsp_err_get_err_str(
  3471. atomic_read(&ac->cmd_state)));
  3472. rc = adsp_err_get_lnx_err_code(
  3473. atomic_read(&ac->cmd_state));
  3474. goto fail_cmd;
  3475. }
  3476. return 0;
  3477. fail_cmd:
  3478. return rc;
  3479. }
  3480. /**
  3481. * q6asm_open_read_write -
  3482. * command to open ASM in read/write mode
  3483. *
  3484. * @ac: Audio client handle
  3485. * @rd_format: capture format for ASM
  3486. * @wr_format: playback format for ASM
  3487. *
  3488. * Returns 0 on success or error on failure
  3489. */
  3490. int q6asm_open_read_write(struct audio_client *ac, uint32_t rd_format,
  3491. uint32_t wr_format)
  3492. {
  3493. return __q6asm_open_read_write(ac, rd_format, wr_format,
  3494. true/*meta data mode*/,
  3495. 16 /*bits_per_sample*/,
  3496. false /*overwrite_topology*/, 0);
  3497. }
  3498. EXPORT_SYMBOL(q6asm_open_read_write);
  3499. /**
  3500. * q6asm_open_read_write_v2 -
  3501. * command to open ASM in bi-directional read/write mode
  3502. *
  3503. * @ac: Audio client handle
  3504. * @rd_format: capture format for ASM
  3505. * @wr_format: playback format for ASM
  3506. * @is_meta_data_mode: mode to indicate if meta data present
  3507. * @bits_per_sample: number of bits per sample
  3508. * @overwrite_topology: topology to be overwritten flag
  3509. * @topology: Topology for ASM
  3510. *
  3511. * Returns 0 on success or error on failure
  3512. */
  3513. int q6asm_open_read_write_v2(struct audio_client *ac, uint32_t rd_format,
  3514. uint32_t wr_format, bool is_meta_data_mode,
  3515. uint32_t bits_per_sample, bool overwrite_topology,
  3516. int topology)
  3517. {
  3518. return __q6asm_open_read_write(ac, rd_format, wr_format,
  3519. is_meta_data_mode, bits_per_sample,
  3520. overwrite_topology, topology);
  3521. }
  3522. EXPORT_SYMBOL(q6asm_open_read_write_v2);
  3523. /**
  3524. * q6asm_open_loopback_v2 -
  3525. * command to open ASM in loopback mode
  3526. *
  3527. * @ac: Audio client handle
  3528. * @bits_per_sample: number of bits per sample
  3529. *
  3530. * Returns 0 on success or error on failure
  3531. */
  3532. int q6asm_open_loopback_v2(struct audio_client *ac, uint16_t bits_per_sample)
  3533. {
  3534. int rc = 0x00;
  3535. struct q6asm_cal_info cal_info;
  3536. if (ac == NULL) {
  3537. pr_err("%s: APR handle NULL\n", __func__);
  3538. return -EINVAL;
  3539. }
  3540. if (ac->apr == NULL) {
  3541. pr_err("%s: AC APR handle NULL\n", __func__);
  3542. return -EINVAL;
  3543. }
  3544. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3545. if (ac->perf_mode == LOW_LATENCY_PCM_MODE) {
  3546. struct asm_stream_cmd_open_transcode_loopback_t open;
  3547. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3548. atomic_set(&ac->cmd_state, -1);
  3549. open.hdr.opcode = ASM_STREAM_CMD_OPEN_TRANSCODE_LOOPBACK;
  3550. open.mode_flags = 0;
  3551. open.src_endpoint_type = 0;
  3552. open.sink_endpoint_type = 0;
  3553. open.src_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3554. open.sink_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V2;
  3555. /* source endpoint : matrix */
  3556. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3557. open.audproc_topo_id = cal_info.topology_id;
  3558. ac->app_type = cal_info.app_type;
  3559. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3560. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3561. else
  3562. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3563. ac->topology = open.audproc_topo_id;
  3564. open.bits_per_sample = bits_per_sample;
  3565. open.reserved = 0;
  3566. pr_debug("%s: opening a transcode_loopback with mode_flags =[%d] session[%d]\n",
  3567. __func__, open.mode_flags, ac->session);
  3568. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3569. if (rc < 0) {
  3570. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3571. __func__, open.hdr.opcode, rc);
  3572. rc = -EINVAL;
  3573. goto fail_cmd;
  3574. }
  3575. } else {/*if(ac->perf_mode == LEGACY_PCM_MODE)*/
  3576. struct asm_stream_cmd_open_loopback_v2 open;
  3577. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3578. atomic_set(&ac->cmd_state, -1);
  3579. open.hdr.opcode = ASM_STREAM_CMD_OPEN_LOOPBACK_V2;
  3580. open.mode_flags = 0;
  3581. open.src_endpointype = 0;
  3582. open.sink_endpointype = 0;
  3583. /* source endpoint : matrix */
  3584. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3585. open.postprocopo_id = cal_info.topology_id;
  3586. ac->app_type = cal_info.app_type;
  3587. ac->topology = open.postprocopo_id;
  3588. open.bits_per_sample = bits_per_sample;
  3589. open.reserved = 0;
  3590. pr_debug("%s: opening a loopback_v2 with mode_flags =[%d] session[%d]\n",
  3591. __func__, open.mode_flags, ac->session);
  3592. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3593. if (rc < 0) {
  3594. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3595. __func__, open.hdr.opcode, rc);
  3596. rc = -EINVAL;
  3597. goto fail_cmd;
  3598. }
  3599. }
  3600. rc = wait_event_timeout(ac->cmd_wait,
  3601. (atomic_read(&ac->cmd_state) >= 0),
  3602. msecs_to_jiffies(TIMEOUT_MS));
  3603. if (!rc) {
  3604. pr_err("%s: timeout. waited for open_loopback\n",
  3605. __func__);
  3606. rc = -ETIMEDOUT;
  3607. goto fail_cmd;
  3608. }
  3609. if (atomic_read(&ac->cmd_state) > 0) {
  3610. pr_err("%s: DSP returned error[%s]\n",
  3611. __func__, adsp_err_get_err_str(
  3612. atomic_read(&ac->cmd_state)));
  3613. rc = adsp_err_get_lnx_err_code(
  3614. atomic_read(&ac->cmd_state));
  3615. goto fail_cmd;
  3616. }
  3617. return 0;
  3618. fail_cmd:
  3619. return rc;
  3620. }
  3621. EXPORT_SYMBOL(q6asm_open_loopback_v2);
  3622. /**
  3623. * q6asm_open_transcode_loopback -
  3624. * command to open ASM in transcode loopback mode
  3625. *
  3626. * @ac: Audio client handle
  3627. * @bits_per_sample: number of bits per sample
  3628. * @source_format: Format of clip
  3629. * @sink_format: end device supported format
  3630. *
  3631. * Returns 0 on success or error on failure
  3632. */
  3633. int q6asm_open_transcode_loopback(struct audio_client *ac,
  3634. uint16_t bits_per_sample,
  3635. uint32_t source_format, uint32_t sink_format)
  3636. {
  3637. int rc = 0x00;
  3638. struct asm_stream_cmd_open_transcode_loopback_t open;
  3639. struct q6asm_cal_info cal_info;
  3640. if (ac == NULL) {
  3641. pr_err("%s: APR handle NULL\n", __func__);
  3642. return -EINVAL;
  3643. }
  3644. if (ac->apr == NULL) {
  3645. pr_err("%s: AC APR handle NULL\n", __func__);
  3646. return -EINVAL;
  3647. }
  3648. pr_debug("%s: session[%d]\n", __func__, ac->session);
  3649. q6asm_add_hdr(ac, &open.hdr, sizeof(open), TRUE);
  3650. atomic_set(&ac->cmd_state, -1);
  3651. open.hdr.opcode = ASM_STREAM_CMD_OPEN_TRANSCODE_LOOPBACK;
  3652. open.mode_flags = 0;
  3653. open.src_endpoint_type = 0;
  3654. open.sink_endpoint_type = 0;
  3655. switch (source_format) {
  3656. case FORMAT_LINEAR_PCM:
  3657. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3658. open.src_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3659. break;
  3660. case FORMAT_AC3:
  3661. open.src_format_id = ASM_MEDIA_FMT_AC3;
  3662. break;
  3663. case FORMAT_EAC3:
  3664. open.src_format_id = ASM_MEDIA_FMT_EAC3;
  3665. break;
  3666. default:
  3667. pr_err("%s: Unsupported src fmt [%d]\n",
  3668. __func__, source_format);
  3669. return -EINVAL;
  3670. }
  3671. switch (sink_format) {
  3672. case FORMAT_LINEAR_PCM:
  3673. case FORMAT_MULTI_CHANNEL_LINEAR_PCM:
  3674. open.sink_format_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3675. break;
  3676. default:
  3677. pr_err("%s: Unsupported sink fmt [%d]\n",
  3678. __func__, sink_format);
  3679. return -EINVAL;
  3680. }
  3681. /* source endpoint : matrix */
  3682. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3683. open.audproc_topo_id = cal_info.topology_id;
  3684. ac->app_type = cal_info.app_type;
  3685. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3686. open.mode_flags |= ASM_LOW_LATENCY_STREAM_SESSION;
  3687. else
  3688. open.mode_flags |= ASM_LEGACY_STREAM_SESSION;
  3689. ac->topology = open.audproc_topo_id;
  3690. open.bits_per_sample = bits_per_sample;
  3691. open.reserved = 0;
  3692. pr_debug("%s: opening a transcode_loopback with mode_flags =[%d] session[%d]\n",
  3693. __func__, open.mode_flags, ac->session);
  3694. rc = apr_send_pkt(ac->apr, (uint32_t *) &open);
  3695. if (rc < 0) {
  3696. pr_err("%s: open failed op[0x%x]rc[%d]\n",
  3697. __func__, open.hdr.opcode, rc);
  3698. rc = -EINVAL;
  3699. goto fail_cmd;
  3700. }
  3701. rc = wait_event_timeout(ac->cmd_wait,
  3702. (atomic_read(&ac->cmd_state) >= 0),
  3703. msecs_to_jiffies(TIMEOUT_MS));
  3704. if (!rc) {
  3705. pr_err("%s: timeout. waited for open_transcode_loopback\n",
  3706. __func__);
  3707. rc = -ETIMEDOUT;
  3708. goto fail_cmd;
  3709. }
  3710. if (atomic_read(&ac->cmd_state) > 0) {
  3711. pr_err("%s: DSP returned error[%s]\n",
  3712. __func__, adsp_err_get_err_str(
  3713. atomic_read(&ac->cmd_state)));
  3714. rc = adsp_err_get_lnx_err_code(
  3715. atomic_read(&ac->cmd_state));
  3716. goto fail_cmd;
  3717. }
  3718. return 0;
  3719. fail_cmd:
  3720. return rc;
  3721. }
  3722. EXPORT_SYMBOL(q6asm_open_transcode_loopback);
  3723. static
  3724. int q6asm_set_shared_circ_buff(struct audio_client *ac,
  3725. struct asm_stream_cmd_open_shared_io *open,
  3726. int bufsz, int bufcnt,
  3727. int dir)
  3728. {
  3729. struct audio_buffer *buf_circ;
  3730. int bytes_to_alloc, rc;
  3731. size_t len;
  3732. mutex_lock(&ac->cmd_lock);
  3733. if (ac->port[dir].buf) {
  3734. pr_err("%s: Buffer already allocated\n", __func__);
  3735. rc = -EINVAL;
  3736. goto done;
  3737. }
  3738. buf_circ = kzalloc(sizeof(struct audio_buffer), GFP_KERNEL);
  3739. if (!buf_circ) {
  3740. rc = -ENOMEM;
  3741. goto done;
  3742. }
  3743. bytes_to_alloc = bufsz * bufcnt;
  3744. bytes_to_alloc = PAGE_ALIGN(bytes_to_alloc);
  3745. rc = msm_audio_ion_alloc(&buf_circ->dma_buf,
  3746. bytes_to_alloc,
  3747. &buf_circ->phys,
  3748. &len, &buf_circ->data);
  3749. if (rc) {
  3750. pr_err("%s: Audio ION alloc is failed, rc = %d\n", __func__,
  3751. rc);
  3752. kfree(buf_circ);
  3753. goto done;
  3754. }
  3755. ac->port[dir].buf = buf_circ;
  3756. buf_circ->used = dir ^ 1;
  3757. buf_circ->size = bytes_to_alloc;
  3758. buf_circ->actual_size = bytes_to_alloc;
  3759. memset(buf_circ->data, 0, buf_circ->actual_size);
  3760. ac->port[dir].max_buf_cnt = 1;
  3761. open->shared_circ_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  3762. open->shared_circ_buf_num_regions = 1;
  3763. open->shared_circ_buf_property_flag = 0x00;
  3764. open->shared_circ_buf_start_phy_addr_lsw =
  3765. lower_32_bits(buf_circ->phys);
  3766. open->shared_circ_buf_start_phy_addr_msw =
  3767. msm_audio_populate_upper_32_bits(buf_circ->phys);
  3768. open->shared_circ_buf_size = bufsz * bufcnt;
  3769. open->map_region_circ_buf.shm_addr_lsw = lower_32_bits(buf_circ->phys);
  3770. open->map_region_circ_buf.shm_addr_msw =
  3771. msm_audio_populate_upper_32_bits(buf_circ->phys);
  3772. open->map_region_circ_buf.mem_size_bytes = bytes_to_alloc;
  3773. done:
  3774. mutex_unlock(&ac->cmd_lock);
  3775. return rc;
  3776. }
  3777. static
  3778. int q6asm_set_shared_pos_buff(struct audio_client *ac,
  3779. struct asm_stream_cmd_open_shared_io *open,
  3780. int dir)
  3781. {
  3782. struct audio_buffer *buf_pos = &ac->shared_pos_buf;
  3783. int rc;
  3784. size_t len;
  3785. int bytes_to_alloc = sizeof(struct asm_shared_position_buffer);
  3786. mutex_lock(&ac->cmd_lock);
  3787. bytes_to_alloc = PAGE_ALIGN(bytes_to_alloc);
  3788. rc = msm_audio_ion_alloc(&buf_pos->dma_buf,
  3789. bytes_to_alloc,
  3790. &buf_pos->phys, &len,
  3791. &buf_pos->data);
  3792. if (rc) {
  3793. pr_err("%s: Audio pos buf ION alloc is failed, rc = %d\n",
  3794. __func__, rc);
  3795. goto done;
  3796. }
  3797. buf_pos->used = dir ^ 1;
  3798. buf_pos->size = bytes_to_alloc;
  3799. buf_pos->actual_size = bytes_to_alloc;
  3800. open->shared_pos_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  3801. open->shared_pos_buf_num_regions = 1;
  3802. open->shared_pos_buf_property_flag = 0x00;
  3803. open->shared_pos_buf_phy_addr_lsw = lower_32_bits(buf_pos->phys);
  3804. open->shared_pos_buf_phy_addr_msw =
  3805. msm_audio_populate_upper_32_bits(buf_pos->phys);
  3806. open->map_region_pos_buf.shm_addr_lsw = lower_32_bits(buf_pos->phys);
  3807. open->map_region_pos_buf.shm_addr_msw =
  3808. msm_audio_populate_upper_32_bits(buf_pos->phys);
  3809. open->map_region_pos_buf.mem_size_bytes = bytes_to_alloc;
  3810. done:
  3811. mutex_unlock(&ac->cmd_lock);
  3812. return rc;
  3813. }
  3814. /*
  3815. * q6asm_open_shared_io: Open an ASM session for pull mode (playback)
  3816. * or push mode (capture).
  3817. * parameters
  3818. * config - session parameters (channels, bits_per_sample, sr)
  3819. * dir - stream direction (IN for playback, OUT for capture)
  3820. * use_default_chmap: true if default channel map to be used
  3821. * channel_map: input channel map
  3822. * returns 0 if successful, error code otherwise
  3823. */
  3824. int q6asm_open_shared_io(struct audio_client *ac,
  3825. struct shared_io_config *config,
  3826. int dir, bool use_default_chmap, u8 *channel_map)
  3827. {
  3828. struct asm_stream_cmd_open_shared_io *open;
  3829. u8 *channel_mapping;
  3830. int i, size_of_open, num_watermarks, bufsz, bufcnt, rc, flags = 0;
  3831. struct q6asm_cal_info cal_info;
  3832. if (!ac || !config)
  3833. return -EINVAL;
  3834. if (!use_default_chmap && (channel_map == NULL)) {
  3835. pr_err("%s: No valid chan map and can't use default\n",
  3836. __func__);
  3837. return -EINVAL;
  3838. }
  3839. bufsz = config->bufsz;
  3840. bufcnt = config->bufcnt;
  3841. num_watermarks = 0;
  3842. ac->config = *config;
  3843. if (ac->session <= 0 || ac->session > SESSION_MAX) {
  3844. pr_err("%s: Session %d is out of bounds\n",
  3845. __func__, ac->session);
  3846. return -EINVAL;
  3847. }
  3848. size_of_open = sizeof(struct asm_stream_cmd_open_shared_io) +
  3849. (sizeof(struct asm_shared_watermark_level) * num_watermarks);
  3850. open = kzalloc(PAGE_ALIGN(size_of_open), GFP_KERNEL);
  3851. if (!open)
  3852. return -ENOMEM;
  3853. q6asm_stream_add_hdr(ac, &open->hdr, size_of_open, TRUE,
  3854. ac->stream_id);
  3855. atomic_set(&ac->cmd_state, 1);
  3856. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x, perf %d\n",
  3857. __func__, open->hdr.token, ac->stream_id, ac->session,
  3858. ac->perf_mode);
  3859. open->hdr.opcode =
  3860. dir == IN ? ASM_STREAM_CMD_OPEN_PULL_MODE_WRITE :
  3861. ASM_STREAM_CMD_OPEN_PUSH_MODE_READ;
  3862. pr_debug("%s perf_mode %d\n", __func__, ac->perf_mode);
  3863. if (dir == IN)
  3864. if (ac->perf_mode == ULL_POST_PROCESSING_PCM_MODE)
  3865. flags = 4 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3866. else if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE)
  3867. flags = 2 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3868. else if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3869. flags = 1 << ASM_SHIFT_STREAM_PERF_FLAG_PULL_MODE_WRITE;
  3870. else
  3871. pr_err("Invalid perf mode for pull write\n");
  3872. else
  3873. if (ac->perf_mode == LOW_LATENCY_PCM_MODE)
  3874. flags = ASM_LOW_LATENCY_TX_STREAM_SESSION <<
  3875. ASM_SHIFT_STREAM_PERF_FLAG_PUSH_MODE_READ;
  3876. else
  3877. pr_err("Invalid perf mode for push read\n");
  3878. if (flags == 0) {
  3879. pr_err("%s: Invalid mode[%d]\n", __func__,
  3880. ac->perf_mode);
  3881. kfree(open);
  3882. return -EINVAL;
  3883. }
  3884. pr_debug("open.mode_flags = 0x%x\n", flags);
  3885. open->mode_flags = flags;
  3886. open->endpoint_type = ASM_END_POINT_DEVICE_MATRIX;
  3887. open->topo_bits_per_sample = config->bits_per_sample;
  3888. rc = q6asm_get_asm_topology_apptype(&cal_info);
  3889. open->topo_id = cal_info.topology_id;
  3890. if (config->format == FORMAT_LINEAR_PCM)
  3891. open->fmt_id = ASM_MEDIA_FMT_MULTI_CHANNEL_PCM_V3;
  3892. else {
  3893. pr_err("%s: Invalid format[%d]\n", __func__, config->format);
  3894. rc = -EINVAL;
  3895. goto done;
  3896. }
  3897. rc = q6asm_set_shared_circ_buff(ac, open, bufsz, bufcnt, dir);
  3898. if (rc)
  3899. goto done;
  3900. ac->port[dir].tmp_hdl = 0;
  3901. rc = q6asm_set_shared_pos_buff(ac, open, dir);
  3902. if (rc)
  3903. goto done;
  3904. /* asm_multi_channel_pcm_fmt_blk_v3 */
  3905. open->fmt.num_channels = config->channels;
  3906. open->fmt.bits_per_sample = config->bits_per_sample;
  3907. open->fmt.sample_rate = config->rate;
  3908. open->fmt.is_signed = 1;
  3909. open->fmt.sample_word_size = config->sample_word_size;
  3910. channel_mapping = open->fmt.channel_mapping;
  3911. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  3912. if (use_default_chmap) {
  3913. rc = q6asm_map_channels(channel_mapping, config->channels,
  3914. false);
  3915. if (rc) {
  3916. pr_err("%s: Map channels failed, ret: %d\n",
  3917. __func__, rc);
  3918. goto done;
  3919. }
  3920. } else {
  3921. memcpy(channel_mapping, channel_map,
  3922. PCM_FORMAT_MAX_NUM_CHANNEL);
  3923. }
  3924. open->num_watermark_levels = num_watermarks;
  3925. for (i = 0; i < num_watermarks; i++) {
  3926. open->watermark[i].watermark_level_bytes = i *
  3927. ((bufsz * bufcnt) / num_watermarks);
  3928. pr_debug("%s: Watermark level set for %i\n",
  3929. __func__,
  3930. open->watermark[i].watermark_level_bytes);
  3931. }
  3932. rc = apr_send_pkt(ac->apr, (uint32_t *) open);
  3933. if (rc < 0) {
  3934. pr_err("%s: Open failed op[0x%x]rc[%d]\n",
  3935. __func__, open->hdr.opcode, rc);
  3936. goto done;
  3937. }
  3938. pr_debug("%s: sent open apr pkt\n", __func__);
  3939. rc = wait_event_timeout(ac->cmd_wait,
  3940. (atomic_read(&ac->cmd_state) <= 0),
  3941. msecs_to_jiffies(TIMEOUT_MS));
  3942. if (!rc) {
  3943. pr_err("%s: Timeout. Waited for open write apr pkt rc[%d]\n",
  3944. __func__, rc);
  3945. rc = -ETIMEDOUT;
  3946. goto done;
  3947. }
  3948. if (atomic_read(&ac->cmd_state) < 0) {
  3949. pr_err("%s: DSP returned error [%d]\n", __func__,
  3950. atomic_read(&ac->cmd_state));
  3951. rc = -EINVAL;
  3952. goto done;
  3953. }
  3954. ac->io_mode |= TUN_WRITE_IO_MODE;
  3955. rc = 0;
  3956. done:
  3957. kfree(open);
  3958. return rc;
  3959. }
  3960. EXPORT_SYMBOL(q6asm_open_shared_io);
  3961. /*
  3962. * q6asm_shared_io_buf: Returns handle to the shared circular buffer being
  3963. * used for pull/push mode.
  3964. * parameters
  3965. * dir - used to identify input/output port
  3966. * returns buffer handle
  3967. */
  3968. struct audio_buffer *q6asm_shared_io_buf(struct audio_client *ac,
  3969. int dir)
  3970. {
  3971. struct audio_port_data *port;
  3972. if (!ac) {
  3973. pr_err("%s: ac is null\n", __func__);
  3974. return NULL;
  3975. }
  3976. port = &ac->port[dir];
  3977. return port->buf;
  3978. }
  3979. EXPORT_SYMBOL(q6asm_shared_io_buf);
  3980. /*
  3981. * q6asm_shared_io_free: Frees memory allocated for a pull/push session
  3982. * parameters
  3983. * dir - port direction
  3984. * returns 0 if successful, error otherwise
  3985. */
  3986. int q6asm_shared_io_free(struct audio_client *ac, int dir)
  3987. {
  3988. struct audio_port_data *port;
  3989. if (!ac) {
  3990. pr_err("%s: audio client is null\n", __func__);
  3991. return -EINVAL;
  3992. }
  3993. port = &ac->port[dir];
  3994. mutex_lock(&ac->cmd_lock);
  3995. if (port->buf && port->buf->data) {
  3996. msm_audio_ion_free(port->buf->dma_buf);
  3997. port->buf->dma_buf = NULL;
  3998. port->max_buf_cnt = 0;
  3999. kfree(port->buf);
  4000. port->buf = NULL;
  4001. }
  4002. if (ac->shared_pos_buf.data) {
  4003. msm_audio_ion_free(ac->shared_pos_buf.dma_buf);
  4004. ac->shared_pos_buf.dma_buf = NULL;
  4005. }
  4006. mutex_unlock(&ac->cmd_lock);
  4007. return 0;
  4008. }
  4009. EXPORT_SYMBOL(q6asm_shared_io_free);
  4010. /*
  4011. * q6asm_get_shared_pos: Returns current read index/write index as observed
  4012. * by the DSP. Note that this is an offset and iterates from [0,BUF_SIZE - 1]
  4013. * parameters - (all output)
  4014. * read_index - offset
  4015. * wall_clk_msw1 - ADSP wallclock msw
  4016. * wall_clk_lsw1 - ADSP wallclock lsw
  4017. * returns 0 if successful, -EAGAIN if DSP failed to update after some
  4018. * retries
  4019. */
  4020. int q6asm_get_shared_pos(struct audio_client *ac, uint32_t *read_index,
  4021. uint32_t *wall_clk_msw1, uint32_t *wall_clk_lsw1)
  4022. {
  4023. struct asm_shared_position_buffer *pos_buf;
  4024. uint32_t frame_cnt1, frame_cnt2;
  4025. int i, j;
  4026. if (!ac) {
  4027. pr_err("%s: audio client is null\n", __func__);
  4028. return -EINVAL;
  4029. }
  4030. pos_buf = ac->shared_pos_buf.data;
  4031. /* always try to get the latest update in the shared pos buffer */
  4032. for (i = 0; i < 2; i++) {
  4033. /* retry until there is an update from DSP */
  4034. for (j = 0; j < 5; j++) {
  4035. frame_cnt1 = pos_buf->frame_counter;
  4036. if (frame_cnt1 != 0)
  4037. break;
  4038. }
  4039. *wall_clk_msw1 = pos_buf->wall_clock_us_msw;
  4040. *wall_clk_lsw1 = pos_buf->wall_clock_us_lsw;
  4041. *read_index = pos_buf->index;
  4042. frame_cnt2 = pos_buf->frame_counter;
  4043. if (frame_cnt1 != frame_cnt2)
  4044. continue;
  4045. return 0;
  4046. }
  4047. pr_err("%s out of tries trying to get a good read, try again\n",
  4048. __func__);
  4049. return -EAGAIN;
  4050. }
  4051. EXPORT_SYMBOL(q6asm_get_shared_pos);
  4052. /**
  4053. * q6asm_run -
  4054. * command to set ASM to run state
  4055. *
  4056. * @ac: Audio client handle
  4057. * @flags: Flags for session
  4058. * @msw_ts: upper 32bits timestamp
  4059. * @lsw_ts: lower 32bits timestamp
  4060. *
  4061. * Returns 0 on success or error on failure
  4062. */
  4063. int q6asm_run(struct audio_client *ac, uint32_t flags,
  4064. uint32_t msw_ts, uint32_t lsw_ts)
  4065. {
  4066. struct asm_session_cmd_run_v2 run;
  4067. int rc;
  4068. if (ac == NULL) {
  4069. pr_err("%s: APR handle NULL\n", __func__);
  4070. return -EINVAL;
  4071. }
  4072. if (ac->apr == NULL) {
  4073. pr_err("%s: AC APR handle NULL\n", __func__);
  4074. return -EINVAL;
  4075. }
  4076. pr_debug("%s: session[%d]\n", __func__, ac->session);
  4077. q6asm_add_hdr(ac, &run.hdr, sizeof(run), TRUE);
  4078. atomic_set(&ac->cmd_state, -1);
  4079. run.hdr.opcode = ASM_SESSION_CMD_RUN_V2;
  4080. run.flags = flags;
  4081. run.time_lsw = lsw_ts;
  4082. run.time_msw = msw_ts;
  4083. config_debug_fs_run();
  4084. rc = apr_send_pkt(ac->apr, (uint32_t *) &run);
  4085. if (rc < 0) {
  4086. pr_err("%s: Commmand run failed[%d]",
  4087. __func__, rc);
  4088. rc = -EINVAL;
  4089. goto fail_cmd;
  4090. }
  4091. rc = wait_event_timeout(ac->cmd_wait,
  4092. (atomic_read(&ac->cmd_state) >= 0),
  4093. msecs_to_jiffies(TIMEOUT_MS));
  4094. if (!rc) {
  4095. pr_err("%s: timeout. waited for run success",
  4096. __func__);
  4097. rc = -ETIMEDOUT;
  4098. goto fail_cmd;
  4099. }
  4100. if (atomic_read(&ac->cmd_state) > 0) {
  4101. pr_err("%s: DSP returned error[%s]\n",
  4102. __func__, adsp_err_get_err_str(
  4103. atomic_read(&ac->cmd_state)));
  4104. rc = adsp_err_get_lnx_err_code(
  4105. atomic_read(&ac->cmd_state));
  4106. goto fail_cmd;
  4107. }
  4108. return 0;
  4109. fail_cmd:
  4110. return rc;
  4111. }
  4112. EXPORT_SYMBOL(q6asm_run);
  4113. static int __q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  4114. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id)
  4115. {
  4116. struct asm_session_cmd_run_v2 run;
  4117. int rc;
  4118. if (ac == NULL) {
  4119. pr_err("%s: APR handle NULL\n", __func__);
  4120. return -EINVAL;
  4121. }
  4122. if (ac->apr == NULL) {
  4123. pr_err("%s: AC APR handle NULL\n", __func__);
  4124. return -EINVAL;
  4125. }
  4126. pr_debug("%s: session[%d]\n", __func__, ac->session);
  4127. q6asm_stream_add_hdr_async(ac, &run.hdr, sizeof(run), TRUE, stream_id);
  4128. atomic_set(&ac->cmd_state, 1);
  4129. run.hdr.opcode = ASM_SESSION_CMD_RUN_V2;
  4130. run.flags = flags;
  4131. run.time_lsw = lsw_ts;
  4132. run.time_msw = msw_ts;
  4133. rc = apr_send_pkt(ac->apr, (uint32_t *) &run);
  4134. if (rc < 0) {
  4135. pr_err("%s: Commmand run failed[%d]", __func__, rc);
  4136. return -EINVAL;
  4137. }
  4138. return 0;
  4139. }
  4140. /**
  4141. * q6asm_run_nowait -
  4142. * command to set ASM to run state with no wait for ack
  4143. *
  4144. * @ac: Audio client handle
  4145. * @flags: Flags for session
  4146. * @msw_ts: upper 32bits timestamp
  4147. * @lsw_ts: lower 32bits timestamp
  4148. *
  4149. * Returns 0 on success or error on failure
  4150. */
  4151. int q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  4152. uint32_t msw_ts, uint32_t lsw_ts)
  4153. {
  4154. return __q6asm_run_nowait(ac, flags, msw_ts, lsw_ts, ac->stream_id);
  4155. }
  4156. EXPORT_SYMBOL(q6asm_run_nowait);
  4157. int q6asm_stream_run_nowait(struct audio_client *ac, uint32_t flags,
  4158. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id)
  4159. {
  4160. return __q6asm_run_nowait(ac, flags, msw_ts, lsw_ts, stream_id);
  4161. }
  4162. /**
  4163. * q6asm_enc_cfg_blk_custom -
  4164. * command to set encode cfg block for custom
  4165. *
  4166. * @ac: Audio client handle
  4167. * @sample_rate: Sample rate
  4168. * @channels: number of ASM channels
  4169. * @format: custom format flag
  4170. * @cfg: generic encoder config
  4171. *
  4172. * Returns 0 on success or error on failure
  4173. */
  4174. int q6asm_enc_cfg_blk_custom(struct audio_client *ac,
  4175. uint32_t sample_rate, uint32_t channels,
  4176. uint32_t format, void *cfg)
  4177. {
  4178. struct asm_custom_enc_cfg_t_v2 enc_cfg;
  4179. int rc = 0;
  4180. uint32_t custom_size;
  4181. struct snd_enc_generic *enc_generic = (struct snd_enc_generic *) cfg;
  4182. custom_size = enc_generic->reserved[1];
  4183. pr_debug("%s: session[%d] size[%d] res[2]=[%d] res[3]=[%d]\n",
  4184. __func__, ac->session, custom_size, enc_generic->reserved[2],
  4185. enc_generic->reserved[3]);
  4186. pr_debug("%s: res[4]=[%d] sr[%d] ch[%d] format[%d]\n",
  4187. __func__, enc_generic->reserved[4], sample_rate,
  4188. channels, format);
  4189. memset(&enc_cfg, 0, sizeof(struct asm_custom_enc_cfg_t_v2));
  4190. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4191. atomic_set(&ac->cmd_state, -1);
  4192. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4193. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4194. enc_cfg.encdec.param_size = sizeof(struct asm_custom_enc_cfg_t_v2) -
  4195. sizeof(struct asm_stream_cmd_set_encdec_param);
  4196. enc_cfg.encblk.frames_per_buf = ENC_FRAMES_PER_BUFFER;
  4197. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4198. sizeof(struct asm_enc_cfg_blk_param_v2);
  4199. enc_cfg.num_channels = channels;
  4200. enc_cfg.sample_rate = sample_rate;
  4201. if (q6asm_map_channels(enc_cfg.channel_mapping, channels, false)) {
  4202. pr_err("%s: map channels failed %d\n",
  4203. __func__, channels);
  4204. rc = -EINVAL;
  4205. goto fail_cmd;
  4206. }
  4207. if (format == FORMAT_BESPOKE && custom_size &&
  4208. custom_size <= sizeof(enc_cfg.custom_data)) {
  4209. memcpy(enc_cfg.custom_data, &enc_generic->reserved[2],
  4210. custom_size);
  4211. enc_cfg.custom_size = custom_size;
  4212. }
  4213. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4214. if (rc < 0) {
  4215. pr_err("%s: Comamnd %d failed %d\n",
  4216. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4217. rc = -EINVAL;
  4218. goto fail_cmd;
  4219. }
  4220. rc = wait_event_timeout(ac->cmd_wait,
  4221. (atomic_read(&ac->cmd_state) >= 0),
  4222. msecs_to_jiffies(TIMEOUT_MS));
  4223. if (!rc) {
  4224. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4225. __func__);
  4226. rc = -ETIMEDOUT;
  4227. goto fail_cmd;
  4228. }
  4229. if (atomic_read(&ac->cmd_state) > 0) {
  4230. pr_err("%s: DSP returned error[%s]\n",
  4231. __func__, adsp_err_get_err_str(
  4232. atomic_read(&ac->cmd_state)));
  4233. rc = adsp_err_get_lnx_err_code(
  4234. atomic_read(&ac->cmd_state));
  4235. goto fail_cmd;
  4236. }
  4237. return 0;
  4238. fail_cmd:
  4239. return rc;
  4240. }
  4241. EXPORT_SYMBOL(q6asm_enc_cfg_blk_custom);
  4242. /**
  4243. * q6asm_enc_cfg_blk_aac -
  4244. * command to set encode cfg block for aac
  4245. *
  4246. * @ac: Audio client handle
  4247. * @frames_per_buf: number of frames per buffer
  4248. * @sample_rate: Sample rate
  4249. * @channels: number of ASM channels
  4250. * @bit_rate: Bit rate info
  4251. * @mode: mode of AAC stream encode
  4252. * @format: aac format flag
  4253. *
  4254. * Returns 0 on success or error on failure
  4255. */
  4256. int q6asm_enc_cfg_blk_aac(struct audio_client *ac,
  4257. uint32_t frames_per_buf,
  4258. uint32_t sample_rate, uint32_t channels,
  4259. uint32_t bit_rate, uint32_t mode, uint32_t format)
  4260. {
  4261. struct asm_aac_enc_cfg_v2 enc_cfg;
  4262. int rc = 0;
  4263. pr_debug("%s: session[%d]frames[%d]SR[%d]ch[%d]bitrate[%d]mode[%d] format[%d]\n",
  4264. __func__, ac->session, frames_per_buf,
  4265. sample_rate, channels, bit_rate, mode, format);
  4266. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4267. atomic_set(&ac->cmd_state, -1);
  4268. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4269. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4270. enc_cfg.encdec.param_size = sizeof(struct asm_aac_enc_cfg_v2) -
  4271. sizeof(struct asm_stream_cmd_set_encdec_param);
  4272. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4273. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4274. sizeof(struct asm_enc_cfg_blk_param_v2);
  4275. enc_cfg.bit_rate = bit_rate;
  4276. enc_cfg.enc_mode = mode;
  4277. enc_cfg.aac_fmt_flag = format;
  4278. enc_cfg.channel_cfg = channels;
  4279. enc_cfg.sample_rate = sample_rate;
  4280. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4281. if (rc < 0) {
  4282. pr_err("%s: Comamnd %d failed %d\n",
  4283. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4284. rc = -EINVAL;
  4285. goto fail_cmd;
  4286. }
  4287. rc = wait_event_timeout(ac->cmd_wait,
  4288. (atomic_read(&ac->cmd_state) >= 0),
  4289. msecs_to_jiffies(TIMEOUT_MS));
  4290. if (!rc) {
  4291. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4292. __func__);
  4293. rc = -ETIMEDOUT;
  4294. goto fail_cmd;
  4295. }
  4296. if (atomic_read(&ac->cmd_state) > 0) {
  4297. pr_err("%s: DSP returned error[%s]\n",
  4298. __func__, adsp_err_get_err_str(
  4299. atomic_read(&ac->cmd_state)));
  4300. rc = adsp_err_get_lnx_err_code(
  4301. atomic_read(&ac->cmd_state));
  4302. goto fail_cmd;
  4303. }
  4304. return 0;
  4305. fail_cmd:
  4306. return rc;
  4307. }
  4308. EXPORT_SYMBOL(q6asm_enc_cfg_blk_aac);
  4309. /**
  4310. * q6asm_enc_cfg_blk_g711 -
  4311. * command to set encode cfg block for g711
  4312. *
  4313. * @ac: Audio client handle
  4314. * @frames_per_buf: number of frames per buffer
  4315. * @sample_rate: Sample rate
  4316. *
  4317. * Returns 0 on success or error on failure
  4318. */
  4319. int q6asm_enc_cfg_blk_g711(struct audio_client *ac,
  4320. uint32_t frames_per_buf,
  4321. uint32_t sample_rate)
  4322. {
  4323. struct asm_g711_enc_cfg_v2 enc_cfg;
  4324. int rc = 0;
  4325. pr_debug("%s: session[%d]frames[%d]SR[%d]\n",
  4326. __func__, ac->session, frames_per_buf,
  4327. sample_rate);
  4328. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4329. atomic_set(&ac->cmd_state, -1);
  4330. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4331. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4332. enc_cfg.encdec.param_size = sizeof(struct asm_g711_enc_cfg_v2) -
  4333. sizeof(struct asm_stream_cmd_set_encdec_param);
  4334. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4335. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4336. sizeof(struct asm_enc_cfg_blk_param_v2);
  4337. enc_cfg.sample_rate = sample_rate;
  4338. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4339. if (rc < 0) {
  4340. pr_err("%s: Comamnd %d failed %d\n",
  4341. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  4342. rc = -EINVAL;
  4343. goto fail_cmd;
  4344. }
  4345. rc = wait_event_timeout(ac->cmd_wait,
  4346. (atomic_read(&ac->cmd_state) >= 0),
  4347. msecs_to_jiffies(TIMEOUT_MS));
  4348. if (!rc) {
  4349. pr_err("%s: timeout. waited for FORMAT_UPDATE\n",
  4350. __func__);
  4351. rc = -ETIMEDOUT;
  4352. goto fail_cmd;
  4353. }
  4354. if (atomic_read(&ac->cmd_state) > 0) {
  4355. pr_err("%s: DSP returned error[%s]\n",
  4356. __func__, adsp_err_get_err_str(
  4357. atomic_read(&ac->cmd_state)));
  4358. rc = adsp_err_get_lnx_err_code(
  4359. atomic_read(&ac->cmd_state));
  4360. goto fail_cmd;
  4361. }
  4362. return 0;
  4363. fail_cmd:
  4364. return rc;
  4365. }
  4366. EXPORT_SYMBOL(q6asm_enc_cfg_blk_g711);
  4367. /**
  4368. * q6asm_set_encdec_chan_map -
  4369. * command to set encdec channel map
  4370. *
  4371. * @ac: Audio client handle
  4372. * @channels: number of channels
  4373. *
  4374. * Returns 0 on success or error on failure
  4375. */
  4376. int q6asm_set_encdec_chan_map(struct audio_client *ac,
  4377. uint32_t num_channels)
  4378. {
  4379. struct asm_dec_out_chan_map_param chan_map;
  4380. u8 *channel_mapping;
  4381. int rc = 0;
  4382. pr_debug("%s: Session %d, num_channels = %d\n",
  4383. __func__, ac->session, num_channels);
  4384. q6asm_add_hdr(ac, &chan_map.hdr, sizeof(chan_map), TRUE);
  4385. atomic_set(&ac->cmd_state, -1);
  4386. chan_map.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4387. chan_map.encdec.param_id = ASM_PARAM_ID_DEC_OUTPUT_CHAN_MAP;
  4388. chan_map.encdec.param_size = sizeof(struct asm_dec_out_chan_map_param) -
  4389. (sizeof(struct apr_hdr) +
  4390. sizeof(struct asm_stream_cmd_set_encdec_param));
  4391. chan_map.num_channels = num_channels;
  4392. channel_mapping = chan_map.channel_mapping;
  4393. memset(channel_mapping, PCM_CHANNEL_NULL, MAX_CHAN_MAP_CHANNELS);
  4394. if (q6asm_map_channels(channel_mapping, num_channels, false)) {
  4395. pr_err("%s: map channels failed %d\n", __func__, num_channels);
  4396. return -EINVAL;
  4397. }
  4398. rc = apr_send_pkt(ac->apr, (uint32_t *) &chan_map);
  4399. if (rc < 0) {
  4400. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  4401. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  4402. ASM_PARAM_ID_DEC_OUTPUT_CHAN_MAP, rc);
  4403. goto fail_cmd;
  4404. }
  4405. rc = wait_event_timeout(ac->cmd_wait,
  4406. (atomic_read(&ac->cmd_state) >= 0),
  4407. msecs_to_jiffies(TIMEOUT_MS));
  4408. if (!rc) {
  4409. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  4410. chan_map.hdr.opcode);
  4411. rc = -ETIMEDOUT;
  4412. goto fail_cmd;
  4413. }
  4414. if (atomic_read(&ac->cmd_state) > 0) {
  4415. pr_err("%s: DSP returned error[%s]\n",
  4416. __func__, adsp_err_get_err_str(
  4417. atomic_read(&ac->cmd_state)));
  4418. rc = adsp_err_get_lnx_err_code(
  4419. atomic_read(&ac->cmd_state));
  4420. goto fail_cmd;
  4421. }
  4422. return 0;
  4423. fail_cmd:
  4424. return rc;
  4425. }
  4426. EXPORT_SYMBOL(q6asm_set_encdec_chan_map);
  4427. /*
  4428. * q6asm_enc_cfg_blk_pcm_v5 - sends encoder configuration parameters
  4429. *
  4430. * @ac: Client session handle
  4431. * @rate: sample rate
  4432. * @channels: number of channels
  4433. * @bits_per_sample: bit width of encoder session
  4434. * @use_default_chmap: true if default channel map to be used
  4435. * @use_back_flavor: to configure back left and right channel
  4436. * @channel_map: input channel map
  4437. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4438. * @endianness: endianness of the pcm data
  4439. * @mode: Mode to provide additional info about the pcm input data
  4440. */
  4441. static int q6asm_enc_cfg_blk_pcm_v5(struct audio_client *ac,
  4442. uint32_t rate, uint32_t channels,
  4443. uint16_t bits_per_sample, bool use_default_chmap,
  4444. bool use_back_flavor, u8 *channel_map,
  4445. uint16_t sample_word_size, uint16_t endianness,
  4446. uint16_t mode)
  4447. {
  4448. struct asm_multi_channel_pcm_enc_cfg_v5 enc_cfg;
  4449. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4450. u8 *channel_mapping;
  4451. u32 frames_per_buf = 0;
  4452. int rc;
  4453. if (!use_default_chmap && (channel_map == NULL)) {
  4454. pr_err("%s: No valid chan map and can't use default\n",
  4455. __func__);
  4456. rc = -EINVAL;
  4457. goto fail_cmd;
  4458. }
  4459. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4460. ac->session, rate, channels,
  4461. bits_per_sample, sample_word_size);
  4462. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4463. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4464. atomic_set(&ac->cmd_state, -1);
  4465. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4466. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4467. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4468. sizeof(enc_cfg.encdec);
  4469. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4470. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4471. sizeof(enc_fg_blk);
  4472. enc_cfg.num_channels = channels;
  4473. enc_cfg.bits_per_sample = bits_per_sample;
  4474. enc_cfg.sample_rate = rate;
  4475. enc_cfg.is_signed = 1;
  4476. enc_cfg.sample_word_size = sample_word_size;
  4477. enc_cfg.endianness = endianness;
  4478. enc_cfg.mode = mode;
  4479. channel_mapping = enc_cfg.channel_mapping;
  4480. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  4481. if (use_default_chmap) {
  4482. pr_debug("%s: setting default channel map for %d channels",
  4483. __func__, channels);
  4484. if (q6asm_map_channels(channel_mapping, channels,
  4485. use_back_flavor)) {
  4486. pr_err("%s: map channels failed %d\n",
  4487. __func__, channels);
  4488. rc = -EINVAL;
  4489. goto fail_cmd;
  4490. }
  4491. } else {
  4492. pr_debug("%s: Using pre-defined channel map", __func__);
  4493. memcpy(channel_mapping, channel_map,
  4494. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  4495. }
  4496. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4497. if (rc < 0) {
  4498. pr_err("%s: Command open failed %d\n", __func__, rc);
  4499. goto fail_cmd;
  4500. }
  4501. rc = wait_event_timeout(ac->cmd_wait,
  4502. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  4503. if (!rc) {
  4504. pr_err("%s: timeout opcode[0x%x]\n",
  4505. __func__, enc_cfg.hdr.opcode);
  4506. rc = -ETIMEDOUT;
  4507. goto fail_cmd;
  4508. }
  4509. if (atomic_read(&ac->cmd_state) > 0) {
  4510. pr_err("%s: DSP returned error[%s]\n",
  4511. __func__, adsp_err_get_err_str(
  4512. atomic_read(&ac->cmd_state)));
  4513. rc = adsp_err_get_lnx_err_code(
  4514. atomic_read(&ac->cmd_state));
  4515. goto fail_cmd;
  4516. }
  4517. return 0;
  4518. fail_cmd:
  4519. return rc;
  4520. }
  4521. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v5);
  4522. /*
  4523. * q6asm_enc_cfg_blk_pcm_v4 - sends encoder configuration parameters
  4524. *
  4525. * @ac: Client session handle
  4526. * @rate: sample rate
  4527. * @channels: number of channels
  4528. * @bits_per_sample: bit width of encoder session
  4529. * @use_default_chmap: true if default channel map to be used
  4530. * @use_back_flavor: to configure back left and right channel
  4531. * @channel_map: input channel map
  4532. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4533. * @endianness: endianness of the pcm data
  4534. * @mode: Mode to provide additional info about the pcm input data
  4535. */
  4536. int q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  4537. uint32_t rate, uint32_t channels,
  4538. uint16_t bits_per_sample, bool use_default_chmap,
  4539. bool use_back_flavor, u8 *channel_map,
  4540. uint16_t sample_word_size, uint16_t endianness,
  4541. uint16_t mode)
  4542. {
  4543. struct asm_multi_channel_pcm_enc_cfg_v4 enc_cfg;
  4544. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4545. u8 *channel_mapping;
  4546. u32 frames_per_buf = 0;
  4547. int rc;
  4548. if (!use_default_chmap && (channel_map == NULL)) {
  4549. pr_err("%s: No valid chan map and can't use default\n",
  4550. __func__);
  4551. rc = -EINVAL;
  4552. goto fail_cmd;
  4553. }
  4554. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4555. ac->session, rate, channels,
  4556. bits_per_sample, sample_word_size);
  4557. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4558. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4559. atomic_set(&ac->cmd_state, -1);
  4560. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4561. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4562. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4563. sizeof(enc_cfg.encdec);
  4564. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4565. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4566. sizeof(enc_fg_blk);
  4567. enc_cfg.num_channels = channels;
  4568. enc_cfg.bits_per_sample = bits_per_sample;
  4569. enc_cfg.sample_rate = rate;
  4570. enc_cfg.is_signed = 1;
  4571. enc_cfg.sample_word_size = sample_word_size;
  4572. enc_cfg.endianness = endianness;
  4573. enc_cfg.mode = mode;
  4574. channel_mapping = enc_cfg.channel_mapping;
  4575. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4576. if (use_default_chmap) {
  4577. pr_debug("%s: setting default channel map for %d channels",
  4578. __func__, channels);
  4579. if (q6asm_map_channels(channel_mapping, channels,
  4580. use_back_flavor)) {
  4581. pr_err("%s: map channels failed %d\n",
  4582. __func__, channels);
  4583. rc = -EINVAL;
  4584. goto fail_cmd;
  4585. }
  4586. } else {
  4587. pr_debug("%s: Using pre-defined channel map", __func__);
  4588. memcpy(channel_mapping, channel_map,
  4589. PCM_FORMAT_MAX_NUM_CHANNEL);
  4590. }
  4591. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4592. if (rc < 0) {
  4593. pr_err("%s: Command open failed %d\n", __func__, rc);
  4594. goto fail_cmd;
  4595. }
  4596. rc = wait_event_timeout(ac->cmd_wait,
  4597. (atomic_read(&ac->cmd_state) >= 0),
  4598. msecs_to_jiffies(TIMEOUT_MS));
  4599. if (!rc) {
  4600. pr_err("%s: timeout opcode[0x%x]\n",
  4601. __func__, enc_cfg.hdr.opcode);
  4602. rc = -ETIMEDOUT;
  4603. goto fail_cmd;
  4604. }
  4605. if (atomic_read(&ac->cmd_state) > 0) {
  4606. pr_err("%s: DSP returned error[%s]\n",
  4607. __func__, adsp_err_get_err_str(
  4608. atomic_read(&ac->cmd_state)));
  4609. rc = adsp_err_get_lnx_err_code(
  4610. atomic_read(&ac->cmd_state));
  4611. goto fail_cmd;
  4612. }
  4613. return 0;
  4614. fail_cmd:
  4615. return rc;
  4616. }
  4617. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v4);
  4618. /*
  4619. * q6asm_enc_cfg_blk_pcm_v3 - sends encoder configuration parameters
  4620. *
  4621. * @ac: Client session handle
  4622. * @rate: sample rate
  4623. * @channels: number of channels
  4624. * @bits_per_sample: bit width of encoder session
  4625. * @use_default_chmap: true if default channel map to be used
  4626. * @use_back_flavor: to configure back left and right channel
  4627. * @channel_map: input channel map
  4628. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4629. */
  4630. int q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  4631. uint32_t rate, uint32_t channels,
  4632. uint16_t bits_per_sample, bool use_default_chmap,
  4633. bool use_back_flavor, u8 *channel_map,
  4634. uint16_t sample_word_size)
  4635. {
  4636. struct asm_multi_channel_pcm_enc_cfg_v3 enc_cfg;
  4637. struct asm_enc_cfg_blk_param_v2 enc_fg_blk;
  4638. u8 *channel_mapping;
  4639. u32 frames_per_buf = 0;
  4640. int rc;
  4641. if (!use_default_chmap && (channel_map == NULL)) {
  4642. pr_err("%s: No valid chan map and can't use default\n",
  4643. __func__);
  4644. rc = -EINVAL;
  4645. goto fail_cmd;
  4646. }
  4647. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  4648. ac->session, rate, channels,
  4649. bits_per_sample, sample_word_size);
  4650. memset(&enc_cfg, 0, sizeof(enc_cfg));
  4651. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4652. atomic_set(&ac->cmd_state, -1);
  4653. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4654. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4655. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4656. sizeof(enc_cfg.encdec);
  4657. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4658. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4659. sizeof(enc_fg_blk);
  4660. enc_cfg.num_channels = channels;
  4661. enc_cfg.bits_per_sample = bits_per_sample;
  4662. enc_cfg.sample_rate = rate;
  4663. enc_cfg.is_signed = 1;
  4664. enc_cfg.sample_word_size = sample_word_size;
  4665. channel_mapping = enc_cfg.channel_mapping;
  4666. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4667. if (use_default_chmap) {
  4668. pr_debug("%s: setting default channel map for %d channels",
  4669. __func__, channels);
  4670. if (q6asm_map_channels(channel_mapping, channels,
  4671. use_back_flavor)) {
  4672. pr_err("%s: map channels failed %d\n",
  4673. __func__, channels);
  4674. rc = -EINVAL;
  4675. goto fail_cmd;
  4676. }
  4677. } else {
  4678. pr_debug("%s: Using pre-defined channel map", __func__);
  4679. memcpy(channel_mapping, channel_map,
  4680. PCM_FORMAT_MAX_NUM_CHANNEL);
  4681. }
  4682. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4683. if (rc < 0) {
  4684. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4685. goto fail_cmd;
  4686. }
  4687. rc = wait_event_timeout(ac->cmd_wait,
  4688. (atomic_read(&ac->cmd_state) >= 0),
  4689. msecs_to_jiffies(TIMEOUT_MS));
  4690. if (!rc) {
  4691. pr_err("%s: timeout opcode[0x%x]\n",
  4692. __func__, enc_cfg.hdr.opcode);
  4693. rc = -ETIMEDOUT;
  4694. goto fail_cmd;
  4695. }
  4696. if (atomic_read(&ac->cmd_state) > 0) {
  4697. pr_err("%s: DSP returned error[%s]\n",
  4698. __func__, adsp_err_get_err_str(
  4699. atomic_read(&ac->cmd_state)));
  4700. rc = adsp_err_get_lnx_err_code(
  4701. atomic_read(&ac->cmd_state));
  4702. goto fail_cmd;
  4703. }
  4704. return 0;
  4705. fail_cmd:
  4706. return rc;
  4707. }
  4708. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v3);
  4709. /**
  4710. * q6asm_enc_cfg_blk_pcm_v2 -
  4711. * command to set encode config block for pcm_v2
  4712. *
  4713. * @ac: Audio client handle
  4714. * @rate: sample rate
  4715. * @channels: number of channels
  4716. * @bits_per_sample: number of bits per sample
  4717. * @use_default_chmap: Flag indicating to use default ch_map or not
  4718. * @use_back_flavor: back flavor flag
  4719. * @channel_map: Custom channel map settings
  4720. *
  4721. * Returns 0 on success or error on failure
  4722. */
  4723. int q6asm_enc_cfg_blk_pcm_v2(struct audio_client *ac,
  4724. uint32_t rate, uint32_t channels, uint16_t bits_per_sample,
  4725. bool use_default_chmap, bool use_back_flavor, u8 *channel_map)
  4726. {
  4727. struct asm_multi_channel_pcm_enc_cfg_v2 enc_cfg;
  4728. u8 *channel_mapping;
  4729. u32 frames_per_buf = 0;
  4730. int rc = 0;
  4731. if (!use_default_chmap && (channel_map == NULL)) {
  4732. pr_err("%s: No valid chan map and can't use default\n",
  4733. __func__);
  4734. return -EINVAL;
  4735. }
  4736. pr_debug("%s: Session %d, rate = %d, channels = %d\n", __func__,
  4737. ac->session, rate, channels);
  4738. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4739. atomic_set(&ac->cmd_state, -1);
  4740. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4741. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4742. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4743. sizeof(enc_cfg.encdec);
  4744. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4745. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4746. sizeof(struct asm_enc_cfg_blk_param_v2);
  4747. enc_cfg.num_channels = channels;
  4748. enc_cfg.bits_per_sample = bits_per_sample;
  4749. enc_cfg.sample_rate = rate;
  4750. enc_cfg.is_signed = 1;
  4751. channel_mapping = enc_cfg.channel_mapping;
  4752. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4753. if (use_default_chmap) {
  4754. pr_debug("%s: setting default channel map for %d channels",
  4755. __func__, channels);
  4756. if (q6asm_map_channels(channel_mapping, channels,
  4757. use_back_flavor)) {
  4758. pr_err("%s: map channels failed %d\n",
  4759. __func__, channels);
  4760. return -EINVAL;
  4761. }
  4762. } else {
  4763. pr_debug("%s: Using pre-defined channel map", __func__);
  4764. memcpy(channel_mapping, channel_map,
  4765. PCM_FORMAT_MAX_NUM_CHANNEL);
  4766. }
  4767. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4768. if (rc < 0) {
  4769. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4770. rc = -EINVAL;
  4771. goto fail_cmd;
  4772. }
  4773. rc = wait_event_timeout(ac->cmd_wait,
  4774. (atomic_read(&ac->cmd_state) >= 0),
  4775. msecs_to_jiffies(TIMEOUT_MS));
  4776. if (!rc) {
  4777. pr_err("%s: timeout opcode[0x%x]\n",
  4778. __func__, enc_cfg.hdr.opcode);
  4779. rc = -ETIMEDOUT;
  4780. goto fail_cmd;
  4781. }
  4782. if (atomic_read(&ac->cmd_state) > 0) {
  4783. pr_err("%s: DSP returned error[%s]\n",
  4784. __func__, adsp_err_get_err_str(
  4785. atomic_read(&ac->cmd_state)));
  4786. rc = adsp_err_get_lnx_err_code(
  4787. atomic_read(&ac->cmd_state));
  4788. goto fail_cmd;
  4789. }
  4790. return 0;
  4791. fail_cmd:
  4792. return rc;
  4793. }
  4794. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_v2);
  4795. static int __q6asm_enc_cfg_blk_pcm_v5(struct audio_client *ac,
  4796. uint32_t rate, uint32_t channels,
  4797. uint16_t bits_per_sample,
  4798. uint16_t sample_word_size,
  4799. uint16_t endianness,
  4800. uint16_t mode)
  4801. {
  4802. return q6asm_enc_cfg_blk_pcm_v5(ac, rate, channels,
  4803. bits_per_sample, true, false, NULL,
  4804. sample_word_size, endianness, mode);
  4805. }
  4806. static int __q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  4807. uint32_t rate, uint32_t channels,
  4808. uint16_t bits_per_sample,
  4809. uint16_t sample_word_size,
  4810. uint16_t endianness,
  4811. uint16_t mode)
  4812. {
  4813. return q6asm_enc_cfg_blk_pcm_v4(ac, rate, channels,
  4814. bits_per_sample, true, false, NULL,
  4815. sample_word_size, endianness, mode);
  4816. }
  4817. static int __q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  4818. uint32_t rate, uint32_t channels,
  4819. uint16_t bits_per_sample,
  4820. uint16_t sample_word_size)
  4821. {
  4822. return q6asm_enc_cfg_blk_pcm_v3(ac, rate, channels,
  4823. bits_per_sample, true, false, NULL,
  4824. sample_word_size);
  4825. }
  4826. static int __q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  4827. uint32_t rate, uint32_t channels, uint16_t bits_per_sample)
  4828. {
  4829. return q6asm_enc_cfg_blk_pcm_v2(ac, rate, channels,
  4830. bits_per_sample, true, false, NULL);
  4831. }
  4832. /**
  4833. * q6asm_enc_cfg_blk_pcm -
  4834. * command to set encode config block for pcm
  4835. *
  4836. * @ac: Audio client handle
  4837. * @rate: sample rate
  4838. * @channels: number of channels
  4839. *
  4840. * Returns 0 on success or error on failure
  4841. */
  4842. int q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  4843. uint32_t rate, uint32_t channels)
  4844. {
  4845. return __q6asm_enc_cfg_blk_pcm(ac, rate, channels, 16);
  4846. }
  4847. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm);
  4848. int q6asm_enc_cfg_blk_pcm_format_support(struct audio_client *ac,
  4849. uint32_t rate, uint32_t channels, uint16_t bits_per_sample)
  4850. {
  4851. return __q6asm_enc_cfg_blk_pcm(ac, rate, channels, bits_per_sample);
  4852. }
  4853. /*
  4854. * q6asm_enc_cfg_blk_pcm_format_support_v3 - sends encoder configuration
  4855. * parameters
  4856. *
  4857. * @ac: Client session handle
  4858. * @rate: sample rate
  4859. * @channels: number of channels
  4860. * @bits_per_sample: bit width of encoder session
  4861. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4862. */
  4863. int q6asm_enc_cfg_blk_pcm_format_support_v3(struct audio_client *ac,
  4864. uint32_t rate, uint32_t channels,
  4865. uint16_t bits_per_sample,
  4866. uint16_t sample_word_size)
  4867. {
  4868. return __q6asm_enc_cfg_blk_pcm_v3(ac, rate, channels,
  4869. bits_per_sample, sample_word_size);
  4870. }
  4871. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v3);
  4872. /*
  4873. * q6asm_enc_cfg_blk_pcm_format_support_v4 - sends encoder configuration
  4874. * parameters
  4875. *
  4876. * @ac: Client session handle
  4877. * @rate: sample rate
  4878. * @channels: number of channels
  4879. * @bits_per_sample: bit width of encoder session
  4880. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4881. * @endianness: endianness of the pcm data
  4882. * @mode: Mode to provide additional info about the pcm input data
  4883. */
  4884. int q6asm_enc_cfg_blk_pcm_format_support_v4(struct audio_client *ac,
  4885. uint32_t rate, uint32_t channels,
  4886. uint16_t bits_per_sample,
  4887. uint16_t sample_word_size,
  4888. uint16_t endianness,
  4889. uint16_t mode)
  4890. {
  4891. return __q6asm_enc_cfg_blk_pcm_v4(ac, rate, channels,
  4892. bits_per_sample, sample_word_size,
  4893. endianness, mode);
  4894. }
  4895. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v4);
  4896. /*
  4897. * q6asm_enc_cfg_blk_pcm_format_support_v5 - sends encoder configuration
  4898. * parameters
  4899. *
  4900. * @ac: Client session handle
  4901. * @rate: sample rate
  4902. * @channels: number of channels
  4903. * @bits_per_sample: bit width of encoder session
  4904. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  4905. * @endianness: endianness of the pcm data
  4906. * @mode: Mode to provide additional info about the pcm input data
  4907. */
  4908. int q6asm_enc_cfg_blk_pcm_format_support_v5(struct audio_client *ac,
  4909. uint32_t rate, uint32_t channels,
  4910. uint16_t bits_per_sample,
  4911. uint16_t sample_word_size,
  4912. uint16_t endianness,
  4913. uint16_t mode)
  4914. {
  4915. return __q6asm_enc_cfg_blk_pcm_v5(ac, rate, channels,
  4916. bits_per_sample, sample_word_size,
  4917. endianness, mode);
  4918. }
  4919. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_format_support_v5);
  4920. /**
  4921. * q6asm_enc_cfg_blk_pcm_native -
  4922. * command to set encode config block for pcm_native
  4923. *
  4924. * @ac: Audio client handle
  4925. * @rate: sample rate
  4926. * @channels: number of channels
  4927. *
  4928. * Returns 0 on success or error on failure
  4929. */
  4930. int q6asm_enc_cfg_blk_pcm_native(struct audio_client *ac,
  4931. uint32_t rate, uint32_t channels)
  4932. {
  4933. struct asm_multi_channel_pcm_enc_cfg_v2 enc_cfg;
  4934. u8 *channel_mapping;
  4935. u32 frames_per_buf = 0;
  4936. int rc = 0;
  4937. pr_debug("%s: Session %d, rate = %d, channels = %d\n", __func__,
  4938. ac->session, rate, channels);
  4939. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  4940. atomic_set(&ac->cmd_state, -1);
  4941. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  4942. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  4943. enc_cfg.encdec.param_size = sizeof(enc_cfg) - sizeof(enc_cfg.hdr) -
  4944. sizeof(enc_cfg.encdec);
  4945. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  4946. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  4947. sizeof(struct asm_enc_cfg_blk_param_v2);
  4948. enc_cfg.num_channels = 0;/*channels;*/
  4949. enc_cfg.bits_per_sample = 16;
  4950. enc_cfg.sample_rate = 0;/*rate;*/
  4951. enc_cfg.is_signed = 1;
  4952. channel_mapping = enc_cfg.channel_mapping;
  4953. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  4954. if (q6asm_map_channels(channel_mapping, channels, false)) {
  4955. pr_err("%s: map channels failed %d\n", __func__, channels);
  4956. return -EINVAL;
  4957. }
  4958. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  4959. if (rc < 0) {
  4960. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  4961. rc = -EINVAL;
  4962. goto fail_cmd;
  4963. }
  4964. rc = wait_event_timeout(ac->cmd_wait,
  4965. (atomic_read(&ac->cmd_state) >= 0),
  4966. msecs_to_jiffies(TIMEOUT_MS));
  4967. if (!rc) {
  4968. pr_err("%s: timeout opcode[0x%x]\n",
  4969. __func__, enc_cfg.hdr.opcode);
  4970. rc = -ETIMEDOUT;
  4971. goto fail_cmd;
  4972. }
  4973. if (atomic_read(&ac->cmd_state) > 0) {
  4974. pr_err("%s: DSP returned error[%s]\n",
  4975. __func__, adsp_err_get_err_str(
  4976. atomic_read(&ac->cmd_state)));
  4977. rc = adsp_err_get_lnx_err_code(
  4978. atomic_read(&ac->cmd_state));
  4979. goto fail_cmd;
  4980. }
  4981. return 0;
  4982. fail_cmd:
  4983. return rc;
  4984. }
  4985. EXPORT_SYMBOL(q6asm_enc_cfg_blk_pcm_native);
  4986. /*
  4987. * q6asm_map_channels:
  4988. * Provide default asm channel mapping for given channel count.
  4989. *
  4990. * @channel_mapping: buffer pointer to write back channel maps.
  4991. * @channels: channel count for which channel map is required.
  4992. * @use_back_flavor: use back channels instead of surround channels.
  4993. * Returns 0 for success, -EINVAL for unsupported channel count.
  4994. */
  4995. int q6asm_map_channels(u8 *channel_mapping, uint32_t channels,
  4996. bool use_back_flavor)
  4997. {
  4998. u8 *lchannel_mapping;
  4999. lchannel_mapping = channel_mapping;
  5000. pr_debug("%s: channels passed: %d\n", __func__, channels);
  5001. if (channels == 1) {
  5002. lchannel_mapping[0] = PCM_CHANNEL_FC;
  5003. } else if (channels == 2) {
  5004. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5005. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5006. } else if (channels == 3) {
  5007. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5008. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5009. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5010. } else if (channels == 4) {
  5011. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5012. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5013. lchannel_mapping[2] = use_back_flavor ?
  5014. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  5015. lchannel_mapping[3] = use_back_flavor ?
  5016. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  5017. } else if (channels == 5) {
  5018. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5019. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5020. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5021. lchannel_mapping[3] = use_back_flavor ?
  5022. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  5023. lchannel_mapping[4] = use_back_flavor ?
  5024. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  5025. } else if (channels == 6) {
  5026. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5027. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5028. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5029. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5030. lchannel_mapping[4] = use_back_flavor ?
  5031. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  5032. lchannel_mapping[5] = use_back_flavor ?
  5033. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  5034. } else if (channels == 7) {
  5035. /*
  5036. * Configured for 5.1 channel mapping + 1 channel for debug
  5037. * Can be customized based on DSP.
  5038. */
  5039. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5040. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5041. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5042. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5043. lchannel_mapping[4] = use_back_flavor ?
  5044. PCM_CHANNEL_LB : PCM_CHANNEL_LS;
  5045. lchannel_mapping[5] = use_back_flavor ?
  5046. PCM_CHANNEL_RB : PCM_CHANNEL_RS;
  5047. lchannel_mapping[6] = PCM_CHANNEL_CS;
  5048. } else if (channels == 8) {
  5049. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5050. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5051. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5052. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5053. lchannel_mapping[4] = PCM_CHANNEL_LB;
  5054. lchannel_mapping[5] = PCM_CHANNEL_RB;
  5055. lchannel_mapping[6] = PCM_CHANNEL_LS;
  5056. lchannel_mapping[7] = PCM_CHANNEL_RS;
  5057. } else if (channels == 12) {
  5058. /*
  5059. * Configured for 7.1.4 channel mapping
  5060. * Todo: Needs to be checked
  5061. */
  5062. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5063. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5064. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5065. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5066. lchannel_mapping[4] = PCM_CHANNEL_LB;
  5067. lchannel_mapping[5] = PCM_CHANNEL_RB;
  5068. lchannel_mapping[6] = PCM_CHANNEL_LS;
  5069. lchannel_mapping[7] = PCM_CHANNEL_RS;
  5070. lchannel_mapping[8] = PCM_CHANNEL_TFL;
  5071. lchannel_mapping[9] = PCM_CHANNEL_TFR;
  5072. lchannel_mapping[10] = PCM_CHANNEL_TSL;
  5073. lchannel_mapping[11] = PCM_CHANNEL_TSR;
  5074. } else if (channels == 16) {
  5075. /*
  5076. * Configured for 7.1.8 channel mapping
  5077. * Todo: Needs to be checked
  5078. */
  5079. lchannel_mapping[0] = PCM_CHANNEL_FL;
  5080. lchannel_mapping[1] = PCM_CHANNEL_FR;
  5081. lchannel_mapping[2] = PCM_CHANNEL_FC;
  5082. lchannel_mapping[3] = PCM_CHANNEL_LFE;
  5083. lchannel_mapping[4] = PCM_CHANNEL_LB;
  5084. lchannel_mapping[5] = PCM_CHANNEL_RB;
  5085. lchannel_mapping[6] = PCM_CHANNEL_LS;
  5086. lchannel_mapping[7] = PCM_CHANNEL_RS;
  5087. lchannel_mapping[8] = PCM_CHANNEL_TFL;
  5088. lchannel_mapping[9] = PCM_CHANNEL_TFR;
  5089. lchannel_mapping[10] = PCM_CHANNEL_TSL;
  5090. lchannel_mapping[11] = PCM_CHANNEL_TSR;
  5091. lchannel_mapping[12] = PCM_CHANNEL_FLC;
  5092. lchannel_mapping[13] = PCM_CHANNEL_FRC;
  5093. lchannel_mapping[14] = PCM_CHANNEL_RLC;
  5094. lchannel_mapping[15] = PCM_CHANNEL_RRC;
  5095. } else {
  5096. pr_err("%s: ERROR.unsupported num_ch = %u\n",
  5097. __func__, channels);
  5098. return -EINVAL;
  5099. }
  5100. return 0;
  5101. }
  5102. EXPORT_SYMBOL(q6asm_map_channels);
  5103. /**
  5104. * q6asm_enable_sbrps -
  5105. * command to enable sbrps for ASM
  5106. *
  5107. * @ac: Audio client handle
  5108. * @sbr_ps_enable: flag for sbr_ps enable or disable
  5109. *
  5110. * Returns 0 on success or error on failure
  5111. */
  5112. int q6asm_enable_sbrps(struct audio_client *ac,
  5113. uint32_t sbr_ps_enable)
  5114. {
  5115. struct asm_aac_sbr_ps_flag_param sbrps;
  5116. u32 frames_per_buf = 0;
  5117. int rc = 0;
  5118. pr_debug("%s: Session %d\n", __func__, ac->session);
  5119. q6asm_add_hdr(ac, &sbrps.hdr, sizeof(sbrps), TRUE);
  5120. atomic_set(&ac->cmd_state, -1);
  5121. sbrps.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5122. sbrps.encdec.param_id = ASM_PARAM_ID_AAC_SBR_PS_FLAG;
  5123. sbrps.encdec.param_size = sizeof(struct asm_aac_sbr_ps_flag_param) -
  5124. sizeof(struct asm_stream_cmd_set_encdec_param);
  5125. sbrps.encblk.frames_per_buf = frames_per_buf;
  5126. sbrps.encblk.enc_cfg_blk_size = sbrps.encdec.param_size -
  5127. sizeof(struct asm_enc_cfg_blk_param_v2);
  5128. sbrps.sbr_ps_flag = sbr_ps_enable;
  5129. rc = apr_send_pkt(ac->apr, (uint32_t *) &sbrps);
  5130. if (rc < 0) {
  5131. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5132. __func__,
  5133. ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5134. ASM_PARAM_ID_AAC_SBR_PS_FLAG, rc);
  5135. rc = -EINVAL;
  5136. goto fail_cmd;
  5137. }
  5138. rc = wait_event_timeout(ac->cmd_wait,
  5139. (atomic_read(&ac->cmd_state) >= 0),
  5140. msecs_to_jiffies(TIMEOUT_MS));
  5141. if (!rc) {
  5142. pr_err("%s: timeout opcode[0x%x] ", __func__, sbrps.hdr.opcode);
  5143. rc = -ETIMEDOUT;
  5144. goto fail_cmd;
  5145. }
  5146. if (atomic_read(&ac->cmd_state) > 0) {
  5147. pr_err("%s: DSP returned error[%s]\n",
  5148. __func__, adsp_err_get_err_str(
  5149. atomic_read(&ac->cmd_state)));
  5150. rc = adsp_err_get_lnx_err_code(
  5151. atomic_read(&ac->cmd_state));
  5152. goto fail_cmd;
  5153. }
  5154. return 0;
  5155. fail_cmd:
  5156. return rc;
  5157. }
  5158. EXPORT_SYMBOL(q6asm_enable_sbrps);
  5159. /**
  5160. * q6asm_cfg_dual_mono_aac -
  5161. * command to set config for dual mono aac
  5162. *
  5163. * @ac: Audio client handle
  5164. * @sce_left: left sce val
  5165. * @sce_right: right sce val
  5166. *
  5167. * Returns 0 on success or error on failure
  5168. */
  5169. int q6asm_cfg_dual_mono_aac(struct audio_client *ac,
  5170. uint16_t sce_left, uint16_t sce_right)
  5171. {
  5172. struct asm_aac_dual_mono_mapping_param dual_mono;
  5173. int rc = 0;
  5174. pr_debug("%s: Session %d, sce_left = %d, sce_right = %d\n",
  5175. __func__, ac->session, sce_left, sce_right);
  5176. q6asm_add_hdr(ac, &dual_mono.hdr, sizeof(dual_mono), TRUE);
  5177. atomic_set(&ac->cmd_state, -1);
  5178. dual_mono.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5179. dual_mono.encdec.param_id = ASM_PARAM_ID_AAC_DUAL_MONO_MAPPING;
  5180. dual_mono.encdec.param_size = sizeof(dual_mono.left_channel_sce) +
  5181. sizeof(dual_mono.right_channel_sce);
  5182. dual_mono.left_channel_sce = sce_left;
  5183. dual_mono.right_channel_sce = sce_right;
  5184. rc = apr_send_pkt(ac->apr, (uint32_t *) &dual_mono);
  5185. if (rc < 0) {
  5186. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5187. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5188. ASM_PARAM_ID_AAC_DUAL_MONO_MAPPING, rc);
  5189. rc = -EINVAL;
  5190. goto fail_cmd;
  5191. }
  5192. rc = wait_event_timeout(ac->cmd_wait,
  5193. (atomic_read(&ac->cmd_state) >= 0),
  5194. msecs_to_jiffies(TIMEOUT_MS));
  5195. if (!rc) {
  5196. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  5197. dual_mono.hdr.opcode);
  5198. rc = -ETIMEDOUT;
  5199. goto fail_cmd;
  5200. }
  5201. if (atomic_read(&ac->cmd_state) > 0) {
  5202. pr_err("%s: DSP returned error[%s]\n",
  5203. __func__, adsp_err_get_err_str(
  5204. atomic_read(&ac->cmd_state)));
  5205. rc = adsp_err_get_lnx_err_code(
  5206. atomic_read(&ac->cmd_state));
  5207. goto fail_cmd;
  5208. }
  5209. return 0;
  5210. fail_cmd:
  5211. return rc;
  5212. }
  5213. EXPORT_SYMBOL(q6asm_cfg_dual_mono_aac);
  5214. /* Support for selecting stereo mixing coefficients for B family not done */
  5215. int q6asm_cfg_aac_sel_mix_coef(struct audio_client *ac, uint32_t mix_coeff)
  5216. {
  5217. struct asm_aac_stereo_mix_coeff_selection_param_v2 aac_mix_coeff;
  5218. int rc = 0;
  5219. q6asm_add_hdr(ac, &aac_mix_coeff.hdr, sizeof(aac_mix_coeff), TRUE);
  5220. atomic_set(&ac->cmd_state, -1);
  5221. aac_mix_coeff.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5222. aac_mix_coeff.param_id =
  5223. ASM_PARAM_ID_AAC_STEREO_MIX_COEFF_SELECTION_FLAG_V2;
  5224. aac_mix_coeff.param_size =
  5225. sizeof(struct asm_aac_stereo_mix_coeff_selection_param_v2);
  5226. aac_mix_coeff.aac_stereo_mix_coeff_flag = mix_coeff;
  5227. pr_debug("%s: mix_coeff = %u\n", __func__, mix_coeff);
  5228. rc = apr_send_pkt(ac->apr, (uint32_t *) &aac_mix_coeff);
  5229. if (rc < 0) {
  5230. pr_err("%s: Command opcode[0x%x]paramid[0x%x] failed %d\n",
  5231. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM,
  5232. ASM_PARAM_ID_AAC_STEREO_MIX_COEFF_SELECTION_FLAG_V2,
  5233. rc);
  5234. rc = -EINVAL;
  5235. goto fail_cmd;
  5236. }
  5237. rc = wait_event_timeout(ac->cmd_wait,
  5238. (atomic_read(&ac->cmd_state) >= 0),
  5239. msecs_to_jiffies(TIMEOUT_MS));
  5240. if (!rc) {
  5241. pr_err("%s: timeout opcode[0x%x]\n",
  5242. __func__, aac_mix_coeff.hdr.opcode);
  5243. rc = -ETIMEDOUT;
  5244. goto fail_cmd;
  5245. }
  5246. if (atomic_read(&ac->cmd_state) > 0) {
  5247. pr_err("%s: DSP returned error[%s]\n",
  5248. __func__, adsp_err_get_err_str(
  5249. atomic_read(&ac->cmd_state)));
  5250. rc = adsp_err_get_lnx_err_code(
  5251. atomic_read(&ac->cmd_state));
  5252. goto fail_cmd;
  5253. }
  5254. return 0;
  5255. fail_cmd:
  5256. return rc;
  5257. }
  5258. EXPORT_SYMBOL(q6asm_cfg_aac_sel_mix_coef);
  5259. /**
  5260. * q6asm_enc_cfg_blk_qcelp -
  5261. * command to set encode config block for QCELP
  5262. *
  5263. * @ac: Audio client handle
  5264. * @frames_per_buf: Number of frames per buffer
  5265. * @min_rate: Minimum Enc rate
  5266. * @max_rate: Maximum Enc rate
  5267. * reduced_rate_level: Reduced rate level
  5268. * @rate_modulation_cmd: rate modulation command
  5269. *
  5270. * Returns 0 on success or error on failure
  5271. */
  5272. int q6asm_enc_cfg_blk_qcelp(struct audio_client *ac, uint32_t frames_per_buf,
  5273. uint16_t min_rate, uint16_t max_rate,
  5274. uint16_t reduced_rate_level, uint16_t rate_modulation_cmd)
  5275. {
  5276. struct asm_v13k_enc_cfg enc_cfg;
  5277. int rc = 0;
  5278. 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",
  5279. __func__,
  5280. ac->session, frames_per_buf, min_rate, max_rate,
  5281. reduced_rate_level, rate_modulation_cmd);
  5282. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5283. atomic_set(&ac->cmd_state, -1);
  5284. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5285. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5286. enc_cfg.encdec.param_size = sizeof(struct asm_v13k_enc_cfg) -
  5287. sizeof(struct asm_stream_cmd_set_encdec_param);
  5288. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5289. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5290. sizeof(struct asm_enc_cfg_blk_param_v2);
  5291. enc_cfg.min_rate = min_rate;
  5292. enc_cfg.max_rate = max_rate;
  5293. enc_cfg.reduced_rate_cmd = reduced_rate_level;
  5294. enc_cfg.rate_mod_cmd = rate_modulation_cmd;
  5295. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5296. if (rc < 0) {
  5297. pr_err("%s: Comamnd %d failed %d\n",
  5298. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5299. rc = -EINVAL;
  5300. goto fail_cmd;
  5301. }
  5302. rc = wait_event_timeout(ac->cmd_wait,
  5303. (atomic_read(&ac->cmd_state) >= 0),
  5304. msecs_to_jiffies(TIMEOUT_MS));
  5305. if (!rc) {
  5306. pr_err("%s: timeout. waited for setencdec v13k resp\n",
  5307. __func__);
  5308. rc = -ETIMEDOUT;
  5309. goto fail_cmd;
  5310. }
  5311. if (atomic_read(&ac->cmd_state) > 0) {
  5312. pr_err("%s: DSP returned error[%s]\n",
  5313. __func__, adsp_err_get_err_str(
  5314. atomic_read(&ac->cmd_state)));
  5315. rc = adsp_err_get_lnx_err_code(
  5316. atomic_read(&ac->cmd_state));
  5317. goto fail_cmd;
  5318. }
  5319. return 0;
  5320. fail_cmd:
  5321. return rc;
  5322. }
  5323. EXPORT_SYMBOL(q6asm_enc_cfg_blk_qcelp);
  5324. /**
  5325. * q6asm_enc_cfg_blk_evrc -
  5326. * command to set encode config block for EVRC
  5327. *
  5328. * @ac: Audio client handle
  5329. * @frames_per_buf: Number of frames per buffer
  5330. * @min_rate: Minimum Enc rate
  5331. * @max_rate: Maximum Enc rate
  5332. * @rate_modulation_cmd: rate modulation command
  5333. *
  5334. * Returns 0 on success or error on failure
  5335. */
  5336. int q6asm_enc_cfg_blk_evrc(struct audio_client *ac, uint32_t frames_per_buf,
  5337. uint16_t min_rate, uint16_t max_rate,
  5338. uint16_t rate_modulation_cmd)
  5339. {
  5340. struct asm_evrc_enc_cfg enc_cfg;
  5341. int rc = 0;
  5342. pr_debug("%s: session[%d]frames[%d]min_rate[0x%4x]max_rate[0x%4x] rate_modulation_cmd[0x%4x]\n",
  5343. __func__, ac->session,
  5344. frames_per_buf, min_rate, max_rate, rate_modulation_cmd);
  5345. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5346. atomic_set(&ac->cmd_state, -1);
  5347. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5348. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5349. enc_cfg.encdec.param_size = sizeof(struct asm_evrc_enc_cfg) -
  5350. sizeof(struct asm_stream_cmd_set_encdec_param);
  5351. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5352. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5353. sizeof(struct asm_enc_cfg_blk_param_v2);
  5354. enc_cfg.min_rate = min_rate;
  5355. enc_cfg.max_rate = max_rate;
  5356. enc_cfg.rate_mod_cmd = rate_modulation_cmd;
  5357. enc_cfg.reserved = 0;
  5358. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5359. if (rc < 0) {
  5360. pr_err("%s: Comamnd %d failed %d\n",
  5361. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5362. rc = -EINVAL;
  5363. goto fail_cmd;
  5364. }
  5365. rc = wait_event_timeout(ac->cmd_wait,
  5366. (atomic_read(&ac->cmd_state) >= 0),
  5367. msecs_to_jiffies(TIMEOUT_MS));
  5368. if (!rc) {
  5369. pr_err("%s: timeout. waited for encdec evrc\n", __func__);
  5370. rc = -ETIMEDOUT;
  5371. goto fail_cmd;
  5372. }
  5373. if (atomic_read(&ac->cmd_state) > 0) {
  5374. pr_err("%s: DSP returned error[%s]\n",
  5375. __func__, adsp_err_get_err_str(
  5376. atomic_read(&ac->cmd_state)));
  5377. rc = adsp_err_get_lnx_err_code(
  5378. atomic_read(&ac->cmd_state));
  5379. goto fail_cmd;
  5380. }
  5381. return 0;
  5382. fail_cmd:
  5383. return rc;
  5384. }
  5385. EXPORT_SYMBOL(q6asm_enc_cfg_blk_evrc);
  5386. /**
  5387. * q6asm_enc_cfg_blk_amrnb -
  5388. * command to set encode config block for AMRNB
  5389. *
  5390. * @ac: Audio client handle
  5391. * @frames_per_buf: Number of frames per buffer
  5392. * @band_mode: Band mode used
  5393. * @dtx_enable: DTX en flag
  5394. *
  5395. * Returns 0 on success or error on failure
  5396. */
  5397. int q6asm_enc_cfg_blk_amrnb(struct audio_client *ac, uint32_t frames_per_buf,
  5398. uint16_t band_mode, uint16_t dtx_enable)
  5399. {
  5400. struct asm_amrnb_enc_cfg enc_cfg;
  5401. int rc = 0;
  5402. pr_debug("%s: session[%d]frames[%d]band_mode[0x%4x]dtx_enable[0x%4x]\n",
  5403. __func__, ac->session, frames_per_buf, band_mode, dtx_enable);
  5404. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5405. atomic_set(&ac->cmd_state, -1);
  5406. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5407. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5408. enc_cfg.encdec.param_size = sizeof(struct asm_amrnb_enc_cfg) -
  5409. sizeof(struct asm_stream_cmd_set_encdec_param);
  5410. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5411. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5412. sizeof(struct asm_enc_cfg_blk_param_v2);
  5413. enc_cfg.enc_mode = band_mode;
  5414. enc_cfg.dtx_mode = dtx_enable;
  5415. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5416. if (rc < 0) {
  5417. pr_err("%s: Comamnd %d failed %d\n",
  5418. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5419. rc = -EINVAL;
  5420. goto fail_cmd;
  5421. }
  5422. rc = wait_event_timeout(ac->cmd_wait,
  5423. (atomic_read(&ac->cmd_state) >= 0),
  5424. msecs_to_jiffies(TIMEOUT_MS));
  5425. if (!rc) {
  5426. pr_err("%s: timeout. waited for set encdec amrnb\n", __func__);
  5427. rc = -ETIMEDOUT;
  5428. goto fail_cmd;
  5429. }
  5430. if (atomic_read(&ac->cmd_state) > 0) {
  5431. pr_err("%s: DSP returned error[%s]\n",
  5432. __func__, adsp_err_get_err_str(
  5433. atomic_read(&ac->cmd_state)));
  5434. rc = adsp_err_get_lnx_err_code(
  5435. atomic_read(&ac->cmd_state));
  5436. goto fail_cmd;
  5437. }
  5438. return 0;
  5439. fail_cmd:
  5440. return rc;
  5441. }
  5442. EXPORT_SYMBOL(q6asm_enc_cfg_blk_amrnb);
  5443. /**
  5444. * q6asm_enc_cfg_blk_amrwb -
  5445. * command to set encode config block for AMRWB
  5446. *
  5447. * @ac: Audio client handle
  5448. * @frames_per_buf: Number of frames per buffer
  5449. * @band_mode: Band mode used
  5450. * @dtx_enable: DTX en flag
  5451. *
  5452. * Returns 0 on success or error on failure
  5453. */
  5454. int q6asm_enc_cfg_blk_amrwb(struct audio_client *ac, uint32_t frames_per_buf,
  5455. uint16_t band_mode, uint16_t dtx_enable)
  5456. {
  5457. struct asm_amrwb_enc_cfg enc_cfg;
  5458. int rc = 0;
  5459. pr_debug("%s: session[%d]frames[%d]band_mode[0x%4x]dtx_enable[0x%4x]\n",
  5460. __func__, ac->session, frames_per_buf, band_mode, dtx_enable);
  5461. q6asm_add_hdr(ac, &enc_cfg.hdr, sizeof(enc_cfg), TRUE);
  5462. atomic_set(&ac->cmd_state, -1);
  5463. enc_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  5464. enc_cfg.encdec.param_id = ASM_PARAM_ID_ENCDEC_ENC_CFG_BLK_V2;
  5465. enc_cfg.encdec.param_size = sizeof(struct asm_amrwb_enc_cfg) -
  5466. sizeof(struct asm_stream_cmd_set_encdec_param);
  5467. enc_cfg.encblk.frames_per_buf = frames_per_buf;
  5468. enc_cfg.encblk.enc_cfg_blk_size = enc_cfg.encdec.param_size -
  5469. sizeof(struct asm_enc_cfg_blk_param_v2);
  5470. enc_cfg.enc_mode = band_mode;
  5471. enc_cfg.dtx_mode = dtx_enable;
  5472. rc = apr_send_pkt(ac->apr, (uint32_t *) &enc_cfg);
  5473. if (rc < 0) {
  5474. pr_err("%s: Comamnd %d failed %d\n",
  5475. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  5476. rc = -EINVAL;
  5477. goto fail_cmd;
  5478. }
  5479. rc = wait_event_timeout(ac->cmd_wait,
  5480. (atomic_read(&ac->cmd_state) >= 0),
  5481. msecs_to_jiffies(TIMEOUT_MS));
  5482. if (!rc) {
  5483. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  5484. rc = -ETIMEDOUT;
  5485. goto fail_cmd;
  5486. }
  5487. if (atomic_read(&ac->cmd_state) > 0) {
  5488. pr_err("%s: DSP returned error[%s]\n",
  5489. __func__, adsp_err_get_err_str(
  5490. atomic_read(&ac->cmd_state)));
  5491. rc = adsp_err_get_lnx_err_code(
  5492. atomic_read(&ac->cmd_state));
  5493. goto fail_cmd;
  5494. }
  5495. return 0;
  5496. fail_cmd:
  5497. return rc;
  5498. }
  5499. EXPORT_SYMBOL(q6asm_enc_cfg_blk_amrwb);
  5500. static int __q6asm_media_format_block_pcm(struct audio_client *ac,
  5501. uint32_t rate, uint32_t channels,
  5502. uint16_t bits_per_sample, int stream_id,
  5503. bool use_default_chmap, char *channel_map)
  5504. {
  5505. struct asm_multi_channel_pcm_fmt_blk_v2 fmt;
  5506. u8 *channel_mapping;
  5507. int rc = 0;
  5508. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session, rate,
  5509. channels);
  5510. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5511. atomic_set(&ac->cmd_state, -1);
  5512. /*
  5513. * Updated the token field with stream/session for compressed playback
  5514. * Platform driver must know the the stream with which the command is
  5515. * associated
  5516. */
  5517. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5518. q6asm_update_token(&fmt.hdr.token,
  5519. ac->session,
  5520. stream_id,
  5521. 0, /* Buffer index is NA */
  5522. 0, /* Direction flag is NA */
  5523. WAIT_CMD);
  5524. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5525. __func__, fmt.hdr.token, stream_id, ac->session);
  5526. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5527. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5528. sizeof(fmt.fmt_blk);
  5529. fmt.num_channels = channels;
  5530. fmt.bits_per_sample = bits_per_sample;
  5531. fmt.sample_rate = rate;
  5532. fmt.is_signed = 1;
  5533. channel_mapping = fmt.channel_mapping;
  5534. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5535. if (use_default_chmap) {
  5536. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5537. pr_err("%s: map channels failed %d\n",
  5538. __func__, channels);
  5539. return -EINVAL;
  5540. }
  5541. } else {
  5542. memcpy(channel_mapping, channel_map,
  5543. PCM_FORMAT_MAX_NUM_CHANNEL);
  5544. }
  5545. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5546. if (rc < 0) {
  5547. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5548. rc = -EINVAL;
  5549. goto fail_cmd;
  5550. }
  5551. rc = wait_event_timeout(ac->cmd_wait,
  5552. (atomic_read(&ac->cmd_state) >= 0),
  5553. msecs_to_jiffies(TIMEOUT_MS));
  5554. if (!rc) {
  5555. pr_err("%s: timeout. waited for format update\n", __func__);
  5556. rc = -ETIMEDOUT;
  5557. goto fail_cmd;
  5558. }
  5559. if (atomic_read(&ac->cmd_state) > 0) {
  5560. pr_err("%s: DSP returned error[%s]\n",
  5561. __func__, adsp_err_get_err_str(
  5562. atomic_read(&ac->cmd_state)));
  5563. rc = adsp_err_get_lnx_err_code(
  5564. atomic_read(&ac->cmd_state));
  5565. goto fail_cmd;
  5566. }
  5567. return 0;
  5568. fail_cmd:
  5569. return rc;
  5570. }
  5571. static int __q6asm_media_format_block_pcm_v3(struct audio_client *ac,
  5572. uint32_t rate, uint32_t channels,
  5573. uint16_t bits_per_sample,
  5574. int stream_id,
  5575. bool use_default_chmap,
  5576. char *channel_map,
  5577. uint16_t sample_word_size)
  5578. {
  5579. struct asm_multi_channel_pcm_fmt_blk_param_v3 fmt;
  5580. u8 *channel_mapping;
  5581. int rc;
  5582. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5583. ac->session, rate, channels,
  5584. bits_per_sample, sample_word_size);
  5585. memset(&fmt, 0, sizeof(fmt));
  5586. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5587. atomic_set(&ac->cmd_state, -1);
  5588. /*
  5589. * Updated the token field with stream/session for compressed playback
  5590. * Platform driver must know the the stream with which the command is
  5591. * associated
  5592. */
  5593. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5594. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5595. (stream_id & 0xFF);
  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.param.num_channels = channels;
  5602. fmt.param.bits_per_sample = bits_per_sample;
  5603. fmt.param.sample_rate = rate;
  5604. fmt.param.is_signed = 1;
  5605. fmt.param.sample_word_size = sample_word_size;
  5606. channel_mapping = fmt.param.channel_mapping;
  5607. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5608. if (use_default_chmap) {
  5609. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5610. pr_err("%s: map channels failed %d\n",
  5611. __func__, channels);
  5612. rc = -EINVAL;
  5613. goto fail_cmd;
  5614. }
  5615. } else {
  5616. memcpy(channel_mapping, channel_map,
  5617. PCM_FORMAT_MAX_NUM_CHANNEL);
  5618. }
  5619. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5620. if (rc < 0) {
  5621. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5622. rc = -EINVAL;
  5623. goto fail_cmd;
  5624. }
  5625. rc = wait_event_timeout(ac->cmd_wait,
  5626. (atomic_read(&ac->cmd_state) >= 0),
  5627. msecs_to_jiffies(TIMEOUT_MS));
  5628. if (!rc) {
  5629. pr_err("%s: timeout. waited for format update\n", __func__);
  5630. rc = -ETIMEDOUT;
  5631. goto fail_cmd;
  5632. }
  5633. if (atomic_read(&ac->cmd_state) > 0) {
  5634. pr_err("%s: DSP returned error[%s]\n",
  5635. __func__, adsp_err_get_err_str(
  5636. atomic_read(&ac->cmd_state)));
  5637. rc = adsp_err_get_lnx_err_code(
  5638. atomic_read(&ac->cmd_state));
  5639. goto fail_cmd;
  5640. }
  5641. return 0;
  5642. fail_cmd:
  5643. return rc;
  5644. }
  5645. static int __q6asm_media_format_block_pcm_v4(struct audio_client *ac,
  5646. uint32_t rate, uint32_t channels,
  5647. uint16_t bits_per_sample,
  5648. int stream_id,
  5649. bool use_default_chmap,
  5650. char *channel_map,
  5651. uint16_t sample_word_size,
  5652. uint16_t endianness,
  5653. uint16_t mode)
  5654. {
  5655. struct asm_multi_channel_pcm_fmt_blk_param_v4 fmt;
  5656. u8 *channel_mapping;
  5657. int rc;
  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. fmt.param.endianness = endianness;
  5683. fmt.param.mode = mode;
  5684. channel_mapping = fmt.param.channel_mapping;
  5685. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5686. if (use_default_chmap) {
  5687. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5688. pr_err("%s: map channels failed %d\n",
  5689. __func__, channels);
  5690. rc = -EINVAL;
  5691. goto fail_cmd;
  5692. }
  5693. } else {
  5694. memcpy(channel_mapping, channel_map,
  5695. PCM_FORMAT_MAX_NUM_CHANNEL);
  5696. }
  5697. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5698. if (rc < 0) {
  5699. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5700. rc = -EINVAL;
  5701. goto fail_cmd;
  5702. }
  5703. rc = wait_event_timeout(ac->cmd_wait,
  5704. (atomic_read(&ac->cmd_state) >= 0),
  5705. msecs_to_jiffies(TIMEOUT_MS));
  5706. if (!rc) {
  5707. pr_err("%s: timeout. waited for format update\n", __func__);
  5708. rc = -ETIMEDOUT;
  5709. goto fail_cmd;
  5710. }
  5711. if (atomic_read(&ac->cmd_state) > 0) {
  5712. pr_err("%s: DSP returned error[%s]\n",
  5713. __func__, adsp_err_get_err_str(
  5714. atomic_read(&ac->cmd_state)));
  5715. rc = adsp_err_get_lnx_err_code(
  5716. atomic_read(&ac->cmd_state));
  5717. goto fail_cmd;
  5718. }
  5719. return 0;
  5720. fail_cmd:
  5721. return rc;
  5722. }
  5723. static int __q6asm_media_format_block_pcm_v5(struct audio_client *ac,
  5724. uint32_t rate, uint32_t channels,
  5725. uint16_t bits_per_sample,
  5726. int stream_id,
  5727. bool use_default_chmap,
  5728. char *channel_map,
  5729. uint16_t sample_word_size,
  5730. uint16_t endianness,
  5731. uint16_t mode)
  5732. {
  5733. struct asm_multi_channel_pcm_fmt_blk_param_v5 fmt;
  5734. u8 *channel_mapping;
  5735. int rc;
  5736. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  5737. ac->session, rate, channels,
  5738. bits_per_sample, sample_word_size);
  5739. memset(&fmt, 0, sizeof(fmt));
  5740. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  5741. atomic_set(&ac->cmd_state, -1);
  5742. /*
  5743. * Updated the token field with stream/session for compressed playback
  5744. * Platform driver must know the the stream with which the command is
  5745. * associated
  5746. */
  5747. if (ac->io_mode & COMPRESSED_STREAM_IO)
  5748. fmt.hdr.token = ((ac->session << 8) & 0xFFFF00) |
  5749. (stream_id & 0xFF);
  5750. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  5751. __func__, fmt.hdr.token, stream_id, ac->session);
  5752. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5753. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5754. sizeof(fmt.fmt_blk);
  5755. fmt.param.num_channels = (uint16_t) channels & 0xFFFF;
  5756. fmt.param.bits_per_sample = bits_per_sample;
  5757. fmt.param.sample_rate = rate;
  5758. fmt.param.is_signed = 1;
  5759. fmt.param.sample_word_size = sample_word_size;
  5760. fmt.param.endianness = endianness;
  5761. fmt.param.mode = mode;
  5762. channel_mapping = fmt.param.channel_mapping;
  5763. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  5764. if (use_default_chmap) {
  5765. if (q6asm_map_channels(channel_mapping, fmt.param.num_channels, false)) {
  5766. pr_err("%s: map channels failed %d\n",
  5767. __func__, channels);
  5768. rc = -EINVAL;
  5769. goto fail_cmd;
  5770. }
  5771. } else {
  5772. memcpy(channel_mapping, channel_map,
  5773. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  5774. }
  5775. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5776. if (rc < 0) {
  5777. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5778. rc = -EINVAL;
  5779. goto fail_cmd;
  5780. }
  5781. rc = wait_event_timeout(ac->cmd_wait,
  5782. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  5783. if (!rc) {
  5784. pr_err("%s: timeout. waited for format update\n", __func__);
  5785. rc = -ETIMEDOUT;
  5786. goto fail_cmd;
  5787. }
  5788. if (atomic_read(&ac->cmd_state) > 0) {
  5789. pr_err("%s: DSP returned error[%s]\n",
  5790. __func__, adsp_err_get_err_str(
  5791. atomic_read(&ac->cmd_state)));
  5792. rc = adsp_err_get_lnx_err_code(
  5793. atomic_read(&ac->cmd_state));
  5794. goto fail_cmd;
  5795. }
  5796. return 0;
  5797. fail_cmd:
  5798. return rc;
  5799. }
  5800. /**
  5801. * q6asm_media_format_block_pcm -
  5802. * command to set mediafmt block for PCM on ASM stream
  5803. *
  5804. * @ac: Audio client handle
  5805. * @rate: sample rate
  5806. * @channels: number of ASM channels
  5807. *
  5808. * Returns 0 on success or error on failure
  5809. */
  5810. int q6asm_media_format_block_pcm(struct audio_client *ac,
  5811. uint32_t rate, uint32_t channels)
  5812. {
  5813. return __q6asm_media_format_block_pcm(ac, rate,
  5814. channels, 16, ac->stream_id,
  5815. true, NULL);
  5816. }
  5817. EXPORT_SYMBOL(q6asm_media_format_block_pcm);
  5818. /**
  5819. * q6asm_media_format_block_pcm_format_support -
  5820. * command to set mediafmt block for PCM format support
  5821. *
  5822. * @ac: Audio client handle
  5823. * @rate: sample rate
  5824. * @channels: number of ASM channels
  5825. * @bits_per_sample: number of bits per sample
  5826. *
  5827. * Returns 0 on success or error on failure
  5828. */
  5829. int q6asm_media_format_block_pcm_format_support(struct audio_client *ac,
  5830. uint32_t rate, uint32_t channels,
  5831. uint16_t bits_per_sample)
  5832. {
  5833. return __q6asm_media_format_block_pcm(ac, rate,
  5834. channels, bits_per_sample, ac->stream_id,
  5835. true, NULL);
  5836. }
  5837. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support);
  5838. int q6asm_media_format_block_pcm_format_support_v2(struct audio_client *ac,
  5839. uint32_t rate, uint32_t channels,
  5840. uint16_t bits_per_sample, int stream_id,
  5841. bool use_default_chmap, char *channel_map)
  5842. {
  5843. if (!use_default_chmap && (channel_map == NULL)) {
  5844. pr_err("%s: No valid chan map and can't use default\n",
  5845. __func__);
  5846. return -EINVAL;
  5847. }
  5848. return __q6asm_media_format_block_pcm(ac, rate,
  5849. channels, bits_per_sample, stream_id,
  5850. use_default_chmap, channel_map);
  5851. }
  5852. /*
  5853. * q6asm_media_format_block_pcm_format_support_v3- sends pcm decoder
  5854. * configuration parameters
  5855. *
  5856. * @ac: Client session handle
  5857. * @rate: sample rate
  5858. * @channels: number of channels
  5859. * @bits_per_sample: bit width of encoder session
  5860. * @stream_id: stream id of stream to be associated with this session
  5861. * @use_default_chmap: true if default channel map to be used
  5862. * @channel_map: input channel map
  5863. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5864. */
  5865. int q6asm_media_format_block_pcm_format_support_v3(struct audio_client *ac,
  5866. uint32_t rate,
  5867. uint32_t channels,
  5868. uint16_t bits_per_sample,
  5869. int stream_id,
  5870. bool use_default_chmap,
  5871. char *channel_map,
  5872. uint16_t sample_word_size)
  5873. {
  5874. if (!use_default_chmap && (channel_map == NULL)) {
  5875. pr_err("%s: No valid chan map and can't use default\n",
  5876. __func__);
  5877. return -EINVAL;
  5878. }
  5879. return __q6asm_media_format_block_pcm_v3(ac, rate,
  5880. channels, bits_per_sample, stream_id,
  5881. use_default_chmap, channel_map,
  5882. sample_word_size);
  5883. }
  5884. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v3);
  5885. /*
  5886. * q6asm_media_format_block_pcm_format_support_v4- sends pcm decoder
  5887. * configuration parameters
  5888. *
  5889. * @ac: Client session handle
  5890. * @rate: sample rate
  5891. * @channels: number of channels
  5892. * @bits_per_sample: bit width of encoder session
  5893. * @stream_id: stream id of stream to be associated with this session
  5894. * @use_default_chmap: true if default channel map to be used
  5895. * @channel_map: input channel map
  5896. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5897. * @endianness: endianness of the pcm data
  5898. * @mode: Mode to provide additional info about the pcm input data
  5899. */
  5900. int q6asm_media_format_block_pcm_format_support_v4(struct audio_client *ac,
  5901. uint32_t rate,
  5902. uint32_t channels,
  5903. uint16_t bits_per_sample,
  5904. int stream_id,
  5905. bool use_default_chmap,
  5906. char *channel_map,
  5907. uint16_t sample_word_size,
  5908. uint16_t endianness,
  5909. uint16_t mode)
  5910. {
  5911. if (!use_default_chmap && (channel_map == NULL)) {
  5912. pr_err("%s: No valid chan map and can't use default\n",
  5913. __func__);
  5914. return -EINVAL;
  5915. }
  5916. return __q6asm_media_format_block_pcm_v4(ac, rate,
  5917. channels, bits_per_sample, stream_id,
  5918. use_default_chmap, channel_map,
  5919. sample_word_size, endianness,
  5920. mode);
  5921. }
  5922. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v4);
  5923. /*
  5924. * q6asm_media_format_block_pcm_format_support_v5- sends pcm decoder
  5925. * configuration parameters
  5926. *
  5927. * @ac: Client session handle
  5928. * @rate: sample rate
  5929. * @channels: number of channels
  5930. * @bits_per_sample: bit width of encoder session
  5931. * @stream_id: stream id of stream to be associated with this session
  5932. * @use_default_chmap: true if default channel map to be used
  5933. * @channel_map: input channel map
  5934. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  5935. * @endianness: endianness of the pcm data
  5936. * @mode: Mode to provide additional info about the pcm input data
  5937. */
  5938. int q6asm_media_format_block_pcm_format_support_v5(struct audio_client *ac,
  5939. uint32_t rate,
  5940. uint32_t channels,
  5941. uint16_t bits_per_sample,
  5942. int stream_id,
  5943. bool use_default_chmap,
  5944. char *channel_map,
  5945. uint16_t sample_word_size,
  5946. uint16_t endianness,
  5947. uint16_t mode)
  5948. {
  5949. if (!use_default_chmap && (channel_map == NULL)) {
  5950. pr_err("%s: No valid chan map and can't use default\n",
  5951. __func__);
  5952. return -EINVAL;
  5953. }
  5954. return __q6asm_media_format_block_pcm_v5(ac, rate,
  5955. channels, bits_per_sample, stream_id,
  5956. use_default_chmap, channel_map,
  5957. sample_word_size, endianness,
  5958. mode);
  5959. }
  5960. EXPORT_SYMBOL(q6asm_media_format_block_pcm_format_support_v5);
  5961. static int __q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  5962. uint32_t rate, uint32_t channels,
  5963. bool use_default_chmap, char *channel_map,
  5964. uint16_t bits_per_sample)
  5965. {
  5966. struct asm_multi_channel_pcm_fmt_blk_v2 fmt;
  5967. u8 *channel_mapping;
  5968. int rc = 0;
  5969. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session, rate,
  5970. channels);
  5971. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  5972. atomic_set(&ac->cmd_state, -1);
  5973. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  5974. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  5975. sizeof(fmt.fmt_blk);
  5976. fmt.num_channels = channels;
  5977. fmt.bits_per_sample = bits_per_sample;
  5978. fmt.sample_rate = rate;
  5979. fmt.is_signed = 1;
  5980. channel_mapping = fmt.channel_mapping;
  5981. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  5982. if (use_default_chmap) {
  5983. if (q6asm_map_channels(channel_mapping, channels, false)) {
  5984. pr_err("%s: map channels failed %d\n",
  5985. __func__, channels);
  5986. return -EINVAL;
  5987. }
  5988. } else {
  5989. memcpy(channel_mapping, channel_map,
  5990. PCM_FORMAT_MAX_NUM_CHANNEL);
  5991. }
  5992. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  5993. if (rc < 0) {
  5994. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  5995. rc = -EINVAL;
  5996. goto fail_cmd;
  5997. }
  5998. rc = wait_event_timeout(ac->cmd_wait,
  5999. (atomic_read(&ac->cmd_state) >= 0),
  6000. msecs_to_jiffies(TIMEOUT_MS));
  6001. if (!rc) {
  6002. pr_err("%s: timeout. waited for format update\n", __func__);
  6003. rc = -ETIMEDOUT;
  6004. goto fail_cmd;
  6005. }
  6006. if (atomic_read(&ac->cmd_state) > 0) {
  6007. pr_err("%s: DSP returned error[%s]\n",
  6008. __func__, adsp_err_get_err_str(
  6009. atomic_read(&ac->cmd_state)));
  6010. rc = adsp_err_get_lnx_err_code(
  6011. atomic_read(&ac->cmd_state));
  6012. goto fail_cmd;
  6013. }
  6014. return 0;
  6015. fail_cmd:
  6016. return rc;
  6017. }
  6018. static int __q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  6019. uint32_t rate,
  6020. uint32_t channels,
  6021. bool use_default_chmap,
  6022. char *channel_map,
  6023. uint16_t bits_per_sample,
  6024. uint16_t sample_word_size)
  6025. {
  6026. struct asm_multi_channel_pcm_fmt_blk_param_v3 fmt;
  6027. u8 *channel_mapping;
  6028. int rc;
  6029. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  6030. ac->session, rate, channels,
  6031. bits_per_sample, sample_word_size);
  6032. memset(&fmt, 0, sizeof(fmt));
  6033. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6034. atomic_set(&ac->cmd_state, -1);
  6035. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6036. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6037. sizeof(fmt.fmt_blk);
  6038. fmt.param.num_channels = channels;
  6039. fmt.param.bits_per_sample = bits_per_sample;
  6040. fmt.param.sample_rate = rate;
  6041. fmt.param.is_signed = 1;
  6042. fmt.param.sample_word_size = sample_word_size;
  6043. channel_mapping = fmt.param.channel_mapping;
  6044. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6045. if (use_default_chmap) {
  6046. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6047. pr_err("%s: map channels failed %d\n",
  6048. __func__, channels);
  6049. rc = -EINVAL;
  6050. goto fail_cmd;
  6051. }
  6052. } else {
  6053. memcpy(channel_mapping, channel_map,
  6054. PCM_FORMAT_MAX_NUM_CHANNEL);
  6055. }
  6056. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6057. if (rc < 0) {
  6058. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6059. goto fail_cmd;
  6060. }
  6061. rc = wait_event_timeout(ac->cmd_wait,
  6062. (atomic_read(&ac->cmd_state) >= 0),
  6063. msecs_to_jiffies(TIMEOUT_MS));
  6064. if (!rc) {
  6065. pr_err("%s: timeout. waited for format update\n", __func__);
  6066. rc = -ETIMEDOUT;
  6067. goto fail_cmd;
  6068. }
  6069. if (atomic_read(&ac->cmd_state) > 0) {
  6070. pr_err("%s: DSP returned error[%s]\n",
  6071. __func__, adsp_err_get_err_str(
  6072. atomic_read(&ac->cmd_state)));
  6073. rc = adsp_err_get_lnx_err_code(
  6074. atomic_read(&ac->cmd_state));
  6075. goto fail_cmd;
  6076. }
  6077. return 0;
  6078. fail_cmd:
  6079. return rc;
  6080. }
  6081. static int __q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  6082. uint32_t rate,
  6083. uint32_t channels,
  6084. bool use_default_chmap,
  6085. char *channel_map,
  6086. uint16_t bits_per_sample,
  6087. uint16_t sample_word_size,
  6088. uint16_t endianness,
  6089. uint16_t mode)
  6090. {
  6091. struct asm_multi_channel_pcm_fmt_blk_param_v4 fmt;
  6092. u8 *channel_mapping;
  6093. int rc;
  6094. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  6095. ac->session, rate, channels,
  6096. bits_per_sample, sample_word_size);
  6097. memset(&fmt, 0, sizeof(fmt));
  6098. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6099. atomic_set(&ac->cmd_state, -1);
  6100. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6101. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6102. sizeof(fmt.fmt_blk);
  6103. fmt.param.num_channels = channels;
  6104. fmt.param.bits_per_sample = bits_per_sample;
  6105. fmt.param.sample_rate = rate;
  6106. fmt.param.is_signed = 1;
  6107. fmt.param.sample_word_size = sample_word_size;
  6108. fmt.param.endianness = endianness;
  6109. fmt.param.mode = mode;
  6110. channel_mapping = fmt.param.channel_mapping;
  6111. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6112. if (use_default_chmap) {
  6113. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6114. pr_err("%s: map channels failed %d\n",
  6115. __func__, channels);
  6116. rc = -EINVAL;
  6117. goto fail_cmd;
  6118. }
  6119. } else {
  6120. memcpy(channel_mapping, channel_map,
  6121. PCM_FORMAT_MAX_NUM_CHANNEL);
  6122. }
  6123. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6124. if (rc < 0) {
  6125. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6126. goto fail_cmd;
  6127. }
  6128. rc = wait_event_timeout(ac->cmd_wait,
  6129. (atomic_read(&ac->cmd_state) >= 0),
  6130. msecs_to_jiffies(TIMEOUT_MS));
  6131. if (!rc) {
  6132. pr_err("%s: timeout. waited for format update\n", __func__);
  6133. rc = -ETIMEDOUT;
  6134. goto fail_cmd;
  6135. }
  6136. if (atomic_read(&ac->cmd_state) > 0) {
  6137. pr_err("%s: DSP returned error[%s]\n",
  6138. __func__, adsp_err_get_err_str(
  6139. atomic_read(&ac->cmd_state)));
  6140. rc = adsp_err_get_lnx_err_code(
  6141. atomic_read(&ac->cmd_state));
  6142. goto fail_cmd;
  6143. }
  6144. return 0;
  6145. fail_cmd:
  6146. return rc;
  6147. }
  6148. static int __q6asm_media_format_block_multi_ch_pcm_v5(struct audio_client *ac,
  6149. uint32_t rate,
  6150. uint32_t channels,
  6151. bool use_default_chmap,
  6152. char *channel_map,
  6153. uint16_t bits_per_sample,
  6154. uint16_t sample_word_size,
  6155. uint16_t endianness,
  6156. uint16_t mode)
  6157. {
  6158. struct asm_multi_channel_pcm_fmt_blk_param_v5 fmt;
  6159. u8 *channel_mapping;
  6160. int rc;
  6161. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]wordsize[%d]\n", __func__,
  6162. ac->session, rate, channels,
  6163. bits_per_sample, sample_word_size);
  6164. memset(&fmt, 0, sizeof(fmt));
  6165. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6166. atomic_set(&ac->cmd_state, -1);
  6167. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6168. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6169. sizeof(fmt.fmt_blk);
  6170. fmt.param.num_channels = channels;
  6171. fmt.param.bits_per_sample = bits_per_sample;
  6172. fmt.param.sample_rate = rate;
  6173. fmt.param.is_signed = 1;
  6174. fmt.param.sample_word_size = sample_word_size;
  6175. fmt.param.endianness = endianness;
  6176. fmt.param.mode = mode;
  6177. channel_mapping = fmt.param.channel_mapping;
  6178. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  6179. if (use_default_chmap) {
  6180. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6181. pr_err("%s: map channels failed %d\n",
  6182. __func__, channels);
  6183. rc = -EINVAL;
  6184. goto fail_cmd;
  6185. }
  6186. } else {
  6187. memcpy(channel_mapping, channel_map,
  6188. PCM_FORMAT_MAX_NUM_CHANNEL_V8);
  6189. }
  6190. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6191. if (rc < 0) {
  6192. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6193. goto fail_cmd;
  6194. }
  6195. rc = wait_event_timeout(ac->cmd_wait,
  6196. (atomic_read(&ac->cmd_state) >= 0), 5*HZ);
  6197. if (!rc) {
  6198. pr_err("%s: timeout. waited for format update\n", __func__);
  6199. rc = -ETIMEDOUT;
  6200. goto fail_cmd;
  6201. }
  6202. if (atomic_read(&ac->cmd_state) > 0) {
  6203. pr_err("%s: DSP returned error[%s]\n",
  6204. __func__, adsp_err_get_err_str(
  6205. atomic_read(&ac->cmd_state)));
  6206. rc = adsp_err_get_lnx_err_code(
  6207. atomic_read(&ac->cmd_state));
  6208. goto fail_cmd;
  6209. }
  6210. return 0;
  6211. fail_cmd:
  6212. return rc;
  6213. }
  6214. int q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  6215. uint32_t rate, uint32_t channels,
  6216. bool use_default_chmap, char *channel_map)
  6217. {
  6218. return __q6asm_media_format_block_multi_ch_pcm(ac, rate,
  6219. channels, use_default_chmap, channel_map, 16);
  6220. }
  6221. int q6asm_media_format_block_multi_ch_pcm_v2(
  6222. struct audio_client *ac,
  6223. uint32_t rate, uint32_t channels,
  6224. bool use_default_chmap, char *channel_map,
  6225. uint16_t bits_per_sample)
  6226. {
  6227. return __q6asm_media_format_block_multi_ch_pcm(ac, rate,
  6228. channels, use_default_chmap, channel_map,
  6229. bits_per_sample);
  6230. }
  6231. /*
  6232. * q6asm_media_format_block_multi_ch_pcm_v3 - sends pcm decoder configuration
  6233. * parameters
  6234. *
  6235. * @ac: Client session handle
  6236. * @rate: sample rate
  6237. * @channels: number of channels
  6238. * @bits_per_sample: bit width of encoder session
  6239. * @use_default_chmap: true if default channel map to be used
  6240. * @channel_map: input channel map
  6241. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6242. */
  6243. int q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  6244. uint32_t rate, uint32_t channels,
  6245. bool use_default_chmap,
  6246. char *channel_map,
  6247. uint16_t bits_per_sample,
  6248. uint16_t sample_word_size)
  6249. {
  6250. return __q6asm_media_format_block_multi_ch_pcm_v3(ac, rate, channels,
  6251. use_default_chmap,
  6252. channel_map,
  6253. bits_per_sample,
  6254. sample_word_size);
  6255. }
  6256. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v3);
  6257. /*
  6258. * q6asm_media_format_block_multi_ch_pcm_v4 - sends pcm decoder configuration
  6259. * parameters
  6260. *
  6261. * @ac: Client session handle
  6262. * @rate: sample rate
  6263. * @channels: number of channels
  6264. * @bits_per_sample: bit width of encoder session
  6265. * @use_default_chmap: true if default channel map to be used
  6266. * @channel_map: input channel map
  6267. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6268. * @endianness: endianness of the pcm data
  6269. * @mode: Mode to provide additional info about the pcm input data
  6270. */
  6271. int q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  6272. uint32_t rate, uint32_t channels,
  6273. bool use_default_chmap,
  6274. char *channel_map,
  6275. uint16_t bits_per_sample,
  6276. uint16_t sample_word_size,
  6277. uint16_t endianness,
  6278. uint16_t mode)
  6279. {
  6280. return __q6asm_media_format_block_multi_ch_pcm_v4(ac, rate, channels,
  6281. use_default_chmap,
  6282. channel_map,
  6283. bits_per_sample,
  6284. sample_word_size,
  6285. endianness,
  6286. mode);
  6287. }
  6288. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v4);
  6289. /*
  6290. * q6asm_media_format_block_multi_ch_pcm_v5 - sends pcm decoder configuration
  6291. * parameters
  6292. *
  6293. * @ac: Client session handle
  6294. * @rate: sample rate
  6295. * @channels: number of channels
  6296. * @bits_per_sample: bit width of encoder session
  6297. * @use_default_chmap: true if default channel map to be used
  6298. * @channel_map: input channel map
  6299. * @sample_word_size: Size in bits of the word that holds a sample of a channel
  6300. * @endianness: endianness of the pcm data
  6301. * @mode: Mode to provide additional info about the pcm input data
  6302. */
  6303. int q6asm_media_format_block_multi_ch_pcm_v5(struct audio_client *ac,
  6304. uint32_t rate, uint32_t channels,
  6305. bool use_default_chmap,
  6306. char *channel_map,
  6307. uint16_t bits_per_sample,
  6308. uint16_t sample_word_size,
  6309. uint16_t endianness,
  6310. uint16_t mode)
  6311. {
  6312. return __q6asm_media_format_block_multi_ch_pcm_v5(ac, rate, channels,
  6313. use_default_chmap,
  6314. channel_map,
  6315. bits_per_sample,
  6316. sample_word_size,
  6317. endianness,
  6318. mode);
  6319. }
  6320. EXPORT_SYMBOL(q6asm_media_format_block_multi_ch_pcm_v5);
  6321. /*
  6322. * q6asm_media_format_block_gen_compr - set up generic compress format params
  6323. *
  6324. * @ac: Client session handle
  6325. * @rate: sample rate
  6326. * @channels: number of channels
  6327. * @use_default_chmap: true if default channel map to be used
  6328. * @channel_map: input channel map
  6329. * @bits_per_sample: bit width of gen compress stream
  6330. */
  6331. int q6asm_media_format_block_gen_compr(struct audio_client *ac,
  6332. uint32_t rate, uint32_t channels,
  6333. bool use_default_chmap, char *channel_map,
  6334. uint16_t bits_per_sample)
  6335. {
  6336. struct asm_generic_compressed_fmt_blk_t fmt;
  6337. u8 *channel_mapping;
  6338. int rc = 0;
  6339. pr_debug("%s: session[%d]rate[%d]ch[%d]bps[%d]\n",
  6340. __func__, ac->session, rate,
  6341. channels, bits_per_sample);
  6342. memset(&fmt, 0, sizeof(fmt));
  6343. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6344. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6345. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6346. sizeof(fmt.fmt_blk);
  6347. fmt.num_channels = channels;
  6348. fmt.bits_per_sample = bits_per_sample;
  6349. fmt.sampling_rate = rate;
  6350. channel_mapping = fmt.channel_mapping;
  6351. memset(channel_mapping, 0, PCM_FORMAT_MAX_NUM_CHANNEL);
  6352. if (use_default_chmap) {
  6353. if (q6asm_map_channels(channel_mapping, channels, false)) {
  6354. pr_err("%s: map channels failed %d\n",
  6355. __func__, channels);
  6356. return -EINVAL;
  6357. }
  6358. } else {
  6359. memcpy(channel_mapping, channel_map,
  6360. PCM_FORMAT_MAX_NUM_CHANNEL);
  6361. }
  6362. atomic_set(&ac->cmd_state, -1);
  6363. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6364. if (rc < 0) {
  6365. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6366. rc = -EINVAL;
  6367. goto fail_cmd;
  6368. }
  6369. rc = wait_event_timeout(ac->cmd_wait,
  6370. (atomic_read(&ac->cmd_state) >= 0),
  6371. msecs_to_jiffies(TIMEOUT_MS));
  6372. if (!rc) {
  6373. pr_err("%s: timeout. waited for format update\n", __func__);
  6374. rc = -ETIMEDOUT;
  6375. goto fail_cmd;
  6376. }
  6377. if (atomic_read(&ac->cmd_state) > 0) {
  6378. pr_err("%s: DSP returned error[%s]\n",
  6379. __func__, adsp_err_get_err_str(
  6380. atomic_read(&ac->cmd_state)));
  6381. rc = adsp_err_get_lnx_err_code(
  6382. atomic_read(&ac->cmd_state));
  6383. }
  6384. return 0;
  6385. fail_cmd:
  6386. return rc;
  6387. }
  6388. EXPORT_SYMBOL(q6asm_media_format_block_gen_compr);
  6389. /*
  6390. * q6asm_media_format_block_iec - set up IEC61937 (compressed) or IEC60958
  6391. * (pcm) format params. Both audio standards
  6392. * use the same format and are used for
  6393. * HDMI or SPDIF.
  6394. *
  6395. * @ac: Client session handle
  6396. * @rate: sample rate
  6397. * @channels: number of channels
  6398. */
  6399. int q6asm_media_format_block_iec(struct audio_client *ac,
  6400. uint32_t rate, uint32_t channels)
  6401. {
  6402. struct asm_iec_compressed_fmt_blk_t fmt;
  6403. int rc = 0;
  6404. pr_debug("%s: session[%d]rate[%d]ch[%d]\n",
  6405. __func__, ac->session, rate,
  6406. channels);
  6407. memset(&fmt, 0, sizeof(fmt));
  6408. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6409. fmt.hdr.opcode = ASM_DATA_CMD_IEC_60958_MEDIA_FMT;
  6410. fmt.num_channels = channels;
  6411. fmt.sampling_rate = rate;
  6412. atomic_set(&ac->cmd_state, -1);
  6413. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6414. if (rc < 0) {
  6415. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6416. rc = -EINVAL;
  6417. goto fail_cmd;
  6418. }
  6419. rc = wait_event_timeout(ac->cmd_wait,
  6420. (atomic_read(&ac->cmd_state) >= 0),
  6421. msecs_to_jiffies(TIMEOUT_MS));
  6422. if (!rc) {
  6423. pr_err("%s: timeout. waited for format update\n", __func__);
  6424. rc = -ETIMEDOUT;
  6425. goto fail_cmd;
  6426. }
  6427. if (atomic_read(&ac->cmd_state) > 0) {
  6428. pr_err("%s: DSP returned error[%s]\n",
  6429. __func__, adsp_err_get_err_str(
  6430. atomic_read(&ac->cmd_state)));
  6431. rc = adsp_err_get_lnx_err_code(
  6432. atomic_read(&ac->cmd_state));
  6433. }
  6434. return 0;
  6435. fail_cmd:
  6436. return rc;
  6437. }
  6438. EXPORT_SYMBOL(q6asm_media_format_block_iec);
  6439. static int __q6asm_media_format_block_multi_aac(struct audio_client *ac,
  6440. struct asm_aac_cfg *cfg, int stream_id)
  6441. {
  6442. struct asm_aac_fmt_blk_v2 fmt;
  6443. int rc = 0;
  6444. pr_debug("%s: session[%d]rate[%d]ch[%d]\n", __func__, ac->session,
  6445. cfg->sample_rate, cfg->ch_cfg);
  6446. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6447. atomic_set(&ac->cmd_state, -1);
  6448. /*
  6449. * Updated the token field with stream/session for compressed playback
  6450. * Platform driver must know the the stream with which the command is
  6451. * associated
  6452. */
  6453. if (ac->io_mode & COMPRESSED_STREAM_IO)
  6454. q6asm_update_token(&fmt.hdr.token,
  6455. ac->session,
  6456. stream_id,
  6457. 0, /* Buffer index is NA */
  6458. 0, /* Direction flag is NA */
  6459. WAIT_CMD);
  6460. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  6461. __func__, fmt.hdr.token, stream_id, ac->session);
  6462. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6463. fmt.fmt_blk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6464. sizeof(fmt.fmt_blk);
  6465. fmt.aac_fmt_flag = cfg->format;
  6466. fmt.audio_objype = cfg->aot;
  6467. /* If zero, PCE is assumed to be available in bitstream*/
  6468. fmt.total_size_of_PCE_bits = 0;
  6469. fmt.channel_config = cfg->ch_cfg;
  6470. fmt.sample_rate = cfg->sample_rate;
  6471. pr_debug("%s: format=0x%x cfg_size=%d aac-cfg=0x%x aot=%d ch=%d sr=%d\n",
  6472. __func__, fmt.aac_fmt_flag, fmt.fmt_blk.fmt_blk_size,
  6473. fmt.aac_fmt_flag,
  6474. fmt.audio_objype,
  6475. fmt.channel_config,
  6476. fmt.sample_rate);
  6477. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6478. if (rc < 0) {
  6479. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6480. rc = -EINVAL;
  6481. goto fail_cmd;
  6482. }
  6483. rc = wait_event_timeout(ac->cmd_wait,
  6484. (atomic_read(&ac->cmd_state) >= 0),
  6485. msecs_to_jiffies(TIMEOUT_MS));
  6486. if (!rc) {
  6487. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6488. rc = -ETIMEDOUT;
  6489. goto fail_cmd;
  6490. }
  6491. if (atomic_read(&ac->cmd_state) > 0) {
  6492. pr_err("%s: DSP returned error[%s]\n",
  6493. __func__, adsp_err_get_err_str(
  6494. atomic_read(&ac->cmd_state)));
  6495. rc = adsp_err_get_lnx_err_code(
  6496. atomic_read(&ac->cmd_state));
  6497. goto fail_cmd;
  6498. }
  6499. return 0;
  6500. fail_cmd:
  6501. return rc;
  6502. }
  6503. /**
  6504. * q6asm_media_format_block_multi_aac -
  6505. * command to set mediafmt block for multi_aac on ASM stream
  6506. *
  6507. * @ac: Audio client handle
  6508. * @cfg: multi_aac config
  6509. *
  6510. * Returns 0 on success or error on failure
  6511. */
  6512. int q6asm_media_format_block_multi_aac(struct audio_client *ac,
  6513. struct asm_aac_cfg *cfg)
  6514. {
  6515. return __q6asm_media_format_block_multi_aac(ac, cfg, ac->stream_id);
  6516. }
  6517. EXPORT_SYMBOL(q6asm_media_format_block_multi_aac);
  6518. /**
  6519. * q6asm_media_format_block_aac -
  6520. * command to set mediafmt block for aac on ASM
  6521. *
  6522. * @ac: Audio client handle
  6523. * @cfg: aac config
  6524. *
  6525. * Returns 0 on success or error on failure
  6526. */
  6527. int q6asm_media_format_block_aac(struct audio_client *ac,
  6528. struct asm_aac_cfg *cfg)
  6529. {
  6530. return __q6asm_media_format_block_multi_aac(ac, cfg, ac->stream_id);
  6531. }
  6532. EXPORT_SYMBOL(q6asm_media_format_block_aac);
  6533. /**
  6534. * q6asm_stream_media_format_block_aac -
  6535. * command to set mediafmt block for aac on ASM stream
  6536. *
  6537. * @ac: Audio client handle
  6538. * @cfg: aac config
  6539. * @stream_id: stream ID info
  6540. *
  6541. * Returns 0 on success or error on failure
  6542. */
  6543. int q6asm_stream_media_format_block_aac(struct audio_client *ac,
  6544. struct asm_aac_cfg *cfg, int stream_id)
  6545. {
  6546. return __q6asm_media_format_block_multi_aac(ac, cfg, stream_id);
  6547. }
  6548. EXPORT_SYMBOL(q6asm_stream_media_format_block_aac);
  6549. /**
  6550. * q6asm_media_format_block_wma -
  6551. * command to set mediafmt block for wma on ASM stream
  6552. *
  6553. * @ac: Audio client handle
  6554. * @cfg: wma config
  6555. * @stream_id: stream ID info
  6556. *
  6557. * Returns 0 on success or error on failure
  6558. */
  6559. int q6asm_media_format_block_wma(struct audio_client *ac,
  6560. void *cfg, int stream_id)
  6561. {
  6562. struct asm_wmastdv9_fmt_blk_v2 fmt;
  6563. struct asm_wma_cfg *wma_cfg = (struct asm_wma_cfg *)cfg;
  6564. int rc = 0;
  6565. 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",
  6566. ac->session, wma_cfg->format_tag, wma_cfg->sample_rate,
  6567. wma_cfg->ch_cfg, wma_cfg->avg_bytes_per_sec,
  6568. wma_cfg->block_align, wma_cfg->valid_bits_per_sample,
  6569. wma_cfg->ch_mask, wma_cfg->encode_opt);
  6570. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6571. atomic_set(&ac->cmd_state, -1);
  6572. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6573. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6574. sizeof(fmt.fmtblk);
  6575. fmt.fmtag = wma_cfg->format_tag;
  6576. fmt.num_channels = wma_cfg->ch_cfg;
  6577. fmt.sample_rate = wma_cfg->sample_rate;
  6578. fmt.avg_bytes_per_sec = wma_cfg->avg_bytes_per_sec;
  6579. fmt.blk_align = wma_cfg->block_align;
  6580. fmt.bits_per_sample =
  6581. wma_cfg->valid_bits_per_sample;
  6582. fmt.channel_mask = wma_cfg->ch_mask;
  6583. fmt.enc_options = wma_cfg->encode_opt;
  6584. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6585. if (rc < 0) {
  6586. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6587. rc = -EINVAL;
  6588. goto fail_cmd;
  6589. }
  6590. rc = wait_event_timeout(ac->cmd_wait,
  6591. (atomic_read(&ac->cmd_state) >= 0),
  6592. msecs_to_jiffies(TIMEOUT_MS));
  6593. if (!rc) {
  6594. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6595. rc = -ETIMEDOUT;
  6596. goto fail_cmd;
  6597. }
  6598. if (atomic_read(&ac->cmd_state) > 0) {
  6599. pr_err("%s: DSP returned error[%s]\n",
  6600. __func__, adsp_err_get_err_str(
  6601. atomic_read(&ac->cmd_state)));
  6602. rc = adsp_err_get_lnx_err_code(
  6603. atomic_read(&ac->cmd_state));
  6604. goto fail_cmd;
  6605. }
  6606. return 0;
  6607. fail_cmd:
  6608. return rc;
  6609. }
  6610. EXPORT_SYMBOL(q6asm_media_format_block_wma);
  6611. /**
  6612. * q6asm_media_format_block_wmapro -
  6613. * command to set mediafmt block for wmapro on ASM stream
  6614. *
  6615. * @ac: Audio client handle
  6616. * @cfg: wmapro config
  6617. * @stream_id: stream ID info
  6618. *
  6619. * Returns 0 on success or error on failure
  6620. */
  6621. int q6asm_media_format_block_wmapro(struct audio_client *ac,
  6622. void *cfg, int stream_id)
  6623. {
  6624. struct asm_wmaprov10_fmt_blk_v2 fmt;
  6625. struct asm_wmapro_cfg *wmapro_cfg = (struct asm_wmapro_cfg *)cfg;
  6626. int rc = 0;
  6627. 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",
  6628. __func__,
  6629. ac->session, wmapro_cfg->format_tag, wmapro_cfg->sample_rate,
  6630. wmapro_cfg->ch_cfg, wmapro_cfg->avg_bytes_per_sec,
  6631. wmapro_cfg->block_align, wmapro_cfg->valid_bits_per_sample,
  6632. wmapro_cfg->ch_mask, wmapro_cfg->encode_opt,
  6633. wmapro_cfg->adv_encode_opt, wmapro_cfg->adv_encode_opt2);
  6634. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6635. atomic_set(&ac->cmd_state, -1);
  6636. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6637. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6638. sizeof(fmt.fmtblk);
  6639. fmt.fmtag = wmapro_cfg->format_tag;
  6640. fmt.num_channels = wmapro_cfg->ch_cfg;
  6641. fmt.sample_rate = wmapro_cfg->sample_rate;
  6642. fmt.avg_bytes_per_sec =
  6643. wmapro_cfg->avg_bytes_per_sec;
  6644. fmt.blk_align = wmapro_cfg->block_align;
  6645. fmt.bits_per_sample = wmapro_cfg->valid_bits_per_sample;
  6646. fmt.channel_mask = wmapro_cfg->ch_mask;
  6647. fmt.enc_options = wmapro_cfg->encode_opt;
  6648. fmt.usAdvancedEncodeOpt = wmapro_cfg->adv_encode_opt;
  6649. fmt.advanced_enc_options2 = wmapro_cfg->adv_encode_opt2;
  6650. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6651. if (rc < 0) {
  6652. pr_err("%s: Comamnd open failed %d\n", __func__, rc);
  6653. rc = -EINVAL;
  6654. goto fail_cmd;
  6655. }
  6656. rc = wait_event_timeout(ac->cmd_wait,
  6657. (atomic_read(&ac->cmd_state) >= 0),
  6658. msecs_to_jiffies(TIMEOUT_MS));
  6659. if (!rc) {
  6660. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6661. rc = -ETIMEDOUT;
  6662. goto fail_cmd;
  6663. }
  6664. if (atomic_read(&ac->cmd_state) > 0) {
  6665. pr_err("%s: DSP returned error[%s]\n",
  6666. __func__, adsp_err_get_err_str(
  6667. atomic_read(&ac->cmd_state)));
  6668. rc = adsp_err_get_lnx_err_code(
  6669. atomic_read(&ac->cmd_state));
  6670. goto fail_cmd;
  6671. }
  6672. return 0;
  6673. fail_cmd:
  6674. return rc;
  6675. }
  6676. EXPORT_SYMBOL(q6asm_media_format_block_wmapro);
  6677. /**
  6678. * q6asm_media_format_block_amrwbplus -
  6679. * command to set mediafmt block for amrwbplus on ASM stream
  6680. *
  6681. * @ac: Audio client handle
  6682. * @cfg: amrwbplus config
  6683. * @stream_id: stream ID info
  6684. *
  6685. * Returns 0 on success or error on failure
  6686. */
  6687. int q6asm_media_format_block_amrwbplus(struct audio_client *ac,
  6688. struct asm_amrwbplus_cfg *cfg)
  6689. {
  6690. struct asm_amrwbplus_fmt_blk_v2 fmt;
  6691. int rc = 0;
  6692. pr_debug("%s: session[%d]band-mode[%d]frame-fmt[%d]ch[%d]\n",
  6693. __func__,
  6694. ac->session,
  6695. cfg->amr_band_mode,
  6696. cfg->amr_frame_fmt,
  6697. cfg->num_channels);
  6698. q6asm_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE);
  6699. atomic_set(&ac->cmd_state, -1);
  6700. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6701. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6702. sizeof(fmt.fmtblk);
  6703. fmt.amr_frame_fmt = cfg->amr_frame_fmt;
  6704. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6705. if (rc < 0) {
  6706. pr_err("%s: Comamnd media format update failed.. %d\n",
  6707. __func__, rc);
  6708. rc = -EINVAL;
  6709. goto fail_cmd;
  6710. }
  6711. rc = wait_event_timeout(ac->cmd_wait,
  6712. (atomic_read(&ac->cmd_state) >= 0),
  6713. msecs_to_jiffies(TIMEOUT_MS));
  6714. if (!rc) {
  6715. pr_err("%s: timeout. waited for FORMAT_UPDATE\n", __func__);
  6716. rc = -ETIMEDOUT;
  6717. goto fail_cmd;
  6718. }
  6719. if (atomic_read(&ac->cmd_state) > 0) {
  6720. pr_err("%s: DSP returned error[%s]\n",
  6721. __func__, adsp_err_get_err_str(
  6722. atomic_read(&ac->cmd_state)));
  6723. rc = adsp_err_get_lnx_err_code(
  6724. atomic_read(&ac->cmd_state));
  6725. goto fail_cmd;
  6726. }
  6727. return 0;
  6728. fail_cmd:
  6729. return rc;
  6730. }
  6731. EXPORT_SYMBOL(q6asm_media_format_block_amrwbplus);
  6732. /**
  6733. * q6asm_stream_media_format_block_flac -
  6734. * command to set mediafmt block for flac on ASM stream
  6735. *
  6736. * @ac: Audio client handle
  6737. * @cfg: FLAC config
  6738. * @stream_id: stream ID info
  6739. *
  6740. * Returns 0 on success or error on failure
  6741. */
  6742. int q6asm_stream_media_format_block_flac(struct audio_client *ac,
  6743. struct asm_flac_cfg *cfg, int stream_id)
  6744. {
  6745. struct asm_flac_fmt_blk_v2 fmt;
  6746. int rc = 0;
  6747. pr_debug("%s :session[%d] rate[%d] ch[%d] size[%d] stream_id[%d]\n",
  6748. __func__, ac->session, cfg->sample_rate, cfg->ch_cfg,
  6749. cfg->sample_size, stream_id);
  6750. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6751. atomic_set(&ac->cmd_state, -1);
  6752. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6753. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6754. sizeof(fmt.fmtblk);
  6755. fmt.is_stream_info_present = cfg->stream_info_present;
  6756. fmt.num_channels = cfg->ch_cfg;
  6757. fmt.min_blk_size = cfg->min_blk_size;
  6758. fmt.max_blk_size = cfg->max_blk_size;
  6759. fmt.sample_rate = cfg->sample_rate;
  6760. fmt.min_frame_size = cfg->min_frame_size;
  6761. fmt.max_frame_size = cfg->max_frame_size;
  6762. fmt.sample_size = cfg->sample_size;
  6763. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6764. if (rc < 0) {
  6765. pr_err("%s :Comamnd media format update failed %d\n",
  6766. __func__, rc);
  6767. goto fail_cmd;
  6768. }
  6769. rc = wait_event_timeout(ac->cmd_wait,
  6770. (atomic_read(&ac->cmd_state) >= 0),
  6771. msecs_to_jiffies(TIMEOUT_MS));
  6772. if (!rc) {
  6773. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6774. rc = -ETIMEDOUT;
  6775. goto fail_cmd;
  6776. }
  6777. if (atomic_read(&ac->cmd_state) > 0) {
  6778. pr_err("%s: DSP returned error[%s]\n",
  6779. __func__, adsp_err_get_err_str(
  6780. atomic_read(&ac->cmd_state)));
  6781. rc = adsp_err_get_lnx_err_code(
  6782. atomic_read(&ac->cmd_state));
  6783. goto fail_cmd;
  6784. }
  6785. return 0;
  6786. fail_cmd:
  6787. return rc;
  6788. }
  6789. EXPORT_SYMBOL(q6asm_stream_media_format_block_flac);
  6790. /**
  6791. * q6asm_media_format_block_alac -
  6792. * command to set mediafmt block for alac on ASM stream
  6793. *
  6794. * @ac: Audio client handle
  6795. * @cfg: ALAC config
  6796. * @stream_id: stream ID info
  6797. *
  6798. * Returns 0 on success or error on failure
  6799. */
  6800. int q6asm_media_format_block_alac(struct audio_client *ac,
  6801. struct asm_alac_cfg *cfg, int stream_id)
  6802. {
  6803. struct asm_alac_fmt_blk_v2 fmt;
  6804. int rc = 0;
  6805. pr_debug("%s :session[%d]rate[%d]ch[%d]\n", __func__,
  6806. ac->session, cfg->sample_rate, cfg->num_channels);
  6807. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6808. atomic_set(&ac->cmd_state, -1);
  6809. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6810. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6811. sizeof(fmt.fmtblk);
  6812. fmt.frame_length = cfg->frame_length;
  6813. fmt.compatible_version = cfg->compatible_version;
  6814. fmt.bit_depth = cfg->bit_depth;
  6815. fmt.pb = cfg->pb;
  6816. fmt.mb = cfg->mb;
  6817. fmt.kb = cfg->kb;
  6818. fmt.num_channels = cfg->num_channels;
  6819. fmt.max_run = cfg->max_run;
  6820. fmt.max_frame_bytes = cfg->max_frame_bytes;
  6821. fmt.avg_bit_rate = cfg->avg_bit_rate;
  6822. fmt.sample_rate = cfg->sample_rate;
  6823. fmt.channel_layout_tag = cfg->channel_layout_tag;
  6824. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6825. if (rc < 0) {
  6826. pr_err("%s :Comamnd media format update failed %d\n",
  6827. __func__, rc);
  6828. goto fail_cmd;
  6829. }
  6830. rc = wait_event_timeout(ac->cmd_wait,
  6831. (atomic_read(&ac->cmd_state) >= 0),
  6832. msecs_to_jiffies(TIMEOUT_MS));
  6833. if (!rc) {
  6834. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6835. rc = -ETIMEDOUT;
  6836. goto fail_cmd;
  6837. }
  6838. if (atomic_read(&ac->cmd_state) > 0) {
  6839. pr_err("%s: DSP returned error[%s]\n",
  6840. __func__, adsp_err_get_err_str(
  6841. atomic_read(&ac->cmd_state)));
  6842. rc = adsp_err_get_lnx_err_code(
  6843. atomic_read(&ac->cmd_state));
  6844. goto fail_cmd;
  6845. }
  6846. return 0;
  6847. fail_cmd:
  6848. return rc;
  6849. }
  6850. EXPORT_SYMBOL(q6asm_media_format_block_alac);
  6851. /*
  6852. * q6asm_media_format_block_g711 - sends g711 decoder configuration
  6853. * parameters
  6854. * @ac: Client session handle
  6855. * @cfg: Audio stream manager configuration parameters
  6856. * @stream_id: Stream id
  6857. */
  6858. int q6asm_media_format_block_g711(struct audio_client *ac,
  6859. struct asm_g711_dec_cfg *cfg, int stream_id)
  6860. {
  6861. struct asm_g711_dec_fmt_blk_v2 fmt;
  6862. int rc = 0;
  6863. if (!ac) {
  6864. pr_err("%s: audio client is null\n", __func__);
  6865. return -EINVAL;
  6866. }
  6867. if (!cfg) {
  6868. pr_err("%s: Invalid ASM config\n", __func__);
  6869. return -EINVAL;
  6870. }
  6871. if (stream_id <= 0) {
  6872. pr_err("%s: Invalid stream id\n", __func__);
  6873. return -EINVAL;
  6874. }
  6875. pr_debug("%s :session[%d]rate[%d]\n", __func__,
  6876. ac->session, cfg->sample_rate);
  6877. memset(&fmt, 0, sizeof(struct asm_g711_dec_fmt_blk_v2));
  6878. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6879. atomic_set(&ac->cmd_state, -1);
  6880. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6881. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6882. sizeof(fmt.fmtblk);
  6883. fmt.sample_rate = cfg->sample_rate;
  6884. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6885. if (rc < 0) {
  6886. pr_err("%s :Command media format update failed %d\n",
  6887. __func__, rc);
  6888. goto fail_cmd;
  6889. }
  6890. rc = wait_event_timeout(ac->cmd_wait,
  6891. (atomic_read(&ac->cmd_state) >= 0),
  6892. msecs_to_jiffies(TIMEOUT_MS));
  6893. if (!rc) {
  6894. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6895. rc = -ETIMEDOUT;
  6896. goto fail_cmd;
  6897. }
  6898. if (atomic_read(&ac->cmd_state) > 0) {
  6899. pr_err("%s: DSP returned error[%s]\n",
  6900. __func__, adsp_err_get_err_str(
  6901. atomic_read(&ac->cmd_state)));
  6902. rc = adsp_err_get_lnx_err_code(
  6903. atomic_read(&ac->cmd_state));
  6904. goto fail_cmd;
  6905. }
  6906. return 0;
  6907. fail_cmd:
  6908. return rc;
  6909. }
  6910. EXPORT_SYMBOL(q6asm_media_format_block_g711);
  6911. /**
  6912. * q6asm_stream_media_format_block_vorbis -
  6913. * command to set mediafmt block for vorbis on ASM stream
  6914. *
  6915. * @ac: Audio client handle
  6916. * @cfg: vorbis config
  6917. * @stream_id: stream ID info
  6918. *
  6919. * Returns 0 on success or error on failure
  6920. */
  6921. int q6asm_stream_media_format_block_vorbis(struct audio_client *ac,
  6922. struct asm_vorbis_cfg *cfg, int stream_id)
  6923. {
  6924. struct asm_vorbis_fmt_blk_v2 fmt;
  6925. int rc = 0;
  6926. pr_debug("%s :session[%d] bit_stream_fmt[%d] stream_id[%d]\n",
  6927. __func__, ac->session, cfg->bit_stream_fmt, stream_id);
  6928. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6929. atomic_set(&ac->cmd_state, -1);
  6930. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6931. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6932. sizeof(fmt.fmtblk);
  6933. fmt.bit_stream_fmt = cfg->bit_stream_fmt;
  6934. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6935. if (rc < 0) {
  6936. pr_err("%s :Comamnd media format update failed %d\n",
  6937. __func__, rc);
  6938. goto fail_cmd;
  6939. }
  6940. rc = wait_event_timeout(ac->cmd_wait,
  6941. (atomic_read(&ac->cmd_state) >= 0),
  6942. msecs_to_jiffies(TIMEOUT_MS));
  6943. if (!rc) {
  6944. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  6945. rc = -ETIMEDOUT;
  6946. goto fail_cmd;
  6947. }
  6948. if (atomic_read(&ac->cmd_state) > 0) {
  6949. pr_err("%s: DSP returned error[%s]\n",
  6950. __func__, adsp_err_get_err_str(
  6951. atomic_read(&ac->cmd_state)));
  6952. rc = adsp_err_get_lnx_err_code(
  6953. atomic_read(&ac->cmd_state));
  6954. goto fail_cmd;
  6955. }
  6956. return 0;
  6957. fail_cmd:
  6958. return rc;
  6959. }
  6960. EXPORT_SYMBOL(q6asm_stream_media_format_block_vorbis);
  6961. /**
  6962. * q6asm_media_format_block_ape -
  6963. * command to set mediafmt block for APE on ASM stream
  6964. *
  6965. * @ac: Audio client handle
  6966. * @cfg: APE config
  6967. * @stream_id: stream ID info
  6968. *
  6969. * Returns 0 on success or error on failure
  6970. */
  6971. int q6asm_media_format_block_ape(struct audio_client *ac,
  6972. struct asm_ape_cfg *cfg, int stream_id)
  6973. {
  6974. struct asm_ape_fmt_blk_v2 fmt;
  6975. int rc = 0;
  6976. pr_debug("%s :session[%d]rate[%d]ch[%d]\n", __func__,
  6977. ac->session, cfg->sample_rate, cfg->num_channels);
  6978. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  6979. atomic_set(&ac->cmd_state, -1);
  6980. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  6981. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  6982. sizeof(fmt.fmtblk);
  6983. fmt.compatible_version = cfg->compatible_version;
  6984. fmt.compression_level = cfg->compression_level;
  6985. fmt.format_flags = cfg->format_flags;
  6986. fmt.blocks_per_frame = cfg->blocks_per_frame;
  6987. fmt.final_frame_blocks = cfg->final_frame_blocks;
  6988. fmt.total_frames = cfg->total_frames;
  6989. fmt.bits_per_sample = cfg->bits_per_sample;
  6990. fmt.num_channels = cfg->num_channels;
  6991. fmt.sample_rate = cfg->sample_rate;
  6992. fmt.seek_table_present = cfg->seek_table_present;
  6993. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  6994. if (rc < 0) {
  6995. pr_err("%s :Comamnd media format update failed %d\n",
  6996. __func__, rc);
  6997. goto fail_cmd;
  6998. }
  6999. rc = wait_event_timeout(ac->cmd_wait,
  7000. (atomic_read(&ac->cmd_state) >= 0),
  7001. msecs_to_jiffies(TIMEOUT_MS));
  7002. if (!rc) {
  7003. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  7004. rc = -ETIMEDOUT;
  7005. goto fail_cmd;
  7006. }
  7007. if (atomic_read(&ac->cmd_state) > 0) {
  7008. pr_err("%s: DSP returned error[%s]\n",
  7009. __func__, adsp_err_get_err_str(
  7010. atomic_read(&ac->cmd_state)));
  7011. rc = adsp_err_get_lnx_err_code(
  7012. atomic_read(&ac->cmd_state));
  7013. goto fail_cmd;
  7014. }
  7015. return 0;
  7016. fail_cmd:
  7017. return rc;
  7018. }
  7019. EXPORT_SYMBOL(q6asm_media_format_block_ape);
  7020. /*
  7021. * q6asm_media_format_block_dsd- Sends DSD Decoder
  7022. * configuration parameters
  7023. *
  7024. * @ac: Client session handle
  7025. * @cfg: DSD Media Format Configuration.
  7026. * @stream_id: stream id of stream to be associated with this session
  7027. *
  7028. * Return 0 on success or negative error code on failure
  7029. */
  7030. int q6asm_media_format_block_dsd(struct audio_client *ac,
  7031. struct asm_dsd_cfg *cfg, int stream_id)
  7032. {
  7033. struct asm_dsd_fmt_blk_v2 fmt;
  7034. int rc;
  7035. pr_debug("%s: session[%d] data_rate[%d] ch[%d]\n", __func__,
  7036. ac->session, cfg->dsd_data_rate, cfg->num_channels);
  7037. memset(&fmt, 0, sizeof(fmt));
  7038. q6asm_stream_add_hdr(ac, &fmt.hdr, sizeof(fmt), TRUE, stream_id);
  7039. fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  7040. fmt.fmtblk.fmt_blk_size = sizeof(fmt) - sizeof(fmt.hdr) -
  7041. sizeof(fmt.fmtblk);
  7042. fmt.num_version = cfg->num_version;
  7043. fmt.is_bitwise_big_endian = cfg->is_bitwise_big_endian;
  7044. fmt.dsd_channel_block_size = cfg->dsd_channel_block_size;
  7045. fmt.num_channels = cfg->num_channels;
  7046. fmt.dsd_data_rate = cfg->dsd_data_rate;
  7047. atomic_set(&ac->cmd_state, -1);
  7048. rc = apr_send_pkt(ac->apr, (uint32_t *) &fmt);
  7049. if (rc < 0) {
  7050. pr_err("%s: Command DSD media format update failed, err: %d\n",
  7051. __func__, rc);
  7052. goto done;
  7053. }
  7054. rc = wait_event_timeout(ac->cmd_wait,
  7055. (atomic_read(&ac->cmd_state) >= 0),
  7056. msecs_to_jiffies(TIMEOUT_MS));
  7057. if (!rc) {
  7058. pr_err("%s: timeout. waited for DSD FORMAT_UPDATE\n", __func__);
  7059. rc = -ETIMEDOUT;
  7060. goto done;
  7061. }
  7062. if (atomic_read(&ac->cmd_state) > 0) {
  7063. pr_err("%s: DSP returned error[%s]\n",
  7064. __func__, adsp_err_get_err_str(
  7065. atomic_read(&ac->cmd_state)));
  7066. rc = adsp_err_get_lnx_err_code(
  7067. atomic_read(&ac->cmd_state));
  7068. goto done;
  7069. }
  7070. return 0;
  7071. done:
  7072. return rc;
  7073. }
  7074. EXPORT_SYMBOL(q6asm_media_format_block_dsd);
  7075. /**
  7076. * q6asm_stream_media_format_block_aptx_dec -
  7077. * command to set mediafmt block for APTX dec on ASM stream
  7078. *
  7079. * @ac: Audio client handle
  7080. * @srate: sample rate
  7081. * @stream_id: stream ID info
  7082. *
  7083. * Returns 0 on success or error on failure
  7084. */
  7085. int q6asm_stream_media_format_block_aptx_dec(struct audio_client *ac,
  7086. uint32_t srate, int stream_id)
  7087. {
  7088. struct asm_aptx_dec_fmt_blk_v2 aptx_fmt;
  7089. int rc = 0;
  7090. if (!ac->session) {
  7091. pr_err("%s: ac session invalid\n", __func__);
  7092. rc = -EINVAL;
  7093. goto fail_cmd;
  7094. }
  7095. pr_debug("%s :session[%d] rate[%d] stream_id[%d]\n",
  7096. __func__, ac->session, srate, stream_id);
  7097. q6asm_stream_add_hdr(ac, &aptx_fmt.hdr, sizeof(aptx_fmt), TRUE,
  7098. stream_id);
  7099. atomic_set(&ac->cmd_state, -1);
  7100. aptx_fmt.hdr.opcode = ASM_DATA_CMD_MEDIA_FMT_UPDATE_V2;
  7101. aptx_fmt.fmtblk.fmt_blk_size = sizeof(aptx_fmt) - sizeof(aptx_fmt.hdr) -
  7102. sizeof(aptx_fmt.fmtblk);
  7103. aptx_fmt.sample_rate = srate;
  7104. rc = apr_send_pkt(ac->apr, (uint32_t *) &aptx_fmt);
  7105. if (rc < 0) {
  7106. pr_err("%s :Comamnd media format update failed %d\n",
  7107. __func__, rc);
  7108. goto fail_cmd;
  7109. }
  7110. rc = wait_event_timeout(ac->cmd_wait,
  7111. (atomic_read(&ac->cmd_state) >= 0),
  7112. msecs_to_jiffies(TIMEOUT_MS));
  7113. if (!rc) {
  7114. pr_err("%s :timeout. waited for FORMAT_UPDATE\n", __func__);
  7115. rc = -ETIMEDOUT;
  7116. goto fail_cmd;
  7117. }
  7118. if (atomic_read(&ac->cmd_state) > 0) {
  7119. pr_err("%s: DSP returned error[%s]\n",
  7120. __func__, adsp_err_get_err_str(
  7121. atomic_read(&ac->cmd_state)));
  7122. rc = adsp_err_get_lnx_err_code(
  7123. atomic_read(&ac->cmd_state));
  7124. goto fail_cmd;
  7125. }
  7126. rc = 0;
  7127. fail_cmd:
  7128. return rc;
  7129. }
  7130. EXPORT_SYMBOL(q6asm_stream_media_format_block_aptx_dec);
  7131. static int __q6asm_ds1_set_endp_params(struct audio_client *ac, int param_id,
  7132. int param_value, int stream_id)
  7133. {
  7134. struct asm_dec_ddp_endp_param_v2 ddp_cfg;
  7135. int rc = 0;
  7136. pr_debug("%s: session[%d] stream[%d],param_id[%d]param_value[%d]",
  7137. __func__, ac->session, stream_id, param_id, param_value);
  7138. q6asm_stream_add_hdr(ac, &ddp_cfg.hdr, sizeof(ddp_cfg), TRUE,
  7139. stream_id);
  7140. atomic_set(&ac->cmd_state, -1);
  7141. /*
  7142. * Updated the token field with stream/session for compressed playback
  7143. * Platform driver must know the stream with which the command is
  7144. * associated
  7145. */
  7146. if (ac->io_mode & COMPRESSED_STREAM_IO)
  7147. q6asm_update_token(&ddp_cfg.hdr.token,
  7148. ac->session,
  7149. stream_id,
  7150. 0, /* Buffer index is NA */
  7151. 0, /* Direction flag is NA */
  7152. WAIT_CMD);
  7153. ddp_cfg.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  7154. ddp_cfg.encdec.param_id = param_id;
  7155. ddp_cfg.encdec.param_size = sizeof(struct asm_dec_ddp_endp_param_v2) -
  7156. (sizeof(struct apr_hdr) +
  7157. sizeof(struct asm_stream_cmd_set_encdec_param));
  7158. ddp_cfg.endp_param_value = param_value;
  7159. rc = apr_send_pkt(ac->apr, (uint32_t *) &ddp_cfg);
  7160. if (rc < 0) {
  7161. pr_err("%s: Command opcode[0x%x] failed %d\n",
  7162. __func__, ASM_STREAM_CMD_SET_ENCDEC_PARAM, rc);
  7163. goto fail_cmd;
  7164. }
  7165. rc = wait_event_timeout(ac->cmd_wait,
  7166. (atomic_read(&ac->cmd_state) >= 0),
  7167. msecs_to_jiffies(TIMEOUT_MS));
  7168. if (!rc) {
  7169. pr_err("%s: timeout opcode[0x%x]\n", __func__,
  7170. ddp_cfg.hdr.opcode);
  7171. rc = -ETIMEDOUT;
  7172. goto fail_cmd;
  7173. }
  7174. if (atomic_read(&ac->cmd_state) > 0) {
  7175. pr_err("%s: DSP returned error[%s]\n",
  7176. __func__, adsp_err_get_err_str(
  7177. atomic_read(&ac->cmd_state)));
  7178. rc = adsp_err_get_lnx_err_code(
  7179. atomic_read(&ac->cmd_state));
  7180. goto fail_cmd;
  7181. }
  7182. return 0;
  7183. fail_cmd:
  7184. return rc;
  7185. }
  7186. /**
  7187. * q6asm_ds1_set_endp_params -
  7188. * command to set DS1 params for ASM
  7189. *
  7190. * @ac: Audio client handle
  7191. * @param_id: param id
  7192. * @param_value: value of param
  7193. *
  7194. * Returns 0 on success or error on failure
  7195. */
  7196. int q6asm_ds1_set_endp_params(struct audio_client *ac,
  7197. int param_id, int param_value)
  7198. {
  7199. return __q6asm_ds1_set_endp_params(ac, param_id, param_value,
  7200. ac->stream_id);
  7201. }
  7202. /**
  7203. * q6asm_ds1_set_stream_endp_params -
  7204. * command to set DS1 params for ASM stream
  7205. *
  7206. * @ac: Audio client handle
  7207. * @param_id: param id
  7208. * @param_value: value of param
  7209. * @stream_id: stream ID info
  7210. *
  7211. * Returns 0 on success or error on failure
  7212. */
  7213. int q6asm_ds1_set_stream_endp_params(struct audio_client *ac,
  7214. int param_id, int param_value,
  7215. int stream_id)
  7216. {
  7217. return __q6asm_ds1_set_endp_params(ac, param_id, param_value,
  7218. stream_id);
  7219. }
  7220. EXPORT_SYMBOL(q6asm_ds1_set_stream_endp_params);
  7221. /**
  7222. * q6asm_memory_map -
  7223. * command to send memory map for ASM
  7224. *
  7225. * @ac: Audio client handle
  7226. * @buf_add: buffer address to map
  7227. * @dir: RX or TX session
  7228. * @bufsz: size of each buffer
  7229. * @bufcnt: buffer count
  7230. *
  7231. * Returns 0 on success or error on failure
  7232. */
  7233. int q6asm_memory_map(struct audio_client *ac, phys_addr_t buf_add, int dir,
  7234. uint32_t bufsz, uint32_t bufcnt)
  7235. {
  7236. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  7237. struct avs_shared_map_region_payload *mregions = NULL;
  7238. struct audio_port_data *port = NULL;
  7239. void *mmap_region_cmd = NULL;
  7240. void *payload = NULL;
  7241. struct asm_buffer_node *buffer_node = NULL;
  7242. int rc = 0;
  7243. int cmd_size = 0;
  7244. if (!ac) {
  7245. pr_err("%s: APR handle NULL\n", __func__);
  7246. return -EINVAL;
  7247. }
  7248. if (ac->mmap_apr == NULL) {
  7249. pr_err("%s: mmap APR handle NULL\n", __func__);
  7250. return -EINVAL;
  7251. }
  7252. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7253. buffer_node = kmalloc(sizeof(struct asm_buffer_node), GFP_KERNEL);
  7254. if (!buffer_node)
  7255. return -ENOMEM;
  7256. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  7257. + sizeof(struct avs_shared_map_region_payload) * bufcnt;
  7258. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  7259. if (mmap_region_cmd == NULL) {
  7260. rc = -EINVAL;
  7261. kfree(buffer_node);
  7262. return rc;
  7263. }
  7264. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)
  7265. mmap_region_cmd;
  7266. q6asm_add_mmaphdr(ac, &mmap_regions->hdr, cmd_size, dir);
  7267. atomic_set(&ac->mem_state, -1);
  7268. mmap_regions->hdr.opcode = ASM_CMD_SHARED_MEM_MAP_REGIONS;
  7269. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7270. mmap_regions->num_regions = bufcnt & 0x00ff;
  7271. mmap_regions->property_flag = 0x00;
  7272. payload = ((u8 *) mmap_region_cmd +
  7273. sizeof(struct avs_cmd_shared_mem_map_regions));
  7274. mregions = (struct avs_shared_map_region_payload *)payload;
  7275. ac->port[dir].tmp_hdl = 0;
  7276. port = &ac->port[dir];
  7277. pr_debug("%s: buf_add 0x%pK, bufsz: %d\n", __func__,
  7278. &buf_add, bufsz);
  7279. mregions->shm_addr_lsw = lower_32_bits(buf_add);
  7280. mregions->shm_addr_msw = msm_audio_populate_upper_32_bits(buf_add);
  7281. mregions->mem_size_bytes = bufsz;
  7282. ++mregions;
  7283. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) mmap_region_cmd);
  7284. if (rc < 0) {
  7285. pr_err("%s: mmap op[0x%x]rc[%d]\n", __func__,
  7286. mmap_regions->hdr.opcode, rc);
  7287. rc = -EINVAL;
  7288. kfree(buffer_node);
  7289. goto fail_cmd;
  7290. }
  7291. rc = wait_event_timeout(ac->mem_wait,
  7292. (atomic_read(&ac->mem_state) >= 0 &&
  7293. ac->port[dir].tmp_hdl),
  7294. msecs_to_jiffies(TIMEOUT_MS));
  7295. if (!rc) {
  7296. pr_err("%s: timeout. waited for memory_map\n", __func__);
  7297. rc = -ETIMEDOUT;
  7298. kfree(buffer_node);
  7299. goto fail_cmd;
  7300. }
  7301. if (atomic_read(&ac->mem_state) > 0) {
  7302. pr_err("%s: DSP returned error[%s] for memory_map\n",
  7303. __func__, adsp_err_get_err_str(
  7304. atomic_read(&ac->mem_state)));
  7305. rc = adsp_err_get_lnx_err_code(
  7306. atomic_read(&ac->mem_state));
  7307. kfree(buffer_node);
  7308. goto fail_cmd;
  7309. }
  7310. buffer_node->buf_phys_addr = buf_add;
  7311. buffer_node->mmap_hdl = ac->port[dir].tmp_hdl;
  7312. list_add_tail(&buffer_node->list, &ac->port[dir].mem_map_handle);
  7313. ac->port[dir].tmp_hdl = 0;
  7314. rc = 0;
  7315. fail_cmd:
  7316. kfree(mmap_region_cmd);
  7317. return rc;
  7318. }
  7319. EXPORT_SYMBOL(q6asm_memory_map);
  7320. /**
  7321. * q6asm_memory_unmap -
  7322. * command to send memory unmap for ASM
  7323. *
  7324. * @ac: Audio client handle
  7325. * @buf_add: buffer address to unmap
  7326. * @dir: RX or TX session
  7327. *
  7328. * Returns 0 on success or error on failure
  7329. */
  7330. int q6asm_memory_unmap(struct audio_client *ac, phys_addr_t buf_add, int dir)
  7331. {
  7332. struct avs_cmd_shared_mem_unmap_regions mem_unmap;
  7333. struct asm_buffer_node *buf_node = NULL;
  7334. struct list_head *ptr, *next;
  7335. int rc = 0;
  7336. if (!ac) {
  7337. pr_err("%s: APR handle NULL\n", __func__);
  7338. return -EINVAL;
  7339. }
  7340. if (this_mmap.apr == NULL) {
  7341. pr_err("%s: APR handle NULL\n", __func__);
  7342. return -EINVAL;
  7343. }
  7344. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7345. q6asm_add_mmaphdr(ac, &mem_unmap.hdr,
  7346. sizeof(struct avs_cmd_shared_mem_unmap_regions),
  7347. dir);
  7348. atomic_set(&ac->mem_state, -1);
  7349. mem_unmap.hdr.opcode = ASM_CMD_SHARED_MEM_UNMAP_REGIONS;
  7350. mem_unmap.mem_map_handle = 0;
  7351. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7352. buf_node = list_entry(ptr, struct asm_buffer_node,
  7353. list);
  7354. if (buf_node->buf_phys_addr == buf_add) {
  7355. pr_debug("%s: Found the element\n", __func__);
  7356. mem_unmap.mem_map_handle = buf_node->mmap_hdl;
  7357. break;
  7358. }
  7359. }
  7360. pr_debug("%s: mem_unmap-mem_map_handle: 0x%x\n",
  7361. __func__, mem_unmap.mem_map_handle);
  7362. if (mem_unmap.mem_map_handle == 0) {
  7363. pr_err("%s: Do not send null mem handle to DSP\n", __func__);
  7364. rc = 0;
  7365. goto fail_cmd;
  7366. }
  7367. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) &mem_unmap);
  7368. if (rc < 0) {
  7369. pr_err("%s: mem_unmap op[0x%x]rc[%d]\n", __func__,
  7370. mem_unmap.hdr.opcode, rc);
  7371. rc = -EINVAL;
  7372. goto fail_cmd;
  7373. }
  7374. rc = wait_event_timeout(ac->mem_wait,
  7375. (atomic_read(&ac->mem_state) >= 0),
  7376. msecs_to_jiffies(TIMEOUT_MS));
  7377. if (!rc) {
  7378. pr_err("%s: timeout. waited for memory_unmap of handle 0x%x\n",
  7379. __func__, mem_unmap.mem_map_handle);
  7380. rc = -ETIMEDOUT;
  7381. goto fail_cmd;
  7382. } else if (atomic_read(&ac->mem_state) > 0) {
  7383. pr_err("%s DSP returned error [%s] map handle 0x%x\n",
  7384. __func__, adsp_err_get_err_str(
  7385. atomic_read(&ac->mem_state)),
  7386. mem_unmap.mem_map_handle);
  7387. rc = adsp_err_get_lnx_err_code(
  7388. atomic_read(&ac->mem_state));
  7389. goto fail_cmd;
  7390. } else if (atomic_read(&ac->unmap_cb_success) == 0) {
  7391. pr_err("%s: Error in mem unmap callback of handle 0x%x\n",
  7392. __func__, mem_unmap.mem_map_handle);
  7393. rc = -EINVAL;
  7394. goto fail_cmd;
  7395. }
  7396. rc = 0;
  7397. fail_cmd:
  7398. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7399. buf_node = list_entry(ptr, struct asm_buffer_node,
  7400. list);
  7401. if (buf_node->buf_phys_addr == buf_add) {
  7402. list_del(&buf_node->list);
  7403. kfree(buf_node);
  7404. break;
  7405. }
  7406. }
  7407. return rc;
  7408. }
  7409. EXPORT_SYMBOL(q6asm_memory_unmap);
  7410. /**
  7411. * q6asm_memory_map_regions -
  7412. * command to send memory map regions for ASM
  7413. *
  7414. * @ac: Audio client handle
  7415. * @dir: RX or TX session
  7416. * @bufsz: size of each buffer
  7417. * @bufcnt: buffer count
  7418. * @is_contiguous: alloc contiguous mem or not
  7419. *
  7420. * Returns 0 on success or error on failure
  7421. */
  7422. static int q6asm_memory_map_regions(struct audio_client *ac, int dir,
  7423. uint32_t bufsz, uint32_t bufcnt,
  7424. bool is_contiguous)
  7425. {
  7426. struct avs_cmd_shared_mem_map_regions *mmap_regions = NULL;
  7427. struct avs_shared_map_region_payload *mregions = NULL;
  7428. struct audio_port_data *port = NULL;
  7429. struct audio_buffer *ab = NULL;
  7430. void *mmap_region_cmd = NULL;
  7431. void *payload = NULL;
  7432. struct asm_buffer_node *buffer_node = NULL;
  7433. int rc = 0;
  7434. int i = 0;
  7435. uint32_t cmd_size = 0;
  7436. uint32_t bufcnt_t;
  7437. uint32_t bufsz_t;
  7438. if (!ac) {
  7439. pr_err("%s: APR handle NULL\n", __func__);
  7440. return -EINVAL;
  7441. }
  7442. if (ac->mmap_apr == NULL) {
  7443. pr_err("%s: mmap APR handle NULL\n", __func__);
  7444. return -EINVAL;
  7445. }
  7446. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7447. bufcnt_t = (is_contiguous) ? 1 : bufcnt;
  7448. bufsz_t = (is_contiguous) ? (bufsz * bufcnt) : bufsz;
  7449. if (is_contiguous) {
  7450. /* The size to memory map should be multiple of 4K bytes */
  7451. bufsz_t = PAGE_ALIGN(bufsz_t);
  7452. }
  7453. if (bufcnt_t > (UINT_MAX
  7454. - sizeof(struct avs_cmd_shared_mem_map_regions))
  7455. / sizeof(struct avs_shared_map_region_payload)) {
  7456. pr_err("%s: Unsigned Integer Overflow. bufcnt_t = %u\n",
  7457. __func__, bufcnt_t);
  7458. return -EINVAL;
  7459. }
  7460. cmd_size = sizeof(struct avs_cmd_shared_mem_map_regions)
  7461. + (sizeof(struct avs_shared_map_region_payload)
  7462. * bufcnt_t);
  7463. if (bufcnt > (UINT_MAX / sizeof(struct asm_buffer_node))) {
  7464. pr_err("%s: Unsigned Integer Overflow. bufcnt = %u\n",
  7465. __func__, bufcnt);
  7466. return -EINVAL;
  7467. }
  7468. buffer_node = kzalloc(sizeof(struct asm_buffer_node) * bufcnt,
  7469. GFP_KERNEL);
  7470. if (!buffer_node)
  7471. return -ENOMEM;
  7472. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  7473. if (mmap_region_cmd == NULL) {
  7474. rc = -EINVAL;
  7475. kfree(buffer_node);
  7476. return rc;
  7477. }
  7478. mmap_regions = (struct avs_cmd_shared_mem_map_regions *)
  7479. mmap_region_cmd;
  7480. q6asm_add_mmaphdr(ac, &mmap_regions->hdr, cmd_size, dir);
  7481. atomic_set(&ac->mem_state, -1);
  7482. pr_debug("%s: mmap_region=0x%pK token=0x%x\n", __func__,
  7483. mmap_regions, ((ac->session << 8) | dir));
  7484. mmap_regions->hdr.opcode = ASM_CMD_SHARED_MEM_MAP_REGIONS;
  7485. mmap_regions->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7486. mmap_regions->num_regions = bufcnt_t; /*bufcnt & 0x00ff; */
  7487. mmap_regions->property_flag = 0x00;
  7488. pr_debug("%s: map_regions->nregions = %d\n", __func__,
  7489. mmap_regions->num_regions);
  7490. payload = ((u8 *) mmap_region_cmd +
  7491. sizeof(struct avs_cmd_shared_mem_map_regions));
  7492. mregions = (struct avs_shared_map_region_payload *)payload;
  7493. ac->port[dir].tmp_hdl = 0;
  7494. port = &ac->port[dir];
  7495. for (i = 0; i < bufcnt_t; i++) {
  7496. ab = &port->buf[i];
  7497. mregions->shm_addr_lsw = lower_32_bits(ab->phys);
  7498. mregions->shm_addr_msw =
  7499. msm_audio_populate_upper_32_bits(ab->phys);
  7500. mregions->mem_size_bytes = bufsz_t;
  7501. ++mregions;
  7502. }
  7503. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) mmap_region_cmd);
  7504. if (rc < 0) {
  7505. pr_err("%s: mmap_regions op[0x%x]rc[%d]\n", __func__,
  7506. mmap_regions->hdr.opcode, rc);
  7507. rc = -EINVAL;
  7508. kfree(buffer_node);
  7509. goto fail_cmd;
  7510. }
  7511. rc = wait_event_timeout(ac->mem_wait,
  7512. (atomic_read(&ac->mem_state) >= 0 &&
  7513. ac->port[dir].tmp_hdl),
  7514. msecs_to_jiffies(TIMEOUT_MS));
  7515. if (!rc) {
  7516. pr_err("%s: timeout. waited for memory_map\n", __func__);
  7517. rc = -ETIMEDOUT;
  7518. kfree(buffer_node);
  7519. goto fail_cmd;
  7520. }
  7521. if (atomic_read(&ac->mem_state) > 0) {
  7522. pr_err("%s DSP returned error for memory_map [%s]\n",
  7523. __func__, adsp_err_get_err_str(
  7524. atomic_read(&ac->mem_state)));
  7525. rc = adsp_err_get_lnx_err_code(
  7526. atomic_read(&ac->mem_state));
  7527. kfree(buffer_node);
  7528. goto fail_cmd;
  7529. }
  7530. mutex_lock(&ac->cmd_lock);
  7531. for (i = 0; i < bufcnt; i++) {
  7532. ab = &port->buf[i];
  7533. buffer_node[i].buf_phys_addr = ab->phys;
  7534. buffer_node[i].mmap_hdl = ac->port[dir].tmp_hdl;
  7535. list_add_tail(&buffer_node[i].list,
  7536. &ac->port[dir].mem_map_handle);
  7537. pr_debug("%s: i=%d, bufadd[i] = 0x%pK, maphdl[i] = 0x%x\n",
  7538. __func__, i, &buffer_node[i].buf_phys_addr,
  7539. buffer_node[i].mmap_hdl);
  7540. }
  7541. ac->port[dir].tmp_hdl = 0;
  7542. mutex_unlock(&ac->cmd_lock);
  7543. rc = 0;
  7544. fail_cmd:
  7545. kfree(mmap_region_cmd);
  7546. return rc;
  7547. }
  7548. EXPORT_SYMBOL(q6asm_memory_map_regions);
  7549. /**
  7550. * q6asm_memory_unmap_regions -
  7551. * command to send memory unmap regions for ASM
  7552. *
  7553. * @ac: Audio client handle
  7554. * @dir: RX or TX session
  7555. *
  7556. * Returns 0 on success or error on failure
  7557. */
  7558. static int q6asm_memory_unmap_regions(struct audio_client *ac, int dir)
  7559. {
  7560. struct avs_cmd_shared_mem_unmap_regions mem_unmap;
  7561. struct audio_port_data *port = NULL;
  7562. struct asm_buffer_node *buf_node = NULL;
  7563. struct list_head *ptr, *next;
  7564. phys_addr_t buf_add;
  7565. int rc = 0;
  7566. int cmd_size = 0;
  7567. if (!ac) {
  7568. pr_err("%s: APR handle NULL\n", __func__);
  7569. return -EINVAL;
  7570. }
  7571. if (ac->mmap_apr == NULL) {
  7572. pr_err("%s: mmap APR handle NULL\n", __func__);
  7573. return -EINVAL;
  7574. }
  7575. pr_debug("%s: Session[%d]\n", __func__, ac->session);
  7576. cmd_size = sizeof(struct avs_cmd_shared_mem_unmap_regions);
  7577. q6asm_add_mmaphdr(ac, &mem_unmap.hdr, cmd_size, dir);
  7578. atomic_set(&ac->mem_state, -1);
  7579. port = &ac->port[dir];
  7580. buf_add = port->buf->phys;
  7581. mem_unmap.hdr.opcode = ASM_CMD_SHARED_MEM_UNMAP_REGIONS;
  7582. mem_unmap.mem_map_handle = 0;
  7583. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7584. buf_node = list_entry(ptr, struct asm_buffer_node,
  7585. list);
  7586. if (buf_node->buf_phys_addr == buf_add) {
  7587. pr_debug("%s: Found the element\n", __func__);
  7588. mem_unmap.mem_map_handle = buf_node->mmap_hdl;
  7589. break;
  7590. }
  7591. }
  7592. pr_debug("%s: mem_unmap-mem_map_handle: 0x%x\n",
  7593. __func__, mem_unmap.mem_map_handle);
  7594. if (mem_unmap.mem_map_handle == 0) {
  7595. pr_err("%s: Do not send null mem handle to DSP\n", __func__);
  7596. rc = 0;
  7597. goto fail_cmd;
  7598. }
  7599. rc = apr_send_pkt(ac->mmap_apr, (uint32_t *) &mem_unmap);
  7600. if (rc < 0) {
  7601. pr_err("mmap_regions op[0x%x]rc[%d]\n",
  7602. mem_unmap.hdr.opcode, rc);
  7603. goto fail_cmd;
  7604. }
  7605. rc = wait_event_timeout(ac->mem_wait,
  7606. (atomic_read(&ac->mem_state) >= 0),
  7607. msecs_to_jiffies(TIMEOUT_MS));
  7608. if (!rc) {
  7609. pr_err("%s: timeout. waited for memory_unmap of handle 0x%x\n",
  7610. __func__, mem_unmap.mem_map_handle);
  7611. rc = -ETIMEDOUT;
  7612. goto fail_cmd;
  7613. } else if (atomic_read(&ac->mem_state) > 0) {
  7614. pr_err("%s: DSP returned error[%s]\n",
  7615. __func__, adsp_err_get_err_str(
  7616. atomic_read(&ac->mem_state)));
  7617. rc = adsp_err_get_lnx_err_code(
  7618. atomic_read(&ac->mem_state));
  7619. goto fail_cmd;
  7620. } else if (atomic_read(&ac->unmap_cb_success) == 0) {
  7621. pr_err("%s: Error in mem unmap callback of handle 0x%x\n",
  7622. __func__, mem_unmap.mem_map_handle);
  7623. rc = -EINVAL;
  7624. goto fail_cmd;
  7625. }
  7626. rc = 0;
  7627. fail_cmd:
  7628. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  7629. buf_node = list_entry(ptr, struct asm_buffer_node,
  7630. list);
  7631. if (buf_node->buf_phys_addr == buf_add) {
  7632. list_del(&buf_node->list);
  7633. kfree(buf_node);
  7634. break;
  7635. }
  7636. }
  7637. return rc;
  7638. }
  7639. EXPORT_SYMBOL(q6asm_memory_unmap_regions);
  7640. int q6asm_set_lrgain(struct audio_client *ac, int left_gain, int right_gain)
  7641. {
  7642. struct asm_volume_ctrl_multichannel_gain multi_ch_gain;
  7643. struct param_hdr_v3 param_info;
  7644. int rc = 0;
  7645. memset(&param_info, 0, sizeof(param_info));
  7646. memset(&multi_ch_gain, 0, sizeof(multi_ch_gain));
  7647. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7648. param_info.instance_id = INSTANCE_ID_0;
  7649. param_info.param_id = ASM_PARAM_ID_MULTICHANNEL_GAIN;
  7650. param_info.param_size = sizeof(multi_ch_gain);
  7651. multi_ch_gain.gain_data[0].channeltype = PCM_CHANNEL_FL;
  7652. multi_ch_gain.gain_data[0].gain = left_gain << 15;
  7653. multi_ch_gain.gain_data[1].channeltype = PCM_CHANNEL_FR;
  7654. multi_ch_gain.gain_data[1].gain = right_gain << 15;
  7655. multi_ch_gain.num_channels = 2;
  7656. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7657. (u8 *) &multi_ch_gain);
  7658. if (rc < 0)
  7659. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7660. __func__, param_info.param_id, rc);
  7661. return rc;
  7662. }
  7663. /*
  7664. * q6asm_set_multich_gain: set multiple channel gains on an ASM session
  7665. * @ac: audio client handle
  7666. * @channels: number of channels caller intends to set gains
  7667. * @gains: list of gains of audio channels
  7668. * @ch_map: list of channel mapping. Only valid if use_default is false
  7669. * @use_default: flag to indicate whether to use default mapping
  7670. */
  7671. int q6asm_set_multich_gain(struct audio_client *ac, uint32_t channels,
  7672. uint32_t *gains, uint8_t *ch_map, bool use_default)
  7673. {
  7674. struct asm_volume_ctrl_multichannel_gain multich_gain;
  7675. struct param_hdr_v3 param_info;
  7676. int rc = 0;
  7677. int i;
  7678. u8 default_chmap[VOLUME_CONTROL_MAX_CHANNELS];
  7679. if (ac == NULL) {
  7680. pr_err("%s: Audio client is NULL\n", __func__);
  7681. return -EINVAL;
  7682. }
  7683. if (gains == NULL) {
  7684. dev_err(ac->dev, "%s: gain_list is NULL\n", __func__);
  7685. rc = -EINVAL;
  7686. goto done;
  7687. }
  7688. if (channels > VOLUME_CONTROL_MAX_CHANNELS) {
  7689. dev_err(ac->dev, "%s: Invalid channel count %d\n",
  7690. __func__, channels);
  7691. rc = -EINVAL;
  7692. goto done;
  7693. }
  7694. if (!use_default && ch_map == NULL) {
  7695. dev_err(ac->dev, "%s: NULL channel map\n", __func__);
  7696. rc = -EINVAL;
  7697. goto done;
  7698. }
  7699. memset(&param_info, 0, sizeof(param_info));
  7700. memset(&multich_gain, 0, sizeof(multich_gain));
  7701. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7702. param_info.instance_id = INSTANCE_ID_0;
  7703. param_info.param_id = ASM_PARAM_ID_MULTICHANNEL_GAIN;
  7704. param_info.param_size = sizeof(multich_gain);
  7705. if (use_default) {
  7706. rc = q6asm_map_channels(default_chmap, channels, false);
  7707. if (rc < 0)
  7708. goto done;
  7709. for (i = 0; i < channels; i++) {
  7710. multich_gain.gain_data[i].channeltype =
  7711. default_chmap[i];
  7712. multich_gain.gain_data[i].gain = gains[i] << 15;
  7713. }
  7714. } else {
  7715. for (i = 0; i < channels; i++) {
  7716. multich_gain.gain_data[i].channeltype = ch_map[i];
  7717. multich_gain.gain_data[i].gain = gains[i] << 15;
  7718. }
  7719. }
  7720. multich_gain.num_channels = channels;
  7721. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  7722. (u8 *) &multich_gain);
  7723. if (rc)
  7724. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7725. __func__, param_info.param_id, rc);
  7726. done:
  7727. return rc;
  7728. }
  7729. EXPORT_SYMBOL(q6asm_set_multich_gain);
  7730. /**
  7731. * q6asm_set_mute -
  7732. * command to set mute for ASM
  7733. *
  7734. * @ac: Audio client handle
  7735. * @muteflag: mute value
  7736. *
  7737. * Returns 0 on success or error on failure
  7738. */
  7739. int q6asm_set_mute(struct audio_client *ac, int muteflag)
  7740. {
  7741. struct asm_volume_ctrl_mute_config mute;
  7742. struct param_hdr_v3 param_info;
  7743. int rc = 0;
  7744. memset(&mute, 0, sizeof(mute));
  7745. memset(&param_info, 0, sizeof(param_info));
  7746. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  7747. param_info.instance_id = INSTANCE_ID_0;
  7748. param_info.param_id = ASM_PARAM_ID_VOL_CTRL_MUTE_CONFIG;
  7749. param_info.param_size = sizeof(mute);
  7750. mute.mute_flag = muteflag;
  7751. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &mute);
  7752. if (rc)
  7753. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7754. __func__, param_info.param_id, rc);
  7755. return rc;
  7756. }
  7757. EXPORT_SYMBOL(q6asm_set_mute);
  7758. static int __q6asm_set_volume(struct audio_client *ac, int volume, int instance)
  7759. {
  7760. struct asm_volume_ctrl_master_gain vol;
  7761. struct param_hdr_v3 param_info;
  7762. int rc = 0;
  7763. memset(&vol, 0, sizeof(vol));
  7764. memset(&param_info, 0, sizeof(param_info));
  7765. rc = q6asm_set_soft_volume_module_instance_ids(instance, &param_info);
  7766. if (rc) {
  7767. pr_err("%s: Failed to pack soft volume module and instance IDs, error %d\n",
  7768. __func__, rc);
  7769. return rc;
  7770. }
  7771. param_info.param_id = ASM_PARAM_ID_VOL_CTRL_MASTER_GAIN;
  7772. param_info.param_size = sizeof(vol);
  7773. vol.master_gain = volume;
  7774. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &vol);
  7775. if (rc)
  7776. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7777. __func__, param_info.param_id, rc);
  7778. return rc;
  7779. }
  7780. /**
  7781. * q6asm_set_volume -
  7782. * command to set volume for ASM
  7783. *
  7784. * @ac: Audio client handle
  7785. * @volume: volume level
  7786. *
  7787. * Returns 0 on success or error on failure
  7788. */
  7789. int q6asm_set_volume(struct audio_client *ac, int volume)
  7790. {
  7791. return __q6asm_set_volume(ac, volume, SOFT_VOLUME_INSTANCE_1);
  7792. }
  7793. EXPORT_SYMBOL(q6asm_set_volume);
  7794. int q6asm_set_volume_v2(struct audio_client *ac, int volume, int instance)
  7795. {
  7796. return __q6asm_set_volume(ac, volume, instance);
  7797. }
  7798. /**
  7799. * q6asm_set_aptx_dec_bt_addr -
  7800. * command to aptx decoder BT addr for ASM
  7801. *
  7802. * @ac: Audio client handle
  7803. * @cfg: APTX decoder bt addr config
  7804. *
  7805. * Returns 0 on success or error on failure
  7806. */
  7807. int q6asm_set_aptx_dec_bt_addr(struct audio_client *ac,
  7808. struct aptx_dec_bt_addr_cfg *cfg)
  7809. {
  7810. struct aptx_dec_bt_dev_addr paylod;
  7811. int sz = 0;
  7812. int rc = 0;
  7813. pr_debug("%s: BT addr nap %d, uap %d, lap %d\n", __func__, cfg->nap,
  7814. cfg->uap, cfg->lap);
  7815. if (ac == NULL) {
  7816. pr_err("%s: AC handle NULL\n", __func__);
  7817. rc = -EINVAL;
  7818. goto fail_cmd;
  7819. }
  7820. if (ac->apr == NULL) {
  7821. pr_err("%s: AC APR handle NULL\n", __func__);
  7822. rc = -EINVAL;
  7823. goto fail_cmd;
  7824. }
  7825. sz = sizeof(struct aptx_dec_bt_dev_addr);
  7826. q6asm_add_hdr_async(ac, &paylod.hdr, sz, TRUE);
  7827. atomic_set(&ac->cmd_state, -1);
  7828. paylod.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM;
  7829. paylod.encdec.param_id = APTX_DECODER_BT_ADDRESS;
  7830. paylod.encdec.param_size = sz - sizeof(paylod.hdr)
  7831. - sizeof(paylod.encdec);
  7832. paylod.bt_addr_cfg.lap = cfg->lap;
  7833. paylod.bt_addr_cfg.uap = cfg->uap;
  7834. paylod.bt_addr_cfg.nap = cfg->nap;
  7835. rc = apr_send_pkt(ac->apr, (uint32_t *) &paylod);
  7836. if (rc < 0) {
  7837. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7838. __func__, paylod.encdec.param_id, rc);
  7839. rc = -EINVAL;
  7840. goto fail_cmd;
  7841. }
  7842. rc = wait_event_timeout(ac->cmd_wait,
  7843. (atomic_read(&ac->cmd_state) >= 0),
  7844. msecs_to_jiffies(TIMEOUT_MS));
  7845. if (!rc) {
  7846. pr_err("%s: timeout, set-params paramid[0x%x]\n", __func__,
  7847. paylod.encdec.param_id);
  7848. rc = -ETIMEDOUT;
  7849. goto fail_cmd;
  7850. }
  7851. if (atomic_read(&ac->cmd_state) > 0) {
  7852. pr_err("%s: DSP returned error[%s] set-params paramid[0x%x]\n",
  7853. __func__, adsp_err_get_err_str(
  7854. atomic_read(&ac->cmd_state)),
  7855. paylod.encdec.param_id);
  7856. rc = adsp_err_get_lnx_err_code(
  7857. atomic_read(&ac->cmd_state));
  7858. goto fail_cmd;
  7859. }
  7860. pr_debug("%s: set BT addr is success\n", __func__);
  7861. rc = 0;
  7862. fail_cmd:
  7863. return rc;
  7864. }
  7865. EXPORT_SYMBOL(q6asm_set_aptx_dec_bt_addr);
  7866. /**
  7867. * q6asm_send_ion_fd -
  7868. * command to send ION memory map for ASM
  7869. *
  7870. * @ac: Audio client handle
  7871. * @fd: ION file desc
  7872. *
  7873. * Returns 0 on success or error on failure
  7874. */
  7875. int q6asm_send_ion_fd(struct audio_client *ac, int fd)
  7876. {
  7877. struct dma_buf *dma_buf;
  7878. dma_addr_t paddr;
  7879. size_t pa_len = 0;
  7880. void *vaddr;
  7881. int ret;
  7882. int sz = 0;
  7883. struct avs_rtic_shared_mem_addr shm;
  7884. if (ac == NULL) {
  7885. pr_err("%s: APR handle NULL\n", __func__);
  7886. ret = -EINVAL;
  7887. goto fail_cmd;
  7888. }
  7889. if (ac->apr == NULL) {
  7890. pr_err("%s: AC APR handle NULL\n", __func__);
  7891. ret = -EINVAL;
  7892. goto fail_cmd;
  7893. }
  7894. ret = msm_audio_ion_import(&dma_buf,
  7895. fd,
  7896. NULL,
  7897. 0,
  7898. &paddr,
  7899. &pa_len,
  7900. &vaddr);
  7901. if (ret) {
  7902. pr_err("%s: audio ION import failed, rc = %d\n",
  7903. __func__, ret);
  7904. ret = -ENOMEM;
  7905. goto fail_cmd;
  7906. }
  7907. /* get payload length */
  7908. sz = sizeof(struct avs_rtic_shared_mem_addr);
  7909. q6asm_add_hdr_async(ac, &shm.hdr, sz, TRUE);
  7910. atomic_set(&ac->cmd_state, -1);
  7911. shm.shm_buf_addr_lsw = lower_32_bits(paddr);
  7912. shm.shm_buf_addr_msw = msm_audio_populate_upper_32_bits(paddr);
  7913. shm.buf_size = pa_len;
  7914. shm.shm_buf_num_regions = 1;
  7915. shm.shm_buf_mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  7916. shm.shm_buf_flag = 0x00;
  7917. shm.encdec.param_id = AVS_PARAM_ID_RTIC_SHARED_MEMORY_ADDR;
  7918. shm.encdec.param_size = sizeof(struct avs_rtic_shared_mem_addr) -
  7919. sizeof(struct apr_hdr) -
  7920. sizeof(struct asm_stream_cmd_set_encdec_param_v2);
  7921. shm.encdec.service_id = OUT;
  7922. shm.encdec.reserved = 0;
  7923. shm.map_region.shm_addr_lsw = shm.shm_buf_addr_lsw;
  7924. shm.map_region.shm_addr_msw = shm.shm_buf_addr_msw;
  7925. shm.map_region.mem_size_bytes = pa_len;
  7926. shm.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2;
  7927. ret = apr_send_pkt(ac->apr, (uint32_t *) &shm);
  7928. if (ret < 0) {
  7929. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  7930. __func__, shm.encdec.param_id, ret);
  7931. ret = -EINVAL;
  7932. goto fail_cmd;
  7933. }
  7934. ret = wait_event_timeout(ac->cmd_wait,
  7935. (atomic_read(&ac->cmd_state) >= 0),
  7936. msecs_to_jiffies(TIMEOUT_MS));
  7937. if (!ret) {
  7938. pr_err("%s: timeout, shm.encdec paramid[0x%x]\n", __func__,
  7939. shm.encdec.param_id);
  7940. ret = -ETIMEDOUT;
  7941. goto fail_cmd;
  7942. }
  7943. if (atomic_read(&ac->cmd_state) > 0) {
  7944. pr_err("%s: DSP returned error[%s] shm.encdec paramid[0x%x]\n",
  7945. __func__,
  7946. adsp_err_get_err_str(atomic_read(&ac->cmd_state)),
  7947. shm.encdec.param_id);
  7948. ret = adsp_err_get_lnx_err_code(atomic_read(&ac->cmd_state));
  7949. goto fail_cmd;
  7950. }
  7951. ret = 0;
  7952. fail_cmd:
  7953. return ret;
  7954. }
  7955. EXPORT_SYMBOL(q6asm_send_ion_fd);
  7956. /**
  7957. * q6asm_send_rtic_event_ack -
  7958. * command to send RTIC event ack
  7959. *
  7960. * @ac: Audio client handle
  7961. * @param: params for event ack
  7962. * @params_length: length of params
  7963. *
  7964. * Returns 0 on success or error on failure
  7965. */
  7966. int q6asm_send_rtic_event_ack(struct audio_client *ac,
  7967. void *param, uint32_t params_length)
  7968. {
  7969. char *asm_params = NULL;
  7970. int sz, rc;
  7971. struct avs_param_rtic_event_ack ack;
  7972. if (!param || !ac) {
  7973. pr_err("%s: %s is NULL\n", __func__,
  7974. (!param) ? "param" : "ac");
  7975. rc = -EINVAL;
  7976. goto done;
  7977. }
  7978. sz = sizeof(struct avs_param_rtic_event_ack) + params_length;
  7979. asm_params = kzalloc(sz, GFP_KERNEL);
  7980. if (!asm_params) {
  7981. rc = -ENOMEM;
  7982. goto done;
  7983. }
  7984. q6asm_add_hdr_async(ac, &ack.hdr,
  7985. sizeof(struct avs_param_rtic_event_ack) +
  7986. params_length, TRUE);
  7987. atomic_set(&ac->cmd_state, -1);
  7988. ack.hdr.opcode = ASM_STREAM_CMD_SET_ENCDEC_PARAM_V2;
  7989. ack.encdec.param_id = AVS_PARAM_ID_RTIC_EVENT_ACK;
  7990. ack.encdec.param_size = params_length;
  7991. ack.encdec.reserved = 0;
  7992. ack.encdec.service_id = OUT;
  7993. memcpy(asm_params, &ack, sizeof(struct avs_param_rtic_event_ack));
  7994. memcpy(asm_params + sizeof(struct avs_param_rtic_event_ack),
  7995. param, params_length);
  7996. rc = apr_send_pkt(ac->apr, (uint32_t *) asm_params);
  7997. if (rc < 0) {
  7998. pr_err("%s: apr pkt failed for rtic event ack\n", __func__);
  7999. rc = -EINVAL;
  8000. goto fail_send_param;
  8001. }
  8002. rc = wait_event_timeout(ac->cmd_wait,
  8003. (atomic_read(&ac->cmd_state) >= 0),
  8004. msecs_to_jiffies(TIMEOUT_MS));
  8005. if (!rc) {
  8006. pr_err("%s: timeout for rtic event ack cmd\n", __func__);
  8007. rc = -ETIMEDOUT;
  8008. goto fail_send_param;
  8009. }
  8010. if (atomic_read(&ac->cmd_state) > 0) {
  8011. pr_err("%s: DSP returned error[%s] for rtic event ack cmd\n",
  8012. __func__, adsp_err_get_err_str(
  8013. atomic_read(&ac->cmd_state)));
  8014. rc = adsp_err_get_lnx_err_code(
  8015. atomic_read(&ac->cmd_state));
  8016. goto fail_send_param;
  8017. }
  8018. rc = 0;
  8019. fail_send_param:
  8020. kfree(asm_params);
  8021. done:
  8022. return rc;
  8023. }
  8024. EXPORT_SYMBOL(q6asm_send_rtic_event_ack);
  8025. /**
  8026. * q6asm_set_softpause -
  8027. * command to set pause for ASM
  8028. *
  8029. * @ac: Audio client handle
  8030. * @pause_param: params for pause
  8031. *
  8032. * Returns 0 on success or error on failure
  8033. */
  8034. int q6asm_set_softpause(struct audio_client *ac,
  8035. struct asm_softpause_params *pause_param)
  8036. {
  8037. struct asm_soft_pause_params softpause;
  8038. struct param_hdr_v3 param_info;
  8039. int rc = 0;
  8040. memset(&softpause, 0, sizeof(softpause));
  8041. memset(&param_info, 0, sizeof(param_info));
  8042. param_info.module_id = ASM_MODULE_ID_VOL_CTRL;
  8043. param_info.instance_id = INSTANCE_ID_0;
  8044. param_info.param_id = ASM_PARAM_ID_SOFT_PAUSE_PARAMETERS;
  8045. param_info.param_size = sizeof(softpause);
  8046. softpause.enable_flag = pause_param->enable;
  8047. softpause.period = pause_param->period;
  8048. softpause.step = pause_param->step;
  8049. softpause.ramping_curve = pause_param->rampingcurve;
  8050. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  8051. (u8 *) &softpause);
  8052. if (rc)
  8053. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  8054. __func__, param_info.param_id, rc);
  8055. return rc;
  8056. }
  8057. EXPORT_SYMBOL(q6asm_set_softpause);
  8058. static int __q6asm_set_softvolume(struct audio_client *ac,
  8059. struct asm_softvolume_params *softvol_param,
  8060. int instance)
  8061. {
  8062. struct asm_soft_step_volume_params softvol;
  8063. struct param_hdr_v3 param_info;
  8064. int rc = 0;
  8065. memset(&softvol, 0, sizeof(softvol));
  8066. memset(&param_info, 0, sizeof(param_info));
  8067. rc = q6asm_set_soft_volume_module_instance_ids(instance, &param_info);
  8068. if (rc) {
  8069. pr_err("%s: Failed to pack soft volume module and instance IDs, error %d\n",
  8070. __func__, rc);
  8071. return rc;
  8072. }
  8073. param_info.param_id = ASM_PARAM_ID_SOFT_VOL_STEPPING_PARAMETERS;
  8074. param_info.param_size = sizeof(softvol);
  8075. softvol.period = softvol_param->period;
  8076. softvol.step = softvol_param->step;
  8077. softvol.ramping_curve = softvol_param->rampingcurve;
  8078. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info,
  8079. (u8 *) &softvol);
  8080. if (rc)
  8081. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  8082. __func__, param_info.param_id, rc);
  8083. return rc;
  8084. }
  8085. /**
  8086. * q6asm_set_softvolume -
  8087. * command to set softvolume for ASM
  8088. *
  8089. * @ac: Audio client handle
  8090. * @softvol_param: params for softvol
  8091. *
  8092. * Returns 0 on success or error on failure
  8093. */
  8094. int q6asm_set_softvolume(struct audio_client *ac,
  8095. struct asm_softvolume_params *softvol_param)
  8096. {
  8097. return __q6asm_set_softvolume(ac, softvol_param,
  8098. SOFT_VOLUME_INSTANCE_1);
  8099. }
  8100. EXPORT_SYMBOL(q6asm_set_softvolume);
  8101. /**
  8102. * q6asm_set_softvolume_v2 -
  8103. * command to set softvolume V2 for ASM
  8104. *
  8105. * @ac: Audio client handle
  8106. * @softvol_param: params for softvol
  8107. * @instance: instance to apply softvol
  8108. *
  8109. * Returns 0 on success or error on failure
  8110. */
  8111. int q6asm_set_softvolume_v2(struct audio_client *ac,
  8112. struct asm_softvolume_params *softvol_param,
  8113. int instance)
  8114. {
  8115. return __q6asm_set_softvolume(ac, softvol_param, instance);
  8116. }
  8117. EXPORT_SYMBOL(q6asm_set_softvolume_v2);
  8118. /**
  8119. * q6asm_equalizer -
  8120. * command to set equalizer for ASM
  8121. *
  8122. * @ac: Audio client handle
  8123. * @eq_p: Equalizer params
  8124. *
  8125. * Returns 0 on success or error on failure
  8126. */
  8127. int q6asm_equalizer(struct audio_client *ac, void *eq_p)
  8128. {
  8129. struct asm_eq_params eq;
  8130. struct msm_audio_eq_stream_config *eq_params = NULL;
  8131. struct param_hdr_v3 param_info;
  8132. int i = 0;
  8133. int rc = 0;
  8134. if (ac == NULL) {
  8135. pr_err("%s: Audio client is NULL\n", __func__);
  8136. return -EINVAL;
  8137. }
  8138. if (eq_p == NULL) {
  8139. pr_err("%s: [%d]: Invalid Eq param\n", __func__, ac->session);
  8140. rc = -EINVAL;
  8141. goto fail_cmd;
  8142. }
  8143. memset(&eq, 0, sizeof(eq));
  8144. memset(&param_info, 0, sizeof(param_info));
  8145. eq_params = (struct msm_audio_eq_stream_config *) eq_p;
  8146. param_info.module_id = ASM_MODULE_ID_EQUALIZER;
  8147. param_info.instance_id = INSTANCE_ID_0;
  8148. param_info.param_id = ASM_PARAM_ID_EQUALIZER_PARAMETERS;
  8149. param_info.param_size = sizeof(eq);
  8150. eq.enable_flag = eq_params->enable;
  8151. eq.num_bands = eq_params->num_bands;
  8152. pr_debug("%s: enable:%d numbands:%d\n", __func__, eq_params->enable,
  8153. eq_params->num_bands);
  8154. for (i = 0; i < eq_params->num_bands; i++) {
  8155. eq.eq_bands[i].band_idx =
  8156. eq_params->eq_bands[i].band_idx;
  8157. eq.eq_bands[i].filterype =
  8158. eq_params->eq_bands[i].filter_type;
  8159. eq.eq_bands[i].center_freq_hz =
  8160. eq_params->eq_bands[i].center_freq_hz;
  8161. eq.eq_bands[i].filter_gain =
  8162. eq_params->eq_bands[i].filter_gain;
  8163. eq.eq_bands[i].q_factor =
  8164. eq_params->eq_bands[i].q_factor;
  8165. pr_debug("%s: filter_type:%u bandnum:%d\n", __func__,
  8166. eq_params->eq_bands[i].filter_type, i);
  8167. pr_debug("%s: center_freq_hz:%u bandnum:%d\n", __func__,
  8168. eq_params->eq_bands[i].center_freq_hz, i);
  8169. pr_debug("%s: filter_gain:%d bandnum:%d\n", __func__,
  8170. eq_params->eq_bands[i].filter_gain, i);
  8171. pr_debug("%s: q_factor:%d bandnum:%d\n", __func__,
  8172. eq_params->eq_bands[i].q_factor, i);
  8173. }
  8174. rc = q6asm_pack_and_set_pp_param_in_band(ac, param_info, (u8 *) &eq);
  8175. if (rc)
  8176. pr_err("%s: set-params send failed paramid[0x%x] rc %d\n",
  8177. __func__, param_info.param_id, rc);
  8178. fail_cmd:
  8179. return rc;
  8180. }
  8181. EXPORT_SYMBOL(q6asm_equalizer);
  8182. static int __q6asm_read(struct audio_client *ac, bool is_custom_len_reqd,
  8183. int len)
  8184. {
  8185. struct asm_data_cmd_read_v2 read;
  8186. struct asm_buffer_node *buf_node = NULL;
  8187. struct list_head *ptr, *next;
  8188. struct audio_buffer *ab;
  8189. int dsp_buf;
  8190. struct audio_port_data *port;
  8191. int rc;
  8192. if (ac == NULL) {
  8193. pr_err("%s: APR handle NULL\n", __func__);
  8194. return -EINVAL;
  8195. }
  8196. if (ac->apr == NULL) {
  8197. pr_err("%s: AC APR handle NULL\n", __func__);
  8198. return -EINVAL;
  8199. }
  8200. if (ac->io_mode & SYNC_IO_MODE) {
  8201. port = &ac->port[OUT];
  8202. q6asm_add_hdr(ac, &read.hdr, sizeof(read), FALSE);
  8203. mutex_lock(&port->lock);
  8204. dsp_buf = port->dsp_buf;
  8205. if (port->buf == NULL) {
  8206. pr_err("%s: buf is NULL\n", __func__);
  8207. mutex_unlock(&port->lock);
  8208. return -EINVAL;
  8209. }
  8210. ab = &port->buf[dsp_buf];
  8211. dev_vdbg(ac->dev, "%s: session[%d]dsp-buf[%d][%pK]cpu_buf[%d][%pK]\n",
  8212. __func__,
  8213. ac->session,
  8214. dsp_buf,
  8215. port->buf[dsp_buf].data,
  8216. port->cpu_buf,
  8217. &port->buf[port->cpu_buf].phys);
  8218. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8219. read.buf_addr_lsw = lower_32_bits(ab->phys);
  8220. read.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8221. list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
  8222. buf_node = list_entry(ptr, struct asm_buffer_node,
  8223. list);
  8224. if (buf_node->buf_phys_addr == ab->phys) {
  8225. read.mem_map_handle = buf_node->mmap_hdl;
  8226. break;
  8227. }
  8228. }
  8229. dev_vdbg(ac->dev, "memory_map handle in q6asm_read: [%0x]:",
  8230. read.mem_map_handle);
  8231. read.buf_size = is_custom_len_reqd ? len : ab->size;
  8232. read.seq_id = port->dsp_buf;
  8233. q6asm_update_token(&read.hdr.token,
  8234. 0, /* Session ID is NA */
  8235. 0, /* Stream ID is NA */
  8236. port->dsp_buf,
  8237. 0, /* Direction flag is NA */
  8238. WAIT_CMD);
  8239. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8240. port->max_buf_cnt);
  8241. mutex_unlock(&port->lock);
  8242. dev_vdbg(ac->dev, "%s: buf add[%pK] token[0x%x] uid[%d]\n",
  8243. __func__, &ab->phys, read.hdr.token,
  8244. read.seq_id);
  8245. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8246. if (rc < 0) {
  8247. pr_err("%s: read op[0x%x]rc[%d]\n",
  8248. __func__, read.hdr.opcode, rc);
  8249. goto fail_cmd;
  8250. }
  8251. return 0;
  8252. }
  8253. fail_cmd:
  8254. return -EINVAL;
  8255. }
  8256. /**
  8257. * q6asm_read -
  8258. * command to read buffer data from DSP
  8259. *
  8260. * @ac: Audio client handle
  8261. *
  8262. * Returns 0 on success or error on failure
  8263. */
  8264. int q6asm_read(struct audio_client *ac)
  8265. {
  8266. return __q6asm_read(ac, false/*is_custom_len_reqd*/, 0);
  8267. }
  8268. EXPORT_SYMBOL(q6asm_read);
  8269. /**
  8270. * q6asm_read_v2 -
  8271. * command to read buffer data from DSP
  8272. *
  8273. * @ac: Audio client handle
  8274. * @len: buffer size to read
  8275. *
  8276. * Returns 0 on success or error on failure
  8277. */
  8278. int q6asm_read_v2(struct audio_client *ac, uint32_t len)
  8279. {
  8280. return __q6asm_read(ac, true /*is_custom_len_reqd*/, len);
  8281. }
  8282. EXPORT_SYMBOL(q6asm_read_v2);
  8283. /**
  8284. * q6asm_read_nolock -
  8285. * command to read buffer data from DSP
  8286. * with no wait for ack.
  8287. *
  8288. * @ac: Audio client handle
  8289. *
  8290. * Returns 0 on success or error on failure
  8291. */
  8292. int q6asm_read_nolock(struct audio_client *ac)
  8293. {
  8294. struct asm_data_cmd_read_v2 read;
  8295. struct asm_buffer_node *buf_node = NULL;
  8296. struct list_head *ptr, *next;
  8297. struct audio_buffer *ab;
  8298. int dsp_buf;
  8299. struct audio_port_data *port;
  8300. int rc;
  8301. if (ac == NULL) {
  8302. pr_err("%s: APR handle NULL\n", __func__);
  8303. return -EINVAL;
  8304. }
  8305. if (ac->apr == NULL) {
  8306. pr_err("%s: AC APR handle NULL\n", __func__);
  8307. return -EINVAL;
  8308. }
  8309. if (ac->io_mode & SYNC_IO_MODE) {
  8310. port = &ac->port[OUT];
  8311. q6asm_add_hdr_async(ac, &read.hdr, sizeof(read), FALSE);
  8312. dsp_buf = port->dsp_buf;
  8313. ab = &port->buf[dsp_buf];
  8314. dev_vdbg(ac->dev, "%s: session[%d]dsp-buf[%d][%pK]cpu_buf[%d][%pK]\n",
  8315. __func__,
  8316. ac->session,
  8317. dsp_buf,
  8318. port->buf[dsp_buf].data,
  8319. port->cpu_buf,
  8320. &port->buf[port->cpu_buf].phys);
  8321. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8322. read.buf_addr_lsw = lower_32_bits(ab->phys);
  8323. read.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8324. read.buf_size = ab->size;
  8325. read.seq_id = port->dsp_buf;
  8326. q6asm_update_token(&read.hdr.token,
  8327. 0, /* Session ID is NA */
  8328. 0, /* Stream ID is NA */
  8329. port->dsp_buf,
  8330. 0, /* Direction flag is NA */
  8331. WAIT_CMD);
  8332. list_for_each_safe(ptr, next, &ac->port[OUT].mem_map_handle) {
  8333. buf_node = list_entry(ptr, struct asm_buffer_node,
  8334. list);
  8335. if (buf_node->buf_phys_addr == ab->phys) {
  8336. read.mem_map_handle = buf_node->mmap_hdl;
  8337. break;
  8338. }
  8339. }
  8340. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8341. port->max_buf_cnt);
  8342. dev_vdbg(ac->dev, "%s: buf add[%pK] token[0x%x] uid[%d]\n",
  8343. __func__, &ab->phys, read.hdr.token,
  8344. read.seq_id);
  8345. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8346. if (rc < 0) {
  8347. pr_err("%s: read op[0x%x]rc[%d]\n",
  8348. __func__, read.hdr.opcode, rc);
  8349. goto fail_cmd;
  8350. }
  8351. return 0;
  8352. }
  8353. fail_cmd:
  8354. return -EINVAL;
  8355. }
  8356. EXPORT_SYMBOL(q6asm_read_nolock);
  8357. /**
  8358. * q6asm_async_write -
  8359. * command to write DSP buffer
  8360. *
  8361. * @ac: Audio client handle
  8362. * @param: params for async write
  8363. *
  8364. * Returns 0 on success or error on failure
  8365. */
  8366. int q6asm_async_write(struct audio_client *ac,
  8367. struct audio_aio_write_param *param)
  8368. {
  8369. int rc = 0;
  8370. struct asm_data_cmd_write_v2 write;
  8371. struct asm_buffer_node *buf_node = NULL;
  8372. struct list_head *ptr, *next;
  8373. struct audio_buffer *ab;
  8374. struct audio_port_data *port;
  8375. phys_addr_t lbuf_phys_addr;
  8376. u32 liomode;
  8377. u32 io_compressed;
  8378. u32 io_compressed_stream;
  8379. if (ac == NULL) {
  8380. pr_err("%s: APR handle NULL\n", __func__);
  8381. return -EINVAL;
  8382. }
  8383. if (ac->apr == NULL) {
  8384. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  8385. return -EINVAL;
  8386. }
  8387. q6asm_stream_add_hdr_async(
  8388. ac, &write.hdr, sizeof(write), TRUE, ac->stream_id);
  8389. port = &ac->port[IN];
  8390. ab = &port->buf[port->dsp_buf];
  8391. /* Pass session id as token for AIO scheme */
  8392. write.hdr.token = param->uid;
  8393. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8394. write.buf_addr_lsw = lower_32_bits(param->paddr);
  8395. write.buf_addr_msw = msm_audio_populate_upper_32_bits(param->paddr);
  8396. write.buf_size = param->len;
  8397. write.timestamp_msw = param->msw_ts;
  8398. write.timestamp_lsw = param->lsw_ts;
  8399. liomode = (ASYNC_IO_MODE | NT_MODE);
  8400. io_compressed = (ASYNC_IO_MODE | COMPRESSED_IO);
  8401. io_compressed_stream = (ASYNC_IO_MODE | COMPRESSED_STREAM_IO);
  8402. if (ac->io_mode == liomode)
  8403. lbuf_phys_addr = (param->paddr - 32);
  8404. else if (ac->io_mode == io_compressed ||
  8405. ac->io_mode == io_compressed_stream)
  8406. lbuf_phys_addr = (param->paddr - param->metadata_len);
  8407. else {
  8408. if (param->flags & SET_TIMESTAMP)
  8409. lbuf_phys_addr = param->paddr -
  8410. sizeof(struct snd_codec_metadata);
  8411. else
  8412. lbuf_phys_addr = param->paddr;
  8413. }
  8414. 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",
  8415. __func__,
  8416. write.hdr.token, &param->paddr,
  8417. write.buf_size, write.timestamp_msw,
  8418. write.timestamp_lsw, &lbuf_phys_addr);
  8419. /* Use 0xFF00 for disabling timestamps */
  8420. if (param->flags == 0xFF00)
  8421. write.flags = (0x00000000 | (param->flags & 0x800000FF));
  8422. else
  8423. write.flags = (0x80000000 | param->flags);
  8424. write.flags |= param->last_buffer << ASM_SHIFT_LAST_BUFFER_FLAG;
  8425. write.seq_id = param->uid;
  8426. list_for_each_safe(ptr, next, &ac->port[IN].mem_map_handle) {
  8427. buf_node = list_entry(ptr, struct asm_buffer_node,
  8428. list);
  8429. if (buf_node->buf_phys_addr == lbuf_phys_addr) {
  8430. write.mem_map_handle = buf_node->mmap_hdl;
  8431. break;
  8432. }
  8433. }
  8434. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8435. if (rc < 0) {
  8436. pr_err("%s: write op[0x%x]rc[%d]\n", __func__,
  8437. write.hdr.opcode, rc);
  8438. goto fail_cmd;
  8439. }
  8440. return 0;
  8441. fail_cmd:
  8442. return -EINVAL;
  8443. }
  8444. EXPORT_SYMBOL(q6asm_async_write);
  8445. /**
  8446. * q6asm_async_read -
  8447. * command to read DSP buffer
  8448. *
  8449. * @ac: Audio client handle
  8450. * @param: params for async read
  8451. *
  8452. * Returns 0 on success or error on failure
  8453. */
  8454. int q6asm_async_read(struct audio_client *ac,
  8455. struct audio_aio_read_param *param)
  8456. {
  8457. int rc = 0;
  8458. struct asm_data_cmd_read_v2 read;
  8459. struct asm_buffer_node *buf_node = NULL;
  8460. struct list_head *ptr, *next;
  8461. phys_addr_t lbuf_phys_addr;
  8462. u32 liomode;
  8463. u32 io_compressed;
  8464. int dir = 0;
  8465. if (ac == NULL) {
  8466. pr_err("%s: APR handle NULL\n", __func__);
  8467. return -EINVAL;
  8468. }
  8469. if (ac->apr == NULL) {
  8470. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  8471. return -EINVAL;
  8472. }
  8473. q6asm_add_hdr_async(ac, &read.hdr, sizeof(read), FALSE);
  8474. /* Pass session id as token for AIO scheme */
  8475. read.hdr.token = param->uid;
  8476. read.hdr.opcode = ASM_DATA_CMD_READ_V2;
  8477. read.buf_addr_lsw = lower_32_bits(param->paddr);
  8478. read.buf_addr_msw = msm_audio_populate_upper_32_bits(param->paddr);
  8479. read.buf_size = param->len;
  8480. read.seq_id = param->uid;
  8481. liomode = (NT_MODE | ASYNC_IO_MODE);
  8482. io_compressed = (ASYNC_IO_MODE | COMPRESSED_IO);
  8483. if (ac->io_mode == liomode) {
  8484. lbuf_phys_addr = (param->paddr - 32);
  8485. /*legacy wma driver case*/
  8486. dir = IN;
  8487. } else if (ac->io_mode == io_compressed) {
  8488. lbuf_phys_addr = (param->paddr - 64);
  8489. dir = OUT;
  8490. } else {
  8491. if (param->flags & COMPRESSED_TIMESTAMP_FLAG)
  8492. lbuf_phys_addr = param->paddr -
  8493. sizeof(struct snd_codec_metadata);
  8494. else
  8495. lbuf_phys_addr = param->paddr;
  8496. dir = OUT;
  8497. }
  8498. list_for_each_safe(ptr, next, &ac->port[dir].mem_map_handle) {
  8499. buf_node = list_entry(ptr, struct asm_buffer_node,
  8500. list);
  8501. if (buf_node->buf_phys_addr == lbuf_phys_addr) {
  8502. read.mem_map_handle = buf_node->mmap_hdl;
  8503. break;
  8504. }
  8505. }
  8506. rc = apr_send_pkt(ac->apr, (uint32_t *) &read);
  8507. if (rc < 0) {
  8508. pr_err("%s: read op[0x%x]rc[%d]\n", __func__,
  8509. read.hdr.opcode, rc);
  8510. goto fail_cmd;
  8511. }
  8512. return 0;
  8513. fail_cmd:
  8514. return -EINVAL;
  8515. }
  8516. EXPORT_SYMBOL(q6asm_async_read);
  8517. /**
  8518. * q6asm_write -
  8519. * command to write buffer data to DSP
  8520. *
  8521. * @ac: Audio client handle
  8522. * @len: buffer size
  8523. * @msw_ts: upper 32bits of timestamp
  8524. * @lsw_ts: lower 32bits of timestamp
  8525. * @flags: Flags for timestamp mode
  8526. *
  8527. * Returns 0 on success or error on failure
  8528. */
  8529. int q6asm_write(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  8530. uint32_t lsw_ts, uint32_t flags)
  8531. {
  8532. int rc = 0;
  8533. struct asm_data_cmd_write_v2 write;
  8534. struct asm_buffer_node *buf_node = NULL;
  8535. struct audio_port_data *port;
  8536. struct audio_buffer *ab;
  8537. int dsp_buf = 0;
  8538. if (ac == NULL) {
  8539. pr_err("%s: APR handle NULL\n", __func__);
  8540. return -EINVAL;
  8541. }
  8542. if (ac->apr == NULL) {
  8543. pr_err("%s: AC APR handle NULL\n", __func__);
  8544. return -EINVAL;
  8545. }
  8546. dev_vdbg(ac->dev, "%s: session[%d] len=%d\n",
  8547. __func__, ac->session, len);
  8548. if (ac->io_mode & SYNC_IO_MODE) {
  8549. port = &ac->port[IN];
  8550. q6asm_add_hdr(ac, &write.hdr, sizeof(write),
  8551. FALSE);
  8552. mutex_lock(&port->lock);
  8553. dsp_buf = port->dsp_buf;
  8554. ab = &port->buf[dsp_buf];
  8555. q6asm_update_token(&write.hdr.token,
  8556. 0, /* Session ID is NA */
  8557. 0, /* Stream ID is NA */
  8558. port->dsp_buf,
  8559. 0, /* Direction flag is NA */
  8560. NO_WAIT_CMD);
  8561. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8562. write.buf_addr_lsw = lower_32_bits(ab->phys);
  8563. write.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8564. write.buf_size = len;
  8565. write.seq_id = port->dsp_buf;
  8566. write.timestamp_lsw = lsw_ts;
  8567. write.timestamp_msw = msw_ts;
  8568. /* Use 0xFF00 for disabling timestamps */
  8569. if (flags == 0xFF00)
  8570. write.flags = (0x00000000 | (flags & 0x800000FF));
  8571. else
  8572. write.flags = (0x80000000 | flags);
  8573. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8574. port->max_buf_cnt);
  8575. buf_node = list_first_entry(&ac->port[IN].mem_map_handle,
  8576. struct asm_buffer_node,
  8577. list);
  8578. write.mem_map_handle = buf_node->mmap_hdl;
  8579. 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]"
  8580. , __func__,
  8581. &ab->phys,
  8582. write.buf_addr_lsw,
  8583. write.hdr.token,
  8584. write.seq_id,
  8585. write.buf_size,
  8586. write.mem_map_handle);
  8587. mutex_unlock(&port->lock);
  8588. config_debug_fs_write(ab);
  8589. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8590. if (rc < 0) {
  8591. pr_err("%s: write op[0x%x]rc[%d]\n",
  8592. __func__, write.hdr.opcode, rc);
  8593. goto fail_cmd;
  8594. }
  8595. return 0;
  8596. }
  8597. fail_cmd:
  8598. return -EINVAL;
  8599. }
  8600. EXPORT_SYMBOL(q6asm_write);
  8601. /**
  8602. * q6asm_write_nolock -
  8603. * command to write buffer data to DSP
  8604. * with no wait for ack.
  8605. *
  8606. * @ac: Audio client handle
  8607. * @len: buffer size
  8608. * @msw_ts: upper 32bits of timestamp
  8609. * @lsw_ts: lower 32bits of timestamp
  8610. * @flags: Flags for timestamp mode
  8611. *
  8612. * Returns 0 on success or error on failure
  8613. */
  8614. int q6asm_write_nolock(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  8615. uint32_t lsw_ts, uint32_t flags)
  8616. {
  8617. int rc = 0;
  8618. struct asm_data_cmd_write_v2 write;
  8619. struct asm_buffer_node *buf_node = NULL;
  8620. struct audio_port_data *port;
  8621. struct audio_buffer *ab;
  8622. int dsp_buf = 0;
  8623. if (ac == NULL) {
  8624. pr_err("%s: APR handle NULL\n", __func__);
  8625. return -EINVAL;
  8626. }
  8627. if (ac->apr == NULL) {
  8628. pr_err("%s: AC APR handle NULL\n", __func__);
  8629. return -EINVAL;
  8630. }
  8631. dev_vdbg(ac->dev, "%s: session[%d] len=%d\n",
  8632. __func__, ac->session, len);
  8633. if (ac->io_mode & SYNC_IO_MODE) {
  8634. port = &ac->port[IN];
  8635. q6asm_add_hdr_async(ac, &write.hdr, sizeof(write),
  8636. FALSE);
  8637. dsp_buf = port->dsp_buf;
  8638. ab = &port->buf[dsp_buf];
  8639. q6asm_update_token(&write.hdr.token,
  8640. 0, /* Session ID is NA */
  8641. 0, /* Stream ID is NA */
  8642. port->dsp_buf,
  8643. 0, /* Direction flag is NA */
  8644. NO_WAIT_CMD);
  8645. write.hdr.opcode = ASM_DATA_CMD_WRITE_V2;
  8646. write.buf_addr_lsw = lower_32_bits(ab->phys);
  8647. write.buf_addr_msw = msm_audio_populate_upper_32_bits(ab->phys);
  8648. write.buf_size = len;
  8649. write.seq_id = port->dsp_buf;
  8650. write.timestamp_lsw = lsw_ts;
  8651. write.timestamp_msw = msw_ts;
  8652. buf_node = list_first_entry(&ac->port[IN].mem_map_handle,
  8653. struct asm_buffer_node,
  8654. list);
  8655. write.mem_map_handle = buf_node->mmap_hdl;
  8656. /* Use 0xFF00 for disabling timestamps */
  8657. if (flags == 0xFF00)
  8658. write.flags = (0x00000000 | (flags & 0x800000FF));
  8659. else
  8660. write.flags = (0x80000000 | flags);
  8661. port->dsp_buf = q6asm_get_next_buf(ac, port->dsp_buf,
  8662. port->max_buf_cnt);
  8663. 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]"
  8664. , __func__,
  8665. &ab->phys,
  8666. write.buf_addr_lsw,
  8667. write.hdr.token,
  8668. write.seq_id,
  8669. write.buf_size,
  8670. write.mem_map_handle);
  8671. rc = apr_send_pkt(ac->apr, (uint32_t *) &write);
  8672. if (rc < 0) {
  8673. pr_err("%s: write op[0x%x]rc[%d]\n",
  8674. __func__, write.hdr.opcode, rc);
  8675. goto fail_cmd;
  8676. }
  8677. return 0;
  8678. }
  8679. fail_cmd:
  8680. return -EINVAL;
  8681. }
  8682. EXPORT_SYMBOL(q6asm_write_nolock);
  8683. /**
  8684. * q6asm_get_session_time -
  8685. * command to retrieve timestamp info
  8686. *
  8687. * @ac: Audio client handle
  8688. * @tstamp: pointer to fill with timestamp info
  8689. *
  8690. * Returns 0 on success or error on failure
  8691. */
  8692. int q6asm_get_session_time(struct audio_client *ac, uint64_t *tstamp)
  8693. {
  8694. struct asm_mtmx_strtr_get_params mtmx_params;
  8695. int rc;
  8696. if (ac == NULL) {
  8697. pr_err("%s: APR handle NULL\n", __func__);
  8698. return -EINVAL;
  8699. }
  8700. if (ac->apr == NULL) {
  8701. pr_err("%s: AC APR handle NULL\n", __func__);
  8702. return -EINVAL;
  8703. }
  8704. if (tstamp == NULL) {
  8705. pr_err("%s: tstamp NULL\n", __func__);
  8706. return -EINVAL;
  8707. }
  8708. q6asm_add_hdr(ac, &mtmx_params.hdr, sizeof(mtmx_params), TRUE);
  8709. mtmx_params.hdr.opcode = ASM_SESSION_CMD_GET_MTMX_STRTR_PARAMS_V2;
  8710. mtmx_params.param_info.data_payload_addr_lsw = 0;
  8711. mtmx_params.param_info.data_payload_addr_msw = 0;
  8712. mtmx_params.param_info.mem_map_handle = 0;
  8713. mtmx_params.param_info.direction = (ac->io_mode & TUN_READ_IO_MODE
  8714. ? 1 : 0);
  8715. mtmx_params.param_info.module_id =
  8716. ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8717. mtmx_params.param_info.param_id =
  8718. ASM_SESSION_MTMX_STRTR_PARAM_SESSION_TIME_V3;
  8719. mtmx_params.param_info.param_max_size =
  8720. sizeof(struct param_hdr_v1) +
  8721. sizeof(struct asm_session_mtmx_strtr_param_session_time_v3_t);
  8722. atomic_set(&ac->time_flag, 1);
  8723. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x]\n", __func__,
  8724. ac->session, mtmx_params.hdr.opcode);
  8725. rc = apr_send_pkt(ac->apr, (uint32_t *) &mtmx_params);
  8726. if (rc < 0) {
  8727. pr_err("%s: Commmand 0x%x failed %d\n", __func__,
  8728. mtmx_params.hdr.opcode, rc);
  8729. goto fail_cmd;
  8730. }
  8731. rc = wait_event_timeout(ac->time_wait,
  8732. (atomic_read(&ac->time_flag) == 0),
  8733. msecs_to_jiffies(TIMEOUT_MS));
  8734. if (!rc) {
  8735. pr_err("%s: timeout in getting session time from DSP\n",
  8736. __func__);
  8737. goto fail_cmd;
  8738. }
  8739. *tstamp = ac->time_stamp;
  8740. return 0;
  8741. fail_cmd:
  8742. return -EINVAL;
  8743. }
  8744. EXPORT_SYMBOL(q6asm_get_session_time);
  8745. /**
  8746. * q6asm_get_session_time_legacy -
  8747. * command to retrieve timestamp info
  8748. *
  8749. * @ac: Audio client handle
  8750. * @tstamp: pointer to fill with timestamp info
  8751. *
  8752. * Returns 0 on success or error on failure
  8753. */
  8754. int q6asm_get_session_time_legacy(struct audio_client *ac, uint64_t *tstamp)
  8755. {
  8756. struct apr_hdr hdr;
  8757. int rc;
  8758. if (ac == NULL) {
  8759. pr_err("%s: APR handle NULL\n", __func__);
  8760. return -EINVAL;
  8761. }
  8762. if (ac->apr == NULL) {
  8763. pr_err("%s: AC APR handle NULL\n", __func__);
  8764. return -EINVAL;
  8765. }
  8766. if (tstamp == NULL) {
  8767. pr_err("%s: tstamp NULL\n", __func__);
  8768. return -EINVAL;
  8769. }
  8770. q6asm_add_hdr(ac, &hdr, sizeof(hdr), TRUE);
  8771. hdr.opcode = ASM_SESSION_CMD_GET_SESSIONTIME_V3;
  8772. atomic_set(&ac->time_flag, 1);
  8773. dev_vdbg(ac->dev, "%s: session[%d]opcode[0x%x]\n", __func__,
  8774. ac->session,
  8775. hdr.opcode);
  8776. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  8777. if (rc < 0) {
  8778. pr_err("%s: Commmand 0x%x failed %d\n",
  8779. __func__, hdr.opcode, rc);
  8780. goto fail_cmd;
  8781. }
  8782. rc = wait_event_timeout(ac->time_wait,
  8783. (atomic_read(&ac->time_flag) == 0),
  8784. msecs_to_jiffies(TIMEOUT_MS));
  8785. if (!rc) {
  8786. pr_err("%s: timeout in getting session time from DSP\n",
  8787. __func__);
  8788. goto fail_cmd;
  8789. }
  8790. *tstamp = ac->time_stamp;
  8791. return 0;
  8792. fail_cmd:
  8793. return -EINVAL;
  8794. }
  8795. EXPORT_SYMBOL(q6asm_get_session_time_legacy);
  8796. /**
  8797. * q6asm_send_mtmx_strtr_window -
  8798. * command to send matrix for window params
  8799. *
  8800. * @ac: Audio client handle
  8801. * @window_param: window params
  8802. * @param_id: param id for window
  8803. *
  8804. * Returns 0 on success or error on failure
  8805. */
  8806. int q6asm_send_mtmx_strtr_window(struct audio_client *ac,
  8807. struct asm_session_mtmx_strtr_param_window_v2_t *window_param,
  8808. uint32_t param_id)
  8809. {
  8810. struct asm_mtmx_strtr_params matrix;
  8811. int sz = 0;
  8812. int rc = 0;
  8813. pr_debug("%s: Window lsw is %d, window msw is %d\n", __func__,
  8814. window_param->window_lsw, window_param->window_msw);
  8815. if (!ac) {
  8816. pr_err("%s: audio client handle is NULL\n", __func__);
  8817. rc = -EINVAL;
  8818. goto fail_cmd;
  8819. }
  8820. if (ac->apr == NULL) {
  8821. pr_err("%s: ac->apr is NULL", __func__);
  8822. rc = -EINVAL;
  8823. goto fail_cmd;
  8824. }
  8825. sz = sizeof(struct asm_mtmx_strtr_params);
  8826. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8827. atomic_set(&ac->cmd_state, -1);
  8828. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8829. matrix.param.data_payload_addr_lsw = 0;
  8830. matrix.param.data_payload_addr_msw = 0;
  8831. matrix.param.mem_map_handle = 0;
  8832. matrix.param.data_payload_size =
  8833. sizeof(struct param_hdr_v1) +
  8834. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t);
  8835. matrix.param.direction = 0; /* RX */
  8836. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8837. matrix.data.param_id = param_id;
  8838. matrix.data.param_size =
  8839. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t);
  8840. matrix.data.reserved = 0;
  8841. memcpy(&(matrix.config.window_param),
  8842. window_param,
  8843. sizeof(struct asm_session_mtmx_strtr_param_window_v2_t));
  8844. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8845. if (rc < 0) {
  8846. pr_err("%s: Render window start send failed paramid [0x%x]\n",
  8847. __func__, matrix.data.param_id);
  8848. rc = -EINVAL;
  8849. goto fail_cmd;
  8850. }
  8851. rc = wait_event_timeout(ac->cmd_wait,
  8852. (atomic_read(&ac->cmd_state) >= 0),
  8853. msecs_to_jiffies(TIMEOUT_MS));
  8854. if (!rc) {
  8855. pr_err("%s: timeout, Render window start paramid[0x%x]\n",
  8856. __func__, matrix.data.param_id);
  8857. rc = -ETIMEDOUT;
  8858. goto fail_cmd;
  8859. }
  8860. if (atomic_read(&ac->cmd_state) > 0) {
  8861. pr_err("%s: DSP returned error[%s]\n",
  8862. __func__, adsp_err_get_err_str(
  8863. atomic_read(&ac->cmd_state)));
  8864. rc = adsp_err_get_lnx_err_code(
  8865. atomic_read(&ac->cmd_state));
  8866. goto fail_cmd;
  8867. }
  8868. rc = 0;
  8869. fail_cmd:
  8870. return rc;
  8871. }
  8872. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_window);
  8873. /**
  8874. * q6asm_send_mtmx_strtr_render_mode -
  8875. * command to send matrix for render mode
  8876. *
  8877. * @ac: Audio client handle
  8878. * @render_mode: rendering mode
  8879. *
  8880. * Returns 0 on success or error on failure
  8881. */
  8882. int q6asm_send_mtmx_strtr_render_mode(struct audio_client *ac,
  8883. uint32_t render_mode)
  8884. {
  8885. struct asm_mtmx_strtr_params matrix;
  8886. struct asm_session_mtmx_strtr_param_render_mode_t render_param;
  8887. int sz = 0;
  8888. int rc = 0;
  8889. pr_debug("%s: render mode is %d\n", __func__, render_mode);
  8890. if (!ac) {
  8891. pr_err("%s: audio client handle is NULL\n", __func__);
  8892. rc = -EINVAL;
  8893. goto exit;
  8894. }
  8895. if (ac->apr == NULL) {
  8896. pr_err("%s: ac->apr is NULL\n", __func__);
  8897. rc = -EINVAL;
  8898. goto exit;
  8899. }
  8900. if ((render_mode != ASM_SESSION_MTMX_STRTR_PARAM_RENDER_DEFAULT) &&
  8901. (render_mode != ASM_SESSION_MTMX_STRTR_PARAM_RENDER_LOCAL_STC)) {
  8902. pr_err("%s: Invalid render mode %d\n", __func__, render_mode);
  8903. rc = -EINVAL;
  8904. goto exit;
  8905. }
  8906. memset(&render_param, 0,
  8907. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t));
  8908. render_param.flags = render_mode;
  8909. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8910. sz = sizeof(struct asm_mtmx_strtr_params);
  8911. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8912. atomic_set(&ac->cmd_state, -1);
  8913. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8914. matrix.param.data_payload_addr_lsw = 0;
  8915. matrix.param.data_payload_addr_msw = 0;
  8916. matrix.param.mem_map_handle = 0;
  8917. matrix.param.data_payload_size =
  8918. sizeof(struct param_hdr_v1) +
  8919. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t);
  8920. matrix.param.direction = 0; /* RX */
  8921. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  8922. matrix.data.param_id = ASM_SESSION_MTMX_STRTR_PARAM_RENDER_MODE_CMD;
  8923. matrix.data.param_size =
  8924. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t);
  8925. matrix.data.reserved = 0;
  8926. memcpy(&(matrix.config.render_param),
  8927. &render_param,
  8928. sizeof(struct asm_session_mtmx_strtr_param_render_mode_t));
  8929. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  8930. if (rc < 0) {
  8931. pr_err("%s: Render mode send failed paramid [0x%x]\n",
  8932. __func__, matrix.data.param_id);
  8933. rc = -EINVAL;
  8934. goto exit;
  8935. }
  8936. rc = wait_event_timeout(ac->cmd_wait,
  8937. (atomic_read(&ac->cmd_state) >= 0),
  8938. msecs_to_jiffies(TIMEOUT_MS));
  8939. if (!rc) {
  8940. pr_err("%s: timeout, Render mode send paramid [0x%x]\n",
  8941. __func__, matrix.data.param_id);
  8942. rc = -ETIMEDOUT;
  8943. goto exit;
  8944. }
  8945. if (atomic_read(&ac->cmd_state) > 0) {
  8946. pr_err("%s: DSP returned error[%s]\n",
  8947. __func__, adsp_err_get_err_str(
  8948. atomic_read(&ac->cmd_state)));
  8949. rc = adsp_err_get_lnx_err_code(
  8950. atomic_read(&ac->cmd_state));
  8951. goto exit;
  8952. }
  8953. rc = 0;
  8954. exit:
  8955. return rc;
  8956. }
  8957. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_render_mode);
  8958. /**
  8959. * q6asm_send_mtmx_strtr_clk_rec_mode -
  8960. * command to send matrix for clock rec
  8961. *
  8962. * @ac: Audio client handle
  8963. * @clk_rec_mode: mode for clock rec
  8964. *
  8965. * Returns 0 on success or error on failure
  8966. */
  8967. int q6asm_send_mtmx_strtr_clk_rec_mode(struct audio_client *ac,
  8968. uint32_t clk_rec_mode)
  8969. {
  8970. struct asm_mtmx_strtr_params matrix;
  8971. struct asm_session_mtmx_strtr_param_clk_rec_t clk_rec_param;
  8972. int sz = 0;
  8973. int rc = 0;
  8974. pr_debug("%s: clk rec mode is %d\n", __func__, clk_rec_mode);
  8975. if (!ac) {
  8976. pr_err("%s: audio client handle is NULL\n", __func__);
  8977. rc = -EINVAL;
  8978. goto exit;
  8979. }
  8980. if (ac->apr == NULL) {
  8981. pr_err("%s: ac->apr is NULL\n", __func__);
  8982. rc = -EINVAL;
  8983. goto exit;
  8984. }
  8985. if ((clk_rec_mode != ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_NONE) &&
  8986. (clk_rec_mode != ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_AUTO)) {
  8987. pr_err("%s: Invalid clk rec mode %d\n", __func__, clk_rec_mode);
  8988. rc = -EINVAL;
  8989. goto exit;
  8990. }
  8991. memset(&clk_rec_param, 0,
  8992. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t));
  8993. clk_rec_param.flags = clk_rec_mode;
  8994. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  8995. sz = sizeof(struct asm_mtmx_strtr_params);
  8996. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  8997. atomic_set(&ac->cmd_state, -1);
  8998. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  8999. matrix.param.data_payload_addr_lsw = 0;
  9000. matrix.param.data_payload_addr_msw = 0;
  9001. matrix.param.mem_map_handle = 0;
  9002. matrix.param.data_payload_size =
  9003. sizeof(struct param_hdr_v1) +
  9004. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t);
  9005. matrix.param.direction = 0; /* RX */
  9006. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  9007. matrix.data.param_id = ASM_SESSION_MTMX_STRTR_PARAM_CLK_REC_CMD;
  9008. matrix.data.param_size =
  9009. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t);
  9010. matrix.data.reserved = 0;
  9011. memcpy(&(matrix.config.clk_rec_param),
  9012. &clk_rec_param,
  9013. sizeof(struct asm_session_mtmx_strtr_param_clk_rec_t));
  9014. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  9015. if (rc < 0) {
  9016. pr_err("%s: clk rec mode send failed paramid [0x%x]\n",
  9017. __func__, matrix.data.param_id);
  9018. rc = -EINVAL;
  9019. goto exit;
  9020. }
  9021. rc = wait_event_timeout(ac->cmd_wait,
  9022. (atomic_read(&ac->cmd_state) >= 0),
  9023. msecs_to_jiffies(TIMEOUT_MS));
  9024. if (!rc) {
  9025. pr_err("%s: timeout, clk rec mode send paramid [0x%x]\n",
  9026. __func__, matrix.data.param_id);
  9027. rc = -ETIMEDOUT;
  9028. goto exit;
  9029. }
  9030. if (atomic_read(&ac->cmd_state) > 0) {
  9031. pr_err("%s: DSP returned error[%s]\n",
  9032. __func__, adsp_err_get_err_str(
  9033. atomic_read(&ac->cmd_state)));
  9034. rc = adsp_err_get_lnx_err_code(
  9035. atomic_read(&ac->cmd_state));
  9036. goto exit;
  9037. }
  9038. rc = 0;
  9039. exit:
  9040. return rc;
  9041. }
  9042. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_clk_rec_mode);
  9043. /**
  9044. * q6asm_send_mtmx_strtr_enable_adjust_session_clock -
  9045. * command to send matrix for adjust time
  9046. *
  9047. * @ac: Audio client handle
  9048. * @enable: flag to adjust time or not
  9049. *
  9050. * Returns 0 on success or error on failure
  9051. */
  9052. int q6asm_send_mtmx_strtr_enable_adjust_session_clock(struct audio_client *ac,
  9053. bool enable)
  9054. {
  9055. struct asm_mtmx_strtr_params matrix;
  9056. struct asm_session_mtmx_param_adjust_session_time_ctl_t adjust_time;
  9057. int sz = 0;
  9058. int rc = 0;
  9059. pr_debug("%s: adjust session enable %d\n", __func__, enable);
  9060. if (!ac) {
  9061. pr_err("%s: audio client handle is NULL\n", __func__);
  9062. rc = -EINVAL;
  9063. goto exit;
  9064. }
  9065. if (ac->apr == NULL) {
  9066. pr_err("%s: ac->apr is NULL\n", __func__);
  9067. rc = -EINVAL;
  9068. goto exit;
  9069. }
  9070. adjust_time.enable = enable;
  9071. memset(&matrix, 0, sizeof(struct asm_mtmx_strtr_params));
  9072. sz = sizeof(struct asm_mtmx_strtr_params);
  9073. q6asm_add_hdr(ac, &matrix.hdr, sz, TRUE);
  9074. atomic_set(&ac->cmd_state, -1);
  9075. matrix.hdr.opcode = ASM_SESSION_CMD_SET_MTMX_STRTR_PARAMS_V2;
  9076. matrix.param.data_payload_addr_lsw = 0;
  9077. matrix.param.data_payload_addr_msw = 0;
  9078. matrix.param.mem_map_handle = 0;
  9079. matrix.param.data_payload_size =
  9080. sizeof(struct param_hdr_v1) +
  9081. sizeof(struct asm_session_mtmx_param_adjust_session_time_ctl_t);
  9082. matrix.param.direction = 0; /* RX */
  9083. matrix.data.module_id = ASM_SESSION_MTMX_STRTR_MODULE_ID_AVSYNC;
  9084. matrix.data.param_id = ASM_SESSION_MTMX_PARAM_ADJUST_SESSION_TIME_CTL;
  9085. matrix.data.param_size =
  9086. sizeof(struct asm_session_mtmx_param_adjust_session_time_ctl_t);
  9087. matrix.data.reserved = 0;
  9088. matrix.config.adj_time_param.enable = adjust_time.enable;
  9089. rc = apr_send_pkt(ac->apr, (uint32_t *) &matrix);
  9090. if (rc < 0) {
  9091. pr_err("%s: enable adjust session failed failed paramid [0x%x]\n",
  9092. __func__, matrix.data.param_id);
  9093. rc = -EINVAL;
  9094. goto exit;
  9095. }
  9096. rc = wait_event_timeout(ac->cmd_wait,
  9097. (atomic_read(&ac->cmd_state) >= 0),
  9098. msecs_to_jiffies(TIMEOUT_MS));
  9099. if (!rc) {
  9100. pr_err("%s: enable adjust session failed failed paramid [0x%x]\n",
  9101. __func__, matrix.data.param_id);
  9102. rc = -ETIMEDOUT;
  9103. goto exit;
  9104. }
  9105. if (atomic_read(&ac->cmd_state) > 0) {
  9106. pr_err("%s: DSP returned error[%s]\n",
  9107. __func__, adsp_err_get_err_str(
  9108. atomic_read(&ac->cmd_state)));
  9109. rc = adsp_err_get_lnx_err_code(
  9110. atomic_read(&ac->cmd_state));
  9111. goto exit;
  9112. }
  9113. rc = 0;
  9114. exit:
  9115. return rc;
  9116. }
  9117. EXPORT_SYMBOL(q6asm_send_mtmx_strtr_enable_adjust_session_clock);
  9118. static int __q6asm_cmd(struct audio_client *ac, int cmd, uint32_t stream_id)
  9119. {
  9120. struct apr_hdr hdr;
  9121. int rc;
  9122. atomic_t *state;
  9123. int cnt = 0;
  9124. if (!ac) {
  9125. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9126. return -EINVAL;
  9127. }
  9128. if (ac->apr == NULL) {
  9129. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9130. return -EINVAL;
  9131. }
  9132. q6asm_stream_add_hdr(ac, &hdr, sizeof(hdr), TRUE, stream_id);
  9133. atomic_set(&ac->cmd_state, -1);
  9134. /*
  9135. * Updated the token field with stream/session for compressed playback
  9136. * Platform driver must know the the stream with which the command is
  9137. * associated
  9138. */
  9139. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9140. q6asm_update_token(&hdr.token,
  9141. ac->session,
  9142. stream_id,
  9143. 0, /* Buffer index is NA */
  9144. 0, /* Direction flag is NA */
  9145. WAIT_CMD);
  9146. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9147. __func__, hdr.token, stream_id, ac->session);
  9148. switch (cmd) {
  9149. case CMD_PAUSE:
  9150. pr_debug("%s: CMD_PAUSE\n", __func__);
  9151. hdr.opcode = ASM_SESSION_CMD_PAUSE;
  9152. state = &ac->cmd_state;
  9153. break;
  9154. case CMD_SUSPEND:
  9155. pr_debug("%s: CMD_SUSPEND\n", __func__);
  9156. hdr.opcode = ASM_SESSION_CMD_SUSPEND;
  9157. state = &ac->cmd_state;
  9158. break;
  9159. case CMD_FLUSH:
  9160. pr_debug("%s: CMD_FLUSH\n", __func__);
  9161. hdr.opcode = ASM_STREAM_CMD_FLUSH;
  9162. state = &ac->cmd_state;
  9163. break;
  9164. case CMD_OUT_FLUSH:
  9165. pr_debug("%s: CMD_OUT_FLUSH\n", __func__);
  9166. hdr.opcode = ASM_STREAM_CMD_FLUSH_READBUFS;
  9167. state = &ac->cmd_state;
  9168. break;
  9169. case CMD_EOS:
  9170. pr_debug("%s: CMD_EOS\n", __func__);
  9171. hdr.opcode = ASM_DATA_CMD_EOS;
  9172. atomic_set(&ac->cmd_state, 0);
  9173. state = &ac->cmd_state;
  9174. break;
  9175. case CMD_CLOSE:
  9176. pr_debug("%s: CMD_CLOSE\n", __func__);
  9177. hdr.opcode = ASM_STREAM_CMD_CLOSE;
  9178. state = &ac->cmd_state;
  9179. break;
  9180. default:
  9181. pr_err("%s: Invalid format[%d]\n", __func__, cmd);
  9182. rc = -EINVAL;
  9183. goto fail_cmd;
  9184. }
  9185. pr_debug("%s: session[%d]opcode[0x%x]\n", __func__,
  9186. ac->session,
  9187. hdr.opcode);
  9188. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9189. if (rc < 0) {
  9190. pr_err("%s: Commmand 0x%x failed %d\n",
  9191. __func__, hdr.opcode, rc);
  9192. rc = -EINVAL;
  9193. goto fail_cmd;
  9194. }
  9195. rc = wait_event_timeout(ac->cmd_wait, (atomic_read(state) >= 0),
  9196. msecs_to_jiffies(TIMEOUT_MS));
  9197. if (!rc) {
  9198. pr_err("%s: timeout. waited for response opcode[0x%x]\n",
  9199. __func__, hdr.opcode);
  9200. rc = -ETIMEDOUT;
  9201. goto fail_cmd;
  9202. }
  9203. if (atomic_read(state) > 0) {
  9204. pr_err("%s: DSP returned error[%s] opcode %d\n",
  9205. __func__, adsp_err_get_err_str(
  9206. atomic_read(state)),
  9207. hdr.opcode);
  9208. rc = adsp_err_get_lnx_err_code(atomic_read(state));
  9209. goto fail_cmd;
  9210. }
  9211. if (cmd == CMD_FLUSH)
  9212. q6asm_reset_buf_state(ac);
  9213. if (cmd == CMD_CLOSE) {
  9214. /* check if DSP return all buffers */
  9215. if (ac->port[IN].buf) {
  9216. for (cnt = 0; cnt < ac->port[IN].max_buf_cnt;
  9217. cnt++) {
  9218. if (ac->port[IN].buf[cnt].used == IN) {
  9219. dev_vdbg(ac->dev, "Write Buf[%d] not returned\n",
  9220. cnt);
  9221. }
  9222. }
  9223. }
  9224. if (ac->port[OUT].buf) {
  9225. for (cnt = 0; cnt < ac->port[OUT].max_buf_cnt; cnt++) {
  9226. if (ac->port[OUT].buf[cnt].used == OUT) {
  9227. dev_vdbg(ac->dev, "Read Buf[%d] not returned\n",
  9228. cnt);
  9229. }
  9230. }
  9231. }
  9232. }
  9233. return 0;
  9234. fail_cmd:
  9235. return rc;
  9236. }
  9237. /**
  9238. * q6asm_cmd -
  9239. * Function used to send commands for
  9240. * ASM with wait for ack.
  9241. *
  9242. * @ac: Audio client handle
  9243. * @cmd: command to send
  9244. *
  9245. * Returns 0 on success or error on failure
  9246. */
  9247. int q6asm_cmd(struct audio_client *ac, int cmd)
  9248. {
  9249. return __q6asm_cmd(ac, cmd, ac->stream_id);
  9250. }
  9251. EXPORT_SYMBOL(q6asm_cmd);
  9252. /**
  9253. * q6asm_stream_cmd -
  9254. * Function used to send commands for
  9255. * ASM stream with wait for ack.
  9256. *
  9257. * @ac: Audio client handle
  9258. * @cmd: command to send
  9259. * @stream_id: Stream ID
  9260. *
  9261. * Returns 0 on success or error on failure
  9262. */
  9263. int q6asm_stream_cmd(struct audio_client *ac, int cmd, uint32_t stream_id)
  9264. {
  9265. return __q6asm_cmd(ac, cmd, stream_id);
  9266. }
  9267. EXPORT_SYMBOL(q6asm_stream_cmd);
  9268. /**
  9269. * q6asm_cmd_nowait -
  9270. * Function used to send commands for
  9271. * ASM stream without wait for ack.
  9272. *
  9273. * @ac: Audio client handle
  9274. * @cmd: command to send
  9275. * @stream_id: Stream ID
  9276. *
  9277. * Returns 0 on success or error on failure
  9278. */
  9279. static int __q6asm_cmd_nowait(struct audio_client *ac, int cmd,
  9280. uint32_t stream_id)
  9281. {
  9282. struct apr_hdr hdr;
  9283. int rc;
  9284. if (!ac) {
  9285. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9286. return -EINVAL;
  9287. }
  9288. if (ac->apr == NULL) {
  9289. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9290. return -EINVAL;
  9291. }
  9292. q6asm_stream_add_hdr_async(ac, &hdr, sizeof(hdr), TRUE, stream_id);
  9293. atomic_set(&ac->cmd_state, 1);
  9294. /*
  9295. * Updated the token field with stream/session for compressed playback
  9296. * Platform driver must know the the stream with which the command is
  9297. * associated
  9298. */
  9299. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9300. q6asm_update_token(&hdr.token,
  9301. ac->session,
  9302. stream_id,
  9303. 0, /* Buffer index is NA */
  9304. 0, /* Direction flag is NA */
  9305. NO_WAIT_CMD);
  9306. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9307. __func__, hdr.token, stream_id, ac->session);
  9308. switch (cmd) {
  9309. case CMD_PAUSE:
  9310. pr_debug("%s: CMD_PAUSE\n", __func__);
  9311. hdr.opcode = ASM_SESSION_CMD_PAUSE;
  9312. break;
  9313. case CMD_EOS:
  9314. pr_debug("%s: CMD_EOS\n", __func__);
  9315. hdr.opcode = ASM_DATA_CMD_EOS;
  9316. break;
  9317. case CMD_CLOSE:
  9318. pr_debug("%s: CMD_CLOSE\n", __func__);
  9319. hdr.opcode = ASM_STREAM_CMD_CLOSE;
  9320. break;
  9321. default:
  9322. pr_err("%s: Invalid format[%d]\n", __func__, cmd);
  9323. goto fail_cmd;
  9324. }
  9325. pr_debug("%s: session[%d]opcode[0x%x]\n", __func__,
  9326. ac->session,
  9327. hdr.opcode);
  9328. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9329. if (rc < 0) {
  9330. pr_err("%s: Commmand 0x%x failed %d\n",
  9331. __func__, hdr.opcode, rc);
  9332. goto fail_cmd;
  9333. }
  9334. return 0;
  9335. fail_cmd:
  9336. return -EINVAL;
  9337. }
  9338. int q6asm_cmd_nowait(struct audio_client *ac, int cmd)
  9339. {
  9340. pr_debug("%s: stream_id: %d\n", __func__, ac->stream_id);
  9341. return __q6asm_cmd_nowait(ac, cmd, ac->stream_id);
  9342. }
  9343. EXPORT_SYMBOL(q6asm_cmd_nowait);
  9344. /**
  9345. * q6asm_stream_cmd_nowait -
  9346. * Function used to send commands for
  9347. * ASM stream without wait for ack.
  9348. *
  9349. * @ac: Audio client handle
  9350. * @cmd: command to send
  9351. * @stream_id: Stream ID
  9352. *
  9353. * Returns 0 on success or error on failure
  9354. */
  9355. int q6asm_stream_cmd_nowait(struct audio_client *ac, int cmd,
  9356. uint32_t stream_id)
  9357. {
  9358. pr_debug("%s: stream_id: %d\n", __func__, stream_id);
  9359. return __q6asm_cmd_nowait(ac, cmd, stream_id);
  9360. }
  9361. EXPORT_SYMBOL(q6asm_stream_cmd_nowait);
  9362. int __q6asm_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  9363. uint32_t initial_samples, uint32_t trailing_samples)
  9364. {
  9365. struct asm_data_cmd_remove_silence silence;
  9366. int rc = 0;
  9367. if (!ac) {
  9368. pr_err_ratelimited("%s: APR handle NULL\n", __func__);
  9369. return -EINVAL;
  9370. }
  9371. if (ac->apr == NULL) {
  9372. pr_err_ratelimited("%s: AC APR handle NULL\n", __func__);
  9373. return -EINVAL;
  9374. }
  9375. pr_debug("%s: session[%d]\n", __func__, ac->session);
  9376. q6asm_stream_add_hdr_async(ac, &silence.hdr, sizeof(silence), TRUE,
  9377. stream_id);
  9378. /*
  9379. * Updated the token field with stream/session for compressed playback
  9380. * Platform driver must know the the stream with which the command is
  9381. * associated
  9382. */
  9383. if (ac->io_mode & COMPRESSED_STREAM_IO)
  9384. q6asm_update_token(&silence.hdr.token,
  9385. ac->session,
  9386. stream_id,
  9387. 0, /* Buffer index is NA */
  9388. 0, /* Direction flag is NA */
  9389. NO_WAIT_CMD);
  9390. pr_debug("%s: token = 0x%x, stream_id %d, session 0x%x\n",
  9391. __func__, silence.hdr.token, stream_id, ac->session);
  9392. silence.hdr.opcode = ASM_DATA_CMD_REMOVE_INITIAL_SILENCE;
  9393. silence.num_samples_to_remove = initial_samples;
  9394. rc = apr_send_pkt(ac->apr, (uint32_t *) &silence);
  9395. if (rc < 0) {
  9396. pr_err("%s: Commmand silence failed[%d]", __func__, rc);
  9397. goto fail_cmd;
  9398. }
  9399. silence.hdr.opcode = ASM_DATA_CMD_REMOVE_TRAILING_SILENCE;
  9400. silence.num_samples_to_remove = trailing_samples;
  9401. rc = apr_send_pkt(ac->apr, (uint32_t *) &silence);
  9402. if (rc < 0) {
  9403. pr_err("%s: Commmand silence failed[%d]", __func__, rc);
  9404. goto fail_cmd;
  9405. }
  9406. return 0;
  9407. fail_cmd:
  9408. return -EINVAL;
  9409. }
  9410. /**
  9411. * q6asm_stream_send_meta_data -
  9412. * command to send meta data for stream
  9413. *
  9414. * @ac: Audio client handle
  9415. * @stream_id: Stream ID
  9416. * @initial_samples: Initial samples of stream
  9417. * @trailing_samples: Trailing samples of stream
  9418. *
  9419. * Returns 0 on success or error on failure
  9420. */
  9421. int q6asm_stream_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  9422. uint32_t initial_samples, uint32_t trailing_samples)
  9423. {
  9424. return __q6asm_send_meta_data(ac, stream_id, initial_samples,
  9425. trailing_samples);
  9426. }
  9427. EXPORT_SYMBOL(q6asm_stream_send_meta_data);
  9428. int q6asm_send_meta_data(struct audio_client *ac, uint32_t initial_samples,
  9429. uint32_t trailing_samples)
  9430. {
  9431. return __q6asm_send_meta_data(ac, ac->stream_id, initial_samples,
  9432. trailing_samples);
  9433. }
  9434. static void q6asm_reset_buf_state(struct audio_client *ac)
  9435. {
  9436. int cnt = 0;
  9437. int loopcnt = 0;
  9438. int used;
  9439. struct audio_port_data *port = NULL;
  9440. if (ac->io_mode & SYNC_IO_MODE) {
  9441. used = (ac->io_mode & TUN_WRITE_IO_MODE ? 1 : 0);
  9442. mutex_lock(&ac->cmd_lock);
  9443. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  9444. port = &ac->port[loopcnt];
  9445. cnt = port->max_buf_cnt - 1;
  9446. port->dsp_buf = 0;
  9447. port->cpu_buf = 0;
  9448. while (cnt >= 0) {
  9449. if (!port->buf)
  9450. continue;
  9451. port->buf[cnt].used = used;
  9452. cnt--;
  9453. }
  9454. }
  9455. mutex_unlock(&ac->cmd_lock);
  9456. }
  9457. }
  9458. /**
  9459. * q6asm_reg_tx_overflow -
  9460. * command to register for TX overflow events
  9461. *
  9462. * @ac: Audio client handle
  9463. * @enable: flag to enable or disable events
  9464. *
  9465. * Returns 0 on success or error on failure
  9466. */
  9467. int q6asm_reg_tx_overflow(struct audio_client *ac, uint16_t enable)
  9468. {
  9469. struct asm_session_cmd_regx_overflow tx_overflow;
  9470. int rc;
  9471. if (!ac) {
  9472. pr_err("%s: APR handle NULL\n", __func__);
  9473. return -EINVAL;
  9474. }
  9475. if (ac->apr == NULL) {
  9476. pr_err("%s: AC APR handle NULL\n", __func__);
  9477. return -EINVAL;
  9478. }
  9479. pr_debug("%s: session[%d]enable[%d]\n", __func__,
  9480. ac->session, enable);
  9481. q6asm_add_hdr(ac, &tx_overflow.hdr, sizeof(tx_overflow), TRUE);
  9482. atomic_set(&ac->cmd_state, -1);
  9483. tx_overflow.hdr.opcode =
  9484. ASM_SESSION_CMD_REGISTER_FORX_OVERFLOW_EVENTS;
  9485. /* tx overflow event: enable */
  9486. tx_overflow.enable_flag = enable;
  9487. rc = apr_send_pkt(ac->apr, (uint32_t *) &tx_overflow);
  9488. if (rc < 0) {
  9489. pr_err("%s: tx overflow op[0x%x]rc[%d]\n",
  9490. __func__, tx_overflow.hdr.opcode, rc);
  9491. rc = -EINVAL;
  9492. goto fail_cmd;
  9493. }
  9494. rc = wait_event_timeout(ac->cmd_wait,
  9495. (atomic_read(&ac->cmd_state) >= 0),
  9496. msecs_to_jiffies(TIMEOUT_MS));
  9497. if (!rc) {
  9498. pr_err("%s: timeout. waited for tx overflow\n", __func__);
  9499. rc = -ETIMEDOUT;
  9500. goto fail_cmd;
  9501. }
  9502. if (atomic_read(&ac->cmd_state) > 0) {
  9503. pr_err("%s: DSP returned error[%s]\n",
  9504. __func__, adsp_err_get_err_str(
  9505. atomic_read(&ac->cmd_state)));
  9506. rc = adsp_err_get_lnx_err_code(
  9507. atomic_read(&ac->cmd_state));
  9508. goto fail_cmd;
  9509. }
  9510. return 0;
  9511. fail_cmd:
  9512. return rc;
  9513. }
  9514. EXPORT_SYMBOL(q6asm_reg_tx_overflow);
  9515. int q6asm_reg_rx_underflow(struct audio_client *ac, uint16_t enable)
  9516. {
  9517. struct asm_session_cmd_rgstr_rx_underflow rx_underflow;
  9518. int rc;
  9519. if (!ac) {
  9520. pr_err("%s: AC APR handle NULL\n", __func__);
  9521. return -EINVAL;
  9522. }
  9523. if (ac->apr == NULL) {
  9524. pr_err("%s: APR handle NULL\n", __func__);
  9525. return -EINVAL;
  9526. }
  9527. pr_debug("%s: session[%d]enable[%d]\n", __func__,
  9528. ac->session, enable);
  9529. q6asm_add_hdr_async(ac, &rx_underflow.hdr, sizeof(rx_underflow), FALSE);
  9530. rx_underflow.hdr.opcode =
  9531. ASM_SESSION_CMD_REGISTER_FOR_RX_UNDERFLOW_EVENTS;
  9532. /* tx overflow event: enable */
  9533. rx_underflow.enable_flag = enable;
  9534. rc = apr_send_pkt(ac->apr, (uint32_t *) &rx_underflow);
  9535. if (rc < 0) {
  9536. pr_err("%s: tx overflow op[0x%x]rc[%d]\n",
  9537. __func__, rx_underflow.hdr.opcode, rc);
  9538. goto fail_cmd;
  9539. }
  9540. return 0;
  9541. fail_cmd:
  9542. return -EINVAL;
  9543. }
  9544. /**
  9545. * q6asm_adjust_session_clock -
  9546. * command to adjust session clock
  9547. *
  9548. * @ac: Audio client handle
  9549. * @adjust_time_lsw: lower 32bits
  9550. * @adjust_time_msw: upper 32bits
  9551. *
  9552. * Returns 0 on success or error on failure
  9553. */
  9554. int q6asm_adjust_session_clock(struct audio_client *ac,
  9555. uint32_t adjust_time_lsw,
  9556. uint32_t adjust_time_msw)
  9557. {
  9558. int rc = 0;
  9559. int sz = 0;
  9560. struct asm_session_cmd_adjust_session_clock_v2 adjust_clock;
  9561. pr_debug("%s: adjust_time_lsw is %x, adjust_time_msw is %x\n", __func__,
  9562. adjust_time_lsw, adjust_time_msw);
  9563. if (!ac) {
  9564. pr_err("%s: audio client handle is NULL\n", __func__);
  9565. rc = -EINVAL;
  9566. goto fail_cmd;
  9567. }
  9568. if (ac->apr == NULL) {
  9569. pr_err("%s: ac->apr is NULL", __func__);
  9570. rc = -EINVAL;
  9571. goto fail_cmd;
  9572. }
  9573. sz = sizeof(struct asm_session_cmd_adjust_session_clock_v2);
  9574. q6asm_add_hdr(ac, &adjust_clock.hdr, sz, TRUE);
  9575. atomic_set(&ac->cmd_state, -1);
  9576. adjust_clock.hdr.opcode = ASM_SESSION_CMD_ADJUST_SESSION_CLOCK_V2;
  9577. adjust_clock.adjustime_lsw = adjust_time_lsw;
  9578. adjust_clock.adjustime_msw = adjust_time_msw;
  9579. rc = apr_send_pkt(ac->apr, (uint32_t *) &adjust_clock);
  9580. if (rc < 0) {
  9581. pr_err("%s: adjust_clock send failed paramid [0x%x]\n",
  9582. __func__, adjust_clock.hdr.opcode);
  9583. rc = -EINVAL;
  9584. goto fail_cmd;
  9585. }
  9586. rc = wait_event_timeout(ac->cmd_wait,
  9587. (atomic_read(&ac->cmd_state) >= 0),
  9588. msecs_to_jiffies(TIMEOUT_MS));
  9589. if (!rc) {
  9590. pr_err("%s: timeout, adjust_clock paramid[0x%x]\n",
  9591. __func__, adjust_clock.hdr.opcode);
  9592. rc = -ETIMEDOUT;
  9593. goto fail_cmd;
  9594. }
  9595. if (atomic_read(&ac->cmd_state) > 0) {
  9596. pr_err("%s: DSP returned error[%s]\n",
  9597. __func__, adsp_err_get_err_str(
  9598. atomic_read(&ac->cmd_state)));
  9599. rc = adsp_err_get_lnx_err_code(
  9600. atomic_read(&ac->cmd_state));
  9601. goto fail_cmd;
  9602. }
  9603. rc = 0;
  9604. fail_cmd:
  9605. return rc;
  9606. }
  9607. EXPORT_SYMBOL(q6asm_adjust_session_clock);
  9608. /*
  9609. * q6asm_get_path_delay() - get the path delay for an audio session
  9610. * @ac: audio client handle
  9611. *
  9612. * Retrieves the current audio DSP path delay for the given audio session.
  9613. *
  9614. * Return: 0 on success, error code otherwise
  9615. */
  9616. int q6asm_get_path_delay(struct audio_client *ac)
  9617. {
  9618. int rc = 0;
  9619. struct apr_hdr hdr;
  9620. if (!ac || ac->apr == NULL) {
  9621. pr_err("%s: invalid audio client\n", __func__);
  9622. return -EINVAL;
  9623. }
  9624. hdr.opcode = ASM_SESSION_CMD_GET_PATH_DELAY_V2;
  9625. q6asm_add_hdr(ac, &hdr, sizeof(hdr), TRUE);
  9626. atomic_set(&ac->cmd_state, -1);
  9627. rc = apr_send_pkt(ac->apr, (uint32_t *) &hdr);
  9628. if (rc < 0) {
  9629. pr_err("%s: Commmand 0x%x failed %d\n", __func__,
  9630. hdr.opcode, rc);
  9631. return rc;
  9632. }
  9633. rc = wait_event_timeout(ac->cmd_wait,
  9634. (atomic_read(&ac->cmd_state) >= 0),
  9635. msecs_to_jiffies(TIMEOUT_MS));
  9636. if (!rc) {
  9637. pr_err("%s: timeout. waited for response opcode[0x%x]\n",
  9638. __func__, hdr.opcode);
  9639. return -ETIMEDOUT;
  9640. }
  9641. if (atomic_read(&ac->cmd_state) > 0) {
  9642. pr_err("%s: DSP returned error[%s]\n",
  9643. __func__, adsp_err_get_err_str(
  9644. atomic_read(&ac->cmd_state)));
  9645. rc = adsp_err_get_lnx_err_code(
  9646. atomic_read(&ac->cmd_state));
  9647. return rc;
  9648. }
  9649. return 0;
  9650. }
  9651. EXPORT_SYMBOL(q6asm_get_path_delay);
  9652. int q6asm_get_apr_service_id(int session_id)
  9653. {
  9654. pr_debug("%s:\n", __func__);
  9655. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9656. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9657. return -EINVAL;
  9658. }
  9659. return ((struct apr_svc *)(session[session_id].ac)->apr)->id;
  9660. }
  9661. int q6asm_get_asm_topology(int session_id)
  9662. {
  9663. int topology = -EINVAL;
  9664. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9665. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9666. goto done;
  9667. }
  9668. if (session[session_id].ac == NULL) {
  9669. pr_err("%s: session not created for session id = %d\n",
  9670. __func__, session_id);
  9671. goto done;
  9672. }
  9673. topology = (session[session_id].ac)->topology;
  9674. done:
  9675. return topology;
  9676. }
  9677. int q6asm_get_asm_app_type(int session_id)
  9678. {
  9679. int app_type = -EINVAL;
  9680. if (session_id <= 0 || session_id > ASM_ACTIVE_STREAMS_ALLOWED) {
  9681. pr_err("%s: invalid session_id = %d\n", __func__, session_id);
  9682. goto done;
  9683. }
  9684. if (session[session_id].ac == NULL) {
  9685. pr_err("%s: session not created for session id = %d\n",
  9686. __func__, session_id);
  9687. goto done;
  9688. }
  9689. app_type = (session[session_id].ac)->app_type;
  9690. done:
  9691. return app_type;
  9692. }
  9693. /*
  9694. * Retrieving cal_block will mark cal_block as stale.
  9695. * Hence it cannot be reused or resent unless the flag
  9696. * is reset.
  9697. */
  9698. static int q6asm_get_asm_topology_apptype(struct q6asm_cal_info *cal_info)
  9699. {
  9700. struct cal_block_data *cal_block = NULL;
  9701. cal_info->topology_id = DEFAULT_POPP_TOPOLOGY;
  9702. cal_info->app_type = DEFAULT_APP_TYPE;
  9703. if (cal_data[ASM_TOPOLOGY_CAL] == NULL)
  9704. goto done;
  9705. mutex_lock(&cal_data[ASM_TOPOLOGY_CAL]->lock);
  9706. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_TOPOLOGY_CAL]);
  9707. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block))
  9708. goto unlock;
  9709. cal_info->topology_id = ((struct audio_cal_info_asm_top *)
  9710. cal_block->cal_info)->topology;
  9711. cal_info->app_type = ((struct audio_cal_info_asm_top *)
  9712. cal_block->cal_info)->app_type;
  9713. cal_utils_mark_cal_used(cal_block);
  9714. unlock:
  9715. mutex_unlock(&cal_data[ASM_TOPOLOGY_CAL]->lock);
  9716. done:
  9717. pr_debug("%s: Using topology %d app_type %d\n", __func__,
  9718. cal_info->topology_id, cal_info->app_type);
  9719. return 0;
  9720. }
  9721. /**
  9722. * q6asm_send_cal -
  9723. * command to send ASM calibration
  9724. *
  9725. * @ac: Audio client handle
  9726. *
  9727. * Returns 0 on success or error on failure
  9728. */
  9729. int q6asm_send_cal(struct audio_client *ac)
  9730. {
  9731. struct cal_block_data *cal_block = NULL;
  9732. struct mem_mapping_hdr mem_hdr;
  9733. u32 payload_size = 0;
  9734. int rc = -EINVAL;
  9735. pr_debug("%s:\n", __func__);
  9736. if (!ac) {
  9737. pr_err("%s: Audio client is NULL\n", __func__);
  9738. return -EINVAL;
  9739. }
  9740. if (ac->io_mode & NT_MODE) {
  9741. pr_debug("%s: called for NT MODE, exiting\n", __func__);
  9742. goto done;
  9743. }
  9744. if (cal_data[ASM_AUDSTRM_CAL] == NULL)
  9745. goto done;
  9746. if (ac->perf_mode == ULTRA_LOW_LATENCY_PCM_MODE) {
  9747. rc = 0; /* no cal is required, not error case */
  9748. goto done;
  9749. }
  9750. memset(&mem_hdr, 0, sizeof(mem_hdr));
  9751. mutex_lock(&cal_data[ASM_AUDSTRM_CAL]->lock);
  9752. cal_block = cal_utils_get_only_cal_block(cal_data[ASM_AUDSTRM_CAL]);
  9753. if (cal_block == NULL) {
  9754. pr_err("%s: cal_block is NULL\n",
  9755. __func__);
  9756. goto unlock;
  9757. }
  9758. if (cal_utils_is_cal_stale(cal_block)) {
  9759. rc = 0; /* not error case */
  9760. pr_debug("%s: cal_block is stale\n",
  9761. __func__);
  9762. goto unlock;
  9763. }
  9764. if (cal_block->cal_data.size == 0) {
  9765. rc = 0; /* not error case */
  9766. pr_debug("%s: cal_data.size is 0, don't send cal data\n",
  9767. __func__);
  9768. goto unlock;
  9769. }
  9770. rc = remap_cal_data(ASM_AUDSTRM_CAL_TYPE, cal_block);
  9771. if (rc) {
  9772. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  9773. __func__, ASM_AUDSTRM_CAL);
  9774. goto unlock;
  9775. }
  9776. mem_hdr.data_payload_addr_lsw =
  9777. lower_32_bits(cal_block->cal_data.paddr);
  9778. mem_hdr.data_payload_addr_msw =
  9779. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  9780. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  9781. payload_size = cal_block->cal_data.size;
  9782. pr_debug("%s: phyaddr lsw = %x msw = %x, maphdl = %x calsize = %d\n",
  9783. __func__, mem_hdr.data_payload_addr_lsw,
  9784. mem_hdr.data_payload_addr_msw, mem_hdr.mem_map_handle,
  9785. payload_size);
  9786. rc = q6asm_set_pp_params(ac, &mem_hdr, NULL, payload_size);
  9787. if (rc) {
  9788. pr_err("%s: audio audstrm cal send failed\n", __func__);
  9789. goto unlock;
  9790. }
  9791. if (cal_block)
  9792. cal_utils_mark_cal_used(cal_block);
  9793. rc = 0;
  9794. unlock:
  9795. mutex_unlock(&cal_data[ASM_AUDSTRM_CAL]->lock);
  9796. done:
  9797. return rc;
  9798. }
  9799. EXPORT_SYMBOL(q6asm_send_cal);
  9800. static int get_cal_type_index(int32_t cal_type)
  9801. {
  9802. int ret = -EINVAL;
  9803. switch (cal_type) {
  9804. case ASM_TOPOLOGY_CAL_TYPE:
  9805. ret = ASM_TOPOLOGY_CAL;
  9806. break;
  9807. case ASM_CUST_TOPOLOGY_CAL_TYPE:
  9808. ret = ASM_CUSTOM_TOP_CAL;
  9809. break;
  9810. case ASM_AUDSTRM_CAL_TYPE:
  9811. ret = ASM_AUDSTRM_CAL;
  9812. break;
  9813. case ASM_RTAC_APR_CAL_TYPE:
  9814. ret = ASM_RTAC_APR_CAL;
  9815. break;
  9816. default:
  9817. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  9818. }
  9819. return ret;
  9820. }
  9821. static int q6asm_alloc_cal(int32_t cal_type,
  9822. size_t data_size, void *data)
  9823. {
  9824. int ret = 0;
  9825. int cal_index;
  9826. pr_debug("%s:\n", __func__);
  9827. cal_index = get_cal_type_index(cal_type);
  9828. if (cal_index < 0) {
  9829. pr_err("%s: could not get cal index %d!\n",
  9830. __func__, cal_index);
  9831. ret = -EINVAL;
  9832. goto done;
  9833. }
  9834. ret = cal_utils_alloc_cal(data_size, data,
  9835. cal_data[cal_index], 0, NULL);
  9836. if (ret < 0) {
  9837. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  9838. __func__, ret, cal_type);
  9839. ret = -EINVAL;
  9840. goto done;
  9841. }
  9842. done:
  9843. return ret;
  9844. }
  9845. static int q6asm_dealloc_cal(int32_t cal_type,
  9846. size_t data_size, void *data)
  9847. {
  9848. int ret = 0;
  9849. int cal_index;
  9850. pr_debug("%s:\n", __func__);
  9851. cal_index = get_cal_type_index(cal_type);
  9852. if (cal_index < 0) {
  9853. pr_err("%s: could not get cal index %d!\n",
  9854. __func__, cal_index);
  9855. ret = -EINVAL;
  9856. goto done;
  9857. }
  9858. ret = cal_utils_dealloc_cal(data_size, data,
  9859. cal_data[cal_index]);
  9860. if (ret < 0) {
  9861. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  9862. __func__, ret, cal_type);
  9863. ret = -EINVAL;
  9864. goto done;
  9865. }
  9866. done:
  9867. return ret;
  9868. }
  9869. static int q6asm_set_cal(int32_t cal_type,
  9870. size_t data_size, void *data)
  9871. {
  9872. int ret = 0;
  9873. int cal_index;
  9874. pr_debug("%s:\n", __func__);
  9875. cal_index = get_cal_type_index(cal_type);
  9876. if (cal_index < 0) {
  9877. pr_err("%s: could not get cal index %d!\n",
  9878. __func__, cal_index);
  9879. ret = -EINVAL;
  9880. goto done;
  9881. }
  9882. ret = cal_utils_set_cal(data_size, data,
  9883. cal_data[cal_index], 0, NULL);
  9884. if (ret < 0) {
  9885. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  9886. __func__, ret, cal_type);
  9887. ret = -EINVAL;
  9888. goto done;
  9889. }
  9890. if (cal_index == ASM_CUSTOM_TOP_CAL) {
  9891. mutex_lock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  9892. set_custom_topology = 1;
  9893. mutex_unlock(&cal_data[ASM_CUSTOM_TOP_CAL]->lock);
  9894. }
  9895. done:
  9896. return ret;
  9897. }
  9898. static void q6asm_delete_cal_data(void)
  9899. {
  9900. pr_debug("%s:\n", __func__);
  9901. cal_utils_destroy_cal_types(ASM_MAX_CAL_TYPES, cal_data);
  9902. }
  9903. static int q6asm_init_cal_data(void)
  9904. {
  9905. int ret = 0;
  9906. struct cal_type_info cal_type_info[] = {
  9907. {{ASM_TOPOLOGY_CAL_TYPE,
  9908. {NULL, NULL, NULL,
  9909. q6asm_set_cal, NULL, NULL} },
  9910. {NULL, NULL, cal_utils_match_buf_num} },
  9911. {{ASM_CUST_TOPOLOGY_CAL_TYPE,
  9912. {q6asm_alloc_cal, q6asm_dealloc_cal, NULL,
  9913. q6asm_set_cal, NULL, NULL} },
  9914. {NULL, q6asm_unmap_cal_memory, cal_utils_match_buf_num} },
  9915. {{ASM_AUDSTRM_CAL_TYPE,
  9916. {q6asm_alloc_cal, q6asm_dealloc_cal, NULL,
  9917. q6asm_set_cal, NULL, NULL} },
  9918. {NULL, q6asm_unmap_cal_memory, cal_utils_match_buf_num} },
  9919. {{ASM_RTAC_APR_CAL_TYPE,
  9920. {NULL, NULL, NULL, NULL, NULL, NULL} },
  9921. {NULL, NULL, cal_utils_match_buf_num} }
  9922. };
  9923. pr_debug("%s\n", __func__);
  9924. ret = cal_utils_create_cal_types(ASM_MAX_CAL_TYPES, cal_data,
  9925. cal_type_info);
  9926. if (ret < 0) {
  9927. pr_err("%s: could not create cal type! %d\n",
  9928. __func__, ret);
  9929. ret = -EINVAL;
  9930. goto err;
  9931. }
  9932. return ret;
  9933. err:
  9934. q6asm_delete_cal_data();
  9935. return ret;
  9936. }
  9937. static int q6asm_is_valid_session(struct apr_client_data *data, void *priv)
  9938. {
  9939. struct audio_client *ac = (struct audio_client *)priv;
  9940. union asm_token_struct asm_token;
  9941. asm_token.token = data->token;
  9942. if (asm_token._token.session_id != ac->session) {
  9943. pr_err("%s: Invalid session[%d] rxed expected[%d]",
  9944. __func__, asm_token._token.session_id, ac->session);
  9945. return -EINVAL;
  9946. }
  9947. return 0;
  9948. }
  9949. int __init q6asm_init(void)
  9950. {
  9951. int lcnt, ret;
  9952. pr_debug("%s:\n", __func__);
  9953. memset(session, 0, sizeof(struct audio_session) *
  9954. (ASM_ACTIVE_STREAMS_ALLOWED + 1));
  9955. for (lcnt = 0; lcnt <= ASM_ACTIVE_STREAMS_ALLOWED; lcnt++) {
  9956. spin_lock_init(&(session[lcnt].session_lock));
  9957. mutex_init(&(session[lcnt].mutex_lock_per_session));
  9958. }
  9959. set_custom_topology = 1;
  9960. /*setup common client used for cal mem map */
  9961. common_client.session = ASM_CONTROL_SESSION;
  9962. common_client.port[0].buf = &common_buf[0];
  9963. common_client.port[1].buf = &common_buf[1];
  9964. init_waitqueue_head(&common_client.cmd_wait);
  9965. init_waitqueue_head(&common_client.time_wait);
  9966. init_waitqueue_head(&common_client.mem_wait);
  9967. atomic_set(&common_client.time_flag, 1);
  9968. INIT_LIST_HEAD(&common_client.port[0].mem_map_handle);
  9969. INIT_LIST_HEAD(&common_client.port[1].mem_map_handle);
  9970. mutex_init(&common_client.cmd_lock);
  9971. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  9972. mutex_init(&common_client.port[lcnt].lock);
  9973. spin_lock_init(&common_client.port[lcnt].dsp_lock);
  9974. }
  9975. atomic_set(&common_client.cmd_state, 0);
  9976. atomic_set(&common_client.mem_state, 0);
  9977. ret = q6asm_init_cal_data();
  9978. if (ret)
  9979. pr_err("%s: could not init cal data! ret %d\n",
  9980. __func__, ret);
  9981. config_debug_fs_init();
  9982. return 0;
  9983. }
  9984. void q6asm_exit(void)
  9985. {
  9986. q6asm_delete_cal_data();
  9987. }