q6asm.c 271 KB

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