q6asm.c 305 KB

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