q6asm.c 306 KB

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