q6asm.c 293 KB

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