q6asm.c 278 KB

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