q6asm.c 304 KB

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