q6asm.c 276 KB

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