q6afe.c 230 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/slab.h>
  6. #include <linux/debugfs.h>
  7. #include <linux/kernel.h>
  8. #include <linux/kthread.h>
  9. #include <linux/uaccess.h>
  10. #include <linux/wait.h>
  11. #include <linux/jiffies.h>
  12. #include <linux/sched.h>
  13. #include <linux/delay.h>
  14. #include <dsp/msm_audio_ion.h>
  15. #include <dsp/apr_audio-v2.h>
  16. #include <dsp/audio_cal_utils.h>
  17. #include <dsp/q6afe-v2.h>
  18. #include <dsp/q6audio-v2.h>
  19. #include <dsp/q6common.h>
  20. #include <dsp/q6core.h>
  21. #include <dsp/msm-audio-event-notify.h>
  22. #include <ipc/apr_tal.h>
  23. #include "adsp_err.h"
  24. #include "q6afecal-hwdep.h"
  25. #define WAKELOCK_TIMEOUT 5000
  26. enum {
  27. AFE_COMMON_RX_CAL = 0,
  28. AFE_COMMON_TX_CAL,
  29. AFE_LSM_TX_CAL,
  30. AFE_AANC_CAL,
  31. AFE_FB_SPKR_PROT_CAL,
  32. AFE_HW_DELAY_CAL,
  33. AFE_SIDETONE_CAL,
  34. AFE_SIDETONE_IIR_CAL,
  35. AFE_TOPOLOGY_CAL,
  36. AFE_LSM_TOPOLOGY_CAL,
  37. AFE_CUST_TOPOLOGY_CAL,
  38. AFE_FB_SPKR_PROT_TH_VI_CAL,
  39. AFE_FB_SPKR_PROT_EX_VI_CAL,
  40. MAX_AFE_CAL_TYPES
  41. };
  42. enum fbsp_state {
  43. FBSP_INCORRECT_OP_MODE,
  44. FBSP_INACTIVE,
  45. FBSP_WARMUP,
  46. FBSP_IN_PROGRESS,
  47. FBSP_SUCCESS,
  48. FBSP_FAILED,
  49. MAX_FBSP_STATE
  50. };
  51. static char fbsp_state[MAX_FBSP_STATE][50] = {
  52. [FBSP_INCORRECT_OP_MODE] = "incorrect operation mode",
  53. [FBSP_INACTIVE] = "port not started",
  54. [FBSP_WARMUP] = "waiting for warmup",
  55. [FBSP_IN_PROGRESS] = "in progress state",
  56. [FBSP_SUCCESS] = "success",
  57. [FBSP_FAILED] = "failed"
  58. };
  59. enum {
  60. USE_CALIBRATED_R0TO,
  61. USE_SAFE_R0TO
  62. };
  63. enum {
  64. QUICK_CALIB_DISABLE,
  65. QUICK_CALIB_ENABLE
  66. };
  67. enum {
  68. Q6AFE_MSM_SPKR_PROCESSING = 0,
  69. Q6AFE_MSM_SPKR_CALIBRATION,
  70. Q6AFE_MSM_SPKR_FTM_MODE
  71. };
  72. struct wlock {
  73. struct wakeup_source ws;
  74. };
  75. static struct wlock wl;
  76. struct afe_ctl {
  77. void *apr;
  78. atomic_t state;
  79. atomic_t status;
  80. wait_queue_head_t wait[AFE_MAX_PORTS];
  81. wait_queue_head_t wait_wakeup;
  82. void (*tx_cb)(uint32_t opcode,
  83. uint32_t token, uint32_t *payload, void *priv);
  84. void (*rx_cb)(uint32_t opcode,
  85. uint32_t token, uint32_t *payload, void *priv);
  86. void *tx_private_data;
  87. void *rx_private_data;
  88. uint32_t mmap_handle;
  89. void (*pri_spdif_tx_cb)(uint32_t opcode,
  90. uint32_t token, uint32_t *payload, void *priv);
  91. void (*sec_spdif_tx_cb)(uint32_t opcode,
  92. uint32_t token, uint32_t *payload, void *priv);
  93. void *pri_spdif_tx_private_data;
  94. void *sec_spdif_tx_private_data;
  95. int pri_spdif_config_change;
  96. int sec_spdif_config_change;
  97. struct work_struct afe_spdif_work;
  98. int topology[AFE_MAX_PORTS];
  99. struct cal_type_data *cal_data[MAX_AFE_CAL_TYPES];
  100. atomic_t mem_map_cal_handles[MAX_AFE_CAL_TYPES];
  101. atomic_t mem_map_cal_index;
  102. u32 afe_cal_mode[AFE_MAX_PORTS];
  103. u16 dtmf_gen_rx_portid;
  104. struct audio_cal_info_spk_prot_cfg prot_cfg;
  105. struct afe_spkr_prot_calib_get_resp calib_data;
  106. struct audio_cal_info_sp_th_vi_ftm_cfg th_ftm_cfg;
  107. struct audio_cal_info_sp_ex_vi_ftm_cfg ex_ftm_cfg;
  108. struct afe_sp_th_vi_get_param_resp th_vi_resp;
  109. struct afe_sp_ex_vi_get_param_resp ex_vi_resp;
  110. struct afe_av_dev_drift_get_param_resp av_dev_drift_resp;
  111. int vi_tx_port;
  112. int vi_rx_port;
  113. uint32_t afe_sample_rates[AFE_MAX_PORTS];
  114. struct aanc_data aanc_info;
  115. struct mutex afe_cmd_lock;
  116. int set_custom_topology;
  117. int dev_acdb_id[AFE_MAX_PORTS];
  118. routing_cb rt_cb;
  119. struct audio_uevent_data *uevent_data;
  120. /* cal info for AFE */
  121. struct afe_fw_info *fw_data;
  122. u32 island_mode[AFE_MAX_PORTS];
  123. struct vad_config vad_cfg[AFE_MAX_PORTS];
  124. struct work_struct afe_dc_work;
  125. struct notifier_block event_notifier;
  126. };
  127. static atomic_t afe_ports_mad_type[SLIMBUS_PORT_LAST - SLIMBUS_0_RX];
  128. static unsigned long afe_configured_cmd;
  129. static struct afe_ctl this_afe;
  130. #define TIMEOUT_MS 1000
  131. #define Q6AFE_MAX_VOLUME 0x3FFF
  132. static int pcm_afe_instance[2];
  133. static int proxy_afe_instance[2];
  134. bool afe_close_done[2] = {true, true};
  135. #define SIZEOF_CFG_CMD(y) \
  136. (sizeof(struct apr_hdr) + sizeof(u16) + (sizeof(struct y)))
  137. static int afe_get_cal_hw_delay(int32_t path,
  138. struct audio_cal_hw_delay_entry *entry);
  139. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index);
  140. int afe_get_topology(int port_id)
  141. {
  142. int topology;
  143. int port_index = afe_get_port_index(port_id);
  144. if ((port_index < 0) || (port_index >= AFE_MAX_PORTS)) {
  145. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  146. topology = -EINVAL;
  147. goto done;
  148. }
  149. topology = this_afe.topology[port_index];
  150. done:
  151. return topology;
  152. }
  153. /**
  154. * afe_set_aanc_info -
  155. * Update AFE AANC info
  156. *
  157. * @q6_aanc_info: AFE AANC info params
  158. *
  159. */
  160. void afe_set_aanc_info(struct aanc_data *q6_aanc_info)
  161. {
  162. this_afe.aanc_info.aanc_active = q6_aanc_info->aanc_active;
  163. this_afe.aanc_info.aanc_rx_port = q6_aanc_info->aanc_rx_port;
  164. this_afe.aanc_info.aanc_tx_port = q6_aanc_info->aanc_tx_port;
  165. pr_debug("%s: aanc active is %d rx port is 0x%x, tx port is 0x%x\n",
  166. __func__,
  167. this_afe.aanc_info.aanc_active,
  168. this_afe.aanc_info.aanc_rx_port,
  169. this_afe.aanc_info.aanc_tx_port);
  170. }
  171. EXPORT_SYMBOL(afe_set_aanc_info);
  172. static void afe_callback_debug_print(struct apr_client_data *data)
  173. {
  174. uint32_t *payload;
  175. payload = data->payload;
  176. if (data->payload_size >= 8)
  177. pr_debug("%s: code = 0x%x PL#0[0x%x], PL#1[0x%x], size = %d\n",
  178. __func__, data->opcode, payload[0], payload[1],
  179. data->payload_size);
  180. else if (data->payload_size >= 4)
  181. pr_debug("%s: code = 0x%x PL#0[0x%x], size = %d\n",
  182. __func__, data->opcode, payload[0],
  183. data->payload_size);
  184. else
  185. pr_debug("%s: code = 0x%x, size = %d\n",
  186. __func__, data->opcode, data->payload_size);
  187. }
  188. static void av_dev_drift_afe_cb_handler(uint32_t opcode, uint32_t *payload,
  189. uint32_t payload_size)
  190. {
  191. u32 param_id;
  192. size_t expected_size =
  193. sizeof(u32) + sizeof(struct afe_param_id_dev_timing_stats);
  194. /* Get param ID depending on command type */
  195. param_id = (opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) ? payload[3] :
  196. payload[2];
  197. if (param_id != AFE_PARAM_ID_DEV_TIMING_STATS) {
  198. pr_err("%s: Unrecognized param ID %d\n", __func__, param_id);
  199. return;
  200. }
  201. switch (opcode) {
  202. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  203. expected_size += sizeof(struct param_hdr_v1);
  204. if (payload_size < expected_size) {
  205. pr_err("%s: Error: received size %d, expected size %zu\n",
  206. __func__, payload_size, expected_size);
  207. return;
  208. }
  209. /* Repack response to add IID */
  210. this_afe.av_dev_drift_resp.status = payload[0];
  211. this_afe.av_dev_drift_resp.pdata.module_id = payload[1];
  212. this_afe.av_dev_drift_resp.pdata.instance_id = INSTANCE_ID_0;
  213. this_afe.av_dev_drift_resp.pdata.param_id = payload[2];
  214. this_afe.av_dev_drift_resp.pdata.param_size = payload[3];
  215. memcpy(&this_afe.av_dev_drift_resp.timing_stats, &payload[4],
  216. sizeof(struct afe_param_id_dev_timing_stats));
  217. break;
  218. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  219. expected_size += sizeof(struct param_hdr_v3);
  220. if (payload_size < expected_size) {
  221. pr_err("%s: Error: received size %d, expected size %zu\n",
  222. __func__, payload_size, expected_size);
  223. return;
  224. }
  225. memcpy(&this_afe.av_dev_drift_resp, payload,
  226. sizeof(this_afe.av_dev_drift_resp));
  227. break;
  228. default:
  229. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  230. return;
  231. }
  232. if (!this_afe.av_dev_drift_resp.status) {
  233. atomic_set(&this_afe.state, 0);
  234. } else {
  235. pr_debug("%s: av_dev_drift_resp status: %d", __func__,
  236. this_afe.av_dev_drift_resp.status);
  237. atomic_set(&this_afe.state, -1);
  238. }
  239. }
  240. static int32_t sp_make_afe_callback(uint32_t opcode, uint32_t *payload,
  241. uint32_t payload_size)
  242. {
  243. struct param_hdr_v3 param_hdr;
  244. u32 *data_dest = NULL;
  245. u32 *data_start = NULL;
  246. size_t expected_size = sizeof(u32);
  247. memset(&param_hdr, 0, sizeof(param_hdr));
  248. /* Set command specific details */
  249. switch (opcode) {
  250. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  251. expected_size += sizeof(struct param_hdr_v1);
  252. param_hdr.module_id = payload[1];
  253. param_hdr.instance_id = INSTANCE_ID_0;
  254. param_hdr.param_id = payload[2];
  255. param_hdr.param_size = payload[3];
  256. data_start = &payload[4];
  257. break;
  258. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  259. expected_size += sizeof(struct param_hdr_v3);
  260. memcpy(&param_hdr, &payload[1], sizeof(struct param_hdr_v3));
  261. data_start = &payload[5];
  262. break;
  263. default:
  264. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  265. return -EINVAL;
  266. }
  267. switch (param_hdr.param_id) {
  268. case AFE_PARAM_ID_CALIB_RES_CFG_V2:
  269. expected_size += sizeof(struct asm_calib_res_cfg);
  270. data_dest = (u32 *) &this_afe.calib_data;
  271. break;
  272. case AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS:
  273. expected_size += sizeof(struct afe_sp_th_vi_ftm_params);
  274. data_dest = (u32 *) &this_afe.th_vi_resp;
  275. break;
  276. case AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS:
  277. expected_size += sizeof(struct afe_sp_ex_vi_ftm_params);
  278. data_dest = (u32 *) &this_afe.ex_vi_resp;
  279. break;
  280. default:
  281. pr_err("%s: Unrecognized param ID %d\n", __func__,
  282. param_hdr.param_id);
  283. return -EINVAL;
  284. }
  285. if (payload_size < expected_size) {
  286. pr_err("%s: Error: received size %d, expected size %zu for param %d\n",
  287. __func__, payload_size, expected_size,
  288. param_hdr.param_id);
  289. return -EINVAL;
  290. }
  291. data_dest[0] = payload[0];
  292. memcpy(&data_dest[1], &param_hdr, sizeof(struct param_hdr_v3));
  293. memcpy(&data_dest[5], data_start, param_hdr.param_size);
  294. if (!data_dest[0]) {
  295. atomic_set(&this_afe.state, 0);
  296. } else {
  297. pr_debug("%s: status: %d", __func__, data_dest[0]);
  298. atomic_set(&this_afe.state, -1);
  299. }
  300. return 0;
  301. }
  302. static void afe_notify_dc_presence(void)
  303. {
  304. pr_debug("%s: DC detected\n", __func__);
  305. msm_aud_evt_notifier_call_chain(MSM_AUD_DC_EVENT, NULL);
  306. schedule_work(&this_afe.afe_dc_work);
  307. }
  308. static void afe_notify_dc_presence_work_fn(struct work_struct *work)
  309. {
  310. int ret = 0;
  311. char event[] = "DC_PRESENCE=TRUE";
  312. ret = q6core_send_uevent(this_afe.uevent_data, event);
  313. if (ret)
  314. pr_err("%s: Send UEvent %s failed :%d\n",
  315. __func__, event, ret);
  316. }
  317. static int afe_aud_event_notify(struct notifier_block *self,
  318. unsigned long action, void *data)
  319. {
  320. switch (action) {
  321. case SWR_WAKE_IRQ_REGISTER:
  322. afe_send_cmd_wakeup_register(data, true);
  323. break;
  324. case SWR_WAKE_IRQ_DEREGISTER:
  325. afe_send_cmd_wakeup_register(data, false);
  326. break;
  327. default:
  328. pr_err("%s: invalid event type: %lu\n", __func__, action);
  329. return -EINVAL;
  330. }
  331. return 0;
  332. }
  333. static void afe_notify_spdif_fmt_update_work_fn(struct work_struct *work)
  334. {
  335. int ret = 0;
  336. char event_pri[] = "PRI_SPDIF_TX=MEDIA_CONFIG_CHANGE";
  337. char event_sec[] = "SEC_SPDIF_TX=MEDIA_CONFIG_CHANGE";
  338. if (this_afe.pri_spdif_config_change) {
  339. this_afe.pri_spdif_config_change = 0;
  340. ret = q6core_send_uevent(this_afe.uevent_data, event_pri);
  341. if (ret)
  342. pr_err("%s: Send UEvent %s failed :%d\n",
  343. __func__, event_pri, ret);
  344. }
  345. if (this_afe.sec_spdif_config_change) {
  346. this_afe.sec_spdif_config_change = 0;
  347. ret = q6core_send_uevent(this_afe.uevent_data, event_sec);
  348. if (ret)
  349. pr_err("%s: Send UEvent %s failed :%d\n",
  350. __func__, event_sec, ret);
  351. }
  352. }
  353. static void afe_notify_spdif_fmt_update(void *payload)
  354. {
  355. struct afe_port_mod_evt_rsp_hdr *evt_pl;
  356. evt_pl = (struct afe_port_mod_evt_rsp_hdr *)payload;
  357. if (evt_pl->port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX)
  358. this_afe.pri_spdif_config_change = 1;
  359. else
  360. this_afe.sec_spdif_config_change = 1;
  361. schedule_work(&this_afe.afe_spdif_work);
  362. }
  363. static int32_t afe_callback(struct apr_client_data *data, void *priv)
  364. {
  365. if (!data) {
  366. pr_err("%s: Invalid param data\n", __func__);
  367. return -EINVAL;
  368. }
  369. if (data->opcode == RESET_EVENTS) {
  370. pr_debug("%s: reset event = %d %d apr[%pK]\n",
  371. __func__,
  372. data->reset_event, data->reset_proc, this_afe.apr);
  373. cal_utils_clear_cal_block_q6maps(MAX_AFE_CAL_TYPES,
  374. this_afe.cal_data);
  375. /* Reset the custom topology mode: to resend again to AFE. */
  376. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  377. this_afe.set_custom_topology = 1;
  378. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  379. rtac_clear_mapping(AFE_RTAC_CAL);
  380. if (this_afe.apr) {
  381. apr_reset(this_afe.apr);
  382. atomic_set(&this_afe.state, 0);
  383. this_afe.apr = NULL;
  384. rtac_set_afe_handle(this_afe.apr);
  385. }
  386. /*
  387. * Pass reset events to proxy driver, if cb is registered
  388. */
  389. if (this_afe.tx_cb) {
  390. this_afe.tx_cb(data->opcode, data->token,
  391. data->payload,
  392. this_afe.tx_private_data);
  393. this_afe.tx_cb = NULL;
  394. }
  395. if (this_afe.rx_cb) {
  396. this_afe.rx_cb(data->opcode, data->token,
  397. data->payload,
  398. this_afe.rx_private_data);
  399. this_afe.rx_cb = NULL;
  400. }
  401. return 0;
  402. }
  403. afe_callback_debug_print(data);
  404. if (data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V2 ||
  405. data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) {
  406. uint32_t *payload = data->payload;
  407. uint32_t param_id;
  408. if (!payload || (data->token >= AFE_MAX_PORTS)) {
  409. pr_err("%s: Error: size %d payload %pK token %d\n",
  410. __func__, data->payload_size,
  411. payload, data->token);
  412. return -EINVAL;
  413. }
  414. param_id = (data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) ?
  415. payload[3] :
  416. payload[2];
  417. if (param_id == AFE_PARAM_ID_DEV_TIMING_STATS) {
  418. av_dev_drift_afe_cb_handler(data->opcode, data->payload,
  419. data->payload_size);
  420. } else {
  421. if (rtac_make_afe_callback(data->payload,
  422. data->payload_size))
  423. return 0;
  424. if (sp_make_afe_callback(data->opcode, data->payload,
  425. data->payload_size))
  426. return -EINVAL;
  427. }
  428. wake_up(&this_afe.wait[data->token]);
  429. } else if (data->opcode == AFE_EVENT_MBHC_DETECTION_SW_WA) {
  430. msm_aud_evt_notifier_call_chain(SWR_WAKE_IRQ_EVENT, NULL);
  431. } else if (data->payload_size) {
  432. uint32_t *payload;
  433. uint16_t port_id = 0;
  434. payload = data->payload;
  435. if (data->opcode == APR_BASIC_RSP_RESULT) {
  436. pr_debug("%s:opcode = 0x%x cmd = 0x%x status = 0x%x token=%d\n",
  437. __func__, data->opcode,
  438. payload[0], payload[1], data->token);
  439. /* payload[1] contains the error status for response */
  440. if (payload[1] != 0) {
  441. atomic_set(&this_afe.status, payload[1]);
  442. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  443. __func__, payload[0], payload[1]);
  444. }
  445. switch (payload[0]) {
  446. case AFE_PORT_CMD_SET_PARAM_V2:
  447. case AFE_PORT_CMD_SET_PARAM_V3:
  448. if (rtac_make_afe_callback(payload,
  449. data->payload_size))
  450. return 0;
  451. case AFE_PORT_CMD_DEVICE_STOP:
  452. case AFE_PORT_CMD_DEVICE_START:
  453. case AFE_PSEUDOPORT_CMD_START:
  454. case AFE_PSEUDOPORT_CMD_STOP:
  455. case AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS:
  456. case AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS:
  457. case AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER:
  458. case AFE_PORTS_CMD_DTMF_CTL:
  459. case AFE_SVC_CMD_SET_PARAM:
  460. case AFE_SVC_CMD_SET_PARAM_V2:
  461. case AFE_PORT_CMD_MOD_EVENT_CFG:
  462. atomic_set(&this_afe.state, 0);
  463. wake_up(&this_afe.wait[data->token]);
  464. break;
  465. case AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER:
  466. break;
  467. case AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2:
  468. port_id = RT_PROXY_PORT_001_TX;
  469. break;
  470. case AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2:
  471. port_id = RT_PROXY_PORT_001_RX;
  472. break;
  473. case AFE_CMD_ADD_TOPOLOGIES:
  474. atomic_set(&this_afe.state, 0);
  475. wake_up(&this_afe.wait[data->token]);
  476. pr_debug("%s: AFE_CMD_ADD_TOPOLOGIES cmd 0x%x\n",
  477. __func__, payload[1]);
  478. break;
  479. case AFE_PORT_CMD_GET_PARAM_V2:
  480. case AFE_PORT_CMD_GET_PARAM_V3:
  481. /*
  482. * Should only come here if there is an APR
  483. * error or malformed APR packet. Otherwise
  484. * response will be returned as
  485. * AFE_PORT_CMDRSP_GET_PARAM_V2/3
  486. */
  487. pr_debug("%s: AFE Get Param opcode 0x%x token 0x%x src %d dest %d\n",
  488. __func__, data->opcode, data->token,
  489. data->src_port, data->dest_port);
  490. if (payload[1] != 0) {
  491. pr_err("%s: AFE Get Param failed with error %d\n",
  492. __func__, payload[1]);
  493. if (rtac_make_afe_callback(
  494. payload,
  495. data->payload_size))
  496. return 0;
  497. }
  498. atomic_set(&this_afe.state, payload[1]);
  499. wake_up(&this_afe.wait[data->token]);
  500. break;
  501. case AFE_SVC_CMD_EVENT_CFG:
  502. atomic_set(&this_afe.state, payload[1]);
  503. wake_up(&this_afe.wait_wakeup);
  504. break;
  505. default:
  506. pr_err("%s: Unknown cmd 0x%x\n", __func__,
  507. payload[0]);
  508. break;
  509. }
  510. } else if (data->opcode ==
  511. AFE_SERVICE_CMDRSP_SHARED_MEM_MAP_REGIONS) {
  512. pr_debug("%s: mmap_handle: 0x%x, cal index %d\n",
  513. __func__, payload[0],
  514. atomic_read(&this_afe.mem_map_cal_index));
  515. if (atomic_read(&this_afe.mem_map_cal_index) != -1)
  516. atomic_set(&this_afe.mem_map_cal_handles[
  517. atomic_read(
  518. &this_afe.mem_map_cal_index)],
  519. (uint32_t)payload[0]);
  520. else
  521. this_afe.mmap_handle = payload[0];
  522. atomic_set(&this_afe.state, 0);
  523. wake_up(&this_afe.wait[data->token]);
  524. } else if (data->opcode == AFE_EVENT_RT_PROXY_PORT_STATUS) {
  525. port_id = (uint16_t)(0x0000FFFF & payload[0]);
  526. } else if (data->opcode == AFE_PORT_MOD_EVENT) {
  527. u32 flag_dc_presence[2];
  528. uint32_t *payload = data->payload;
  529. struct afe_port_mod_evt_rsp_hdr *evt_pl =
  530. (struct afe_port_mod_evt_rsp_hdr *)payload;
  531. if (!payload || (data->token >= AFE_MAX_PORTS)) {
  532. pr_err("%s: Error: size %d payload %pK token %d\n",
  533. __func__, data->payload_size,
  534. payload, data->token);
  535. return -EINVAL;
  536. }
  537. if ((evt_pl->module_id == AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI) &&
  538. (evt_pl->event_id == AFE_PORT_SP_DC_DETECTION_EVENT) &&
  539. (evt_pl->payload_size == sizeof(flag_dc_presence))) {
  540. memcpy(&flag_dc_presence,
  541. (uint8_t *)payload +
  542. sizeof(struct afe_port_mod_evt_rsp_hdr),
  543. evt_pl->payload_size);
  544. if (flag_dc_presence[0] == 1 ||
  545. flag_dc_presence[1] == 1) {
  546. afe_notify_dc_presence();
  547. }
  548. } else if (evt_pl->port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  549. if (this_afe.pri_spdif_tx_cb) {
  550. this_afe.pri_spdif_tx_cb(data->opcode,
  551. data->token, data->payload,
  552. this_afe.pri_spdif_tx_private_data);
  553. }
  554. afe_notify_spdif_fmt_update(data->payload);
  555. } else if (evt_pl->port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  556. if (this_afe.sec_spdif_tx_cb) {
  557. this_afe.sec_spdif_tx_cb(data->opcode,
  558. data->token, data->payload,
  559. this_afe.sec_spdif_tx_private_data);
  560. }
  561. afe_notify_spdif_fmt_update(data->payload);
  562. } else {
  563. pr_debug("%s: mod ID = 0x%x event_id = 0x%x\n",
  564. __func__, evt_pl->module_id,
  565. evt_pl->event_id);
  566. }
  567. }
  568. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  569. switch (port_id) {
  570. case RT_PROXY_PORT_001_TX: {
  571. if (this_afe.tx_cb) {
  572. this_afe.tx_cb(data->opcode, data->token,
  573. data->payload,
  574. this_afe.tx_private_data);
  575. }
  576. break;
  577. }
  578. case RT_PROXY_PORT_001_RX: {
  579. if (this_afe.rx_cb) {
  580. this_afe.rx_cb(data->opcode, data->token,
  581. data->payload,
  582. this_afe.rx_private_data);
  583. }
  584. break;
  585. }
  586. default:
  587. pr_debug("%s: default case 0x%x\n", __func__, port_id);
  588. break;
  589. }
  590. }
  591. return 0;
  592. }
  593. /**
  594. * afe_get_port_type -
  595. * Retrieve AFE port type whether RX or TX
  596. *
  597. * @port_id: AFE Port ID number
  598. *
  599. * Returns RX/TX type.
  600. */
  601. int afe_get_port_type(u16 port_id)
  602. {
  603. int ret = MSM_AFE_PORT_TYPE_RX;
  604. switch (port_id) {
  605. case VOICE_RECORD_RX:
  606. case VOICE_RECORD_TX:
  607. ret = MSM_AFE_PORT_TYPE_TX;
  608. break;
  609. case VOICE_PLAYBACK_TX:
  610. case VOICE2_PLAYBACK_TX:
  611. ret = MSM_AFE_PORT_TYPE_RX;
  612. break;
  613. default:
  614. /* Odd numbered ports are TX and Rx are Even numbered */
  615. if (port_id & 0x1)
  616. ret = MSM_AFE_PORT_TYPE_TX;
  617. else
  618. ret = MSM_AFE_PORT_TYPE_RX;
  619. break;
  620. }
  621. return ret;
  622. }
  623. EXPORT_SYMBOL(afe_get_port_type);
  624. int afe_sizeof_cfg_cmd(u16 port_id)
  625. {
  626. int ret_size;
  627. switch (port_id) {
  628. case PRIMARY_I2S_RX:
  629. case PRIMARY_I2S_TX:
  630. case SECONDARY_I2S_RX:
  631. case SECONDARY_I2S_TX:
  632. case MI2S_RX:
  633. case MI2S_TX:
  634. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  635. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  636. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  637. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  638. case AFE_PORT_ID_QUINARY_MI2S_RX:
  639. case AFE_PORT_ID_QUINARY_MI2S_TX:
  640. ret_size = SIZEOF_CFG_CMD(afe_param_id_i2s_cfg);
  641. break;
  642. case HDMI_RX:
  643. case DISPLAY_PORT_RX:
  644. ret_size =
  645. SIZEOF_CFG_CMD(afe_param_id_hdmi_multi_chan_audio_cfg);
  646. break;
  647. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  648. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  649. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  650. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  651. ret_size =
  652. SIZEOF_CFG_CMD(afe_param_id_spdif_cfg_v2);
  653. break;
  654. case SLIMBUS_0_RX:
  655. case SLIMBUS_0_TX:
  656. case SLIMBUS_1_RX:
  657. case SLIMBUS_1_TX:
  658. case SLIMBUS_2_RX:
  659. case SLIMBUS_2_TX:
  660. case SLIMBUS_3_RX:
  661. case SLIMBUS_3_TX:
  662. case SLIMBUS_4_RX:
  663. case SLIMBUS_4_TX:
  664. case SLIMBUS_5_RX:
  665. case SLIMBUS_5_TX:
  666. case SLIMBUS_6_RX:
  667. case SLIMBUS_6_TX:
  668. case SLIMBUS_7_RX:
  669. case SLIMBUS_7_TX:
  670. case SLIMBUS_8_RX:
  671. case SLIMBUS_8_TX:
  672. case SLIMBUS_9_RX:
  673. case SLIMBUS_9_TX:
  674. ret_size = SIZEOF_CFG_CMD(afe_param_id_slimbus_cfg);
  675. break;
  676. case VOICE_PLAYBACK_TX:
  677. case VOICE2_PLAYBACK_TX:
  678. case VOICE_RECORD_RX:
  679. case VOICE_RECORD_TX:
  680. ret_size = SIZEOF_CFG_CMD(afe_param_id_pseudo_port_cfg);
  681. break;
  682. case RT_PROXY_PORT_001_RX:
  683. case RT_PROXY_PORT_001_TX:
  684. ret_size = SIZEOF_CFG_CMD(afe_param_id_rt_proxy_port_cfg);
  685. break;
  686. case AFE_PORT_ID_USB_RX:
  687. case AFE_PORT_ID_USB_TX:
  688. ret_size = SIZEOF_CFG_CMD(afe_param_id_usb_audio_cfg);
  689. break;
  690. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  691. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  692. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  693. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  694. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  695. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  696. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  697. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  698. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  699. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  700. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  701. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  702. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  703. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  704. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  705. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  706. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  707. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  708. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  709. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  710. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  711. ret_size = SIZEOF_CFG_CMD(afe_param_id_cdc_dma_cfg_t);
  712. break;
  713. case AFE_PORT_ID_PRIMARY_PCM_RX:
  714. case AFE_PORT_ID_PRIMARY_PCM_TX:
  715. case AFE_PORT_ID_SECONDARY_PCM_RX:
  716. case AFE_PORT_ID_SECONDARY_PCM_TX:
  717. case AFE_PORT_ID_TERTIARY_PCM_RX:
  718. case AFE_PORT_ID_TERTIARY_PCM_TX:
  719. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  720. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  721. case AFE_PORT_ID_QUINARY_PCM_RX:
  722. case AFE_PORT_ID_QUINARY_PCM_TX:
  723. case AFE_PORT_ID_SENARY_PCM_RX:
  724. case AFE_PORT_ID_SENARY_PCM_TX:
  725. default:
  726. pr_debug("%s: default case 0x%x\n", __func__, port_id);
  727. ret_size = SIZEOF_CFG_CMD(afe_param_id_pcm_cfg);
  728. break;
  729. }
  730. return ret_size;
  731. }
  732. /**
  733. * afe_q6_interface_prepare -
  734. * wrapper API to check Q6 AFE registered to APR otherwise registers
  735. *
  736. * Returns 0 on success or error on failure.
  737. */
  738. int afe_q6_interface_prepare(void)
  739. {
  740. int ret = 0;
  741. pr_debug("%s:\n", __func__);
  742. if (this_afe.apr == NULL) {
  743. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  744. 0xFFFFFFFF, &this_afe);
  745. if (this_afe.apr == NULL) {
  746. pr_err("%s: Unable to register AFE\n", __func__);
  747. ret = -ENODEV;
  748. }
  749. rtac_set_afe_handle(this_afe.apr);
  750. }
  751. return ret;
  752. }
  753. EXPORT_SYMBOL(afe_q6_interface_prepare);
  754. /*
  755. * afe_apr_send_pkt : returns 0 on success, negative otherwise.
  756. */
  757. static int afe_apr_send_pkt(void *data, wait_queue_head_t *wait)
  758. {
  759. int ret;
  760. if (wait)
  761. atomic_set(&this_afe.state, 1);
  762. atomic_set(&this_afe.status, 0);
  763. ret = apr_send_pkt(this_afe.apr, data);
  764. if (ret > 0) {
  765. if (wait) {
  766. ret = wait_event_timeout(*wait,
  767. (atomic_read(&this_afe.state) == 0),
  768. msecs_to_jiffies(2 * TIMEOUT_MS));
  769. if (!ret) {
  770. ret = -ETIMEDOUT;
  771. } else if (atomic_read(&this_afe.status) > 0) {
  772. pr_err("%s: DSP returned error[%s]\n", __func__,
  773. adsp_err_get_err_str(atomic_read(
  774. &this_afe.status)));
  775. ret = adsp_err_get_lnx_err_code(
  776. atomic_read(&this_afe.status));
  777. } else {
  778. ret = 0;
  779. }
  780. } else {
  781. ret = 0;
  782. }
  783. } else if (ret == 0) {
  784. pr_err("%s: packet not transmitted\n", __func__);
  785. /* apr_send_pkt can return 0 when nothing is transmitted */
  786. ret = -EINVAL;
  787. }
  788. pr_debug("%s: leave %d\n", __func__, ret);
  789. return ret;
  790. }
  791. /* This function shouldn't be called directly. Instead call q6afe_set_params. */
  792. static int q6afe_set_params_v2(u16 port_id, int index,
  793. struct mem_mapping_hdr *mem_hdr,
  794. u8 *packed_param_data, u32 packed_data_size)
  795. {
  796. struct afe_port_cmd_set_param_v2 *set_param = NULL;
  797. uint32_t size = sizeof(struct afe_port_cmd_set_param_v2);
  798. int rc = 0;
  799. if (packed_param_data != NULL)
  800. size += packed_data_size;
  801. set_param = kzalloc(size, GFP_KERNEL);
  802. if (set_param == NULL)
  803. return -ENOMEM;
  804. set_param->apr_hdr.hdr_field =
  805. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  806. APR_PKT_VER);
  807. set_param->apr_hdr.pkt_size = size;
  808. set_param->apr_hdr.src_port = 0;
  809. set_param->apr_hdr.dest_port = 0;
  810. set_param->apr_hdr.token = index;
  811. set_param->apr_hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  812. set_param->port_id = port_id;
  813. if (packed_data_size > U16_MAX) {
  814. pr_err("%s: Invalid data size for set params V2 %d\n", __func__,
  815. packed_data_size);
  816. rc = -EINVAL;
  817. goto done;
  818. }
  819. set_param->payload_size = packed_data_size;
  820. if (mem_hdr != NULL) {
  821. set_param->mem_hdr = *mem_hdr;
  822. } else if (packed_param_data != NULL) {
  823. memcpy(&set_param->param_data, packed_param_data,
  824. packed_data_size);
  825. } else {
  826. pr_err("%s: Both memory header and param data are NULL\n",
  827. __func__);
  828. rc = -EINVAL;
  829. goto done;
  830. }
  831. rc = afe_apr_send_pkt(set_param, &this_afe.wait[index]);
  832. done:
  833. kfree(set_param);
  834. return rc;
  835. }
  836. /* This function shouldn't be called directly. Instead call q6afe_set_params. */
  837. static int q6afe_set_params_v3(u16 port_id, int index,
  838. struct mem_mapping_hdr *mem_hdr,
  839. u8 *packed_param_data, u32 packed_data_size)
  840. {
  841. struct afe_port_cmd_set_param_v3 *set_param = NULL;
  842. uint32_t size = sizeof(struct afe_port_cmd_set_param_v3);
  843. int rc = 0;
  844. if (packed_param_data != NULL)
  845. size += packed_data_size;
  846. set_param = kzalloc(size, GFP_KERNEL);
  847. if (set_param == NULL)
  848. return -ENOMEM;
  849. set_param->apr_hdr.hdr_field =
  850. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  851. APR_PKT_VER);
  852. set_param->apr_hdr.pkt_size = size;
  853. set_param->apr_hdr.src_port = 0;
  854. set_param->apr_hdr.dest_port = 0;
  855. set_param->apr_hdr.token = index;
  856. set_param->apr_hdr.opcode = AFE_PORT_CMD_SET_PARAM_V3;
  857. set_param->port_id = port_id;
  858. set_param->payload_size = packed_data_size;
  859. if (mem_hdr != NULL) {
  860. set_param->mem_hdr = *mem_hdr;
  861. } else if (packed_param_data != NULL) {
  862. memcpy(&set_param->param_data, packed_param_data,
  863. packed_data_size);
  864. } else {
  865. pr_err("%s: Both memory header and param data are NULL\n",
  866. __func__);
  867. rc = -EINVAL;
  868. goto done;
  869. }
  870. rc = afe_apr_send_pkt(set_param, &this_afe.wait[index]);
  871. done:
  872. kfree(set_param);
  873. return rc;
  874. }
  875. static int q6afe_set_params(u16 port_id, int index,
  876. struct mem_mapping_hdr *mem_hdr,
  877. u8 *packed_param_data, u32 packed_data_size)
  878. {
  879. int ret = 0;
  880. ret = afe_q6_interface_prepare();
  881. if (ret != 0) {
  882. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  883. return ret;
  884. }
  885. port_id = q6audio_get_port_id(port_id);
  886. ret = q6audio_validate_port(port_id);
  887. if (ret < 0) {
  888. pr_err("%s: Not a valid port id = 0x%x ret %d\n", __func__,
  889. port_id, ret);
  890. return -EINVAL;
  891. }
  892. if (index < 0 || index >= AFE_MAX_PORTS) {
  893. pr_err("%s: AFE port index[%d] invalid\n", __func__, index);
  894. return -EINVAL;
  895. }
  896. if (q6common_is_instance_id_supported())
  897. return q6afe_set_params_v3(port_id, index, mem_hdr,
  898. packed_param_data, packed_data_size);
  899. else
  900. return q6afe_set_params_v2(port_id, index, mem_hdr,
  901. packed_param_data, packed_data_size);
  902. }
  903. static int q6afe_pack_and_set_param_in_band(u16 port_id, int index,
  904. struct param_hdr_v3 param_hdr,
  905. u8 *param_data)
  906. {
  907. u8 *packed_param_data = NULL;
  908. int packed_data_size = sizeof(union param_hdrs) + param_hdr.param_size;
  909. int ret;
  910. packed_param_data = kzalloc(packed_data_size, GFP_KERNEL);
  911. if (packed_param_data == NULL)
  912. return -ENOMEM;
  913. ret = q6common_pack_pp_params(packed_param_data, &param_hdr, param_data,
  914. &packed_data_size);
  915. if (ret) {
  916. pr_err("%s: Failed to pack param header and data, error %d\n",
  917. __func__, ret);
  918. goto fail_cmd;
  919. }
  920. ret = q6afe_set_params(port_id, index, NULL, packed_param_data,
  921. packed_data_size);
  922. fail_cmd:
  923. kfree(packed_param_data);
  924. return ret;
  925. }
  926. static int q6afe_set_aanc_level(void)
  927. {
  928. struct param_hdr_v3 param_hdr;
  929. struct afe_param_id_aanc_noise_reduction aanc_noise_level;
  930. int ret = 0;
  931. uint16_t tx_port = 0;
  932. if (!this_afe.aanc_info.aanc_active)
  933. return -EINVAL;
  934. pr_debug("%s: level: %d\n", __func__, this_afe.aanc_info.level);
  935. memset(&aanc_noise_level, 0, sizeof(aanc_noise_level));
  936. aanc_noise_level.minor_version = 1;
  937. aanc_noise_level.ad_beta = this_afe.aanc_info.level;
  938. memset(&param_hdr, 0, sizeof(param_hdr));
  939. param_hdr.module_id = AFE_MODULE_AANC;
  940. param_hdr.instance_id = INSTANCE_ID_0;
  941. param_hdr.param_id = AFE_PARAM_ID_AANC_NOISE_REDUCTION;
  942. param_hdr.param_size = sizeof(struct afe_param_id_aanc_noise_reduction);
  943. tx_port = this_afe.aanc_info.aanc_tx_port;
  944. ret = q6afe_pack_and_set_param_in_band(tx_port,
  945. q6audio_get_port_index(tx_port),
  946. param_hdr,
  947. (u8 *) &aanc_noise_level);
  948. if (ret)
  949. pr_err("%s: AANC noise level enable failed for tx_port 0x%x ret %d\n",
  950. __func__, tx_port, ret);
  951. return ret;
  952. }
  953. /**
  954. * afe_set_aanc_noise_level - controls aanc noise reduction strength
  955. *
  956. * @level: Noise level to be controlled
  957. *
  958. * Returns 0 on success or error on failure.
  959. */
  960. int afe_set_aanc_noise_level(int level)
  961. {
  962. int ret = 0;
  963. if (this_afe.aanc_info.level == level)
  964. return ret;
  965. mutex_lock(&this_afe.afe_cmd_lock);
  966. this_afe.aanc_info.level = level;
  967. ret = q6afe_set_aanc_level();
  968. mutex_unlock(&this_afe.afe_cmd_lock);
  969. return ret;
  970. }
  971. EXPORT_SYMBOL(afe_set_aanc_noise_level);
  972. /* This function shouldn't be called directly. Instead call q6afe_get_param. */
  973. static int q6afe_get_params_v2(u16 port_id, int index,
  974. struct mem_mapping_hdr *mem_hdr,
  975. struct param_hdr_v3 *param_hdr)
  976. {
  977. struct afe_port_cmd_get_param_v2 afe_get_param;
  978. u32 param_size = param_hdr->param_size;
  979. memset(&afe_get_param, 0, sizeof(afe_get_param));
  980. afe_get_param.apr_hdr.hdr_field =
  981. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  982. APR_PKT_VER);
  983. afe_get_param.apr_hdr.pkt_size = sizeof(afe_get_param) + param_size;
  984. afe_get_param.apr_hdr.src_port = 0;
  985. afe_get_param.apr_hdr.dest_port = 0;
  986. afe_get_param.apr_hdr.token = index;
  987. afe_get_param.apr_hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  988. afe_get_param.port_id = port_id;
  989. afe_get_param.payload_size = sizeof(struct param_hdr_v1) + param_size;
  990. if (mem_hdr != NULL)
  991. afe_get_param.mem_hdr = *mem_hdr;
  992. /* Set MID and PID in command */
  993. afe_get_param.module_id = param_hdr->module_id;
  994. afe_get_param.param_id = param_hdr->param_id;
  995. /* Set param header in payload */
  996. afe_get_param.param_hdr.module_id = param_hdr->module_id;
  997. afe_get_param.param_hdr.param_id = param_hdr->param_id;
  998. afe_get_param.param_hdr.param_size = param_size;
  999. return afe_apr_send_pkt(&afe_get_param, &this_afe.wait[index]);
  1000. }
  1001. /* This function shouldn't be called directly. Instead call q6afe_get_param. */
  1002. static int q6afe_get_params_v3(u16 port_id, int index,
  1003. struct mem_mapping_hdr *mem_hdr,
  1004. struct param_hdr_v3 *param_hdr)
  1005. {
  1006. struct afe_port_cmd_get_param_v3 afe_get_param;
  1007. memset(&afe_get_param, 0, sizeof(afe_get_param));
  1008. afe_get_param.apr_hdr.hdr_field =
  1009. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1010. APR_PKT_VER);
  1011. afe_get_param.apr_hdr.pkt_size = sizeof(afe_get_param);
  1012. afe_get_param.apr_hdr.src_port = 0;
  1013. afe_get_param.apr_hdr.dest_port = 0;
  1014. afe_get_param.apr_hdr.token = index;
  1015. afe_get_param.apr_hdr.opcode = AFE_PORT_CMD_GET_PARAM_V3;
  1016. afe_get_param.port_id = port_id;
  1017. if (mem_hdr != NULL)
  1018. afe_get_param.mem_hdr = *mem_hdr;
  1019. /* Set param header in command, no payload in V3 */
  1020. afe_get_param.param_hdr = *param_hdr;
  1021. return afe_apr_send_pkt(&afe_get_param, &this_afe.wait[index]);
  1022. }
  1023. /*
  1024. * Calling functions copy param data directly from this_afe. Do not copy data
  1025. * back to caller here.
  1026. */
  1027. static int q6afe_get_params(u16 port_id, struct mem_mapping_hdr *mem_hdr,
  1028. struct param_hdr_v3 *param_hdr)
  1029. {
  1030. int index;
  1031. int ret;
  1032. ret = afe_q6_interface_prepare();
  1033. if (ret != 0) {
  1034. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1035. return ret;
  1036. }
  1037. port_id = q6audio_get_port_id(port_id);
  1038. ret = q6audio_validate_port(port_id);
  1039. if (ret < 0) {
  1040. pr_err("%s: Not a valid port id = 0x%x ret %d\n", __func__,
  1041. port_id, ret);
  1042. return -EINVAL;
  1043. }
  1044. index = q6audio_get_port_index(port_id);
  1045. if (index < 0 || index >= AFE_MAX_PORTS) {
  1046. pr_err("%s: AFE port index[%d] invalid\n", __func__, index);
  1047. return -EINVAL;
  1048. }
  1049. if (q6common_is_instance_id_supported())
  1050. return q6afe_get_params_v3(port_id, index, NULL, param_hdr);
  1051. else
  1052. return q6afe_get_params_v2(port_id, index, NULL, param_hdr);
  1053. }
  1054. /*
  1055. * This function shouldn't be called directly. Instead call
  1056. * q6afe_svc_set_params.
  1057. */
  1058. static int q6afe_svc_set_params_v1(int index, struct mem_mapping_hdr *mem_hdr,
  1059. u8 *packed_param_data, u32 packed_data_size)
  1060. {
  1061. struct afe_svc_cmd_set_param_v1 *svc_set_param = NULL;
  1062. uint32_t size = sizeof(struct afe_svc_cmd_set_param_v1);
  1063. int rc = 0;
  1064. if (packed_param_data != NULL)
  1065. size += packed_data_size;
  1066. svc_set_param = kzalloc(size, GFP_KERNEL);
  1067. if (svc_set_param == NULL)
  1068. return -ENOMEM;
  1069. svc_set_param->apr_hdr.hdr_field =
  1070. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1071. APR_PKT_VER);
  1072. svc_set_param->apr_hdr.pkt_size = size;
  1073. svc_set_param->apr_hdr.src_port = 0;
  1074. svc_set_param->apr_hdr.dest_port = 0;
  1075. svc_set_param->apr_hdr.token = index;
  1076. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  1077. svc_set_param->payload_size = packed_data_size;
  1078. if (mem_hdr != NULL) {
  1079. /* Out of band case. */
  1080. svc_set_param->mem_hdr = *mem_hdr;
  1081. } else if (packed_param_data != NULL) {
  1082. /* In band case. */
  1083. memcpy(&svc_set_param->param_data, packed_param_data,
  1084. packed_data_size);
  1085. } else {
  1086. pr_err("%s: Both memory header and param data are NULL\n",
  1087. __func__);
  1088. rc = -EINVAL;
  1089. goto done;
  1090. }
  1091. rc = afe_apr_send_pkt(svc_set_param, &this_afe.wait[index]);
  1092. done:
  1093. kfree(svc_set_param);
  1094. return rc;
  1095. }
  1096. /*
  1097. * This function shouldn't be called directly. Instead call
  1098. * q6afe_svc_set_params.
  1099. */
  1100. static int q6afe_svc_set_params_v2(int index, struct mem_mapping_hdr *mem_hdr,
  1101. u8 *packed_param_data, u32 packed_data_size)
  1102. {
  1103. struct afe_svc_cmd_set_param_v2 *svc_set_param = NULL;
  1104. uint16_t size = sizeof(struct afe_svc_cmd_set_param_v2);
  1105. int rc = 0;
  1106. if (packed_param_data != NULL)
  1107. size += packed_data_size;
  1108. svc_set_param = kzalloc(size, GFP_KERNEL);
  1109. if (svc_set_param == NULL)
  1110. return -ENOMEM;
  1111. svc_set_param->apr_hdr.hdr_field =
  1112. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1113. APR_PKT_VER);
  1114. svc_set_param->apr_hdr.pkt_size = size;
  1115. svc_set_param->apr_hdr.src_port = 0;
  1116. svc_set_param->apr_hdr.dest_port = 0;
  1117. svc_set_param->apr_hdr.token = index;
  1118. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM_V2;
  1119. svc_set_param->payload_size = packed_data_size;
  1120. if (mem_hdr != NULL) {
  1121. /* Out of band case. */
  1122. svc_set_param->mem_hdr = *mem_hdr;
  1123. } else if (packed_param_data != NULL) {
  1124. /* In band case. */
  1125. memcpy(&svc_set_param->param_data, packed_param_data,
  1126. packed_data_size);
  1127. } else {
  1128. pr_err("%s: Both memory header and param data are NULL\n",
  1129. __func__);
  1130. rc = -EINVAL;
  1131. goto done;
  1132. }
  1133. rc = afe_apr_send_pkt(svc_set_param, &this_afe.wait[index]);
  1134. done:
  1135. kfree(svc_set_param);
  1136. return rc;
  1137. }
  1138. static int q6afe_svc_set_params(int index, struct mem_mapping_hdr *mem_hdr,
  1139. u8 *packed_param_data, u32 packed_data_size)
  1140. {
  1141. int ret;
  1142. ret = afe_q6_interface_prepare();
  1143. if (ret != 0) {
  1144. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1145. return ret;
  1146. }
  1147. if (q6common_is_instance_id_supported())
  1148. return q6afe_svc_set_params_v2(index, mem_hdr,
  1149. packed_param_data,
  1150. packed_data_size);
  1151. else
  1152. return q6afe_svc_set_params_v1(index, mem_hdr,
  1153. packed_param_data,
  1154. packed_data_size);
  1155. }
  1156. static int q6afe_svc_pack_and_set_param_in_band(int index,
  1157. struct param_hdr_v3 param_hdr,
  1158. u8 *param_data)
  1159. {
  1160. u8 *packed_param_data = NULL;
  1161. u32 packed_data_size =
  1162. sizeof(struct param_hdr_v3) + param_hdr.param_size;
  1163. int ret = 0;
  1164. packed_param_data = kzalloc(packed_data_size, GFP_KERNEL);
  1165. if (!packed_param_data)
  1166. return -ENOMEM;
  1167. ret = q6common_pack_pp_params(packed_param_data, &param_hdr, param_data,
  1168. &packed_data_size);
  1169. if (ret) {
  1170. pr_err("%s: Failed to pack parameter header and data, error %d\n",
  1171. __func__, ret);
  1172. goto done;
  1173. }
  1174. ret = q6afe_svc_set_params(index, NULL, packed_param_data,
  1175. packed_data_size);
  1176. done:
  1177. kfree(packed_param_data);
  1178. return ret;
  1179. }
  1180. static int afe_send_cal_block(u16 port_id, struct cal_block_data *cal_block)
  1181. {
  1182. struct mem_mapping_hdr mem_hdr;
  1183. int payload_size = 0;
  1184. int result = 0;
  1185. memset(&mem_hdr, 0, sizeof(mem_hdr));
  1186. if (!cal_block) {
  1187. pr_debug("%s: No AFE cal to send!\n", __func__);
  1188. result = -EINVAL;
  1189. goto done;
  1190. }
  1191. if (cal_block->cal_data.size <= 0) {
  1192. pr_debug("%s: AFE cal has invalid size!\n", __func__);
  1193. result = -EINVAL;
  1194. goto done;
  1195. }
  1196. payload_size = cal_block->cal_data.size;
  1197. mem_hdr.data_payload_addr_lsw =
  1198. lower_32_bits(cal_block->cal_data.paddr);
  1199. mem_hdr.data_payload_addr_msw =
  1200. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1201. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  1202. pr_debug("%s: AFE cal sent for device port = 0x%x, cal size = %zd, cal addr = 0x%pK\n",
  1203. __func__, port_id,
  1204. cal_block->cal_data.size, &cal_block->cal_data.paddr);
  1205. result = q6afe_set_params(port_id, q6audio_get_port_index(port_id),
  1206. &mem_hdr, NULL, payload_size);
  1207. if (result)
  1208. pr_err("%s: AFE cal for port 0x%x failed %d\n",
  1209. __func__, port_id, result);
  1210. done:
  1211. return result;
  1212. }
  1213. static int afe_send_custom_topology_block(struct cal_block_data *cal_block)
  1214. {
  1215. int result = 0;
  1216. int index = 0;
  1217. struct cmd_set_topologies afe_cal;
  1218. if (!cal_block) {
  1219. pr_err("%s: No AFE SVC cal to send!\n", __func__);
  1220. return -EINVAL;
  1221. }
  1222. if (cal_block->cal_data.size <= 0) {
  1223. pr_err("%s: AFE SVC cal has invalid size: %zd!\n",
  1224. __func__, cal_block->cal_data.size);
  1225. return -EINVAL;
  1226. }
  1227. afe_cal.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1228. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  1229. afe_cal.hdr.pkt_size = sizeof(afe_cal);
  1230. afe_cal.hdr.src_port = 0;
  1231. afe_cal.hdr.dest_port = 0;
  1232. afe_cal.hdr.token = index;
  1233. afe_cal.hdr.opcode = AFE_CMD_ADD_TOPOLOGIES;
  1234. afe_cal.payload_size = cal_block->cal_data.size;
  1235. afe_cal.payload_addr_lsw =
  1236. lower_32_bits(cal_block->cal_data.paddr);
  1237. afe_cal.payload_addr_msw =
  1238. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1239. afe_cal.mem_map_handle = cal_block->map_data.q6map_handle;
  1240. pr_debug("%s:cmd_id:0x%x calsize:%zd memmap_hdl:0x%x caladdr:0x%pK",
  1241. __func__, AFE_CMD_ADD_TOPOLOGIES, cal_block->cal_data.size,
  1242. afe_cal.mem_map_handle, &cal_block->cal_data.paddr);
  1243. result = afe_apr_send_pkt(&afe_cal, &this_afe.wait[index]);
  1244. if (result)
  1245. pr_err("%s: AFE send topology for command 0x%x failed %d\n",
  1246. __func__, AFE_CMD_ADD_TOPOLOGIES, result);
  1247. return result;
  1248. }
  1249. static void afe_send_custom_topology(void)
  1250. {
  1251. struct cal_block_data *cal_block = NULL;
  1252. int cal_index = AFE_CUST_TOPOLOGY_CAL;
  1253. int ret;
  1254. if (this_afe.cal_data[cal_index] == NULL) {
  1255. pr_err("%s: cal_index %d not allocated!\n",
  1256. __func__, cal_index);
  1257. return;
  1258. }
  1259. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  1260. if (!this_afe.set_custom_topology)
  1261. goto unlock;
  1262. this_afe.set_custom_topology = 0;
  1263. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  1264. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  1265. pr_err("%s cal_block not found!!\n", __func__);
  1266. goto unlock;
  1267. }
  1268. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  1269. ret = remap_cal_data(cal_block, cal_index);
  1270. if (ret) {
  1271. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  1272. __func__, cal_index);
  1273. goto unlock;
  1274. }
  1275. ret = afe_send_custom_topology_block(cal_block);
  1276. if (ret < 0) {
  1277. pr_err("%s: No cal sent for cal_index %d! ret %d\n",
  1278. __func__, cal_index, ret);
  1279. goto unlock;
  1280. }
  1281. pr_debug("%s:sent custom topology for AFE\n", __func__);
  1282. unlock:
  1283. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  1284. }
  1285. static int afe_spk_ramp_dn_cfg(int port)
  1286. {
  1287. struct param_hdr_v3 param_info;
  1288. int ret = -EINVAL;
  1289. memset(&param_info, 0, sizeof(param_info));
  1290. if (afe_get_port_type(port) != MSM_AFE_PORT_TYPE_RX) {
  1291. pr_debug("%s: port doesn't match 0x%x\n", __func__, port);
  1292. return 0;
  1293. }
  1294. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_DISABLED ||
  1295. (this_afe.vi_rx_port != port)) {
  1296. pr_debug("%s: spkr protection disabled port 0x%x %d 0x%x\n",
  1297. __func__, port, ret, this_afe.vi_rx_port);
  1298. return 0;
  1299. }
  1300. param_info.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  1301. param_info.instance_id = INSTANCE_ID_0;
  1302. param_info.param_id = AFE_PARAM_ID_FBSP_PTONE_RAMP_CFG;
  1303. param_info.param_size = 0;
  1304. ret = q6afe_pack_and_set_param_in_band(port,
  1305. q6audio_get_port_index(port),
  1306. param_info, NULL);
  1307. if (ret) {
  1308. pr_err("%s: Failed to set speaker ramp duration param, err %d\n",
  1309. __func__, ret);
  1310. goto fail_cmd;
  1311. }
  1312. /* dsp needs atleast 15ms to ramp down pilot tone*/
  1313. usleep_range(15000, 15010);
  1314. ret = 0;
  1315. fail_cmd:
  1316. pr_debug("%s: config.pdata.param_id 0x%x status %d\n", __func__,
  1317. param_info.param_id, ret);
  1318. return ret;
  1319. }
  1320. static int afe_spk_prot_prepare(int src_port, int dst_port, int param_id,
  1321. union afe_spkr_prot_config *prot_config)
  1322. {
  1323. struct param_hdr_v3 param_info;
  1324. int ret = -EINVAL;
  1325. memset(&param_info, 0, sizeof(param_info));
  1326. ret = q6audio_validate_port(src_port);
  1327. if (ret < 0) {
  1328. pr_err("%s: Invalid src port 0x%x ret %d", __func__, src_port,
  1329. ret);
  1330. ret = -EINVAL;
  1331. goto fail_cmd;
  1332. }
  1333. ret = q6audio_validate_port(dst_port);
  1334. if (ret < 0) {
  1335. pr_err("%s: Invalid dst port 0x%x ret %d", __func__,
  1336. dst_port, ret);
  1337. ret = -EINVAL;
  1338. goto fail_cmd;
  1339. }
  1340. switch (param_id) {
  1341. case AFE_PARAM_ID_FBSP_MODE_RX_CFG:
  1342. case AFE_PARAM_ID_SP_RX_LIMITER_TH:
  1343. param_info.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  1344. break;
  1345. case AFE_PARAM_ID_FEEDBACK_PATH_CFG:
  1346. this_afe.vi_tx_port = src_port;
  1347. this_afe.vi_rx_port = dst_port;
  1348. param_info.module_id = AFE_MODULE_FEEDBACK;
  1349. break;
  1350. /*
  1351. * AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2 is same as
  1352. * AFE_PARAM_ID_SP_V2_TH_VI_MODE_CFG
  1353. */
  1354. case AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2:
  1355. case AFE_PARAM_ID_SP_V2_TH_VI_FTM_CFG:
  1356. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  1357. break;
  1358. case AFE_PARAM_ID_SP_V2_EX_VI_MODE_CFG:
  1359. case AFE_PARAM_ID_SP_V2_EX_VI_FTM_CFG:
  1360. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  1361. break;
  1362. default:
  1363. pr_err("%s: default case 0x%x\n", __func__, param_id);
  1364. goto fail_cmd;
  1365. }
  1366. param_info.instance_id = INSTANCE_ID_0;
  1367. param_info.param_id = param_id;
  1368. param_info.param_size = sizeof(union afe_spkr_prot_config);
  1369. ret = q6afe_pack_and_set_param_in_band(src_port,
  1370. q6audio_get_port_index(src_port),
  1371. param_info, (u8 *) prot_config);
  1372. if (ret)
  1373. pr_err("%s: port = 0x%x param = 0x%x failed %d\n", __func__,
  1374. src_port, param_id, ret);
  1375. fail_cmd:
  1376. pr_debug("%s: config.pdata.param_id 0x%x status %d 0x%x\n", __func__,
  1377. param_info.param_id, ret, src_port);
  1378. return ret;
  1379. }
  1380. static int afe_spkr_prot_reg_event_cfg(u16 port_id)
  1381. {
  1382. struct afe_port_cmd_event_cfg *config;
  1383. struct afe_port_cmd_mod_evt_cfg_payload pl;
  1384. int index;
  1385. int ret;
  1386. int num_events = 1;
  1387. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  1388. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  1389. config = kzalloc(cmd_size, GFP_KERNEL);
  1390. if (!config)
  1391. return -ENOMEM;
  1392. index = q6audio_get_port_index(port_id);
  1393. if (index < 0) {
  1394. pr_err("%s: Invalid index number: %d\n", __func__, index);
  1395. ret = -EINVAL;
  1396. goto fail_idx;
  1397. }
  1398. memset(&pl, 0, sizeof(pl));
  1399. pl.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  1400. pl.event_id = AFE_PORT_SP_DC_DETECTION_EVENT;
  1401. pl.reg_flag = AFE_MODULE_REGISTER_EVENT_FLAG;
  1402. config->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1403. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  1404. config->hdr.pkt_size = cmd_size;
  1405. config->hdr.src_port = 0;
  1406. config->hdr.dest_port = 0;
  1407. config->hdr.token = index;
  1408. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  1409. config->port_id = q6audio_get_port_id(port_id);
  1410. config->num_events = num_events;
  1411. config->version = 1;
  1412. memcpy(config->payload, &pl, sizeof(pl));
  1413. atomic_set(&this_afe.state, 1);
  1414. atomic_set(&this_afe.status, 0);
  1415. ret = apr_send_pkt(this_afe.apr, (uint32_t *) config);
  1416. if (ret < 0) {
  1417. pr_err("%s: port = 0x%x failed %d\n",
  1418. __func__, port_id, ret);
  1419. goto fail_cmd;
  1420. }
  1421. ret = wait_event_timeout(this_afe.wait[index],
  1422. (atomic_read(&this_afe.state) == 0),
  1423. msecs_to_jiffies(TIMEOUT_MS));
  1424. if (!ret) {
  1425. pr_err("%s: wait_event timeout\n", __func__);
  1426. ret = -EINVAL;
  1427. goto fail_cmd;
  1428. }
  1429. if (atomic_read(&this_afe.status) > 0) {
  1430. pr_err("%s: config cmd failed [%s]\n",
  1431. __func__, adsp_err_get_err_str(
  1432. atomic_read(&this_afe.status)));
  1433. ret = adsp_err_get_lnx_err_code(
  1434. atomic_read(&this_afe.status));
  1435. goto fail_idx;
  1436. }
  1437. ret = 0;
  1438. fail_cmd:
  1439. pr_debug("%s: config.opcode 0x%x status %d\n",
  1440. __func__, config->hdr.opcode, ret);
  1441. fail_idx:
  1442. kfree(config);
  1443. return ret;
  1444. }
  1445. static void afe_send_cal_spkr_prot_tx(int port_id)
  1446. {
  1447. union afe_spkr_prot_config afe_spk_config;
  1448. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL ||
  1449. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  1450. this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL)
  1451. return;
  1452. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  1453. if ((this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED) &&
  1454. (this_afe.vi_tx_port == port_id)) {
  1455. if (this_afe.prot_cfg.mode ==
  1456. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  1457. afe_spk_config.vi_proc_cfg.operation_mode =
  1458. Q6AFE_MSM_SPKR_CALIBRATION;
  1459. afe_spk_config.vi_proc_cfg.quick_calib_flag =
  1460. this_afe.prot_cfg.quick_calib_flag;
  1461. } else {
  1462. afe_spk_config.vi_proc_cfg.operation_mode =
  1463. Q6AFE_MSM_SPKR_PROCESSING;
  1464. }
  1465. if (this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE)
  1466. afe_spk_config.vi_proc_cfg.operation_mode =
  1467. Q6AFE_MSM_SPKR_FTM_MODE;
  1468. afe_spk_config.vi_proc_cfg.minor_version = 1;
  1469. afe_spk_config.vi_proc_cfg.r0_cali_q24[SP_V2_SPKR_1] =
  1470. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  1471. afe_spk_config.vi_proc_cfg.r0_cali_q24[SP_V2_SPKR_2] =
  1472. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  1473. afe_spk_config.vi_proc_cfg.t0_cali_q6[SP_V2_SPKR_1] =
  1474. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_1];
  1475. afe_spk_config.vi_proc_cfg.t0_cali_q6[SP_V2_SPKR_2] =
  1476. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_2];
  1477. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_NOT_CALIBRATED) {
  1478. struct asm_spkr_calib_vi_proc_cfg *vi_proc_cfg;
  1479. vi_proc_cfg = &afe_spk_config.vi_proc_cfg;
  1480. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_1] =
  1481. USE_CALIBRATED_R0TO;
  1482. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_2] =
  1483. USE_CALIBRATED_R0TO;
  1484. } else {
  1485. struct asm_spkr_calib_vi_proc_cfg *vi_proc_cfg;
  1486. vi_proc_cfg = &afe_spk_config.vi_proc_cfg;
  1487. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_1] =
  1488. USE_SAFE_R0TO;
  1489. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_2] =
  1490. USE_SAFE_R0TO;
  1491. }
  1492. if (afe_spk_prot_prepare(port_id, 0,
  1493. AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2,
  1494. &afe_spk_config))
  1495. pr_err("%s: SPKR_CALIB_VI_PROC_CFG failed\n",
  1496. __func__);
  1497. }
  1498. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  1499. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  1500. if ((this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  1501. (this_afe.vi_tx_port == port_id)) {
  1502. afe_spk_config.th_vi_ftm_cfg.minor_version = 1;
  1503. afe_spk_config.th_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_1] =
  1504. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_1];
  1505. afe_spk_config.th_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_2] =
  1506. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_2];
  1507. afe_spk_config.th_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_1] =
  1508. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  1509. afe_spk_config.th_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_2] =
  1510. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  1511. if (afe_spk_prot_prepare(port_id, 0,
  1512. AFE_PARAM_ID_SP_V2_TH_VI_FTM_CFG,
  1513. &afe_spk_config))
  1514. pr_err("%s: th vi ftm cfg failed\n", __func__);
  1515. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  1516. }
  1517. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  1518. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  1519. if ((this_afe.ex_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  1520. (this_afe.vi_tx_port == port_id)) {
  1521. afe_spk_config.ex_vi_mode_cfg.minor_version = 1;
  1522. afe_spk_config.ex_vi_mode_cfg.operation_mode =
  1523. Q6AFE_MSM_SPKR_FTM_MODE;
  1524. if (afe_spk_prot_prepare(port_id, 0,
  1525. AFE_PARAM_ID_SP_V2_EX_VI_MODE_CFG,
  1526. &afe_spk_config))
  1527. pr_err("%s: ex vi mode cfg failed\n", __func__);
  1528. afe_spk_config.ex_vi_ftm_cfg.minor_version = 1;
  1529. afe_spk_config.ex_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_1] =
  1530. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_1];
  1531. afe_spk_config.ex_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_2] =
  1532. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_2];
  1533. afe_spk_config.ex_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_1] =
  1534. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  1535. afe_spk_config.ex_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_2] =
  1536. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  1537. if (afe_spk_prot_prepare(port_id, 0,
  1538. AFE_PARAM_ID_SP_V2_EX_VI_FTM_CFG,
  1539. &afe_spk_config))
  1540. pr_err("%s: ex vi ftm cfg failed\n", __func__);
  1541. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  1542. }
  1543. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  1544. /* Register for DC detection event if speaker protection is enabled */
  1545. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  1546. (this_afe.vi_tx_port == port_id)) {
  1547. afe_spkr_prot_reg_event_cfg(port_id);
  1548. }
  1549. }
  1550. static void afe_send_cal_spkr_prot_rx(int port_id)
  1551. {
  1552. union afe_spkr_prot_config afe_spk_config;
  1553. union afe_spkr_prot_config afe_spk_limiter_config;
  1554. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  1555. goto done;
  1556. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  1557. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  1558. (this_afe.vi_rx_port == port_id)) {
  1559. if (this_afe.prot_cfg.mode ==
  1560. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  1561. afe_spk_config.mode_rx_cfg.mode =
  1562. Q6AFE_MSM_SPKR_CALIBRATION;
  1563. else
  1564. afe_spk_config.mode_rx_cfg.mode =
  1565. Q6AFE_MSM_SPKR_PROCESSING;
  1566. afe_spk_config.mode_rx_cfg.minor_version = 1;
  1567. if (afe_spk_prot_prepare(port_id, 0,
  1568. AFE_PARAM_ID_FBSP_MODE_RX_CFG,
  1569. &afe_spk_config))
  1570. pr_err("%s: RX MODE_VI_PROC_CFG failed\n",
  1571. __func__);
  1572. if (afe_spk_config.mode_rx_cfg.mode ==
  1573. Q6AFE_MSM_SPKR_PROCESSING) {
  1574. if (this_afe.prot_cfg.sp_version >=
  1575. AFE_API_VERSION_SUPPORT_SPV3) {
  1576. afe_spk_limiter_config.limiter_th_cfg.
  1577. minor_version = 1;
  1578. afe_spk_limiter_config.limiter_th_cfg.
  1579. lim_thr_per_calib_q27[SP_V2_SPKR_1] =
  1580. this_afe.prot_cfg.limiter_th[SP_V2_SPKR_1];
  1581. afe_spk_limiter_config.limiter_th_cfg.
  1582. lim_thr_per_calib_q27[SP_V2_SPKR_2] =
  1583. this_afe.prot_cfg.limiter_th[SP_V2_SPKR_2];
  1584. if (afe_spk_prot_prepare(port_id, 0,
  1585. AFE_PARAM_ID_SP_RX_LIMITER_TH,
  1586. &afe_spk_limiter_config))
  1587. pr_err("%s: SP_RX_LIMITER_TH failed.\n",
  1588. __func__);
  1589. } else {
  1590. pr_debug("%s: SPv3 failed to apply on AFE API version=%d.\n",
  1591. __func__,
  1592. this_afe.prot_cfg.sp_version);
  1593. }
  1594. }
  1595. }
  1596. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  1597. done:
  1598. return;
  1599. }
  1600. static int afe_send_hw_delay(u16 port_id, u32 rate)
  1601. {
  1602. struct audio_cal_hw_delay_entry delay_entry;
  1603. struct afe_param_id_device_hw_delay_cfg hw_delay;
  1604. struct param_hdr_v3 param_info;
  1605. int ret = -EINVAL;
  1606. pr_debug("%s:\n", __func__);
  1607. memset(&delay_entry, 0, sizeof(delay_entry));
  1608. memset(&param_info, 0, sizeof(param_info));
  1609. delay_entry.sample_rate = rate;
  1610. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX)
  1611. ret = afe_get_cal_hw_delay(TX_DEVICE, &delay_entry);
  1612. else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX)
  1613. ret = afe_get_cal_hw_delay(RX_DEVICE, &delay_entry);
  1614. /*
  1615. * HW delay is only used for IMS calls to sync audio with video
  1616. * It is only needed for devices & sample rates used for IMS video
  1617. * calls. Values are received from ACDB calbration files
  1618. */
  1619. if (ret != 0) {
  1620. pr_debug("%s: debug: HW delay info not available %d\n",
  1621. __func__, ret);
  1622. goto fail_cmd;
  1623. }
  1624. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  1625. param_info.instance_id = INSTANCE_ID_0;
  1626. param_info.param_id = AFE_PARAM_ID_DEVICE_HW_DELAY;
  1627. param_info.param_size = sizeof(hw_delay);
  1628. hw_delay.delay_in_us = delay_entry.delay_usec;
  1629. hw_delay.device_hw_delay_minor_version =
  1630. AFE_API_VERSION_DEVICE_HW_DELAY;
  1631. ret = q6afe_pack_and_set_param_in_band(port_id,
  1632. q6audio_get_port_index(port_id),
  1633. param_info, (u8 *) &hw_delay);
  1634. if (ret)
  1635. pr_err("%s: AFE hw delay for port 0x%x failed %d\n",
  1636. __func__, port_id, ret);
  1637. fail_cmd:
  1638. pr_debug("%s: port_id 0x%x rate %u delay_usec %d status %d\n",
  1639. __func__, port_id, rate, delay_entry.delay_usec, ret);
  1640. return ret;
  1641. }
  1642. static struct cal_block_data *afe_find_cal_topo_id_by_port(
  1643. struct cal_type_data *cal_type, u16 port_id)
  1644. {
  1645. struct list_head *ptr, *next;
  1646. struct cal_block_data *cal_block = NULL;
  1647. int32_t path;
  1648. struct audio_cal_info_afe_top *afe_top;
  1649. int afe_port_index = q6audio_get_port_index(port_id);
  1650. if (afe_port_index < 0)
  1651. goto err_exit;
  1652. list_for_each_safe(ptr, next,
  1653. &cal_type->cal_blocks) {
  1654. cal_block = list_entry(ptr,
  1655. struct cal_block_data, list);
  1656. /* Skip cal_block if it is already marked stale */
  1657. if (cal_utils_is_cal_stale(cal_block))
  1658. continue;
  1659. path = ((afe_get_port_type(port_id) ==
  1660. MSM_AFE_PORT_TYPE_TX)?(TX_DEVICE):(RX_DEVICE));
  1661. afe_top =
  1662. (struct audio_cal_info_afe_top *)cal_block->cal_info;
  1663. if (afe_top->path == path) {
  1664. if (this_afe.dev_acdb_id[afe_port_index] > 0) {
  1665. if (afe_top->acdb_id ==
  1666. this_afe.dev_acdb_id[afe_port_index]) {
  1667. pr_debug("%s: top_id:%x acdb_id:%d afe_port_id:%d\n",
  1668. __func__, afe_top->topology,
  1669. afe_top->acdb_id,
  1670. q6audio_get_port_id(port_id));
  1671. return cal_block;
  1672. }
  1673. } else {
  1674. pr_debug("%s: top_id:%x acdb_id:%d afe_port:%d\n",
  1675. __func__, afe_top->topology, afe_top->acdb_id,
  1676. q6audio_get_port_id(port_id));
  1677. return cal_block;
  1678. }
  1679. }
  1680. }
  1681. err_exit:
  1682. return NULL;
  1683. }
  1684. /*
  1685. * Retrieving cal_block will mark cal_block as stale.
  1686. * Hence it cannot be reused or resent unless the flag
  1687. * is reset.
  1688. */
  1689. static int afe_get_cal_topology_id(u16 port_id, u32 *topology_id,
  1690. int cal_type_index)
  1691. {
  1692. int ret = 0;
  1693. struct cal_block_data *cal_block = NULL;
  1694. struct audio_cal_info_afe_top *afe_top_info = NULL;
  1695. if (this_afe.cal_data[cal_type_index] == NULL) {
  1696. pr_err("%s: cal_type %d not initialized\n", __func__,
  1697. cal_type_index);
  1698. return -EINVAL;
  1699. }
  1700. if (topology_id == NULL) {
  1701. pr_err("%s: topology_id is NULL\n", __func__);
  1702. return -EINVAL;
  1703. }
  1704. *topology_id = 0;
  1705. mutex_lock(&this_afe.cal_data[cal_type_index]->lock);
  1706. cal_block = afe_find_cal_topo_id_by_port(
  1707. this_afe.cal_data[cal_type_index], port_id);
  1708. if (cal_block == NULL) {
  1709. pr_err("%s: cal_type %d not initialized for this port %d\n",
  1710. __func__, cal_type_index, port_id);
  1711. ret = -EINVAL;
  1712. goto unlock;
  1713. }
  1714. afe_top_info = ((struct audio_cal_info_afe_top *)
  1715. cal_block->cal_info);
  1716. if (!afe_top_info->topology) {
  1717. pr_err("%s: invalid topology id : [%d, %d]\n",
  1718. __func__, afe_top_info->acdb_id, afe_top_info->topology);
  1719. ret = -EINVAL;
  1720. goto unlock;
  1721. }
  1722. *topology_id = (u32)afe_top_info->topology;
  1723. cal_utils_mark_cal_used(cal_block);
  1724. pr_debug("%s: port_id = %u acdb_id = %d topology_id = %u ret=%d\n",
  1725. __func__, port_id, afe_top_info->acdb_id,
  1726. afe_top_info->topology, ret);
  1727. unlock:
  1728. mutex_unlock(&this_afe.cal_data[cal_type_index]->lock);
  1729. return ret;
  1730. }
  1731. static int afe_send_port_topology_id(u16 port_id)
  1732. {
  1733. struct afe_param_id_set_topology_cfg topology;
  1734. struct param_hdr_v3 param_info;
  1735. u32 topology_id = 0;
  1736. int index = 0;
  1737. int ret = 0;
  1738. memset(&topology, 0, sizeof(topology));
  1739. memset(&param_info, 0, sizeof(param_info));
  1740. index = q6audio_get_port_index(port_id);
  1741. if (index < 0 || index >= AFE_MAX_PORTS) {
  1742. pr_err("%s: AFE port index[%d] invalid!\n",
  1743. __func__, index);
  1744. return -EINVAL;
  1745. }
  1746. ret = afe_get_cal_topology_id(port_id, &topology_id, AFE_TOPOLOGY_CAL);
  1747. if (ret < 0) {
  1748. pr_debug("%s: Check for LSM topology\n", __func__);
  1749. ret = afe_get_cal_topology_id(port_id, &topology_id,
  1750. AFE_LSM_TOPOLOGY_CAL);
  1751. }
  1752. if (ret || !topology_id) {
  1753. pr_debug("%s: AFE port[%d] get_cal_topology[%d] invalid!\n",
  1754. __func__, port_id, topology_id);
  1755. goto done;
  1756. }
  1757. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  1758. param_info.instance_id = INSTANCE_ID_0;
  1759. param_info.param_id = AFE_PARAM_ID_SET_TOPOLOGY;
  1760. param_info.param_size = sizeof(topology);
  1761. topology.minor_version = AFE_API_VERSION_TOPOLOGY_V1;
  1762. topology.topology_id = topology_id;
  1763. ret = q6afe_pack_and_set_param_in_band(port_id,
  1764. q6audio_get_port_index(port_id),
  1765. param_info, (u8 *) &topology);
  1766. if (ret) {
  1767. pr_err("%s: AFE set topology id enable for port 0x%x failed %d\n",
  1768. __func__, port_id, ret);
  1769. goto done;
  1770. }
  1771. this_afe.topology[index] = topology_id;
  1772. rtac_update_afe_topology(port_id);
  1773. done:
  1774. pr_debug("%s: AFE set topology id 0x%x enable for port 0x%x ret %d\n",
  1775. __func__, topology_id, port_id, ret);
  1776. return ret;
  1777. }
  1778. static int afe_get_island_mode(u16 port_id, u32 *island_mode)
  1779. {
  1780. int ret = 0;
  1781. int index = 0;
  1782. *island_mode = 0;
  1783. index = q6audio_get_port_index(port_id);
  1784. if (index < 0 || index >= AFE_MAX_PORTS) {
  1785. pr_err("%s: AFE port index[%d] invalid!\n",
  1786. __func__, index);
  1787. return -EINVAL;
  1788. }
  1789. *island_mode = this_afe.island_mode[index];
  1790. return ret;
  1791. }
  1792. /*
  1793. * afe_send_port_island_mode -
  1794. * for sending island mode to AFE
  1795. *
  1796. * @port_id: AFE port id number
  1797. *
  1798. * Returns 0 on success or error on failure.
  1799. */
  1800. int afe_send_port_island_mode(u16 port_id)
  1801. {
  1802. struct afe_param_id_island_cfg_t island_cfg;
  1803. struct param_hdr_v3 param_info;
  1804. u32 island_mode = 0;
  1805. int ret = 0;
  1806. memset(&island_cfg, 0, sizeof(island_cfg));
  1807. memset(&param_info, 0, sizeof(param_info));
  1808. ret = afe_get_island_mode(port_id, &island_mode);
  1809. if (ret) {
  1810. pr_err("%s: AFE port[%d] get island mode is invalid!\n",
  1811. __func__, port_id);
  1812. return ret;
  1813. }
  1814. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  1815. param_info.instance_id = INSTANCE_ID_0;
  1816. param_info.param_id = AFE_PARAM_ID_ISLAND_CONFIG;
  1817. param_info.param_size = sizeof(island_cfg);
  1818. island_cfg.island_cfg_minor_version = AFE_API_VERSION_ISLAND_CONFIG;
  1819. island_cfg.island_enable = island_mode;
  1820. ret = q6afe_pack_and_set_param_in_band(port_id,
  1821. q6audio_get_port_index(port_id),
  1822. param_info, (u8 *) &island_cfg);
  1823. if (ret) {
  1824. pr_err("%s: AFE set island mode enable for port 0x%x failed %d\n",
  1825. __func__, port_id, ret);
  1826. return ret;
  1827. }
  1828. pr_debug("%s: AFE set island mode 0x%x enable for port 0x%x ret %d\n",
  1829. __func__, island_mode, port_id, ret);
  1830. return ret;
  1831. }
  1832. EXPORT_SYMBOL(afe_send_port_island_mode);
  1833. static int afe_get_vad_preroll_cfg(u16 port_id, u32 *preroll_cfg)
  1834. {
  1835. int ret = 0;
  1836. int index = 0;
  1837. *preroll_cfg = 0;
  1838. index = q6audio_get_port_index(port_id);
  1839. if (index < 0 || index >= AFE_MAX_PORTS) {
  1840. pr_err("%s: AFE port index[%d] invalid!\n",
  1841. __func__, index);
  1842. return -EINVAL;
  1843. }
  1844. *preroll_cfg = this_afe.vad_cfg[index].pre_roll;
  1845. return ret;
  1846. }
  1847. static int afe_send_port_vad_cfg_params(u16 port_id)
  1848. {
  1849. struct afe_param_id_vad_cfg_t vad_cfg;
  1850. struct param_hdr_v3 param_info;
  1851. u32 pre_roll_cfg = 0;
  1852. struct firmware_cal *hwdep_cal = NULL;
  1853. int ret = 0;
  1854. memset(&vad_cfg, 0, sizeof(vad_cfg));
  1855. memset(&param_info, 0, sizeof(param_info));
  1856. ret = afe_get_vad_preroll_cfg(port_id, &pre_roll_cfg);
  1857. if (ret) {
  1858. pr_err("%s: AFE port[%d] get preroll cfg is invalid!\n",
  1859. __func__, port_id);
  1860. return ret;
  1861. }
  1862. param_info.module_id = AFE_MODULE_VAD;
  1863. param_info.instance_id = INSTANCE_ID_0;
  1864. param_info.param_id = AFE_PARAM_ID_VAD_CFG;
  1865. param_info.param_size = sizeof(vad_cfg);
  1866. vad_cfg.vad_cfg_minor_version = AFE_API_VERSION_VAD_CFG;
  1867. vad_cfg.pre_roll_in_ms = pre_roll_cfg;
  1868. ret = q6afe_pack_and_set_param_in_band(port_id,
  1869. q6audio_get_port_index(port_id),
  1870. param_info, (u8 *) &vad_cfg);
  1871. if (ret) {
  1872. pr_err("%s: AFE set vad cfg for port 0x%x failed %d\n",
  1873. __func__, port_id, ret);
  1874. return ret;
  1875. }
  1876. memset(&param_info, 0, sizeof(param_info));
  1877. hwdep_cal = q6afecal_get_fw_cal(this_afe.fw_data, Q6AFE_VAD_CORE_CAL);
  1878. if (!hwdep_cal) {
  1879. pr_err("%s: error in retrieving vad core calibration",
  1880. __func__);
  1881. return -EINVAL;
  1882. }
  1883. param_info.module_id = AFE_MODULE_VAD;
  1884. param_info.instance_id = INSTANCE_ID_0;
  1885. param_info.param_id = AFE_PARAM_ID_VAD_CORE_CFG;
  1886. param_info.param_size = hwdep_cal->size;
  1887. ret = q6afe_pack_and_set_param_in_band(port_id,
  1888. q6audio_get_port_index(port_id),
  1889. param_info, (u8 *) hwdep_cal->data);
  1890. if (ret) {
  1891. pr_err("%s: AFE set vad cfg for port 0x%x failed %d\n",
  1892. __func__, port_id, ret);
  1893. return ret;
  1894. }
  1895. pr_debug("%s: AFE set preroll cfg %d vad core cfg port 0x%x ret %d\n",
  1896. __func__, pre_roll_cfg, port_id, ret);
  1897. return ret;
  1898. }
  1899. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index)
  1900. {
  1901. int ret = 0;
  1902. if (cal_block->map_data.dma_buf == NULL) {
  1903. pr_err("%s: No ION allocation for cal index %d!\n",
  1904. __func__, cal_index);
  1905. ret = -EINVAL;
  1906. goto done;
  1907. }
  1908. if ((cal_block->map_data.map_size > 0) &&
  1909. (cal_block->map_data.q6map_handle == 0)) {
  1910. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  1911. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  1912. cal_block->map_data.map_size);
  1913. atomic_set(&this_afe.mem_map_cal_index, -1);
  1914. if (ret < 0) {
  1915. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  1916. __func__,
  1917. cal_block->map_data.map_size, ret);
  1918. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  1919. __func__,
  1920. &cal_block->cal_data.paddr,
  1921. cal_block->map_data.map_size);
  1922. goto done;
  1923. }
  1924. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  1925. mem_map_cal_handles[cal_index]);
  1926. }
  1927. done:
  1928. return ret;
  1929. }
  1930. static struct cal_block_data *afe_find_cal(int cal_index, int port_id)
  1931. {
  1932. struct list_head *ptr, *next;
  1933. struct cal_block_data *cal_block = NULL;
  1934. struct audio_cal_info_afe *afe_cal_info = NULL;
  1935. int afe_port_index = q6audio_get_port_index(port_id);
  1936. pr_debug("%s: cal_index %d port_id %d port_index %d\n", __func__,
  1937. cal_index, port_id, afe_port_index);
  1938. if (afe_port_index < 0) {
  1939. pr_err("%s: Error getting AFE port index %d\n",
  1940. __func__, afe_port_index);
  1941. goto exit;
  1942. }
  1943. list_for_each_safe(ptr, next,
  1944. &this_afe.cal_data[cal_index]->cal_blocks) {
  1945. cal_block = list_entry(ptr, struct cal_block_data, list);
  1946. afe_cal_info = cal_block->cal_info;
  1947. if ((afe_cal_info->acdb_id ==
  1948. this_afe.dev_acdb_id[afe_port_index]) &&
  1949. (afe_cal_info->sample_rate ==
  1950. this_afe.afe_sample_rates[afe_port_index])) {
  1951. pr_debug("%s: cal block is a match, size is %zd\n",
  1952. __func__, cal_block->cal_data.size);
  1953. goto exit;
  1954. }
  1955. }
  1956. pr_debug("%s: no matching cal_block found\n", __func__);
  1957. cal_block = NULL;
  1958. exit:
  1959. return cal_block;
  1960. }
  1961. static int send_afe_cal_type(int cal_index, int port_id)
  1962. {
  1963. struct cal_block_data *cal_block = NULL;
  1964. int ret;
  1965. int afe_port_index = q6audio_get_port_index(port_id);
  1966. pr_debug("%s:\n", __func__);
  1967. if (this_afe.cal_data[cal_index] == NULL) {
  1968. pr_warn("%s: cal_index %d not allocated!\n",
  1969. __func__, cal_index);
  1970. ret = -EINVAL;
  1971. goto done;
  1972. }
  1973. if (afe_port_index < 0) {
  1974. pr_err("%s: Error getting AFE port index %d\n",
  1975. __func__, afe_port_index);
  1976. ret = -EINVAL;
  1977. goto done;
  1978. }
  1979. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  1980. if (((cal_index == AFE_COMMON_RX_CAL) ||
  1981. (cal_index == AFE_COMMON_TX_CAL) ||
  1982. (cal_index == AFE_LSM_TX_CAL)) &&
  1983. (this_afe.dev_acdb_id[afe_port_index] > 0))
  1984. cal_block = afe_find_cal(cal_index, port_id);
  1985. else
  1986. cal_block = cal_utils_get_only_cal_block(
  1987. this_afe.cal_data[cal_index]);
  1988. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  1989. pr_err("%s cal_block not found!!\n", __func__);
  1990. ret = -EINVAL;
  1991. goto unlock;
  1992. }
  1993. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  1994. ret = remap_cal_data(cal_block, cal_index);
  1995. if (ret) {
  1996. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  1997. __func__, cal_index);
  1998. ret = -EINVAL;
  1999. goto unlock;
  2000. }
  2001. ret = afe_send_cal_block(port_id, cal_block);
  2002. if (ret < 0)
  2003. pr_debug("%s: No cal sent for cal_index %d, port_id = 0x%x! ret %d\n",
  2004. __func__, cal_index, port_id, ret);
  2005. cal_utils_mark_cal_used(cal_block);
  2006. unlock:
  2007. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  2008. done:
  2009. return ret;
  2010. }
  2011. void afe_send_cal(u16 port_id)
  2012. {
  2013. int ret;
  2014. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  2015. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) {
  2016. afe_send_cal_spkr_prot_tx(port_id);
  2017. ret = send_afe_cal_type(AFE_COMMON_TX_CAL, port_id);
  2018. if (ret < 0)
  2019. send_afe_cal_type(AFE_LSM_TX_CAL, port_id);
  2020. } else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  2021. send_afe_cal_type(AFE_COMMON_RX_CAL, port_id);
  2022. afe_send_cal_spkr_prot_rx(port_id);
  2023. }
  2024. }
  2025. int afe_turn_onoff_hw_mad(u16 mad_type, u16 enable)
  2026. {
  2027. struct afe_param_hw_mad_ctrl mad_enable_param;
  2028. struct param_hdr_v3 param_info;
  2029. int ret;
  2030. pr_debug("%s: enter\n", __func__);
  2031. memset(&mad_enable_param, 0, sizeof(mad_enable_param));
  2032. memset(&param_info, 0, sizeof(param_info));
  2033. param_info.module_id = AFE_MODULE_HW_MAD;
  2034. param_info.instance_id = INSTANCE_ID_0;
  2035. param_info.param_id = AFE_PARAM_ID_HW_MAD_CTRL;
  2036. param_info.param_size = sizeof(mad_enable_param);
  2037. mad_enable_param.minor_version = 1;
  2038. mad_enable_param.mad_type = mad_type;
  2039. mad_enable_param.mad_enable = enable;
  2040. ret = q6afe_pack_and_set_param_in_band(SLIMBUS_5_TX, IDX_GLOBAL_CFG,
  2041. param_info,
  2042. (u8 *) &mad_enable_param);
  2043. if (ret)
  2044. pr_err("%s: AFE_PARAM_ID_HW_MAD_CTRL failed %d\n", __func__,
  2045. ret);
  2046. return ret;
  2047. }
  2048. static int afe_send_slimbus_slave_cfg(
  2049. struct afe_param_cdc_slimbus_slave_cfg *sb_slave_cfg)
  2050. {
  2051. struct param_hdr_v3 param_hdr;
  2052. int ret;
  2053. pr_debug("%s: enter\n", __func__);
  2054. memset(&param_hdr, 0, sizeof(param_hdr));
  2055. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2056. param_hdr.instance_id = INSTANCE_ID_0;
  2057. param_hdr.param_id = AFE_PARAM_ID_CDC_SLIMBUS_SLAVE_CFG;
  2058. param_hdr.param_size = sizeof(struct afe_param_cdc_slimbus_slave_cfg);
  2059. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  2060. (u8 *) sb_slave_cfg);
  2061. if (ret)
  2062. pr_err("%s: AFE_PARAM_ID_CDC_SLIMBUS_SLAVE_CFG failed %d\n",
  2063. __func__, ret);
  2064. pr_debug("%s: leave %d\n", __func__, ret);
  2065. return ret;
  2066. }
  2067. static int afe_send_codec_reg_page_config(
  2068. struct afe_param_cdc_reg_page_cfg *cdc_reg_page_cfg)
  2069. {
  2070. struct param_hdr_v3 param_hdr;
  2071. int ret;
  2072. memset(&param_hdr, 0, sizeof(param_hdr));
  2073. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2074. param_hdr.instance_id = INSTANCE_ID_0;
  2075. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_PAGE_CFG;
  2076. param_hdr.param_size = sizeof(struct afe_param_cdc_reg_page_cfg);
  2077. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  2078. (u8 *) cdc_reg_page_cfg);
  2079. if (ret)
  2080. pr_err("%s: AFE_PARAM_ID_CDC_REG_PAGE_CFG failed %d\n",
  2081. __func__, ret);
  2082. return ret;
  2083. }
  2084. static int afe_send_codec_reg_config(
  2085. struct afe_param_cdc_reg_cfg_data *cdc_reg_cfg)
  2086. {
  2087. u8 *packed_param_data = NULL;
  2088. u32 packed_data_size = 0;
  2089. u32 single_param_size = 0;
  2090. u32 max_data_size = 0;
  2091. u32 max_single_param = 0;
  2092. struct param_hdr_v3 param_hdr;
  2093. int idx = 0;
  2094. int ret = -EINVAL;
  2095. memset(&param_hdr, 0, sizeof(param_hdr));
  2096. max_single_param = sizeof(struct param_hdr_v3) +
  2097. sizeof(struct afe_param_cdc_reg_cfg);
  2098. max_data_size = APR_MAX_BUF - sizeof(struct afe_svc_cmd_set_param_v2);
  2099. packed_param_data = kzalloc(max_data_size, GFP_KERNEL);
  2100. if (!packed_param_data)
  2101. return -ENOMEM;
  2102. /* param_hdr is the same for all params sent, set once at top */
  2103. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2104. param_hdr.instance_id = INSTANCE_ID_0;
  2105. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_CFG;
  2106. param_hdr.param_size = sizeof(struct afe_param_cdc_reg_cfg);
  2107. while (idx < cdc_reg_cfg->num_registers) {
  2108. memset(packed_param_data, 0, max_data_size);
  2109. packed_data_size = 0;
  2110. single_param_size = 0;
  2111. while (packed_data_size + max_single_param < max_data_size &&
  2112. idx < cdc_reg_cfg->num_registers) {
  2113. ret = q6common_pack_pp_params(
  2114. packed_param_data + packed_data_size,
  2115. &param_hdr, (u8 *) &cdc_reg_cfg->reg_data[idx],
  2116. &single_param_size);
  2117. if (ret) {
  2118. pr_err("%s: Failed to pack parameters with error %d\n",
  2119. __func__, ret);
  2120. goto done;
  2121. }
  2122. packed_data_size += single_param_size;
  2123. idx++;
  2124. }
  2125. ret = q6afe_svc_set_params(IDX_GLOBAL_CFG, NULL,
  2126. packed_param_data, packed_data_size);
  2127. if (ret) {
  2128. pr_err("%s: AFE_PARAM_ID_CDC_REG_CFG failed %d\n",
  2129. __func__, ret);
  2130. break;
  2131. }
  2132. }
  2133. done:
  2134. kfree(packed_param_data);
  2135. return ret;
  2136. }
  2137. static int afe_init_cdc_reg_config(void)
  2138. {
  2139. struct param_hdr_v3 param_hdr;
  2140. int ret;
  2141. pr_debug("%s: enter\n", __func__);
  2142. memset(&param_hdr, 0, sizeof(param_hdr));
  2143. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2144. param_hdr.instance_id = INSTANCE_ID_0;
  2145. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_CFG_INIT;
  2146. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  2147. NULL);
  2148. if (ret)
  2149. pr_err("%s: AFE_PARAM_ID_CDC_INIT_REG_CFG failed %d\n",
  2150. __func__, ret);
  2151. return ret;
  2152. }
  2153. static int afe_send_slimbus_slave_port_cfg(
  2154. struct afe_param_slimbus_slave_port_cfg *slim_slave_config, u16 port_id)
  2155. {
  2156. struct param_hdr_v3 param_hdr;
  2157. int ret;
  2158. pr_debug("%s: enter, port_id = 0x%x\n", __func__, port_id);
  2159. memset(&param_hdr, 0, sizeof(param_hdr));
  2160. param_hdr.module_id = AFE_MODULE_HW_MAD;
  2161. param_hdr.instance_id = INSTANCE_ID_0;
  2162. param_hdr.reserved = 0;
  2163. param_hdr.param_id = AFE_PARAM_ID_SLIMBUS_SLAVE_PORT_CFG;
  2164. param_hdr.param_size = sizeof(struct afe_param_slimbus_slave_port_cfg);
  2165. ret = q6afe_pack_and_set_param_in_band(port_id,
  2166. q6audio_get_port_index(port_id),
  2167. param_hdr,
  2168. (u8 *) slim_slave_config);
  2169. if (ret)
  2170. pr_err("%s: AFE_PARAM_ID_SLIMBUS_SLAVE_PORT_CFG failed %d\n",
  2171. __func__, ret);
  2172. pr_debug("%s: leave %d\n", __func__, ret);
  2173. return ret;
  2174. }
  2175. static int afe_aanc_port_cfg(void *apr, uint16_t tx_port, uint16_t rx_port)
  2176. {
  2177. struct afe_param_aanc_port_cfg aanc_port_cfg;
  2178. struct param_hdr_v3 param_hdr;
  2179. int ret = 0;
  2180. pr_debug("%s: tx_port 0x%x, rx_port 0x%x\n",
  2181. __func__, tx_port, rx_port);
  2182. pr_debug("%s: AANC sample rate tx rate: %d rx rate %d\n", __func__,
  2183. this_afe.aanc_info.aanc_tx_port_sample_rate,
  2184. this_afe.aanc_info.aanc_rx_port_sample_rate);
  2185. memset(&aanc_port_cfg, 0, sizeof(aanc_port_cfg));
  2186. memset(&param_hdr, 0, sizeof(param_hdr));
  2187. /*
  2188. * If aanc tx sample rate or rx sample rate is zero, skip aanc
  2189. * configuration as AFE resampler will fail for invalid sample
  2190. * rates.
  2191. */
  2192. if (!this_afe.aanc_info.aanc_tx_port_sample_rate ||
  2193. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  2194. return -EINVAL;
  2195. }
  2196. param_hdr.module_id = AFE_MODULE_AANC;
  2197. param_hdr.instance_id = INSTANCE_ID_0;
  2198. param_hdr.param_id = AFE_PARAM_ID_AANC_PORT_CONFIG;
  2199. param_hdr.param_size = sizeof(struct afe_param_aanc_port_cfg);
  2200. aanc_port_cfg.aanc_port_cfg_minor_version =
  2201. AFE_API_VERSION_AANC_PORT_CONFIG;
  2202. aanc_port_cfg.tx_port_sample_rate =
  2203. this_afe.aanc_info.aanc_tx_port_sample_rate;
  2204. aanc_port_cfg.tx_port_channel_map[0] = AANC_TX_VOICE_MIC;
  2205. aanc_port_cfg.tx_port_channel_map[1] = AANC_TX_NOISE_MIC;
  2206. aanc_port_cfg.tx_port_channel_map[2] = AANC_TX_ERROR_MIC;
  2207. aanc_port_cfg.tx_port_channel_map[3] = AANC_TX_MIC_UNUSED;
  2208. aanc_port_cfg.tx_port_channel_map[4] = AANC_TX_MIC_UNUSED;
  2209. aanc_port_cfg.tx_port_channel_map[5] = AANC_TX_MIC_UNUSED;
  2210. aanc_port_cfg.tx_port_channel_map[6] = AANC_TX_MIC_UNUSED;
  2211. aanc_port_cfg.tx_port_channel_map[7] = AANC_TX_MIC_UNUSED;
  2212. aanc_port_cfg.tx_port_num_channels = 3;
  2213. aanc_port_cfg.rx_path_ref_port_id = rx_port;
  2214. aanc_port_cfg.ref_port_sample_rate =
  2215. this_afe.aanc_info.aanc_rx_port_sample_rate;
  2216. ret = q6afe_pack_and_set_param_in_band(tx_port,
  2217. q6audio_get_port_index(tx_port),
  2218. param_hdr,
  2219. (u8 *) &aanc_port_cfg);
  2220. if (ret)
  2221. pr_err("%s: AFE AANC port config failed for tx_port 0x%x, rx_port 0x%x ret %d\n",
  2222. __func__, tx_port, rx_port, ret);
  2223. else
  2224. q6afe_set_aanc_level();
  2225. return ret;
  2226. }
  2227. static int afe_aanc_mod_enable(void *apr, uint16_t tx_port, uint16_t enable)
  2228. {
  2229. struct afe_mod_enable_param mod_enable;
  2230. struct param_hdr_v3 param_hdr;
  2231. int ret = 0;
  2232. pr_debug("%s: tx_port 0x%x\n", __func__, tx_port);
  2233. memset(&mod_enable, 0, sizeof(mod_enable));
  2234. memset(&param_hdr, 0, sizeof(param_hdr));
  2235. param_hdr.module_id = AFE_MODULE_AANC;
  2236. param_hdr.instance_id = INSTANCE_ID_0;
  2237. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  2238. param_hdr.param_size = sizeof(struct afe_mod_enable_param);
  2239. mod_enable.enable = enable;
  2240. mod_enable.reserved = 0;
  2241. ret = q6afe_pack_and_set_param_in_band(tx_port,
  2242. q6audio_get_port_index(tx_port),
  2243. param_hdr, (u8 *) &mod_enable);
  2244. if (ret)
  2245. pr_err("%s: AFE AANC enable failed for tx_port 0x%x ret %d\n",
  2246. __func__, tx_port, ret);
  2247. return ret;
  2248. }
  2249. static int afe_send_bank_selection_clip(
  2250. struct afe_param_id_clip_bank_sel *param)
  2251. {
  2252. struct param_hdr_v3 param_hdr;
  2253. int ret;
  2254. if (!param) {
  2255. pr_err("%s: Invalid params", __func__);
  2256. return -EINVAL;
  2257. }
  2258. memset(&param_hdr, 0, sizeof(param_hdr));
  2259. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2260. param_hdr.instance_id = INSTANCE_ID_0;
  2261. param_hdr.param_id = AFE_PARAM_ID_CLIP_BANK_SEL_CFG;
  2262. param_hdr.param_size = sizeof(struct afe_param_id_clip_bank_sel);
  2263. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  2264. (u8 *) param);
  2265. if (ret)
  2266. pr_err("%s: AFE_PARAM_ID_CLIP_BANK_SEL_CFG failed %d\n",
  2267. __func__, ret);
  2268. return ret;
  2269. }
  2270. int afe_send_aanc_version(
  2271. struct afe_param_id_cdc_aanc_version *version_cfg)
  2272. {
  2273. struct param_hdr_v3 param_hdr;
  2274. int ret;
  2275. pr_debug("%s: enter\n", __func__);
  2276. memset(&param_hdr, 0, sizeof(param_hdr));
  2277. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  2278. param_hdr.instance_id = INSTANCE_ID_0;
  2279. param_hdr.param_id = AFE_PARAM_ID_CDC_AANC_VERSION;
  2280. param_hdr.param_size = sizeof(struct afe_param_id_cdc_aanc_version);
  2281. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  2282. (u8 *) version_cfg);
  2283. if (ret)
  2284. pr_err("%s: AFE_PARAM_ID_CDC_AANC_VERSION failed %d\n",
  2285. __func__, ret);
  2286. return ret;
  2287. }
  2288. /**
  2289. * afe_port_set_mad_type -
  2290. * to update mad type
  2291. *
  2292. * @port_id: AFE port id number
  2293. * @mad_type: MAD type enum value
  2294. *
  2295. * Returns 0 on success or error on failure.
  2296. */
  2297. int afe_port_set_mad_type(u16 port_id, enum afe_mad_type mad_type)
  2298. {
  2299. int i;
  2300. if (port_id == AFE_PORT_ID_TERTIARY_MI2S_TX ||
  2301. port_id == AFE_PORT_ID_INT3_MI2S_TX ||
  2302. port_id == AFE_PORT_ID_TX_CODEC_DMA_TX_3) {
  2303. mad_type = MAD_SW_AUDIO;
  2304. return 0;
  2305. }
  2306. i = port_id - SLIMBUS_0_RX;
  2307. if (i < 0 || i >= ARRAY_SIZE(afe_ports_mad_type)) {
  2308. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  2309. return -EINVAL;
  2310. }
  2311. atomic_set(&afe_ports_mad_type[i], mad_type);
  2312. return 0;
  2313. }
  2314. EXPORT_SYMBOL(afe_port_set_mad_type);
  2315. /**
  2316. * afe_port_get_mad_type -
  2317. * to retrieve mad type
  2318. *
  2319. * @port_id: AFE port id number
  2320. *
  2321. * Returns valid enum value on success or MAD_HW_NONE on failure.
  2322. */
  2323. enum afe_mad_type afe_port_get_mad_type(u16 port_id)
  2324. {
  2325. int i;
  2326. if (port_id == AFE_PORT_ID_TERTIARY_MI2S_TX ||
  2327. port_id == AFE_PORT_ID_INT3_MI2S_TX ||
  2328. port_id == AFE_PORT_ID_TX_CODEC_DMA_TX_3)
  2329. return MAD_SW_AUDIO;
  2330. i = port_id - SLIMBUS_0_RX;
  2331. if (i < 0 || i >= ARRAY_SIZE(afe_ports_mad_type)) {
  2332. pr_debug("%s: Non Slimbus port_id 0x%x\n", __func__, port_id);
  2333. return MAD_HW_NONE;
  2334. }
  2335. return (enum afe_mad_type) atomic_read(&afe_ports_mad_type[i]);
  2336. }
  2337. EXPORT_SYMBOL(afe_port_get_mad_type);
  2338. /**
  2339. * afe_set_config -
  2340. * to configure AFE session with
  2341. * specified configuration for given config type
  2342. *
  2343. * @config_type: config type
  2344. * @config_data: configuration to pass to AFE session
  2345. * @arg: argument used in specific config types
  2346. *
  2347. * Returns 0 on success or error value on port start failure.
  2348. */
  2349. int afe_set_config(enum afe_config_type config_type, void *config_data, int arg)
  2350. {
  2351. int ret;
  2352. pr_debug("%s: enter config_type %d\n", __func__, config_type);
  2353. ret = afe_q6_interface_prepare();
  2354. if (ret) {
  2355. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  2356. return ret;
  2357. }
  2358. switch (config_type) {
  2359. case AFE_SLIMBUS_SLAVE_CONFIG:
  2360. ret = afe_send_slimbus_slave_cfg(config_data);
  2361. if (!ret)
  2362. ret = afe_init_cdc_reg_config();
  2363. else
  2364. pr_err("%s: Sending slimbus slave config failed %d\n",
  2365. __func__, ret);
  2366. break;
  2367. case AFE_CDC_REGISTERS_CONFIG:
  2368. ret = afe_send_codec_reg_config(config_data);
  2369. break;
  2370. case AFE_SLIMBUS_SLAVE_PORT_CONFIG:
  2371. ret = afe_send_slimbus_slave_port_cfg(config_data, arg);
  2372. break;
  2373. case AFE_AANC_VERSION:
  2374. ret = afe_send_aanc_version(config_data);
  2375. break;
  2376. case AFE_CLIP_BANK_SEL:
  2377. ret = afe_send_bank_selection_clip(config_data);
  2378. break;
  2379. case AFE_CDC_CLIP_REGISTERS_CONFIG:
  2380. ret = afe_send_codec_reg_config(config_data);
  2381. break;
  2382. case AFE_CDC_REGISTER_PAGE_CONFIG:
  2383. ret = afe_send_codec_reg_page_config(config_data);
  2384. break;
  2385. default:
  2386. pr_err("%s: unknown configuration type %d",
  2387. __func__, config_type);
  2388. ret = -EINVAL;
  2389. }
  2390. if (!ret)
  2391. set_bit(config_type, &afe_configured_cmd);
  2392. return ret;
  2393. }
  2394. EXPORT_SYMBOL(afe_set_config);
  2395. /*
  2396. * afe_clear_config - If SSR happens ADSP loses AFE configs, let AFE driver know
  2397. * about the state so client driver can wait until AFE is
  2398. * reconfigured.
  2399. */
  2400. void afe_clear_config(enum afe_config_type config)
  2401. {
  2402. clear_bit(config, &afe_configured_cmd);
  2403. }
  2404. EXPORT_SYMBOL(afe_clear_config);
  2405. bool afe_has_config(enum afe_config_type config)
  2406. {
  2407. return !!test_bit(config, &afe_configured_cmd);
  2408. }
  2409. int afe_send_spdif_clk_cfg(struct afe_param_id_spdif_clk_cfg *cfg,
  2410. u16 port_id)
  2411. {
  2412. struct afe_param_id_spdif_clk_cfg clk_cfg;
  2413. struct param_hdr_v3 param_hdr;
  2414. int ret = 0;
  2415. if (!cfg) {
  2416. pr_err("%s: Error, no configuration data\n", __func__);
  2417. return -EINVAL;
  2418. }
  2419. memset(&clk_cfg, 0, sizeof(clk_cfg));
  2420. memset(&param_hdr, 0, sizeof(param_hdr));
  2421. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2422. param_hdr.instance_id = INSTANCE_ID_0;
  2423. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  2424. param_hdr.param_size = sizeof(struct afe_param_id_spdif_clk_cfg);
  2425. pr_debug("%s: Minor version = 0x%x clk val = %d clk root = 0x%x port id = 0x%x\n",
  2426. __func__, clk_cfg.clk_cfg_minor_version, clk_cfg.clk_value,
  2427. clk_cfg.clk_root, q6audio_get_port_id(port_id));
  2428. ret = q6afe_pack_and_set_param_in_band(port_id,
  2429. q6audio_get_port_index(port_id),
  2430. param_hdr, (u8 *) &clk_cfg);
  2431. if (ret < 0)
  2432. pr_err("%s: AFE send clock config for port 0x%x failed ret = %d\n",
  2433. __func__, port_id, ret);
  2434. return ret;
  2435. }
  2436. /**
  2437. * afe_send_spdif_ch_status_cfg -
  2438. * to configure AFE session with
  2439. * specified channel status configuration
  2440. *
  2441. * @ch_status_cfg: channel status configutation
  2442. * @port_id: AFE port id number
  2443. *
  2444. * Returns 0 on success or error value on port start failure.
  2445. */
  2446. int afe_send_spdif_ch_status_cfg(struct afe_param_id_spdif_ch_status_cfg
  2447. *ch_status_cfg, u16 port_id)
  2448. {
  2449. struct param_hdr_v3 param_hdr;
  2450. int ret = 0;
  2451. if (!ch_status_cfg)
  2452. pr_err("%s: Error, no configuration data\n", __func__);
  2453. return -EINVAL;
  2454. memset(&param_hdr, 0, sizeof(param_hdr));
  2455. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2456. param_hdr.instance_id = INSTANCE_ID_0;
  2457. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  2458. param_hdr.param_size = sizeof(struct afe_param_id_spdif_ch_status_cfg);
  2459. ret = q6afe_pack_and_set_param_in_band(port_id,
  2460. q6audio_get_port_index(port_id),
  2461. param_hdr, (u8 *) ch_status_cfg);
  2462. if (ret < 0)
  2463. pr_err("%s: AFE send channel status for port 0x%x failed ret = %d\n",
  2464. __func__, port_id, ret);
  2465. return ret;
  2466. }
  2467. EXPORT_SYMBOL(afe_send_spdif_ch_status_cfg);
  2468. int afe_send_cmd_wakeup_register(void *handle, bool enable)
  2469. {
  2470. struct afe_svc_cmd_evt_cfg_payload wakeup_irq;
  2471. int ret = 0;
  2472. pr_debug("%s: enter\n", __func__);
  2473. wakeup_irq.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2474. APR_HDR_LEN(APR_HDR_SIZE),
  2475. APR_PKT_VER);
  2476. wakeup_irq.hdr.pkt_size = sizeof(wakeup_irq);
  2477. wakeup_irq.hdr.src_port = 0;
  2478. wakeup_irq.hdr.dest_port = 0;
  2479. wakeup_irq.hdr.token = 0x0;
  2480. wakeup_irq.hdr.opcode = AFE_SVC_CMD_EVENT_CFG;
  2481. wakeup_irq.event_id = AFE_EVENT_ID_MBHC_DETECTION_SW_WA;
  2482. wakeup_irq.reg_flag = enable;
  2483. pr_debug("%s: cmd wakeup register opcode[0x%x] register:%d\n",
  2484. __func__, wakeup_irq.hdr.opcode, wakeup_irq.reg_flag);
  2485. ret = afe_apr_send_pkt(&wakeup_irq, &this_afe.wait_wakeup);
  2486. if (ret)
  2487. pr_err("%s: AFE wakeup command register %d failed %d\n",
  2488. __func__, enable, ret);
  2489. return ret;
  2490. }
  2491. EXPORT_SYMBOL(afe_send_cmd_wakeup_register);
  2492. static int afe_send_cmd_port_start(u16 port_id)
  2493. {
  2494. struct afe_port_cmd_device_start start;
  2495. int ret, index;
  2496. pr_debug("%s: enter\n", __func__);
  2497. index = q6audio_get_port_index(port_id);
  2498. if (index < 0 || index >= AFE_MAX_PORTS) {
  2499. pr_err("%s: AFE port index[%d] invalid!\n",
  2500. __func__, index);
  2501. return -EINVAL;
  2502. }
  2503. ret = q6audio_validate_port(port_id);
  2504. if (ret < 0) {
  2505. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  2506. return -EINVAL;
  2507. }
  2508. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2509. APR_HDR_LEN(APR_HDR_SIZE),
  2510. APR_PKT_VER);
  2511. start.hdr.pkt_size = sizeof(start);
  2512. start.hdr.src_port = 0;
  2513. start.hdr.dest_port = 0;
  2514. start.hdr.token = index;
  2515. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  2516. start.port_id = q6audio_get_port_id(port_id);
  2517. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  2518. __func__, start.hdr.opcode, start.port_id);
  2519. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  2520. if (ret)
  2521. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  2522. port_id, ret);
  2523. return ret;
  2524. }
  2525. static int afe_aanc_start(uint16_t tx_port_id, uint16_t rx_port_id)
  2526. {
  2527. int ret;
  2528. pr_debug("%s: Tx port is 0x%x, Rx port is 0x%x\n",
  2529. __func__, tx_port_id, rx_port_id);
  2530. ret = afe_aanc_port_cfg(this_afe.apr, tx_port_id, rx_port_id);
  2531. if (ret) {
  2532. pr_err("%s: Send AANC Port Config failed %d\n",
  2533. __func__, ret);
  2534. goto fail_cmd;
  2535. }
  2536. send_afe_cal_type(AFE_AANC_CAL, tx_port_id);
  2537. fail_cmd:
  2538. return ret;
  2539. }
  2540. /**
  2541. * afe_spdif_port_start - to configure AFE session with
  2542. * specified port configuration
  2543. *
  2544. * @port_id: AFE port id number
  2545. * @spdif_port: spdif port configutation
  2546. * @rate: sampling rate of port
  2547. *
  2548. * Returns 0 on success or error value on port start failure.
  2549. */
  2550. int afe_spdif_port_start(u16 port_id, struct afe_spdif_port_config *spdif_port,
  2551. u32 rate)
  2552. {
  2553. struct param_hdr_v3 param_hdr;
  2554. uint16_t port_index;
  2555. int ret = 0;
  2556. if (!spdif_port) {
  2557. pr_err("%s: Error, no configuration data\n", __func__);
  2558. ret = -EINVAL;
  2559. return ret;
  2560. }
  2561. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2562. memset(&param_hdr, 0, sizeof(param_hdr));
  2563. ret = q6audio_validate_port(port_id);
  2564. if (ret < 0) {
  2565. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  2566. return -EINVAL;
  2567. }
  2568. afe_send_cal(port_id);
  2569. afe_send_hw_delay(port_id, rate);
  2570. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2571. param_hdr.instance_id = INSTANCE_ID_0;
  2572. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CONFIG;
  2573. param_hdr.param_size = sizeof(struct afe_spdif_port_config);
  2574. ret = q6afe_pack_and_set_param_in_band(port_id,
  2575. q6audio_get_port_index(port_id),
  2576. param_hdr, (u8 *) spdif_port);
  2577. if (ret) {
  2578. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  2579. __func__, port_id, ret);
  2580. goto fail_cmd;
  2581. }
  2582. port_index = afe_get_port_index(port_id);
  2583. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  2584. this_afe.afe_sample_rates[port_index] = rate;
  2585. } else {
  2586. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  2587. ret = -EINVAL;
  2588. goto fail_cmd;
  2589. }
  2590. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  2591. ret = afe_send_spdif_ch_status_cfg(&spdif_port->ch_status,
  2592. port_id);
  2593. if (ret < 0) {
  2594. pr_err("%s: afe send failed %d\n", __func__, ret);
  2595. goto fail_cmd;
  2596. }
  2597. }
  2598. return afe_send_cmd_port_start(port_id);
  2599. fail_cmd:
  2600. return ret;
  2601. }
  2602. EXPORT_SYMBOL(afe_spdif_port_start);
  2603. /**
  2604. * afe_spdif_reg_event_cfg -
  2605. * register for event from AFE spdif port
  2606. *
  2607. * @port_id: Port ID to register event
  2608. * @reg_flag: register or unregister
  2609. * @cb: callback function to invoke for events from module
  2610. * @private_data: private data to sent back in callback fn
  2611. *
  2612. * Returns 0 on success or error on failure
  2613. */
  2614. int afe_spdif_reg_event_cfg(u16 port_id, u16 reg_flag,
  2615. void (*cb)(uint32_t opcode,
  2616. uint32_t token, uint32_t *payload, void *priv),
  2617. void *private_data)
  2618. {
  2619. struct afe_port_cmd_event_cfg *config;
  2620. struct afe_port_cmd_mod_evt_cfg_payload pl;
  2621. int index;
  2622. int ret;
  2623. int num_events = 1;
  2624. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  2625. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  2626. config = kzalloc(cmd_size, GFP_KERNEL);
  2627. if (!config)
  2628. return -ENOMEM;
  2629. if (port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  2630. this_afe.pri_spdif_tx_cb = cb;
  2631. this_afe.pri_spdif_tx_private_data = private_data;
  2632. } else if (port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  2633. this_afe.sec_spdif_tx_cb = cb;
  2634. this_afe.sec_spdif_tx_private_data = private_data;
  2635. } else {
  2636. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  2637. ret = -EINVAL;
  2638. goto fail_idx;
  2639. }
  2640. index = q6audio_get_port_index(port_id);
  2641. if (index < 0) {
  2642. pr_err("%s: Invalid index number: %d\n", __func__, index);
  2643. ret = -EINVAL;
  2644. goto fail_idx;
  2645. }
  2646. memset(&pl, 0, sizeof(pl));
  2647. pl.module_id = AFE_MODULE_CUSTOM_EVENTS;
  2648. pl.event_id = AFE_PORT_FMT_UPDATE_EVENT;
  2649. pl.reg_flag = reg_flag;
  2650. config->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2651. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2652. config->hdr.pkt_size = cmd_size;
  2653. config->hdr.src_port = 1;
  2654. config->hdr.dest_port = 1;
  2655. config->hdr.token = index;
  2656. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  2657. config->port_id = q6audio_get_port_id(port_id);
  2658. config->num_events = num_events;
  2659. config->version = 1;
  2660. memcpy(config->payload, &pl, sizeof(pl));
  2661. atomic_set(&this_afe.state, 1);
  2662. atomic_set(&this_afe.status, 0);
  2663. ret = apr_send_pkt(this_afe.apr, (uint32_t *) config);
  2664. if (ret < 0) {
  2665. pr_err("%s: port = 0x%x failed %d\n",
  2666. __func__, port_id, ret);
  2667. goto fail_cmd;
  2668. }
  2669. ret = wait_event_timeout(this_afe.wait[index],
  2670. (atomic_read(&this_afe.state) == 0),
  2671. msecs_to_jiffies(TIMEOUT_MS));
  2672. if (!ret) {
  2673. pr_err("%s: wait_event timeout\n", __func__);
  2674. ret = -EINVAL;
  2675. goto fail_cmd;
  2676. }
  2677. if (atomic_read(&this_afe.status) > 0) {
  2678. pr_err("%s: config cmd failed [%s]\n",
  2679. __func__, adsp_err_get_err_str(
  2680. atomic_read(&this_afe.status)));
  2681. ret = adsp_err_get_lnx_err_code(
  2682. atomic_read(&this_afe.status));
  2683. goto fail_idx;
  2684. }
  2685. ret = 0;
  2686. fail_cmd:
  2687. pr_debug("%s: config.opcode 0x%x status %d\n",
  2688. __func__, config->hdr.opcode, ret);
  2689. fail_idx:
  2690. kfree(config);
  2691. return ret;
  2692. }
  2693. EXPORT_SYMBOL(afe_spdif_reg_event_cfg);
  2694. int afe_send_slot_mapping_cfg(
  2695. struct afe_param_id_slot_mapping_cfg *slot_mapping_cfg,
  2696. u16 port_id)
  2697. {
  2698. struct param_hdr_v3 param_hdr;
  2699. int ret = 0;
  2700. if (!slot_mapping_cfg) {
  2701. pr_err("%s: Error, no configuration data\n", __func__);
  2702. return -EINVAL;
  2703. }
  2704. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2705. memset(&param_hdr, 0, sizeof(param_hdr));
  2706. param_hdr.module_id = AFE_MODULE_TDM;
  2707. param_hdr.instance_id = INSTANCE_ID_0;
  2708. param_hdr.param_id = AFE_PARAM_ID_PORT_SLOT_MAPPING_CONFIG;
  2709. param_hdr.param_size = sizeof(struct afe_param_id_slot_mapping_cfg);
  2710. ret = q6afe_pack_and_set_param_in_band(port_id,
  2711. q6audio_get_port_index(port_id),
  2712. param_hdr,
  2713. (u8 *) slot_mapping_cfg);
  2714. if (ret < 0)
  2715. pr_err("%s: AFE send slot mapping for port 0x%x failed ret = %d\n",
  2716. __func__, port_id, ret);
  2717. return ret;
  2718. }
  2719. int afe_send_custom_tdm_header_cfg(
  2720. struct afe_param_id_custom_tdm_header_cfg *custom_tdm_header_cfg,
  2721. u16 port_id)
  2722. {
  2723. struct param_hdr_v3 param_hdr;
  2724. int ret = 0;
  2725. if (!custom_tdm_header_cfg) {
  2726. pr_err("%s: Error, no configuration data\n", __func__);
  2727. return -EINVAL;
  2728. }
  2729. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2730. memset(&param_hdr, 0, sizeof(param_hdr));
  2731. param_hdr.module_id = AFE_MODULE_TDM;
  2732. param_hdr.instance_id = INSTANCE_ID_0;
  2733. param_hdr.param_id = AFE_PARAM_ID_CUSTOM_TDM_HEADER_CONFIG;
  2734. param_hdr.param_size =
  2735. sizeof(struct afe_param_id_custom_tdm_header_cfg);
  2736. ret = q6afe_pack_and_set_param_in_band(port_id,
  2737. q6audio_get_port_index(port_id),
  2738. param_hdr,
  2739. (u8 *) custom_tdm_header_cfg);
  2740. if (ret < 0)
  2741. pr_err("%s: AFE send custom tdm header for port 0x%x failed ret = %d\n",
  2742. __func__, port_id, ret);
  2743. return ret;
  2744. }
  2745. /**
  2746. * afe_tdm_port_start - to configure AFE session with
  2747. * specified port configuration
  2748. *
  2749. * @port_id: AFE port id number
  2750. * @tdm_port: TDM port configutation
  2751. * @rate: sampling rate of port
  2752. * @num_groups: number of TDM groups
  2753. *
  2754. * Returns 0 on success or error value on port start failure.
  2755. */
  2756. int afe_tdm_port_start(u16 port_id, struct afe_tdm_port_config *tdm_port,
  2757. u32 rate, u16 num_groups)
  2758. {
  2759. struct param_hdr_v3 param_hdr;
  2760. int index = 0;
  2761. uint16_t port_index = 0;
  2762. enum afe_mad_type mad_type = MAD_HW_NONE;
  2763. int ret = 0;
  2764. if (!tdm_port) {
  2765. pr_err("%s: Error, no configuration data\n", __func__);
  2766. return -EINVAL;
  2767. }
  2768. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  2769. memset(&param_hdr, 0, sizeof(param_hdr));
  2770. index = q6audio_get_port_index(port_id);
  2771. if (index < 0 || index >= AFE_MAX_PORTS) {
  2772. pr_err("%s: AFE port index[%d] invalid!\n",
  2773. __func__, index);
  2774. return -EINVAL;
  2775. }
  2776. ret = q6audio_validate_port(port_id);
  2777. if (ret < 0) {
  2778. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  2779. return -EINVAL;
  2780. }
  2781. ret = afe_q6_interface_prepare();
  2782. if (ret != 0) {
  2783. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  2784. return ret;
  2785. }
  2786. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  2787. this_afe.afe_sample_rates[index] = rate;
  2788. if (this_afe.rt_cb)
  2789. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  2790. }
  2791. port_index = afe_get_port_index(port_id);
  2792. if (q6core_get_avcs_api_version_per_service(
  2793. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4) {
  2794. /* send VAD configuration if enabled */
  2795. if (this_afe.vad_cfg[port_index].is_enable) {
  2796. ret = afe_send_port_vad_cfg_params(port_id);
  2797. if (ret) {
  2798. pr_err("%s: afe send VAD config failed %d\n",
  2799. __func__, ret);
  2800. goto fail_cmd;
  2801. }
  2802. }
  2803. }
  2804. /* Also send the topology id here: */
  2805. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  2806. /* One time call: only for first time */
  2807. afe_send_custom_topology();
  2808. afe_send_port_topology_id(port_id);
  2809. afe_send_cal(port_id);
  2810. afe_send_hw_delay(port_id, rate);
  2811. }
  2812. /* Start SW MAD module */
  2813. mad_type = afe_port_get_mad_type(port_id);
  2814. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  2815. mad_type);
  2816. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  2817. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  2818. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  2819. pr_err("%s: AFE isn't configured yet for\n"
  2820. "HW MAD try Again\n", __func__);
  2821. ret = -EAGAIN;
  2822. goto fail_cmd;
  2823. }
  2824. ret = afe_turn_onoff_hw_mad(mad_type, true);
  2825. if (ret) {
  2826. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  2827. __func__, ret);
  2828. goto fail_cmd;
  2829. }
  2830. }
  2831. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2832. param_hdr.instance_id = INSTANCE_ID_0;
  2833. param_hdr.param_id = AFE_PARAM_ID_TDM_CONFIG;
  2834. param_hdr.param_size = sizeof(struct afe_param_id_tdm_cfg);
  2835. ret = q6afe_pack_and_set_param_in_band(port_id,
  2836. q6audio_get_port_index(port_id),
  2837. param_hdr,
  2838. (u8 *) &tdm_port->tdm);
  2839. if (ret) {
  2840. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  2841. __func__, port_id, ret);
  2842. goto fail_cmd;
  2843. }
  2844. port_index = afe_get_port_index(port_id);
  2845. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  2846. this_afe.afe_sample_rates[port_index] = rate;
  2847. } else {
  2848. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  2849. ret = -EINVAL;
  2850. goto fail_cmd;
  2851. }
  2852. ret = afe_send_slot_mapping_cfg(&tdm_port->slot_mapping,
  2853. port_id);
  2854. if (ret < 0) {
  2855. pr_err("%s: afe send failed %d\n", __func__, ret);
  2856. goto fail_cmd;
  2857. }
  2858. if (tdm_port->custom_tdm_header.header_type) {
  2859. ret = afe_send_custom_tdm_header_cfg(
  2860. &tdm_port->custom_tdm_header, port_id);
  2861. if (ret < 0) {
  2862. pr_err("%s: afe send failed %d\n", __func__, ret);
  2863. goto fail_cmd;
  2864. }
  2865. }
  2866. ret = afe_send_cmd_port_start(port_id);
  2867. fail_cmd:
  2868. return ret;
  2869. }
  2870. EXPORT_SYMBOL(afe_tdm_port_start);
  2871. /**
  2872. * afe_set_cal_mode -
  2873. * set cal mode for AFE calibration
  2874. *
  2875. * @port_id: AFE port id number
  2876. * @afe_cal_mode: AFE calib mode
  2877. *
  2878. */
  2879. void afe_set_cal_mode(u16 port_id, enum afe_cal_mode afe_cal_mode)
  2880. {
  2881. uint16_t port_index;
  2882. port_index = afe_get_port_index(port_id);
  2883. this_afe.afe_cal_mode[port_index] = afe_cal_mode;
  2884. }
  2885. EXPORT_SYMBOL(afe_set_cal_mode);
  2886. /**
  2887. * afe_set_vad_cfg -
  2888. * set configuration for VAD
  2889. *
  2890. * @port_id: AFE port id number
  2891. * @vad_enable: enable/disable vad
  2892. * @preroll_config: Preroll configuration
  2893. *
  2894. */
  2895. void afe_set_vad_cfg(u32 vad_enable, u32 preroll_config,
  2896. u32 port_id)
  2897. {
  2898. uint16_t port_index;
  2899. port_index = afe_get_port_index(port_id);
  2900. this_afe.vad_cfg[port_index].is_enable = vad_enable;
  2901. this_afe.vad_cfg[port_index].pre_roll = preroll_config;
  2902. }
  2903. EXPORT_SYMBOL(afe_set_vad_cfg);
  2904. /**
  2905. * afe_get_island_mode_cfg -
  2906. * get island mode configuration
  2907. *
  2908. * @port_id: AFE port id number
  2909. * @enable_flag: Enable or Disable
  2910. *
  2911. */
  2912. void afe_get_island_mode_cfg(u16 port_id, u32 *enable_flag)
  2913. {
  2914. uint16_t port_index;
  2915. if (enable_flag) {
  2916. port_index = afe_get_port_index(port_id);
  2917. *enable_flag = this_afe.island_mode[port_index];
  2918. }
  2919. }
  2920. EXPORT_SYMBOL(afe_get_island_mode_cfg);
  2921. /**
  2922. * afe_set_island_mode_cfg -
  2923. * set island mode configuration
  2924. *
  2925. * @port_id: AFE port id number
  2926. * @enable_flag: Enable or Disable
  2927. *
  2928. */
  2929. void afe_set_island_mode_cfg(u16 port_id, u32 enable_flag)
  2930. {
  2931. uint16_t port_index;
  2932. port_index = afe_get_port_index(port_id);
  2933. this_afe.island_mode[port_index] = enable_flag;
  2934. }
  2935. EXPORT_SYMBOL(afe_set_island_mode_cfg);
  2936. /**
  2937. * afe_set_routing_callback -
  2938. * Update callback function for routing
  2939. *
  2940. * @cb: callback function to update with
  2941. *
  2942. */
  2943. void afe_set_routing_callback(routing_cb cb)
  2944. {
  2945. this_afe.rt_cb = cb;
  2946. }
  2947. EXPORT_SYMBOL(afe_set_routing_callback);
  2948. int afe_port_send_usb_dev_param(u16 port_id, union afe_port_config *afe_config)
  2949. {
  2950. struct afe_param_id_usb_audio_dev_params usb_dev;
  2951. struct afe_param_id_usb_audio_dev_lpcm_fmt lpcm_fmt;
  2952. struct afe_param_id_usb_audio_svc_interval svc_int;
  2953. struct param_hdr_v3 param_hdr;
  2954. int ret = 0, index = 0;
  2955. if (!afe_config) {
  2956. pr_err("%s: Error, no configuration data\n", __func__);
  2957. ret = -EINVAL;
  2958. goto exit;
  2959. }
  2960. index = q6audio_get_port_index(port_id);
  2961. if (index < 0 || index >= AFE_MAX_PORTS) {
  2962. pr_err("%s: AFE port index[%d] invalid!\n",
  2963. __func__, index);
  2964. return -EINVAL;
  2965. }
  2966. memset(&usb_dev, 0, sizeof(usb_dev));
  2967. memset(&lpcm_fmt, 0, sizeof(lpcm_fmt));
  2968. memset(&param_hdr, 0, sizeof(param_hdr));
  2969. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2970. param_hdr.instance_id = INSTANCE_ID_0;
  2971. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_PARAMS;
  2972. param_hdr.param_size = sizeof(usb_dev);
  2973. usb_dev.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  2974. usb_dev.dev_token = afe_config->usb_audio.dev_token;
  2975. ret = q6afe_pack_and_set_param_in_band(port_id,
  2976. q6audio_get_port_index(port_id),
  2977. param_hdr, (u8 *) &usb_dev);
  2978. if (ret) {
  2979. pr_err("%s: AFE device param cmd failed %d\n",
  2980. __func__, ret);
  2981. goto exit;
  2982. }
  2983. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_LPCM_FMT;
  2984. param_hdr.param_size = sizeof(lpcm_fmt);
  2985. lpcm_fmt.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  2986. lpcm_fmt.endian = afe_config->usb_audio.endian;
  2987. ret = q6afe_pack_and_set_param_in_band(port_id,
  2988. q6audio_get_port_index(port_id),
  2989. param_hdr, (u8 *) &lpcm_fmt);
  2990. if (ret) {
  2991. pr_err("%s: AFE device param cmd LPCM_FMT failed %d\n",
  2992. __func__, ret);
  2993. goto exit;
  2994. }
  2995. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_SVC_INTERVAL;
  2996. param_hdr.param_size = sizeof(svc_int);
  2997. svc_int.cfg_minor_version =
  2998. AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  2999. svc_int.svc_interval = afe_config->usb_audio.service_interval;
  3000. pr_debug("%s: AFE device param cmd sending SVC_INTERVAL %d\n",
  3001. __func__, svc_int.svc_interval);
  3002. ret = q6afe_pack_and_set_param_in_band(port_id,
  3003. q6audio_get_port_index(port_id),
  3004. param_hdr, (u8 *) &svc_int);
  3005. if (ret) {
  3006. pr_err("%s: AFE device param cmd svc_interval failed %d\n",
  3007. __func__, ret);
  3008. ret = -EINVAL;
  3009. goto exit;
  3010. }
  3011. exit:
  3012. return ret;
  3013. }
  3014. static int q6afe_send_dec_config(u16 port_id,
  3015. union afe_port_config afe_config,
  3016. struct afe_dec_config *cfg,
  3017. u32 format,
  3018. u16 afe_in_channels, u16 afe_in_bit_width)
  3019. {
  3020. struct afe_dec_media_fmt_t dec_media_fmt;
  3021. struct avs_dec_depacketizer_id_param_t dec_depkt_id_param;
  3022. struct avs_dec_congestion_buffer_param_t dec_buffer_id_param;
  3023. struct afe_enc_dec_imc_info_param_t imc_info_param;
  3024. struct afe_port_media_type_t media_type;
  3025. struct param_hdr_v3 param_hdr;
  3026. int ret;
  3027. u32 dec_fmt;
  3028. memset(&dec_depkt_id_param, 0, sizeof(dec_depkt_id_param));
  3029. memset(&dec_media_fmt, 0, sizeof(dec_media_fmt));
  3030. memset(&imc_info_param, 0, sizeof(imc_info_param));
  3031. memset(&media_type, 0, sizeof(media_type));
  3032. memset(&param_hdr, 0, sizeof(param_hdr));
  3033. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  3034. param_hdr.instance_id = INSTANCE_ID_0;
  3035. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEPACKETIZER to DSP payload\n",
  3036. __func__);
  3037. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEPACKETIZER_ID;
  3038. param_hdr.param_size = sizeof(struct avs_dec_depacketizer_id_param_t);
  3039. dec_depkt_id_param.dec_depacketizer_id =
  3040. AFE_MODULE_ID_DEPACKETIZER_COP_V1;
  3041. if (cfg->format == ENC_CODEC_TYPE_LDAC)
  3042. dec_depkt_id_param.dec_depacketizer_id =
  3043. AFE_MODULE_ID_DEPACKETIZER_COP;
  3044. ret = q6afe_pack_and_set_param_in_band(port_id,
  3045. q6audio_get_port_index(port_id),
  3046. param_hdr,
  3047. (u8 *) &dec_depkt_id_param);
  3048. if (ret) {
  3049. pr_err("%s: AFE_DECODER_PARAM_ID_DEPACKETIZER for port 0x%x failed %d\n",
  3050. __func__, port_id, ret);
  3051. goto exit;
  3052. }
  3053. switch (cfg->format) {
  3054. case ASM_MEDIA_FMT_SBC:
  3055. case ASM_MEDIA_FMT_AAC_V2:
  3056. case ASM_MEDIA_FMT_MP3:
  3057. if (port_id == SLIMBUS_9_TX) {
  3058. dec_buffer_id_param.max_nr_buffers = 200;
  3059. dec_buffer_id_param.pre_buffer_size = 200;
  3060. } else {
  3061. dec_buffer_id_param.max_nr_buffers = 0;
  3062. dec_buffer_id_param.pre_buffer_size = 0;
  3063. }
  3064. pr_debug("%s: sending AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE to DSP payload\n",
  3065. __func__);
  3066. param_hdr.param_id =
  3067. AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE;
  3068. param_hdr.param_size =
  3069. sizeof(struct avs_dec_congestion_buffer_param_t);
  3070. dec_buffer_id_param.version = 0;
  3071. ret = q6afe_pack_and_set_param_in_band(port_id,
  3072. q6audio_get_port_index(port_id),
  3073. param_hdr,
  3074. (u8 *) &dec_buffer_id_param);
  3075. if (ret) {
  3076. pr_err("%s: AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE for port 0x%x failed %d\n",
  3077. __func__, port_id, ret);
  3078. goto exit;
  3079. }
  3080. break;
  3081. default:
  3082. pr_debug("%s:sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload\n",
  3083. __func__);
  3084. param_hdr.param_id =
  3085. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  3086. param_hdr.param_size =
  3087. sizeof(struct afe_enc_dec_imc_info_param_t);
  3088. imc_info_param.imc_info = cfg->abr_dec_cfg.imc_info;
  3089. ret = q6afe_pack_and_set_param_in_band(port_id,
  3090. q6audio_get_port_index(port_id),
  3091. param_hdr,
  3092. (u8 *) &imc_info_param);
  3093. if (ret) {
  3094. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  3095. __func__, port_id, ret);
  3096. goto exit;
  3097. }
  3098. break;
  3099. }
  3100. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  3101. param_hdr.module_id = AFE_MODULE_PORT;
  3102. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  3103. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  3104. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  3105. switch (cfg->format) {
  3106. case ASM_MEDIA_FMT_AAC_V2:
  3107. media_type.sample_rate =
  3108. cfg->data.aac_config.sample_rate;
  3109. break;
  3110. case ASM_MEDIA_FMT_SBC:
  3111. media_type.sample_rate =
  3112. cfg->data.sbc_config.sample_rate;
  3113. break;
  3114. default:
  3115. media_type.sample_rate =
  3116. afe_config.slim_sch.sample_rate;
  3117. }
  3118. if (afe_in_bit_width)
  3119. media_type.bit_width = afe_in_bit_width;
  3120. else
  3121. media_type.bit_width = afe_config.slim_sch.bit_width;
  3122. if (afe_in_channels)
  3123. media_type.num_channels = afe_in_channels;
  3124. else
  3125. media_type.num_channels = afe_config.slim_sch.num_channels;
  3126. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  3127. media_type.reserved = 0;
  3128. ret = q6afe_pack_and_set_param_in_band(port_id,
  3129. q6audio_get_port_index(port_id),
  3130. param_hdr, (u8 *) &media_type);
  3131. if (ret) {
  3132. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  3133. __func__, port_id, ret);
  3134. goto exit;
  3135. }
  3136. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2) {
  3137. pr_debug("%s:Unsuppported dec format. Ignore AFE config %u\n",
  3138. __func__, format);
  3139. goto exit;
  3140. }
  3141. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT to DSP payload\n",
  3142. __func__);
  3143. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  3144. param_hdr.instance_id = INSTANCE_ID_0;
  3145. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEC_FMT_ID;
  3146. param_hdr.param_size = sizeof(dec_fmt);
  3147. dec_fmt = format;
  3148. ret = q6afe_pack_and_set_param_in_band(port_id,
  3149. q6audio_get_port_index(port_id),
  3150. param_hdr, (u8 *) &dec_fmt);
  3151. if (ret) {
  3152. pr_err("%s: AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT for port 0x%x failed %d\n",
  3153. __func__, port_id, ret);
  3154. goto exit;
  3155. }
  3156. switch (cfg->format) {
  3157. case ASM_MEDIA_FMT_AAC_V2:
  3158. param_hdr.param_size = sizeof(struct afe_dec_media_fmt_t);
  3159. pr_debug("%s:send AFE_DECODER_PARAM_ID DEC_MEDIA_FMT to DSP payload\n",
  3160. __func__);
  3161. param_hdr.param_id = AVS_DECODER_PARAM_ID_DEC_MEDIA_FMT;
  3162. dec_media_fmt.dec_media_config = cfg->data;
  3163. ret = q6afe_pack_and_set_param_in_band(port_id,
  3164. q6audio_get_port_index(port_id),
  3165. param_hdr,
  3166. (u8 *) &dec_media_fmt);
  3167. if (ret) {
  3168. pr_err("%s: AFE_DECODER_PARAM_ID DEC_MEDIA_FMT for port 0x%x failed %d\n",
  3169. __func__, port_id, ret);
  3170. goto exit;
  3171. }
  3172. break;
  3173. default:
  3174. pr_debug("%s:No need to send DEC_MEDIA_FMT to DSP payload\n",
  3175. __func__);
  3176. }
  3177. exit:
  3178. return ret;
  3179. }
  3180. static int q6afe_send_enc_config(u16 port_id,
  3181. union afe_enc_config_data *cfg, u32 format,
  3182. union afe_port_config afe_config,
  3183. u16 afe_in_channels, u16 afe_in_bit_width,
  3184. u32 scrambler_mode)
  3185. {
  3186. u32 enc_fmt;
  3187. struct afe_enc_cfg_blk_param_t enc_blk_param;
  3188. struct afe_param_id_aptx_sync_mode sync_mode_param;
  3189. struct afe_id_aptx_adaptive_enc_init aptx_adaptive_enc_init;
  3190. struct avs_enc_packetizer_id_param_t enc_pkt_id_param;
  3191. struct avs_enc_set_scrambler_param_t enc_set_scrambler_param;
  3192. struct afe_enc_level_to_bitrate_map_param_t map_param;
  3193. struct afe_enc_dec_imc_info_param_t imc_info_param;
  3194. struct afe_port_media_type_t media_type;
  3195. struct param_hdr_v3 param_hdr;
  3196. int ret;
  3197. pr_debug("%s:update DSP for enc format = %d\n", __func__, format);
  3198. memset(&enc_blk_param, 0, sizeof(enc_blk_param));
  3199. memset(&sync_mode_param, 0, sizeof(sync_mode_param));
  3200. memset(&aptx_adaptive_enc_init, 0, sizeof(aptx_adaptive_enc_init));
  3201. memset(&enc_pkt_id_param, 0, sizeof(enc_pkt_id_param));
  3202. memset(&enc_set_scrambler_param, 0, sizeof(enc_set_scrambler_param));
  3203. memset(&map_param, 0, sizeof(map_param));
  3204. memset(&imc_info_param, 0, sizeof(imc_info_param));
  3205. memset(&media_type, 0, sizeof(media_type));
  3206. memset(&param_hdr, 0, sizeof(param_hdr));
  3207. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  3208. format != ASM_MEDIA_FMT_APTX && format != ASM_MEDIA_FMT_APTX_HD &&
  3209. format != ASM_MEDIA_FMT_CELT && format != ASM_MEDIA_FMT_LDAC &&
  3210. format != ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  3211. pr_err("%s:Unsuppported enc format. Ignore AFE config\n",
  3212. __func__);
  3213. return 0;
  3214. }
  3215. param_hdr.module_id = AFE_MODULE_ID_ENCODER;
  3216. param_hdr.instance_id = INSTANCE_ID_0;
  3217. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_FMT_ID;
  3218. param_hdr.param_size = sizeof(enc_fmt);
  3219. enc_fmt = format;
  3220. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENC_FMT_ID payload\n",
  3221. __func__);
  3222. ret = q6afe_pack_and_set_param_in_band(port_id,
  3223. q6audio_get_port_index(port_id),
  3224. param_hdr, (u8 *) &enc_fmt);
  3225. if (ret) {
  3226. pr_err("%s:unable to send AFE_ENCODER_PARAM_ID_ENC_FMT_ID",
  3227. __func__);
  3228. goto exit;
  3229. }
  3230. if (format == ASM_MEDIA_FMT_LDAC) {
  3231. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t)
  3232. - sizeof(struct afe_abr_enc_cfg_t);
  3233. enc_blk_param.enc_cfg_blk_size =
  3234. sizeof(union afe_enc_config_data)
  3235. - sizeof(struct afe_abr_enc_cfg_t);
  3236. } else {
  3237. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t);
  3238. enc_blk_param.enc_cfg_blk_size =
  3239. sizeof(union afe_enc_config_data);
  3240. }
  3241. pr_debug("%s:send AFE_ENCODER_PARAM_ID_ENC_CFG_BLK to DSP payload\n",
  3242. __func__);
  3243. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_CFG_BLK;
  3244. enc_blk_param.enc_blk_config = *cfg;
  3245. ret = q6afe_pack_and_set_param_in_band(port_id,
  3246. q6audio_get_port_index(port_id),
  3247. param_hdr,
  3248. (u8 *) &enc_blk_param);
  3249. if (ret) {
  3250. pr_err("%s: AFE_ENCODER_PARAM_ID_ENC_CFG_BLK for port 0x%x failed %d\n",
  3251. __func__, port_id, ret);
  3252. goto exit;
  3253. }
  3254. if (format == ASM_MEDIA_FMT_APTX) {
  3255. pr_debug("%s: sending AFE_PARAM_ID_APTX_SYNC_MODE to DSP",
  3256. __func__);
  3257. param_hdr.param_id = AFE_PARAM_ID_APTX_SYNC_MODE;
  3258. param_hdr.param_size =
  3259. sizeof(struct afe_param_id_aptx_sync_mode);
  3260. sync_mode_param.sync_mode =
  3261. enc_blk_param.enc_blk_config.aptx_config.
  3262. aptx_v2_cfg.sync_mode;
  3263. ret = q6afe_pack_and_set_param_in_band(port_id,
  3264. q6audio_get_port_index(port_id),
  3265. param_hdr,
  3266. (u8 *) &sync_mode_param);
  3267. if (ret) {
  3268. pr_err("%s: AFE_PARAM_ID_APTX_SYNC_MODE for port 0x%x failed %d\n",
  3269. __func__, port_id, ret);
  3270. goto exit;
  3271. }
  3272. }
  3273. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  3274. pr_debug("%s: sending AFE_ID_APTX_ADAPTIVE_ENC_INIT to DSP\n",
  3275. __func__);
  3276. param_hdr.param_id = AFE_ID_APTX_ADAPTIVE_ENC_INIT;
  3277. param_hdr.param_size =
  3278. sizeof(struct afe_id_aptx_adaptive_enc_init);
  3279. aptx_adaptive_enc_init =
  3280. enc_blk_param.enc_blk_config.aptx_ad_config.
  3281. aptx_ad_cfg;
  3282. ret = q6afe_pack_and_set_param_in_band(port_id,
  3283. q6audio_get_port_index(port_id),
  3284. param_hdr,
  3285. (u8 *) &aptx_adaptive_enc_init);
  3286. if (ret) {
  3287. pr_err("%s: AFE_ID_APTX_ADAPTIVE_ENC_INIT for port 0x%x failed %d\n",
  3288. __func__, port_id, ret);
  3289. goto exit;
  3290. }
  3291. }
  3292. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_PACKETIZER to DSP\n",
  3293. __func__);
  3294. param_hdr.param_id = AFE_ENCODER_PARAM_ID_PACKETIZER_ID;
  3295. param_hdr.param_size = sizeof(struct avs_enc_packetizer_id_param_t);
  3296. enc_pkt_id_param.enc_packetizer_id = AFE_MODULE_ID_PACKETIZER_COP;
  3297. ret = q6afe_pack_and_set_param_in_band(port_id,
  3298. q6audio_get_port_index(port_id),
  3299. param_hdr,
  3300. (u8 *) &enc_pkt_id_param);
  3301. if (ret) {
  3302. pr_err("%s: AFE_ENCODER_PARAM_ID_PACKETIZER for port 0x%x failed %d\n",
  3303. __func__, port_id, ret);
  3304. goto exit;
  3305. }
  3306. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING mode= %d to DSP payload\n",
  3307. __func__, scrambler_mode);
  3308. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING;
  3309. param_hdr.param_size = sizeof(struct avs_enc_set_scrambler_param_t);
  3310. enc_set_scrambler_param.enable_scrambler = scrambler_mode;
  3311. ret = q6afe_pack_and_set_param_in_band(port_id,
  3312. q6audio_get_port_index(port_id),
  3313. param_hdr,
  3314. (u8 *) &enc_set_scrambler_param);
  3315. if (ret) {
  3316. pr_err("%s: AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING for port 0x%x failed %d\n",
  3317. __func__, port_id, ret);
  3318. goto exit;
  3319. }
  3320. if ((format == ASM_MEDIA_FMT_LDAC &&
  3321. cfg->ldac_config.abr_config.is_abr_enabled) ||
  3322. format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  3323. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP to DSP payload",
  3324. __func__);
  3325. param_hdr.param_id = AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP;
  3326. param_hdr.param_size =
  3327. sizeof(struct afe_enc_level_to_bitrate_map_param_t);
  3328. map_param.mapping_table =
  3329. cfg->ldac_config.abr_config.mapping_info;
  3330. ret = q6afe_pack_and_set_param_in_band(port_id,
  3331. q6audio_get_port_index(port_id),
  3332. param_hdr,
  3333. (u8 *) &map_param);
  3334. if (ret) {
  3335. pr_err("%s: AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP for port 0x%x failed %d\n",
  3336. __func__, port_id, ret);
  3337. goto exit;
  3338. }
  3339. pr_debug("%s: sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload",
  3340. __func__);
  3341. param_hdr.param_id =
  3342. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  3343. param_hdr.param_size =
  3344. sizeof(struct afe_enc_dec_imc_info_param_t);
  3345. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  3346. imc_info_param.imc_info =
  3347. cfg->aptx_ad_config.abr_cfg.imc_info;
  3348. else
  3349. imc_info_param.imc_info =
  3350. cfg->ldac_config.abr_config.imc_info;
  3351. ret = q6afe_pack_and_set_param_in_band(port_id,
  3352. q6audio_get_port_index(port_id),
  3353. param_hdr,
  3354. (u8 *) &imc_info_param);
  3355. if (ret) {
  3356. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  3357. __func__, port_id, ret);
  3358. goto exit;
  3359. }
  3360. }
  3361. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  3362. param_hdr.module_id = AFE_MODULE_PORT;
  3363. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  3364. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  3365. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  3366. if (format == ASM_MEDIA_FMT_LDAC)
  3367. media_type.sample_rate =
  3368. cfg->ldac_config.custom_config.sample_rate;
  3369. else if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  3370. media_type.sample_rate =
  3371. cfg->aptx_ad_config.custom_cfg.sample_rate;
  3372. else
  3373. media_type.sample_rate =
  3374. afe_config.slim_sch.sample_rate;
  3375. if (afe_in_bit_width)
  3376. media_type.bit_width = afe_in_bit_width;
  3377. else
  3378. media_type.bit_width = afe_config.slim_sch.bit_width;
  3379. if (afe_in_channels)
  3380. media_type.num_channels = afe_in_channels;
  3381. else
  3382. media_type.num_channels = afe_config.slim_sch.num_channels;
  3383. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  3384. media_type.reserved = 0;
  3385. ret = q6afe_pack_and_set_param_in_band(port_id,
  3386. q6audio_get_port_index(port_id),
  3387. param_hdr, (u8 *) &media_type);
  3388. if (ret) {
  3389. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  3390. __func__, port_id, ret);
  3391. goto exit;
  3392. }
  3393. exit:
  3394. return ret;
  3395. }
  3396. static int __afe_port_start(u16 port_id, union afe_port_config *afe_config,
  3397. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  3398. union afe_enc_config_data *enc_cfg,
  3399. u32 codec_format, u32 scrambler_mode,
  3400. struct afe_dec_config *dec_cfg)
  3401. {
  3402. union afe_port_config port_cfg;
  3403. struct param_hdr_v3 param_hdr;
  3404. int ret = 0;
  3405. int cfg_type;
  3406. int index = 0;
  3407. enum afe_mad_type mad_type;
  3408. uint16_t port_index;
  3409. memset(&param_hdr, 0, sizeof(param_hdr));
  3410. memset(&port_cfg, 0, sizeof(port_cfg));
  3411. if (!afe_config) {
  3412. pr_err("%s: Error, no configuration data\n", __func__);
  3413. ret = -EINVAL;
  3414. return ret;
  3415. }
  3416. if ((port_id == RT_PROXY_DAI_001_RX) ||
  3417. (port_id == RT_PROXY_DAI_002_TX)) {
  3418. pr_debug("%s: before incrementing pcm_afe_instance %d port_id 0x%x\n",
  3419. __func__,
  3420. pcm_afe_instance[port_id & 0x1], port_id);
  3421. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  3422. pcm_afe_instance[port_id & 0x1]++;
  3423. return 0;
  3424. }
  3425. if ((port_id == RT_PROXY_DAI_002_RX) ||
  3426. (port_id == RT_PROXY_DAI_001_TX)) {
  3427. pr_debug("%s: before incrementing proxy_afe_instance %d port_id 0x%x\n",
  3428. __func__,
  3429. proxy_afe_instance[port_id & 0x1], port_id);
  3430. if (!afe_close_done[port_id & 0x1]) {
  3431. /*close pcm dai corresponding to the proxy dai*/
  3432. afe_close(port_id - 0x10);
  3433. pcm_afe_instance[port_id & 0x1]++;
  3434. pr_debug("%s: reconfigure afe port again\n", __func__);
  3435. }
  3436. proxy_afe_instance[port_id & 0x1]++;
  3437. afe_close_done[port_id & 0x1] = false;
  3438. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  3439. }
  3440. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3441. index = q6audio_get_port_index(port_id);
  3442. if (index < 0 || index >= AFE_MAX_PORTS) {
  3443. pr_err("%s: AFE port index[%d] invalid!\n",
  3444. __func__, index);
  3445. return -EINVAL;
  3446. }
  3447. ret = q6audio_validate_port(port_id);
  3448. if (ret < 0) {
  3449. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3450. return -EINVAL;
  3451. }
  3452. ret = afe_q6_interface_prepare();
  3453. if (ret != 0) {
  3454. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3455. return ret;
  3456. }
  3457. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  3458. this_afe.afe_sample_rates[index] = rate;
  3459. if (this_afe.rt_cb)
  3460. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  3461. }
  3462. mutex_lock(&this_afe.afe_cmd_lock);
  3463. port_index = afe_get_port_index(port_id);
  3464. if (q6core_get_avcs_api_version_per_service(
  3465. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4) {
  3466. /* send VAD configuration if is enabled */
  3467. if (this_afe.vad_cfg[port_index].is_enable) {
  3468. ret = afe_send_port_vad_cfg_params(port_id);
  3469. if (ret) {
  3470. pr_err("%s: afe send VAD config failed %d\n",
  3471. __func__, ret);
  3472. goto fail_cmd;
  3473. }
  3474. }
  3475. }
  3476. /* Also send the topology id here: */
  3477. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  3478. /* One time call: only for first time */
  3479. afe_send_custom_topology();
  3480. afe_send_port_topology_id(port_id);
  3481. afe_send_cal(port_id);
  3482. afe_send_hw_delay(port_id, rate);
  3483. }
  3484. /* Start SW MAD module */
  3485. mad_type = afe_port_get_mad_type(port_id);
  3486. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  3487. mad_type);
  3488. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  3489. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  3490. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  3491. pr_err("%s: AFE isn't configured yet for\n"
  3492. "HW MAD try Again\n", __func__);
  3493. ret = -EAGAIN;
  3494. goto fail_cmd;
  3495. }
  3496. ret = afe_turn_onoff_hw_mad(mad_type, true);
  3497. if (ret) {
  3498. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  3499. __func__, ret);
  3500. goto fail_cmd;
  3501. }
  3502. }
  3503. if ((this_afe.aanc_info.aanc_active) &&
  3504. (this_afe.aanc_info.aanc_tx_port == port_id)) {
  3505. this_afe.aanc_info.aanc_tx_port_sample_rate = rate;
  3506. port_index =
  3507. afe_get_port_index(this_afe.aanc_info.aanc_rx_port);
  3508. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3509. this_afe.aanc_info.aanc_rx_port_sample_rate =
  3510. this_afe.afe_sample_rates[port_index];
  3511. } else {
  3512. pr_err("%s: Invalid port index %d\n",
  3513. __func__, port_index);
  3514. ret = -EINVAL;
  3515. goto fail_cmd;
  3516. }
  3517. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  3518. this_afe.aanc_info.aanc_rx_port);
  3519. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  3520. }
  3521. if ((port_id == AFE_PORT_ID_USB_RX) ||
  3522. (port_id == AFE_PORT_ID_USB_TX)) {
  3523. ret = afe_port_send_usb_dev_param(port_id, afe_config);
  3524. if (ret) {
  3525. pr_err("%s: AFE device param for port 0x%x failed %d\n",
  3526. __func__, port_id, ret);
  3527. ret = -EINVAL;
  3528. goto fail_cmd;
  3529. }
  3530. }
  3531. switch (port_id) {
  3532. case AFE_PORT_ID_PRIMARY_PCM_RX:
  3533. case AFE_PORT_ID_PRIMARY_PCM_TX:
  3534. case AFE_PORT_ID_SECONDARY_PCM_RX:
  3535. case AFE_PORT_ID_SECONDARY_PCM_TX:
  3536. case AFE_PORT_ID_TERTIARY_PCM_RX:
  3537. case AFE_PORT_ID_TERTIARY_PCM_TX:
  3538. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  3539. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  3540. case AFE_PORT_ID_QUINARY_PCM_RX:
  3541. case AFE_PORT_ID_QUINARY_PCM_TX:
  3542. case AFE_PORT_ID_SENARY_PCM_RX:
  3543. case AFE_PORT_ID_SENARY_PCM_TX:
  3544. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  3545. break;
  3546. case PRIMARY_I2S_RX:
  3547. case PRIMARY_I2S_TX:
  3548. case SECONDARY_I2S_RX:
  3549. case SECONDARY_I2S_TX:
  3550. case MI2S_RX:
  3551. case MI2S_TX:
  3552. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  3553. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  3554. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  3555. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  3556. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  3557. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  3558. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  3559. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  3560. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  3561. case AFE_PORT_ID_QUINARY_MI2S_RX:
  3562. case AFE_PORT_ID_QUINARY_MI2S_TX:
  3563. case AFE_PORT_ID_SENARY_MI2S_TX:
  3564. case AFE_PORT_ID_INT0_MI2S_RX:
  3565. case AFE_PORT_ID_INT0_MI2S_TX:
  3566. case AFE_PORT_ID_INT1_MI2S_RX:
  3567. case AFE_PORT_ID_INT1_MI2S_TX:
  3568. case AFE_PORT_ID_INT2_MI2S_RX:
  3569. case AFE_PORT_ID_INT2_MI2S_TX:
  3570. case AFE_PORT_ID_INT3_MI2S_RX:
  3571. case AFE_PORT_ID_INT3_MI2S_TX:
  3572. case AFE_PORT_ID_INT4_MI2S_RX:
  3573. case AFE_PORT_ID_INT4_MI2S_TX:
  3574. case AFE_PORT_ID_INT5_MI2S_RX:
  3575. case AFE_PORT_ID_INT5_MI2S_TX:
  3576. case AFE_PORT_ID_INT6_MI2S_RX:
  3577. case AFE_PORT_ID_INT6_MI2S_TX:
  3578. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  3579. break;
  3580. case HDMI_RX:
  3581. case DISPLAY_PORT_RX:
  3582. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  3583. break;
  3584. case VOICE_PLAYBACK_TX:
  3585. case VOICE2_PLAYBACK_TX:
  3586. case VOICE_RECORD_RX:
  3587. case VOICE_RECORD_TX:
  3588. cfg_type = AFE_PARAM_ID_PSEUDO_PORT_CONFIG;
  3589. break;
  3590. case SLIMBUS_0_RX:
  3591. case SLIMBUS_0_TX:
  3592. case SLIMBUS_1_RX:
  3593. case SLIMBUS_1_TX:
  3594. case SLIMBUS_2_RX:
  3595. case SLIMBUS_2_TX:
  3596. case SLIMBUS_3_RX:
  3597. case SLIMBUS_3_TX:
  3598. case SLIMBUS_4_RX:
  3599. case SLIMBUS_4_TX:
  3600. case SLIMBUS_5_RX:
  3601. case SLIMBUS_5_TX:
  3602. case SLIMBUS_6_RX:
  3603. case SLIMBUS_6_TX:
  3604. case SLIMBUS_7_RX:
  3605. case SLIMBUS_7_TX:
  3606. case SLIMBUS_8_RX:
  3607. case SLIMBUS_8_TX:
  3608. case SLIMBUS_9_RX:
  3609. case SLIMBUS_9_TX:
  3610. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  3611. break;
  3612. case AFE_PORT_ID_USB_RX:
  3613. case AFE_PORT_ID_USB_TX:
  3614. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  3615. break;
  3616. case RT_PROXY_PORT_001_RX:
  3617. case RT_PROXY_PORT_001_TX:
  3618. cfg_type = AFE_PARAM_ID_RT_PROXY_CONFIG;
  3619. break;
  3620. case INT_BT_SCO_RX:
  3621. case INT_BT_A2DP_RX:
  3622. case INT_BT_SCO_TX:
  3623. case INT_FM_RX:
  3624. case INT_FM_TX:
  3625. cfg_type = AFE_PARAM_ID_INTERNAL_BT_FM_CONFIG;
  3626. break;
  3627. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  3628. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  3629. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  3630. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  3631. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  3632. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  3633. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  3634. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  3635. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  3636. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  3637. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  3638. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  3639. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  3640. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  3641. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  3642. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  3643. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  3644. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  3645. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  3646. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  3647. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  3648. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  3649. break;
  3650. default:
  3651. pr_err("%s: Invalid port id 0x%x\n", __func__, port_id);
  3652. ret = -EINVAL;
  3653. goto fail_cmd;
  3654. }
  3655. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3656. param_hdr.instance_id = INSTANCE_ID_0;
  3657. param_hdr.param_id = cfg_type;
  3658. param_hdr.param_size = sizeof(union afe_port_config);
  3659. port_cfg = *afe_config;
  3660. if (((enc_cfg != NULL) || (dec_cfg != NULL)) &&
  3661. (codec_format != ASM_MEDIA_FMT_NONE) &&
  3662. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  3663. port_cfg.slim_sch.data_format =
  3664. AFE_SB_DATA_FORMAT_GENERIC_COMPRESSED;
  3665. }
  3666. ret = q6afe_pack_and_set_param_in_band(port_id,
  3667. q6audio_get_port_index(port_id),
  3668. param_hdr, (u8 *) &port_cfg);
  3669. if (ret) {
  3670. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  3671. __func__, port_id, ret);
  3672. goto fail_cmd;
  3673. }
  3674. if ((codec_format != ASM_MEDIA_FMT_NONE) &&
  3675. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  3676. if (enc_cfg != NULL) {
  3677. pr_debug("%s: Found AFE encoder support for SLIMBUS format = %d\n",
  3678. __func__, codec_format);
  3679. ret = q6afe_send_enc_config(port_id, enc_cfg,
  3680. codec_format, *afe_config,
  3681. afe_in_channels,
  3682. afe_in_bit_width,
  3683. scrambler_mode);
  3684. if (ret) {
  3685. pr_err("%s: AFE encoder config for port 0x%x failed %d\n",
  3686. __func__, port_id, ret);
  3687. goto fail_cmd;
  3688. }
  3689. }
  3690. if (dec_cfg != NULL) {
  3691. pr_debug("%s: Found AFE decoder support for SLIMBUS format = %d\n",
  3692. __func__, codec_format);
  3693. ret = q6afe_send_dec_config(port_id, *afe_config,
  3694. dec_cfg, codec_format,
  3695. afe_in_channels,
  3696. afe_in_bit_width);
  3697. if (ret) {
  3698. pr_err("%s: AFE decoder config for port 0x%x failed %d\n",
  3699. __func__, port_id, ret);
  3700. goto fail_cmd;
  3701. }
  3702. }
  3703. }
  3704. port_index = afe_get_port_index(port_id);
  3705. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3706. /*
  3707. * If afe_port_start() for tx port called before
  3708. * rx port, then aanc rx sample rate is zero. So,
  3709. * AANC state machine in AFE will not get triggered.
  3710. * Make sure to check whether aanc is active during
  3711. * afe_port_start() for rx port and if aanc rx
  3712. * sample rate is zero, call afe_aanc_start to configure
  3713. * aanc with valid sample rates.
  3714. */
  3715. if (this_afe.aanc_info.aanc_active &&
  3716. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  3717. this_afe.aanc_info.aanc_rx_port_sample_rate =
  3718. this_afe.afe_sample_rates[port_index];
  3719. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  3720. this_afe.aanc_info.aanc_rx_port);
  3721. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  3722. }
  3723. } else {
  3724. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3725. ret = -EINVAL;
  3726. goto fail_cmd;
  3727. }
  3728. ret = afe_send_cmd_port_start(port_id);
  3729. fail_cmd:
  3730. mutex_unlock(&this_afe.afe_cmd_lock);
  3731. return ret;
  3732. }
  3733. /**
  3734. * afe_port_start - to configure AFE session with
  3735. * specified port configuration
  3736. *
  3737. * @port_id: AFE port id number
  3738. * @afe_config: port configutation
  3739. * @rate: sampling rate of port
  3740. *
  3741. * Returns 0 on success or error value on port start failure.
  3742. */
  3743. int afe_port_start(u16 port_id, union afe_port_config *afe_config,
  3744. u32 rate)
  3745. {
  3746. return __afe_port_start(port_id, afe_config, rate,
  3747. 0, 0, NULL, ASM_MEDIA_FMT_NONE, 0, NULL);
  3748. }
  3749. EXPORT_SYMBOL(afe_port_start);
  3750. /**
  3751. * afe_port_start_v2 - to configure AFE session with
  3752. * specified port configuration and encoder /decoder params
  3753. *
  3754. * @port_id: AFE port id number
  3755. * @afe_config: port configutation
  3756. * @rate: sampling rate of port
  3757. * @enc_cfg: AFE enc configuration information to setup encoder
  3758. * @afe_in_channels: AFE input channel configuration, this needs
  3759. * update only if input channel is differ from AFE output
  3760. * @dec_cfg: AFE dec configuration information to set up decoder
  3761. *
  3762. * Returns 0 on success or error value on port start failure.
  3763. */
  3764. int afe_port_start_v2(u16 port_id, union afe_port_config *afe_config,
  3765. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  3766. struct afe_enc_config *enc_cfg,
  3767. struct afe_dec_config *dec_cfg)
  3768. {
  3769. int ret = 0;
  3770. if (enc_cfg != NULL)
  3771. ret = __afe_port_start(port_id, afe_config, rate,
  3772. afe_in_channels, afe_in_bit_width,
  3773. &enc_cfg->data, enc_cfg->format,
  3774. enc_cfg->scrambler_mode, dec_cfg);
  3775. else if (dec_cfg != NULL)
  3776. ret = __afe_port_start(port_id, afe_config, rate,
  3777. afe_in_channels, afe_in_bit_width,
  3778. NULL, dec_cfg->format, 0, dec_cfg);
  3779. return ret;
  3780. }
  3781. EXPORT_SYMBOL(afe_port_start_v2);
  3782. int afe_get_port_index(u16 port_id)
  3783. {
  3784. switch (port_id) {
  3785. case PRIMARY_I2S_RX: return IDX_PRIMARY_I2S_RX;
  3786. case PRIMARY_I2S_TX: return IDX_PRIMARY_I2S_TX;
  3787. case AFE_PORT_ID_PRIMARY_PCM_RX:
  3788. return IDX_AFE_PORT_ID_PRIMARY_PCM_RX;
  3789. case AFE_PORT_ID_PRIMARY_PCM_TX:
  3790. return IDX_AFE_PORT_ID_PRIMARY_PCM_TX;
  3791. case AFE_PORT_ID_SECONDARY_PCM_RX:
  3792. return IDX_AFE_PORT_ID_SECONDARY_PCM_RX;
  3793. case AFE_PORT_ID_SECONDARY_PCM_TX:
  3794. return IDX_AFE_PORT_ID_SECONDARY_PCM_TX;
  3795. case AFE_PORT_ID_TERTIARY_PCM_RX:
  3796. return IDX_AFE_PORT_ID_TERTIARY_PCM_RX;
  3797. case AFE_PORT_ID_TERTIARY_PCM_TX:
  3798. return IDX_AFE_PORT_ID_TERTIARY_PCM_TX;
  3799. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  3800. return IDX_AFE_PORT_ID_QUATERNARY_PCM_RX;
  3801. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  3802. return IDX_AFE_PORT_ID_QUATERNARY_PCM_TX;
  3803. case AFE_PORT_ID_QUINARY_PCM_RX:
  3804. return IDX_AFE_PORT_ID_QUINARY_PCM_RX;
  3805. case AFE_PORT_ID_QUINARY_PCM_TX:
  3806. return IDX_AFE_PORT_ID_QUINARY_PCM_TX;
  3807. case AFE_PORT_ID_SENARY_PCM_RX:
  3808. return IDX_AFE_PORT_ID_SENARY_PCM_RX;
  3809. case AFE_PORT_ID_SENARY_PCM_TX:
  3810. return IDX_AFE_PORT_ID_SENARY_PCM_TX;
  3811. case SECONDARY_I2S_RX: return IDX_SECONDARY_I2S_RX;
  3812. case SECONDARY_I2S_TX: return IDX_SECONDARY_I2S_TX;
  3813. case MI2S_RX: return IDX_MI2S_RX;
  3814. case MI2S_TX: return IDX_MI2S_TX;
  3815. case HDMI_RX: return IDX_HDMI_RX;
  3816. case DISPLAY_PORT_RX: return IDX_DISPLAY_PORT_RX;
  3817. case AFE_PORT_ID_PRIMARY_SPDIF_RX: return IDX_PRIMARY_SPDIF_RX;
  3818. case AFE_PORT_ID_PRIMARY_SPDIF_TX: return IDX_PRIMARY_SPDIF_TX;
  3819. case AFE_PORT_ID_SECONDARY_SPDIF_RX: return IDX_SECONDARY_SPDIF_RX;
  3820. case AFE_PORT_ID_SECONDARY_SPDIF_TX: return IDX_SECONDARY_SPDIF_TX;
  3821. case RSVD_2: return IDX_RSVD_2;
  3822. case RSVD_3: return IDX_RSVD_3;
  3823. case DIGI_MIC_TX: return IDX_DIGI_MIC_TX;
  3824. case VOICE_RECORD_RX: return IDX_VOICE_RECORD_RX;
  3825. case VOICE_RECORD_TX: return IDX_VOICE_RECORD_TX;
  3826. case VOICE_PLAYBACK_TX: return IDX_VOICE_PLAYBACK_TX;
  3827. case VOICE2_PLAYBACK_TX: return IDX_VOICE2_PLAYBACK_TX;
  3828. case SLIMBUS_0_RX: return IDX_SLIMBUS_0_RX;
  3829. case SLIMBUS_0_TX: return IDX_SLIMBUS_0_TX;
  3830. case SLIMBUS_1_RX: return IDX_SLIMBUS_1_RX;
  3831. case SLIMBUS_1_TX: return IDX_SLIMBUS_1_TX;
  3832. case SLIMBUS_2_RX: return IDX_SLIMBUS_2_RX;
  3833. case SLIMBUS_2_TX: return IDX_SLIMBUS_2_TX;
  3834. case SLIMBUS_3_RX: return IDX_SLIMBUS_3_RX;
  3835. case SLIMBUS_3_TX: return IDX_SLIMBUS_3_TX;
  3836. case INT_BT_SCO_RX: return IDX_INT_BT_SCO_RX;
  3837. case INT_BT_SCO_TX: return IDX_INT_BT_SCO_TX;
  3838. case INT_BT_A2DP_RX: return IDX_INT_BT_A2DP_RX;
  3839. case INT_FM_RX: return IDX_INT_FM_RX;
  3840. case INT_FM_TX: return IDX_INT_FM_TX;
  3841. case RT_PROXY_PORT_001_RX: return IDX_RT_PROXY_PORT_001_RX;
  3842. case RT_PROXY_PORT_001_TX: return IDX_RT_PROXY_PORT_001_TX;
  3843. case SLIMBUS_4_RX: return IDX_SLIMBUS_4_RX;
  3844. case SLIMBUS_4_TX: return IDX_SLIMBUS_4_TX;
  3845. case SLIMBUS_5_RX: return IDX_SLIMBUS_5_RX;
  3846. case SLIMBUS_5_TX: return IDX_SLIMBUS_5_TX;
  3847. case SLIMBUS_6_RX: return IDX_SLIMBUS_6_RX;
  3848. case SLIMBUS_6_TX: return IDX_SLIMBUS_6_TX;
  3849. case SLIMBUS_7_RX: return IDX_SLIMBUS_7_RX;
  3850. case SLIMBUS_7_TX: return IDX_SLIMBUS_7_TX;
  3851. case SLIMBUS_8_RX: return IDX_SLIMBUS_8_RX;
  3852. case SLIMBUS_8_TX: return IDX_SLIMBUS_8_TX;
  3853. case SLIMBUS_9_RX: return IDX_SLIMBUS_9_RX;
  3854. case SLIMBUS_9_TX: return IDX_SLIMBUS_9_TX;
  3855. case AFE_PORT_ID_USB_RX: return IDX_AFE_PORT_ID_USB_RX;
  3856. case AFE_PORT_ID_USB_TX: return IDX_AFE_PORT_ID_USB_TX;
  3857. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  3858. return IDX_AFE_PORT_ID_PRIMARY_MI2S_RX;
  3859. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  3860. return IDX_AFE_PORT_ID_PRIMARY_MI2S_TX;
  3861. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  3862. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_RX;
  3863. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  3864. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_TX;
  3865. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  3866. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX;
  3867. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  3868. return IDX_AFE_PORT_ID_SECONDARY_MI2S_TX;
  3869. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  3870. return IDX_AFE_PORT_ID_TERTIARY_MI2S_RX;
  3871. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  3872. return IDX_AFE_PORT_ID_TERTIARY_MI2S_TX;
  3873. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  3874. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX_SD1;
  3875. case AFE_PORT_ID_QUINARY_MI2S_RX:
  3876. return IDX_AFE_PORT_ID_QUINARY_MI2S_RX;
  3877. case AFE_PORT_ID_QUINARY_MI2S_TX:
  3878. return IDX_AFE_PORT_ID_QUINARY_MI2S_TX;
  3879. case AFE_PORT_ID_SENARY_MI2S_TX:
  3880. return IDX_AFE_PORT_ID_SENARY_MI2S_TX;
  3881. case AFE_PORT_ID_PRIMARY_TDM_RX:
  3882. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_0;
  3883. case AFE_PORT_ID_PRIMARY_TDM_TX:
  3884. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_0;
  3885. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  3886. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_1;
  3887. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  3888. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_1;
  3889. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  3890. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_2;
  3891. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  3892. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_2;
  3893. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  3894. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_3;
  3895. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  3896. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_3;
  3897. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  3898. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_4;
  3899. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  3900. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_4;
  3901. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  3902. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_5;
  3903. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  3904. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_5;
  3905. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  3906. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_6;
  3907. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  3908. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_6;
  3909. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  3910. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_7;
  3911. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  3912. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_7;
  3913. case AFE_PORT_ID_SECONDARY_TDM_RX:
  3914. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_0;
  3915. case AFE_PORT_ID_SECONDARY_TDM_TX:
  3916. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_0;
  3917. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  3918. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_1;
  3919. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  3920. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_1;
  3921. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  3922. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_2;
  3923. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  3924. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_2;
  3925. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  3926. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_3;
  3927. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  3928. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_3;
  3929. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  3930. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_4;
  3931. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  3932. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_4;
  3933. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  3934. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_5;
  3935. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  3936. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_5;
  3937. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  3938. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_6;
  3939. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  3940. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_6;
  3941. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  3942. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_7;
  3943. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  3944. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_7;
  3945. case AFE_PORT_ID_TERTIARY_TDM_RX:
  3946. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_0;
  3947. case AFE_PORT_ID_TERTIARY_TDM_TX:
  3948. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_0;
  3949. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  3950. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_1;
  3951. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  3952. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_1;
  3953. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  3954. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_2;
  3955. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  3956. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_2;
  3957. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  3958. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_3;
  3959. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  3960. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_3;
  3961. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  3962. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_4;
  3963. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  3964. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_4;
  3965. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  3966. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_5;
  3967. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  3968. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_5;
  3969. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  3970. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_6;
  3971. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  3972. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_6;
  3973. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  3974. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_7;
  3975. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  3976. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_7;
  3977. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  3978. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_0;
  3979. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  3980. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_0;
  3981. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  3982. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_1;
  3983. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  3984. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_1;
  3985. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  3986. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_2;
  3987. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  3988. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_2;
  3989. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  3990. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_3;
  3991. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  3992. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_3;
  3993. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  3994. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_4;
  3995. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  3996. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_4;
  3997. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  3998. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_5;
  3999. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  4000. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_5;
  4001. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  4002. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_6;
  4003. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  4004. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_6;
  4005. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  4006. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_7;
  4007. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  4008. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_7;
  4009. case AFE_PORT_ID_QUINARY_TDM_RX:
  4010. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_0;
  4011. case AFE_PORT_ID_QUINARY_TDM_TX:
  4012. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_0;
  4013. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  4014. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_1;
  4015. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  4016. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_1;
  4017. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  4018. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_2;
  4019. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  4020. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_2;
  4021. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  4022. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_3;
  4023. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  4024. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_3;
  4025. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  4026. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_4;
  4027. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  4028. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_4;
  4029. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  4030. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_5;
  4031. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  4032. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_5;
  4033. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  4034. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_6;
  4035. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  4036. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_6;
  4037. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  4038. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_7;
  4039. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  4040. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_7;
  4041. case AFE_PORT_ID_INT0_MI2S_RX:
  4042. return IDX_AFE_PORT_ID_INT0_MI2S_RX;
  4043. case AFE_PORT_ID_INT0_MI2S_TX:
  4044. return IDX_AFE_PORT_ID_INT0_MI2S_TX;
  4045. case AFE_PORT_ID_INT1_MI2S_RX:
  4046. return IDX_AFE_PORT_ID_INT1_MI2S_RX;
  4047. case AFE_PORT_ID_INT1_MI2S_TX:
  4048. return IDX_AFE_PORT_ID_INT1_MI2S_TX;
  4049. case AFE_PORT_ID_INT2_MI2S_RX:
  4050. return IDX_AFE_PORT_ID_INT2_MI2S_RX;
  4051. case AFE_PORT_ID_INT2_MI2S_TX:
  4052. return IDX_AFE_PORT_ID_INT2_MI2S_TX;
  4053. case AFE_PORT_ID_INT3_MI2S_RX:
  4054. return IDX_AFE_PORT_ID_INT3_MI2S_RX;
  4055. case AFE_PORT_ID_INT3_MI2S_TX:
  4056. return IDX_AFE_PORT_ID_INT3_MI2S_TX;
  4057. case AFE_PORT_ID_INT4_MI2S_RX:
  4058. return IDX_AFE_PORT_ID_INT4_MI2S_RX;
  4059. case AFE_PORT_ID_INT4_MI2S_TX:
  4060. return IDX_AFE_PORT_ID_INT4_MI2S_TX;
  4061. case AFE_PORT_ID_INT5_MI2S_RX:
  4062. return IDX_AFE_PORT_ID_INT5_MI2S_RX;
  4063. case AFE_PORT_ID_INT5_MI2S_TX:
  4064. return IDX_AFE_PORT_ID_INT5_MI2S_TX;
  4065. case AFE_PORT_ID_INT6_MI2S_RX:
  4066. return IDX_AFE_PORT_ID_INT6_MI2S_RX;
  4067. case AFE_PORT_ID_INT6_MI2S_TX:
  4068. return IDX_AFE_PORT_ID_INT6_MI2S_TX;
  4069. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  4070. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_0;
  4071. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  4072. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_1;
  4073. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  4074. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_0;
  4075. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  4076. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_0;
  4077. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  4078. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_1;
  4079. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  4080. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_1;
  4081. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  4082. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_2;
  4083. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  4084. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_0;
  4085. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  4086. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_0;
  4087. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  4088. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_1;
  4089. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  4090. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_1;
  4091. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  4092. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_2;
  4093. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  4094. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_2;
  4095. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  4096. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_3;
  4097. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  4098. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_3;
  4099. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  4100. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_4;
  4101. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  4102. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_4;
  4103. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  4104. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_5;
  4105. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  4106. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_5;
  4107. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  4108. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_6;
  4109. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  4110. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_7;
  4111. default:
  4112. pr_err("%s: port 0x%x\n", __func__, port_id);
  4113. return -EINVAL;
  4114. }
  4115. }
  4116. /**
  4117. * afe_open -
  4118. * command to open AFE port
  4119. *
  4120. * @port_id: AFE port id
  4121. * @afe_config: AFE port config to pass
  4122. * @rate: sample rate
  4123. *
  4124. * Returns 0 on success or error on failure
  4125. */
  4126. int afe_open(u16 port_id,
  4127. union afe_port_config *afe_config, int rate)
  4128. {
  4129. struct afe_port_cmd_device_start start;
  4130. union afe_port_config port_cfg;
  4131. struct param_hdr_v3 param_hdr;
  4132. int ret = 0;
  4133. int cfg_type;
  4134. int index = 0;
  4135. memset(&param_hdr, 0, sizeof(param_hdr));
  4136. memset(&start, 0, sizeof(start));
  4137. memset(&port_cfg, 0, sizeof(port_cfg));
  4138. if (!afe_config) {
  4139. pr_err("%s: Error, no configuration data\n", __func__);
  4140. ret = -EINVAL;
  4141. return ret;
  4142. }
  4143. pr_err("%s: port_id 0x%x rate %d\n", __func__, port_id, rate);
  4144. index = q6audio_get_port_index(port_id);
  4145. if (index < 0 || index >= AFE_MAX_PORTS) {
  4146. pr_err("%s: AFE port index[%d] invalid!\n",
  4147. __func__, index);
  4148. return -EINVAL;
  4149. }
  4150. ret = q6audio_validate_port(port_id);
  4151. if (ret < 0) {
  4152. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  4153. return -EINVAL;
  4154. }
  4155. if ((port_id == RT_PROXY_DAI_001_RX) ||
  4156. (port_id == RT_PROXY_DAI_002_TX)) {
  4157. pr_err("%s: wrong port 0x%x\n", __func__, port_id);
  4158. return -EINVAL;
  4159. }
  4160. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4161. (port_id == RT_PROXY_DAI_001_TX))
  4162. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4163. ret = afe_q6_interface_prepare();
  4164. if (ret != 0) {
  4165. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4166. return -EINVAL;
  4167. }
  4168. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  4169. this_afe.afe_sample_rates[index] = rate;
  4170. if (this_afe.rt_cb)
  4171. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  4172. }
  4173. /* Also send the topology id here: */
  4174. afe_send_custom_topology(); /* One time call: only for first time */
  4175. afe_send_port_topology_id(port_id);
  4176. ret = q6audio_validate_port(port_id);
  4177. if (ret < 0) {
  4178. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  4179. __func__, port_id, ret);
  4180. return -EINVAL;
  4181. }
  4182. mutex_lock(&this_afe.afe_cmd_lock);
  4183. switch (port_id) {
  4184. case PRIMARY_I2S_RX:
  4185. case PRIMARY_I2S_TX:
  4186. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  4187. break;
  4188. case AFE_PORT_ID_PRIMARY_PCM_RX:
  4189. case AFE_PORT_ID_PRIMARY_PCM_TX:
  4190. case AFE_PORT_ID_SECONDARY_PCM_RX:
  4191. case AFE_PORT_ID_SECONDARY_PCM_TX:
  4192. case AFE_PORT_ID_TERTIARY_PCM_RX:
  4193. case AFE_PORT_ID_TERTIARY_PCM_TX:
  4194. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  4195. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  4196. case AFE_PORT_ID_QUINARY_PCM_RX:
  4197. case AFE_PORT_ID_QUINARY_PCM_TX:
  4198. case AFE_PORT_ID_SENARY_PCM_RX:
  4199. case AFE_PORT_ID_SENARY_PCM_TX:
  4200. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  4201. break;
  4202. case SECONDARY_I2S_RX:
  4203. case SECONDARY_I2S_TX:
  4204. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  4205. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  4206. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  4207. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  4208. case MI2S_RX:
  4209. case MI2S_TX:
  4210. case AFE_PORT_ID_QUINARY_MI2S_RX:
  4211. case AFE_PORT_ID_QUINARY_MI2S_TX:
  4212. case AFE_PORT_ID_SENARY_MI2S_TX:
  4213. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  4214. break;
  4215. case HDMI_RX:
  4216. case DISPLAY_PORT_RX:
  4217. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  4218. break;
  4219. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  4220. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  4221. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  4222. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  4223. cfg_type = AFE_PARAM_ID_SPDIF_CONFIG;
  4224. break;
  4225. case SLIMBUS_0_RX:
  4226. case SLIMBUS_0_TX:
  4227. case SLIMBUS_1_RX:
  4228. case SLIMBUS_1_TX:
  4229. case SLIMBUS_2_RX:
  4230. case SLIMBUS_2_TX:
  4231. case SLIMBUS_3_RX:
  4232. case SLIMBUS_3_TX:
  4233. case SLIMBUS_4_RX:
  4234. case SLIMBUS_4_TX:
  4235. case SLIMBUS_5_RX:
  4236. case SLIMBUS_6_RX:
  4237. case SLIMBUS_6_TX:
  4238. case SLIMBUS_7_RX:
  4239. case SLIMBUS_7_TX:
  4240. case SLIMBUS_8_RX:
  4241. case SLIMBUS_8_TX:
  4242. case SLIMBUS_9_RX:
  4243. case SLIMBUS_9_TX:
  4244. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  4245. break;
  4246. case AFE_PORT_ID_USB_RX:
  4247. case AFE_PORT_ID_USB_TX:
  4248. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  4249. break;
  4250. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  4251. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  4252. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  4253. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  4254. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  4255. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  4256. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  4257. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  4258. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  4259. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  4260. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  4261. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  4262. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  4263. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  4264. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  4265. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  4266. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  4267. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  4268. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  4269. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  4270. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  4271. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  4272. break;
  4273. default:
  4274. pr_err("%s: Invalid port id 0x%x\n",
  4275. __func__, port_id);
  4276. ret = -EINVAL;
  4277. goto fail_cmd;
  4278. }
  4279. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  4280. param_hdr.instance_id = INSTANCE_ID_0;
  4281. param_hdr.param_id = cfg_type;
  4282. param_hdr.param_size = sizeof(union afe_port_config);
  4283. port_cfg = *afe_config;
  4284. ret = q6afe_pack_and_set_param_in_band(port_id,
  4285. q6audio_get_port_index(port_id),
  4286. param_hdr, (u8 *) &port_cfg);
  4287. if (ret) {
  4288. pr_err("%s: AFE enable for port 0x%x opcode[0x%x]failed %d\n",
  4289. __func__, port_id, cfg_type, ret);
  4290. goto fail_cmd;
  4291. }
  4292. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4293. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4294. start.hdr.pkt_size = sizeof(start);
  4295. start.hdr.src_port = 0;
  4296. start.hdr.dest_port = 0;
  4297. start.hdr.token = index;
  4298. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  4299. start.port_id = q6audio_get_port_id(port_id);
  4300. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  4301. __func__, start.hdr.opcode, start.port_id);
  4302. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  4303. if (ret) {
  4304. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  4305. port_id, ret);
  4306. goto fail_cmd;
  4307. }
  4308. fail_cmd:
  4309. mutex_unlock(&this_afe.afe_cmd_lock);
  4310. return ret;
  4311. }
  4312. EXPORT_SYMBOL(afe_open);
  4313. /**
  4314. * afe_loopback -
  4315. * command to set loopback between AFE ports
  4316. *
  4317. * @enable: enable or disable loopback
  4318. * @rx_port: AFE RX port ID
  4319. * @tx_port: AFE TX port ID
  4320. *
  4321. * Returns 0 on success or error on failure
  4322. */
  4323. int afe_loopback(u16 enable, u16 rx_port, u16 tx_port)
  4324. {
  4325. struct afe_loopback_cfg_v1 lb_param;
  4326. struct param_hdr_v3 param_hdr;
  4327. int ret = 0;
  4328. memset(&lb_param, 0, sizeof(lb_param));
  4329. memset(&param_hdr, 0, sizeof(param_hdr));
  4330. if (rx_port == MI2S_RX)
  4331. rx_port = AFE_PORT_ID_PRIMARY_MI2S_RX;
  4332. if (tx_port == MI2S_TX)
  4333. tx_port = AFE_PORT_ID_PRIMARY_MI2S_TX;
  4334. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  4335. param_hdr.instance_id = INSTANCE_ID_0;
  4336. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  4337. param_hdr.param_size = sizeof(struct afe_loopback_cfg_v1);
  4338. lb_param.dst_port_id = rx_port;
  4339. lb_param.routing_mode = LB_MODE_DEFAULT;
  4340. lb_param.enable = (enable ? 1 : 0);
  4341. lb_param.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  4342. ret = q6afe_pack_and_set_param_in_band(tx_port,
  4343. q6audio_get_port_index(tx_port),
  4344. param_hdr, (u8 *) &lb_param);
  4345. if (ret)
  4346. pr_err("%s: AFE loopback failed %d\n", __func__, ret);
  4347. return ret;
  4348. }
  4349. EXPORT_SYMBOL(afe_loopback);
  4350. /**
  4351. * afe_loopback_gain -
  4352. * command to set gain for AFE loopback
  4353. *
  4354. * @port_id: AFE port id
  4355. * @volume: gain value to set
  4356. *
  4357. * Returns 0 on success or error on failure
  4358. */
  4359. int afe_loopback_gain(u16 port_id, u16 volume)
  4360. {
  4361. struct afe_loopback_gain_per_path_param set_param;
  4362. struct param_hdr_v3 param_hdr;
  4363. int ret = 0;
  4364. memset(&set_param, 0, sizeof(set_param));
  4365. memset(&param_hdr, 0, sizeof(param_hdr));
  4366. if (this_afe.apr == NULL) {
  4367. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4368. 0xFFFFFFFF, &this_afe);
  4369. pr_debug("%s: Register AFE\n", __func__);
  4370. if (this_afe.apr == NULL) {
  4371. pr_err("%s: Unable to register AFE\n", __func__);
  4372. ret = -ENODEV;
  4373. return ret;
  4374. }
  4375. rtac_set_afe_handle(this_afe.apr);
  4376. }
  4377. ret = q6audio_validate_port(port_id);
  4378. if (ret < 0) {
  4379. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  4380. __func__, port_id, ret);
  4381. ret = -EINVAL;
  4382. goto fail_cmd;
  4383. }
  4384. /* RX ports numbers are even .TX ports numbers are odd. */
  4385. if (port_id % 2 == 0) {
  4386. pr_err("%s: Failed : afe loopback gain only for TX ports. port_id %d\n",
  4387. __func__, port_id);
  4388. ret = -EINVAL;
  4389. goto fail_cmd;
  4390. }
  4391. pr_debug("%s: port 0x%x volume %d\n", __func__, port_id, volume);
  4392. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  4393. param_hdr.instance_id = INSTANCE_ID_0;
  4394. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  4395. param_hdr.param_size = sizeof(struct afe_loopback_gain_per_path_param);
  4396. set_param.rx_port_id = port_id;
  4397. set_param.gain = volume;
  4398. ret = q6afe_pack_and_set_param_in_band(port_id,
  4399. q6audio_get_port_index(port_id),
  4400. param_hdr, (u8 *) &set_param);
  4401. if (ret)
  4402. pr_err("%s: AFE param set failed for port 0x%x ret %d\n",
  4403. __func__, port_id, ret);
  4404. fail_cmd:
  4405. return ret;
  4406. }
  4407. EXPORT_SYMBOL(afe_loopback_gain);
  4408. int afe_pseudo_port_start_nowait(u16 port_id)
  4409. {
  4410. struct afe_pseudoport_start_command start;
  4411. int ret = 0;
  4412. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  4413. if (this_afe.apr == NULL) {
  4414. pr_err("%s: AFE APR is not registered\n", __func__);
  4415. return -ENODEV;
  4416. }
  4417. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4418. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4419. start.hdr.pkt_size = sizeof(start);
  4420. start.hdr.src_port = 0;
  4421. start.hdr.dest_port = 0;
  4422. start.hdr.token = 0;
  4423. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  4424. start.port_id = port_id;
  4425. start.timing = 1;
  4426. ret = afe_apr_send_pkt(&start, NULL);
  4427. if (ret) {
  4428. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  4429. __func__, port_id, ret);
  4430. return ret;
  4431. }
  4432. return 0;
  4433. }
  4434. int afe_start_pseudo_port(u16 port_id)
  4435. {
  4436. int ret = 0;
  4437. struct afe_pseudoport_start_command start;
  4438. int index = 0;
  4439. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  4440. ret = afe_q6_interface_prepare();
  4441. if (ret != 0) {
  4442. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4443. return ret;
  4444. }
  4445. index = q6audio_get_port_index(port_id);
  4446. if (index < 0 || index >= AFE_MAX_PORTS) {
  4447. pr_err("%s: AFE port index[%d] invalid!\n",
  4448. __func__, index);
  4449. return -EINVAL;
  4450. }
  4451. ret = q6audio_validate_port(port_id);
  4452. if (ret < 0) {
  4453. pr_err("%s: Invalid port 0x%x ret %d",
  4454. __func__, port_id, ret);
  4455. return -EINVAL;
  4456. }
  4457. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4458. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4459. start.hdr.pkt_size = sizeof(start);
  4460. start.hdr.src_port = 0;
  4461. start.hdr.dest_port = 0;
  4462. start.hdr.token = 0;
  4463. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  4464. start.port_id = port_id;
  4465. start.timing = 1;
  4466. start.hdr.token = index;
  4467. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  4468. if (ret)
  4469. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  4470. __func__, port_id, ret);
  4471. return ret;
  4472. }
  4473. int afe_pseudo_port_stop_nowait(u16 port_id)
  4474. {
  4475. int ret = 0;
  4476. struct afe_pseudoport_stop_command stop;
  4477. int index = 0;
  4478. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  4479. if (this_afe.apr == NULL) {
  4480. pr_err("%s: AFE is already closed\n", __func__);
  4481. return -EINVAL;
  4482. }
  4483. index = q6audio_get_port_index(port_id);
  4484. if (index < 0 || index >= AFE_MAX_PORTS) {
  4485. pr_err("%s: AFE port index[%d] invalid!\n",
  4486. __func__, index);
  4487. return -EINVAL;
  4488. }
  4489. ret = q6audio_validate_port(port_id);
  4490. if (ret < 0) {
  4491. pr_err("%s: Invalid port 0x%x ret %d",
  4492. __func__, port_id, ret);
  4493. return -EINVAL;
  4494. }
  4495. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4496. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4497. stop.hdr.pkt_size = sizeof(stop);
  4498. stop.hdr.src_port = 0;
  4499. stop.hdr.dest_port = 0;
  4500. stop.hdr.token = 0;
  4501. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  4502. stop.port_id = port_id;
  4503. stop.reserved = 0;
  4504. stop.hdr.token = index;
  4505. ret = afe_apr_send_pkt(&stop, NULL);
  4506. if (ret)
  4507. pr_err("%s: AFE close failed %d\n", __func__, ret);
  4508. return ret;
  4509. }
  4510. int afe_port_group_set_param(u16 group_id,
  4511. union afe_port_group_config *afe_group_config)
  4512. {
  4513. struct param_hdr_v3 param_hdr;
  4514. int cfg_type;
  4515. int ret;
  4516. if (!afe_group_config) {
  4517. pr_err("%s: Error, no configuration data\n", __func__);
  4518. return -EINVAL;
  4519. }
  4520. pr_debug("%s: group id: 0x%x\n", __func__, group_id);
  4521. memset(&param_hdr, 0, sizeof(param_hdr));
  4522. ret = afe_q6_interface_prepare();
  4523. if (ret != 0) {
  4524. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4525. return ret;
  4526. }
  4527. switch (group_id) {
  4528. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_RX:
  4529. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_TX:
  4530. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_RX:
  4531. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_TX:
  4532. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_RX:
  4533. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_TX:
  4534. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_RX:
  4535. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_TX:
  4536. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_RX:
  4537. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_TX:
  4538. cfg_type = AFE_PARAM_ID_GROUP_DEVICE_TDM_CONFIG;
  4539. break;
  4540. default:
  4541. pr_err("%s: Invalid group id 0x%x\n", __func__, group_id);
  4542. return -EINVAL;
  4543. }
  4544. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  4545. param_hdr.instance_id = INSTANCE_ID_0;
  4546. param_hdr.param_id = cfg_type;
  4547. param_hdr.param_size = sizeof(union afe_port_group_config);
  4548. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  4549. (u8 *) afe_group_config);
  4550. if (ret)
  4551. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_CFG failed %d\n",
  4552. __func__, ret);
  4553. return ret;
  4554. }
  4555. /**
  4556. * afe_port_group_enable -
  4557. * command to enable AFE port group
  4558. *
  4559. * @group_id: group ID for AFE port group
  4560. * @afe_group_config: config for AFE group
  4561. * @enable: flag to indicate enable or disable
  4562. *
  4563. * Returns 0 on success or error on failure
  4564. */
  4565. int afe_port_group_enable(u16 group_id,
  4566. union afe_port_group_config *afe_group_config,
  4567. u16 enable)
  4568. {
  4569. struct afe_group_device_enable group_enable;
  4570. struct param_hdr_v3 param_hdr;
  4571. int ret;
  4572. pr_debug("%s: group id: 0x%x enable: %d\n", __func__,
  4573. group_id, enable);
  4574. memset(&group_enable, 0, sizeof(group_enable));
  4575. memset(&param_hdr, 0, sizeof(param_hdr));
  4576. ret = afe_q6_interface_prepare();
  4577. if (ret != 0) {
  4578. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  4579. return ret;
  4580. }
  4581. if (enable) {
  4582. ret = afe_port_group_set_param(group_id, afe_group_config);
  4583. if (ret < 0) {
  4584. pr_err("%s: afe send failed %d\n", __func__, ret);
  4585. return ret;
  4586. }
  4587. }
  4588. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  4589. param_hdr.instance_id = INSTANCE_ID_0;
  4590. param_hdr.param_id = AFE_PARAM_ID_GROUP_DEVICE_ENABLE;
  4591. param_hdr.param_size = sizeof(struct afe_group_device_enable);
  4592. group_enable.group_id = group_id;
  4593. group_enable.enable = enable;
  4594. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  4595. (u8 *) &group_enable);
  4596. if (ret)
  4597. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_ENABLE failed %d\n",
  4598. __func__, ret);
  4599. return ret;
  4600. }
  4601. EXPORT_SYMBOL(afe_port_group_enable);
  4602. int afe_stop_pseudo_port(u16 port_id)
  4603. {
  4604. int ret = 0;
  4605. struct afe_pseudoport_stop_command stop;
  4606. int index = 0;
  4607. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  4608. if (this_afe.apr == NULL) {
  4609. pr_err("%s: AFE is already closed\n", __func__);
  4610. return -EINVAL;
  4611. }
  4612. index = q6audio_get_port_index(port_id);
  4613. if (index < 0 || index >= AFE_MAX_PORTS) {
  4614. pr_err("%s: AFE port index[%d] invalid!\n",
  4615. __func__, index);
  4616. return -EINVAL;
  4617. }
  4618. ret = q6audio_validate_port(port_id);
  4619. if (ret < 0) {
  4620. pr_err("%s: Invalid port 0x%x ret %d\n",
  4621. __func__, port_id, ret);
  4622. return -EINVAL;
  4623. }
  4624. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4625. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4626. stop.hdr.pkt_size = sizeof(stop);
  4627. stop.hdr.src_port = 0;
  4628. stop.hdr.dest_port = 0;
  4629. stop.hdr.token = 0;
  4630. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  4631. stop.port_id = port_id;
  4632. stop.reserved = 0;
  4633. stop.hdr.token = index;
  4634. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  4635. if (ret)
  4636. pr_err("%s: AFE close failed %d\n", __func__, ret);
  4637. return ret;
  4638. }
  4639. /**
  4640. * afe_req_mmap_handle -
  4641. * Retrieve AFE memory map handle
  4642. *
  4643. * @ac: AFE audio client
  4644. *
  4645. * Returns memory map handle
  4646. */
  4647. uint32_t afe_req_mmap_handle(struct afe_audio_client *ac)
  4648. {
  4649. return ac->mem_map_handle;
  4650. }
  4651. EXPORT_SYMBOL(afe_req_mmap_handle);
  4652. /**
  4653. * q6afe_audio_client_alloc -
  4654. * Assign new AFE audio client
  4655. *
  4656. * @priv: privata data to hold for audio client
  4657. *
  4658. * Returns ac pointer on success or NULL on failure
  4659. */
  4660. struct afe_audio_client *q6afe_audio_client_alloc(void *priv)
  4661. {
  4662. struct afe_audio_client *ac;
  4663. int lcnt = 0;
  4664. ac = kzalloc(sizeof(struct afe_audio_client), GFP_KERNEL);
  4665. if (!ac)
  4666. return NULL;
  4667. ac->priv = priv;
  4668. init_waitqueue_head(&ac->cmd_wait);
  4669. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  4670. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  4671. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  4672. mutex_init(&ac->cmd_lock);
  4673. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  4674. mutex_init(&ac->port[lcnt].lock);
  4675. spin_lock_init(&ac->port[lcnt].dsp_lock);
  4676. }
  4677. atomic_set(&ac->cmd_state, 0);
  4678. return ac;
  4679. }
  4680. EXPORT_SYMBOL(q6afe_audio_client_alloc);
  4681. /**
  4682. * q6afe_audio_client_buf_alloc_contiguous -
  4683. * Allocate contiguous shared buffers
  4684. *
  4685. * @dir: RX or TX direction of AFE port
  4686. * @ac: AFE audio client handle
  4687. * @bufsz: size of each shared buffer
  4688. * @bufcnt: number of buffers
  4689. *
  4690. * Returns 0 on success or error on failure
  4691. */
  4692. int q6afe_audio_client_buf_alloc_contiguous(unsigned int dir,
  4693. struct afe_audio_client *ac,
  4694. unsigned int bufsz,
  4695. unsigned int bufcnt)
  4696. {
  4697. int cnt = 0;
  4698. int rc = 0;
  4699. struct afe_audio_buffer *buf;
  4700. size_t len;
  4701. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  4702. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  4703. return -EINVAL;
  4704. }
  4705. pr_debug("%s: bufsz[%d]bufcnt[%d]\n",
  4706. __func__,
  4707. bufsz, bufcnt);
  4708. if (ac->port[dir].buf) {
  4709. pr_debug("%s: buffer already allocated\n", __func__);
  4710. return 0;
  4711. }
  4712. mutex_lock(&ac->cmd_lock);
  4713. buf = kzalloc(((sizeof(struct afe_audio_buffer))*bufcnt),
  4714. GFP_KERNEL);
  4715. if (!buf) {
  4716. pr_err("%s: null buf\n", __func__);
  4717. mutex_unlock(&ac->cmd_lock);
  4718. goto fail;
  4719. }
  4720. ac->port[dir].buf = buf;
  4721. rc = msm_audio_ion_alloc(&buf[0].dma_buf,
  4722. bufsz * bufcnt,
  4723. &buf[0].phys, &len,
  4724. &buf[0].data);
  4725. if (rc) {
  4726. pr_err("%s: audio ION alloc failed, rc = %d\n",
  4727. __func__, rc);
  4728. mutex_unlock(&ac->cmd_lock);
  4729. goto fail;
  4730. }
  4731. buf[0].used = dir ^ 1;
  4732. buf[0].size = bufsz;
  4733. buf[0].actual_size = bufsz;
  4734. cnt = 1;
  4735. while (cnt < bufcnt) {
  4736. if (bufsz > 0) {
  4737. buf[cnt].data = buf[0].data + (cnt * bufsz);
  4738. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  4739. if (!buf[cnt].data) {
  4740. pr_err("%s: Buf alloc failed\n",
  4741. __func__);
  4742. mutex_unlock(&ac->cmd_lock);
  4743. goto fail;
  4744. }
  4745. buf[cnt].used = dir ^ 1;
  4746. buf[cnt].size = bufsz;
  4747. buf[cnt].actual_size = bufsz;
  4748. pr_debug("%s: data[%pK]phys[%pK][%pK]\n", __func__,
  4749. buf[cnt].data,
  4750. &buf[cnt].phys,
  4751. &buf[cnt].phys);
  4752. }
  4753. cnt++;
  4754. }
  4755. ac->port[dir].max_buf_cnt = cnt;
  4756. mutex_unlock(&ac->cmd_lock);
  4757. return 0;
  4758. fail:
  4759. pr_err("%s: jump fail\n", __func__);
  4760. q6afe_audio_client_buf_free_contiguous(dir, ac);
  4761. return -EINVAL;
  4762. }
  4763. EXPORT_SYMBOL(q6afe_audio_client_buf_alloc_contiguous);
  4764. /**
  4765. * afe_memory_map -
  4766. * command to map shared buffers to AFE
  4767. *
  4768. * @dma_addr_p: DMA physical address
  4769. * @dma_buf_sz: shared DMA buffer size
  4770. * @ac: AFE audio client handle
  4771. *
  4772. * Returns 0 on success or error on failure
  4773. */
  4774. int afe_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz,
  4775. struct afe_audio_client *ac)
  4776. {
  4777. int ret = 0;
  4778. mutex_lock(&this_afe.afe_cmd_lock);
  4779. ac->mem_map_handle = 0;
  4780. ret = afe_cmd_memory_map(dma_addr_p, dma_buf_sz);
  4781. if (ret < 0) {
  4782. pr_err("%s: afe_cmd_memory_map failed %d\n",
  4783. __func__, ret);
  4784. mutex_unlock(&this_afe.afe_cmd_lock);
  4785. return ret;
  4786. }
  4787. ac->mem_map_handle = this_afe.mmap_handle;
  4788. mutex_unlock(&this_afe.afe_cmd_lock);
  4789. return ret;
  4790. }
  4791. EXPORT_SYMBOL(afe_memory_map);
  4792. int afe_cmd_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz)
  4793. {
  4794. int ret = 0;
  4795. int cmd_size = 0;
  4796. void *payload = NULL;
  4797. void *mmap_region_cmd = NULL;
  4798. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  4799. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  4800. int index = 0;
  4801. pr_debug("%s:\n", __func__);
  4802. if (this_afe.apr == NULL) {
  4803. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4804. 0xFFFFFFFF, &this_afe);
  4805. pr_debug("%s: Register AFE\n", __func__);
  4806. if (this_afe.apr == NULL) {
  4807. pr_err("%s: Unable to register AFE\n", __func__);
  4808. ret = -ENODEV;
  4809. return ret;
  4810. }
  4811. rtac_set_afe_handle(this_afe.apr);
  4812. }
  4813. if (dma_buf_sz % SZ_4K != 0) {
  4814. /*
  4815. * The memory allocated by msm_audio_ion_alloc is always 4kB
  4816. * aligned, ADSP expects the size to be 4kB aligned as well
  4817. * so re-adjusts the buffer size before passing to ADSP.
  4818. */
  4819. dma_buf_sz = PAGE_ALIGN(dma_buf_sz);
  4820. }
  4821. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  4822. + sizeof(struct afe_service_shared_map_region_payload);
  4823. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  4824. if (!mmap_region_cmd)
  4825. return -ENOMEM;
  4826. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  4827. mmap_region_cmd;
  4828. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4829. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4830. mregion->hdr.pkt_size = cmd_size;
  4831. mregion->hdr.src_port = 0;
  4832. mregion->hdr.dest_port = 0;
  4833. mregion->hdr.token = 0;
  4834. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  4835. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  4836. mregion->num_regions = 1;
  4837. mregion->property_flag = 0x00;
  4838. /* Todo */
  4839. index = mregion->hdr.token = IDX_RSVD_2;
  4840. payload = ((u8 *) mmap_region_cmd +
  4841. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  4842. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  4843. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  4844. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  4845. mregion_pl->mem_size_bytes = dma_buf_sz;
  4846. pr_debug("%s: dma_addr_p 0x%pK , size %d\n", __func__,
  4847. &dma_addr_p, dma_buf_sz);
  4848. atomic_set(&this_afe.state, 1);
  4849. atomic_set(&this_afe.status, 0);
  4850. this_afe.mmap_handle = 0;
  4851. ret = apr_send_pkt(this_afe.apr, (uint32_t *) mmap_region_cmd);
  4852. if (ret < 0) {
  4853. pr_err("%s: AFE memory map cmd failed %d\n",
  4854. __func__, ret);
  4855. ret = -EINVAL;
  4856. goto fail_cmd;
  4857. }
  4858. ret = wait_event_timeout(this_afe.wait[index],
  4859. (atomic_read(&this_afe.state) == 0),
  4860. msecs_to_jiffies(TIMEOUT_MS));
  4861. if (!ret) {
  4862. pr_err("%s: wait_event timeout\n", __func__);
  4863. ret = -EINVAL;
  4864. goto fail_cmd;
  4865. }
  4866. if (atomic_read(&this_afe.status) > 0) {
  4867. pr_err("%s: config cmd failed [%s]\n",
  4868. __func__, adsp_err_get_err_str(
  4869. atomic_read(&this_afe.status)));
  4870. ret = adsp_err_get_lnx_err_code(
  4871. atomic_read(&this_afe.status));
  4872. goto fail_cmd;
  4873. }
  4874. kfree(mmap_region_cmd);
  4875. return 0;
  4876. fail_cmd:
  4877. kfree(mmap_region_cmd);
  4878. pr_err("%s: fail_cmd\n", __func__);
  4879. return ret;
  4880. }
  4881. int afe_cmd_memory_map_nowait(int port_id, phys_addr_t dma_addr_p,
  4882. u32 dma_buf_sz)
  4883. {
  4884. int ret = 0;
  4885. int cmd_size = 0;
  4886. void *payload = NULL;
  4887. void *mmap_region_cmd = NULL;
  4888. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  4889. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  4890. int index = 0;
  4891. pr_debug("%s:\n", __func__);
  4892. if (this_afe.apr == NULL) {
  4893. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  4894. 0xFFFFFFFF, &this_afe);
  4895. pr_debug("%s: Register AFE\n", __func__);
  4896. if (this_afe.apr == NULL) {
  4897. pr_err("%s: Unable to register AFE\n", __func__);
  4898. ret = -ENODEV;
  4899. return ret;
  4900. }
  4901. rtac_set_afe_handle(this_afe.apr);
  4902. }
  4903. index = q6audio_get_port_index(port_id);
  4904. if (index < 0 || index >= AFE_MAX_PORTS) {
  4905. pr_err("%s: AFE port index[%d] invalid!\n",
  4906. __func__, index);
  4907. return -EINVAL;
  4908. }
  4909. ret = q6audio_validate_port(port_id);
  4910. if (ret < 0) {
  4911. pr_err("%s: Invalid port 0x%x ret %d",
  4912. __func__, port_id, ret);
  4913. return -EINVAL;
  4914. }
  4915. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  4916. + sizeof(struct afe_service_shared_map_region_payload);
  4917. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  4918. if (!mmap_region_cmd)
  4919. return -ENOMEM;
  4920. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  4921. mmap_region_cmd;
  4922. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  4923. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  4924. mregion->hdr.pkt_size = sizeof(mregion);
  4925. mregion->hdr.src_port = 0;
  4926. mregion->hdr.dest_port = 0;
  4927. mregion->hdr.token = 0;
  4928. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  4929. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  4930. mregion->num_regions = 1;
  4931. mregion->property_flag = 0x00;
  4932. payload = ((u8 *) mmap_region_cmd +
  4933. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  4934. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  4935. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  4936. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  4937. mregion_pl->mem_size_bytes = dma_buf_sz;
  4938. ret = afe_apr_send_pkt(mmap_region_cmd, NULL);
  4939. if (ret)
  4940. pr_err("%s: AFE memory map cmd failed %d\n",
  4941. __func__, ret);
  4942. kfree(mmap_region_cmd);
  4943. return ret;
  4944. }
  4945. /**
  4946. * q6afe_audio_client_buf_free_contiguous -
  4947. * frees the shared contiguous memory
  4948. *
  4949. * @dir: RX or TX direction of port
  4950. * @ac: AFE audio client handle
  4951. *
  4952. */
  4953. int q6afe_audio_client_buf_free_contiguous(unsigned int dir,
  4954. struct afe_audio_client *ac)
  4955. {
  4956. struct afe_audio_port_data *port;
  4957. int cnt = 0;
  4958. mutex_lock(&ac->cmd_lock);
  4959. port = &ac->port[dir];
  4960. if (!port->buf) {
  4961. pr_err("%s: buf is null\n", __func__);
  4962. mutex_unlock(&ac->cmd_lock);
  4963. return 0;
  4964. }
  4965. cnt = port->max_buf_cnt - 1;
  4966. if (port->buf[0].data) {
  4967. pr_debug("%s: data[%pK], phys[%pK], dma_buf[%pK]\n",
  4968. __func__,
  4969. port->buf[0].data,
  4970. &port->buf[0].phys,
  4971. port->buf[0].dma_buf);
  4972. msm_audio_ion_free(port->buf[0].dma_buf);
  4973. port->buf[0].dma_buf = NULL;
  4974. }
  4975. while (cnt >= 0) {
  4976. port->buf[cnt].data = NULL;
  4977. port->buf[cnt].phys = 0;
  4978. cnt--;
  4979. }
  4980. port->max_buf_cnt = 0;
  4981. kfree(port->buf);
  4982. port->buf = NULL;
  4983. mutex_unlock(&ac->cmd_lock);
  4984. return 0;
  4985. }
  4986. EXPORT_SYMBOL(q6afe_audio_client_buf_free_contiguous);
  4987. /**
  4988. * q6afe_audio_client_free -
  4989. * frees the audio client from AFE
  4990. *
  4991. * @ac: AFE audio client handle
  4992. *
  4993. */
  4994. void q6afe_audio_client_free(struct afe_audio_client *ac)
  4995. {
  4996. int loopcnt;
  4997. struct afe_audio_port_data *port;
  4998. if (!ac) {
  4999. pr_err("%s: audio client is NULL\n", __func__);
  5000. return;
  5001. }
  5002. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  5003. port = &ac->port[loopcnt];
  5004. if (!port->buf)
  5005. continue;
  5006. pr_debug("%s: loopcnt = %d\n", __func__, loopcnt);
  5007. q6afe_audio_client_buf_free_contiguous(loopcnt, ac);
  5008. }
  5009. kfree(ac);
  5010. }
  5011. EXPORT_SYMBOL(q6afe_audio_client_free);
  5012. /**
  5013. * afe_cmd_memory_unmap -
  5014. * command to unmap memory for AFE shared buffer
  5015. *
  5016. * @mem_map_handle: memory map handle to be unmapped
  5017. *
  5018. * Returns 0 on success or error on failure
  5019. */
  5020. int afe_cmd_memory_unmap(u32 mem_map_handle)
  5021. {
  5022. int ret = 0;
  5023. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  5024. int index = 0;
  5025. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  5026. if (this_afe.apr == NULL) {
  5027. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5028. 0xFFFFFFFF, &this_afe);
  5029. pr_debug("%s: Register AFE\n", __func__);
  5030. if (this_afe.apr == NULL) {
  5031. pr_err("%s: Unable to register AFE\n", __func__);
  5032. ret = -ENODEV;
  5033. return ret;
  5034. }
  5035. rtac_set_afe_handle(this_afe.apr);
  5036. }
  5037. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5038. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5039. mregion.hdr.pkt_size = sizeof(mregion);
  5040. mregion.hdr.src_port = 0;
  5041. mregion.hdr.dest_port = 0;
  5042. mregion.hdr.token = 0;
  5043. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  5044. mregion.mem_map_handle = mem_map_handle;
  5045. /* Todo */
  5046. index = mregion.hdr.token = IDX_RSVD_2;
  5047. atomic_set(&this_afe.status, 0);
  5048. ret = afe_apr_send_pkt(&mregion, &this_afe.wait[index]);
  5049. if (ret)
  5050. pr_err("%s: AFE memory unmap cmd failed %d\n",
  5051. __func__, ret);
  5052. return ret;
  5053. }
  5054. EXPORT_SYMBOL(afe_cmd_memory_unmap);
  5055. int afe_cmd_memory_unmap_nowait(u32 mem_map_handle)
  5056. {
  5057. int ret = 0;
  5058. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  5059. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  5060. if (this_afe.apr == NULL) {
  5061. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5062. 0xFFFFFFFF, &this_afe);
  5063. pr_debug("%s: Register AFE\n", __func__);
  5064. if (this_afe.apr == NULL) {
  5065. pr_err("%s: Unable to register AFE\n", __func__);
  5066. ret = -ENODEV;
  5067. return ret;
  5068. }
  5069. rtac_set_afe_handle(this_afe.apr);
  5070. }
  5071. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5072. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5073. mregion.hdr.pkt_size = sizeof(mregion);
  5074. mregion.hdr.src_port = 0;
  5075. mregion.hdr.dest_port = 0;
  5076. mregion.hdr.token = 0;
  5077. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  5078. mregion.mem_map_handle = mem_map_handle;
  5079. ret = afe_apr_send_pkt(&mregion, NULL);
  5080. if (ret)
  5081. pr_err("%s: AFE memory unmap cmd failed %d\n",
  5082. __func__, ret);
  5083. return ret;
  5084. }
  5085. /**
  5086. * afe_register_get_events -
  5087. * register for events from proxy port
  5088. *
  5089. * @port_id: Port ID to register events
  5090. * @cb: callback function to invoke for events from proxy port
  5091. * @private_data: private data to sent back in callback fn
  5092. *
  5093. * Returns 0 on success or error on failure
  5094. */
  5095. int afe_register_get_events(u16 port_id,
  5096. void (*cb)(uint32_t opcode,
  5097. uint32_t token, uint32_t *payload, void *priv),
  5098. void *private_data)
  5099. {
  5100. int ret = 0;
  5101. struct afe_service_cmd_register_rt_port_driver rtproxy;
  5102. pr_debug("%s: port_id: 0x%x\n", __func__, port_id);
  5103. if (this_afe.apr == NULL) {
  5104. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5105. 0xFFFFFFFF, &this_afe);
  5106. pr_debug("%s: Register AFE\n", __func__);
  5107. if (this_afe.apr == NULL) {
  5108. pr_err("%s: Unable to register AFE\n", __func__);
  5109. ret = -ENODEV;
  5110. return ret;
  5111. }
  5112. rtac_set_afe_handle(this_afe.apr);
  5113. }
  5114. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5115. (port_id == RT_PROXY_DAI_001_TX)) {
  5116. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5117. } else {
  5118. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  5119. return -EINVAL;
  5120. }
  5121. if (port_id == RT_PROXY_PORT_001_TX) {
  5122. this_afe.tx_cb = cb;
  5123. this_afe.tx_private_data = private_data;
  5124. } else if (port_id == RT_PROXY_PORT_001_RX) {
  5125. this_afe.rx_cb = cb;
  5126. this_afe.rx_private_data = private_data;
  5127. }
  5128. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5129. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5130. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  5131. rtproxy.hdr.src_port = 1;
  5132. rtproxy.hdr.dest_port = 1;
  5133. rtproxy.hdr.opcode = AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER;
  5134. rtproxy.port_id = port_id;
  5135. rtproxy.reserved = 0;
  5136. ret = afe_apr_send_pkt(&rtproxy, NULL);
  5137. if (ret)
  5138. pr_err("%s: AFE reg. rtproxy_event failed %d\n",
  5139. __func__, ret);
  5140. return ret;
  5141. }
  5142. EXPORT_SYMBOL(afe_register_get_events);
  5143. /**
  5144. * afe_unregister_get_events -
  5145. * unregister for events from proxy port
  5146. *
  5147. * @port_id: Port ID to unregister events
  5148. *
  5149. * Returns 0 on success or error on failure
  5150. */
  5151. int afe_unregister_get_events(u16 port_id)
  5152. {
  5153. int ret = 0;
  5154. struct afe_service_cmd_unregister_rt_port_driver rtproxy;
  5155. int index = 0;
  5156. pr_debug("%s:\n", __func__);
  5157. if (this_afe.apr == NULL) {
  5158. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5159. 0xFFFFFFFF, &this_afe);
  5160. pr_debug("%s: Register AFE\n", __func__);
  5161. if (this_afe.apr == NULL) {
  5162. pr_err("%s: Unable to register AFE\n", __func__);
  5163. ret = -ENODEV;
  5164. return ret;
  5165. }
  5166. rtac_set_afe_handle(this_afe.apr);
  5167. }
  5168. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5169. (port_id == RT_PROXY_DAI_001_TX)) {
  5170. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5171. } else {
  5172. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  5173. return -EINVAL;
  5174. }
  5175. index = q6audio_get_port_index(port_id);
  5176. if (index < 0 || index >= AFE_MAX_PORTS) {
  5177. pr_err("%s: AFE port index[%d] invalid!\n",
  5178. __func__, index);
  5179. return -EINVAL;
  5180. }
  5181. ret = q6audio_validate_port(port_id);
  5182. if (ret < 0) {
  5183. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  5184. return -EINVAL;
  5185. }
  5186. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5187. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5188. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  5189. rtproxy.hdr.src_port = 0;
  5190. rtproxy.hdr.dest_port = 0;
  5191. rtproxy.hdr.token = 0;
  5192. rtproxy.hdr.opcode = AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER;
  5193. rtproxy.port_id = port_id;
  5194. rtproxy.reserved = 0;
  5195. rtproxy.hdr.token = index;
  5196. if (port_id == RT_PROXY_PORT_001_TX) {
  5197. this_afe.tx_cb = NULL;
  5198. this_afe.tx_private_data = NULL;
  5199. } else if (port_id == RT_PROXY_PORT_001_RX) {
  5200. this_afe.rx_cb = NULL;
  5201. this_afe.rx_private_data = NULL;
  5202. }
  5203. ret = afe_apr_send_pkt(&rtproxy, &this_afe.wait[index]);
  5204. if (ret)
  5205. pr_err("%s: AFE enable Unreg. rtproxy_event failed %d\n",
  5206. __func__, ret);
  5207. return ret;
  5208. }
  5209. EXPORT_SYMBOL(afe_unregister_get_events);
  5210. /**
  5211. * afe_rt_proxy_port_write -
  5212. * command for AFE RT proxy port write
  5213. *
  5214. * @buf_addr_p: Physical buffer address with
  5215. * playback data to proxy port
  5216. * @mem_map_handle: memory map handle of write buffer
  5217. * @bytes: number of bytes to write
  5218. *
  5219. * Returns 0 on success or error on failure
  5220. */
  5221. int afe_rt_proxy_port_write(phys_addr_t buf_addr_p,
  5222. u32 mem_map_handle, int bytes)
  5223. {
  5224. int ret = 0;
  5225. struct afe_port_data_cmd_rt_proxy_port_write_v2 afecmd_wr;
  5226. if (this_afe.apr == NULL) {
  5227. pr_err("%s: register to AFE is not done\n", __func__);
  5228. ret = -ENODEV;
  5229. return ret;
  5230. }
  5231. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  5232. &buf_addr_p, bytes);
  5233. afecmd_wr.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5234. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5235. afecmd_wr.hdr.pkt_size = sizeof(afecmd_wr);
  5236. afecmd_wr.hdr.src_port = 0;
  5237. afecmd_wr.hdr.dest_port = 0;
  5238. afecmd_wr.hdr.token = 0;
  5239. afecmd_wr.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2;
  5240. afecmd_wr.port_id = RT_PROXY_PORT_001_TX;
  5241. afecmd_wr.buffer_address_lsw = lower_32_bits(buf_addr_p);
  5242. afecmd_wr.buffer_address_msw =
  5243. msm_audio_populate_upper_32_bits(buf_addr_p);
  5244. afecmd_wr.mem_map_handle = mem_map_handle;
  5245. afecmd_wr.available_bytes = bytes;
  5246. afecmd_wr.reserved = 0;
  5247. ret = afe_apr_send_pkt(&afecmd_wr, NULL);
  5248. if (ret)
  5249. pr_err("%s: AFE rtproxy write to port 0x%x failed %d\n",
  5250. __func__, afecmd_wr.port_id, ret);
  5251. return ret;
  5252. }
  5253. EXPORT_SYMBOL(afe_rt_proxy_port_write);
  5254. /**
  5255. * afe_rt_proxy_port_read -
  5256. * command for AFE RT proxy port read
  5257. *
  5258. * @buf_addr_p: Physical buffer address to fill read data
  5259. * @mem_map_handle: memory map handle for buffer read
  5260. * @bytes: number of bytes to read
  5261. *
  5262. * Returns 0 on success or error on failure
  5263. */
  5264. int afe_rt_proxy_port_read(phys_addr_t buf_addr_p,
  5265. u32 mem_map_handle, int bytes)
  5266. {
  5267. int ret = 0;
  5268. struct afe_port_data_cmd_rt_proxy_port_read_v2 afecmd_rd;
  5269. if (this_afe.apr == NULL) {
  5270. pr_err("%s: register to AFE is not done\n", __func__);
  5271. ret = -ENODEV;
  5272. return ret;
  5273. }
  5274. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  5275. &buf_addr_p, bytes);
  5276. afecmd_rd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5277. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5278. afecmd_rd.hdr.pkt_size = sizeof(afecmd_rd);
  5279. afecmd_rd.hdr.src_port = 0;
  5280. afecmd_rd.hdr.dest_port = 0;
  5281. afecmd_rd.hdr.token = 0;
  5282. afecmd_rd.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2;
  5283. afecmd_rd.port_id = RT_PROXY_PORT_001_RX;
  5284. afecmd_rd.buffer_address_lsw = lower_32_bits(buf_addr_p);
  5285. afecmd_rd.buffer_address_msw =
  5286. msm_audio_populate_upper_32_bits(buf_addr_p);
  5287. afecmd_rd.available_bytes = bytes;
  5288. afecmd_rd.mem_map_handle = mem_map_handle;
  5289. ret = afe_apr_send_pkt(&afecmd_rd, NULL);
  5290. if (ret)
  5291. pr_err("%s: AFE rtproxy read cmd to port 0x%x failed %d\n",
  5292. __func__, afecmd_rd.port_id, ret);
  5293. return ret;
  5294. }
  5295. EXPORT_SYMBOL(afe_rt_proxy_port_read);
  5296. #ifdef CONFIG_DEBUG_FS
  5297. static struct dentry *debugfs_afelb;
  5298. static struct dentry *debugfs_afelb_gain;
  5299. static int afe_debug_open(struct inode *inode, struct file *file)
  5300. {
  5301. file->private_data = inode->i_private;
  5302. pr_info("%s: debug intf %s\n", __func__, (char *) file->private_data);
  5303. return 0;
  5304. }
  5305. static int afe_get_parameters(char *buf, long int *param1, int num_of_par)
  5306. {
  5307. char *token;
  5308. int base, cnt;
  5309. token = strsep(&buf, " ");
  5310. for (cnt = 0; cnt < num_of_par; cnt++) {
  5311. if (token != NULL) {
  5312. if ((token[1] == 'x') || (token[1] == 'X'))
  5313. base = 16;
  5314. else
  5315. base = 10;
  5316. if (kstrtoul(token, base, &param1[cnt]) != 0) {
  5317. pr_err("%s: kstrtoul failed\n",
  5318. __func__);
  5319. return -EINVAL;
  5320. }
  5321. token = strsep(&buf, " ");
  5322. } else {
  5323. pr_err("%s: token NULL\n", __func__);
  5324. return -EINVAL;
  5325. }
  5326. }
  5327. return 0;
  5328. }
  5329. #define AFE_LOOPBACK_ON (1)
  5330. #define AFE_LOOPBACK_OFF (0)
  5331. static ssize_t afe_debug_write(struct file *filp,
  5332. const char __user *ubuf, size_t cnt, loff_t *ppos)
  5333. {
  5334. char *lb_str = filp->private_data;
  5335. char lbuf[32];
  5336. int rc;
  5337. unsigned long param[5];
  5338. if (cnt > sizeof(lbuf) - 1) {
  5339. pr_err("%s: cnt %zd size %zd\n", __func__, cnt, sizeof(lbuf)-1);
  5340. return -EINVAL;
  5341. }
  5342. rc = copy_from_user(lbuf, ubuf, cnt);
  5343. if (rc) {
  5344. pr_err("%s: copy from user failed %d\n", __func__, rc);
  5345. return -EFAULT;
  5346. }
  5347. lbuf[cnt] = '\0';
  5348. if (!strcmp(lb_str, "afe_loopback")) {
  5349. rc = afe_get_parameters(lbuf, param, 3);
  5350. if (!rc) {
  5351. pr_info("%s: %lu %lu %lu\n", lb_str, param[0], param[1],
  5352. param[2]);
  5353. if ((param[0] != AFE_LOOPBACK_ON) && (param[0] !=
  5354. AFE_LOOPBACK_OFF)) {
  5355. pr_err("%s: Error, parameter 0 incorrect\n",
  5356. __func__);
  5357. rc = -EINVAL;
  5358. goto afe_error;
  5359. }
  5360. if ((q6audio_validate_port(param[1]) < 0) ||
  5361. (q6audio_validate_port(param[2])) < 0) {
  5362. pr_err("%s: Error, invalid afe port\n",
  5363. __func__);
  5364. }
  5365. if (this_afe.apr == NULL) {
  5366. pr_err("%s: Error, AFE not opened\n", __func__);
  5367. rc = -EINVAL;
  5368. } else {
  5369. rc = afe_loopback(param[0], param[1], param[2]);
  5370. }
  5371. } else {
  5372. pr_err("%s: Error, invalid parameters\n", __func__);
  5373. rc = -EINVAL;
  5374. }
  5375. } else if (!strcmp(lb_str, "afe_loopback_gain")) {
  5376. rc = afe_get_parameters(lbuf, param, 2);
  5377. if (!rc) {
  5378. pr_info("%s: %s %lu %lu\n",
  5379. __func__, lb_str, param[0], param[1]);
  5380. rc = q6audio_validate_port(param[0]);
  5381. if (rc < 0) {
  5382. pr_err("%s: Error, invalid afe port %d %lu\n",
  5383. __func__, rc, param[0]);
  5384. rc = -EINVAL;
  5385. goto afe_error;
  5386. }
  5387. if (param[1] > 100) {
  5388. pr_err("%s: Error, volume should be 0 to 100 percentage param = %lu\n",
  5389. __func__, param[1]);
  5390. rc = -EINVAL;
  5391. goto afe_error;
  5392. }
  5393. param[1] = (Q6AFE_MAX_VOLUME * param[1]) / 100;
  5394. if (this_afe.apr == NULL) {
  5395. pr_err("%s: Error, AFE not opened\n", __func__);
  5396. rc = -EINVAL;
  5397. } else {
  5398. rc = afe_loopback_gain(param[0], param[1]);
  5399. }
  5400. } else {
  5401. pr_err("%s: Error, invalid parameters\n", __func__);
  5402. rc = -EINVAL;
  5403. }
  5404. }
  5405. afe_error:
  5406. if (rc == 0)
  5407. rc = cnt;
  5408. else
  5409. pr_err("%s: rc = %d\n", __func__, rc);
  5410. return rc;
  5411. }
  5412. static const struct file_operations afe_debug_fops = {
  5413. .open = afe_debug_open,
  5414. .write = afe_debug_write
  5415. };
  5416. static void config_debug_fs_init(void)
  5417. {
  5418. debugfs_afelb = debugfs_create_file("afe_loopback",
  5419. 0664, NULL, (void *) "afe_loopback",
  5420. &afe_debug_fops);
  5421. debugfs_afelb_gain = debugfs_create_file("afe_loopback_gain",
  5422. 0664, NULL, (void *) "afe_loopback_gain",
  5423. &afe_debug_fops);
  5424. }
  5425. static void config_debug_fs_exit(void)
  5426. {
  5427. debugfs_remove(debugfs_afelb);
  5428. debugfs_remove(debugfs_afelb_gain);
  5429. }
  5430. #else
  5431. static void config_debug_fs_init(void)
  5432. {
  5433. }
  5434. static void config_debug_fs_exit(void)
  5435. {
  5436. }
  5437. #endif
  5438. /**
  5439. * afe_set_dtmf_gen_rx_portid -
  5440. * Set port_id for DTMF tone generation
  5441. *
  5442. * @port_id: AFE port id
  5443. * @set: set or reset port id value for dtmf gen
  5444. *
  5445. */
  5446. void afe_set_dtmf_gen_rx_portid(u16 port_id, int set)
  5447. {
  5448. if (set)
  5449. this_afe.dtmf_gen_rx_portid = port_id;
  5450. else if (this_afe.dtmf_gen_rx_portid == port_id)
  5451. this_afe.dtmf_gen_rx_portid = -1;
  5452. }
  5453. EXPORT_SYMBOL(afe_set_dtmf_gen_rx_portid);
  5454. /**
  5455. * afe_dtmf_generate_rx - command to generate AFE DTMF RX
  5456. *
  5457. * @duration_in_ms: Duration in ms for dtmf tone
  5458. * @high_freq: Higher frequency for dtmf
  5459. * @low_freq: lower frequency for dtmf
  5460. * @gain: Gain value for DTMF tone
  5461. *
  5462. * Returns 0 on success, appropriate error code otherwise
  5463. */
  5464. int afe_dtmf_generate_rx(int64_t duration_in_ms,
  5465. uint16_t high_freq,
  5466. uint16_t low_freq, uint16_t gain)
  5467. {
  5468. int ret = 0;
  5469. int index = 0;
  5470. struct afe_dtmf_generation_command cmd_dtmf;
  5471. pr_debug("%s: DTMF AFE Gen\n", __func__);
  5472. if (afe_validate_port(this_afe.dtmf_gen_rx_portid) < 0) {
  5473. pr_err("%s: Failed : Invalid Port id = 0x%x\n",
  5474. __func__, this_afe.dtmf_gen_rx_portid);
  5475. ret = -EINVAL;
  5476. goto fail_cmd;
  5477. }
  5478. if (this_afe.apr == NULL) {
  5479. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  5480. 0xFFFFFFFF, &this_afe);
  5481. pr_debug("%s: Register AFE\n", __func__);
  5482. if (this_afe.apr == NULL) {
  5483. pr_err("%s: Unable to register AFE\n", __func__);
  5484. ret = -ENODEV;
  5485. return ret;
  5486. }
  5487. rtac_set_afe_handle(this_afe.apr);
  5488. }
  5489. pr_debug("%s: dur=%lld: hfreq=%d lfreq=%d gain=%d portid=0x%x\n",
  5490. __func__,
  5491. duration_in_ms, high_freq, low_freq, gain,
  5492. this_afe.dtmf_gen_rx_portid);
  5493. cmd_dtmf.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5494. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5495. cmd_dtmf.hdr.pkt_size = sizeof(cmd_dtmf);
  5496. cmd_dtmf.hdr.src_port = 0;
  5497. cmd_dtmf.hdr.dest_port = 0;
  5498. cmd_dtmf.hdr.token = 0;
  5499. cmd_dtmf.hdr.opcode = AFE_PORTS_CMD_DTMF_CTL;
  5500. cmd_dtmf.duration_in_ms = duration_in_ms;
  5501. cmd_dtmf.high_freq = high_freq;
  5502. cmd_dtmf.low_freq = low_freq;
  5503. cmd_dtmf.gain = gain;
  5504. cmd_dtmf.num_ports = 1;
  5505. cmd_dtmf.port_ids = q6audio_get_port_id(this_afe.dtmf_gen_rx_portid);
  5506. atomic_set(&this_afe.state, 1);
  5507. atomic_set(&this_afe.status, 0);
  5508. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &cmd_dtmf);
  5509. if (ret < 0) {
  5510. pr_err("%s: AFE DTMF failed for num_ports:%d ids:0x%x\n",
  5511. __func__, cmd_dtmf.num_ports, cmd_dtmf.port_ids);
  5512. ret = -EINVAL;
  5513. goto fail_cmd;
  5514. }
  5515. index = q6audio_get_port_index(this_afe.dtmf_gen_rx_portid);
  5516. if (index < 0 || index >= AFE_MAX_PORTS) {
  5517. pr_err("%s: AFE port index[%d] invalid!\n",
  5518. __func__, index);
  5519. ret = -EINVAL;
  5520. goto fail_cmd;
  5521. }
  5522. ret = wait_event_timeout(this_afe.wait[index],
  5523. (atomic_read(&this_afe.state) == 0),
  5524. msecs_to_jiffies(TIMEOUT_MS));
  5525. if (!ret) {
  5526. pr_err("%s: wait_event timeout\n", __func__);
  5527. ret = -EINVAL;
  5528. goto fail_cmd;
  5529. }
  5530. if (atomic_read(&this_afe.status) > 0) {
  5531. pr_err("%s: config cmd failed [%s]\n",
  5532. __func__, adsp_err_get_err_str(
  5533. atomic_read(&this_afe.status)));
  5534. ret = adsp_err_get_lnx_err_code(
  5535. atomic_read(&this_afe.status));
  5536. goto fail_cmd;
  5537. }
  5538. return 0;
  5539. fail_cmd:
  5540. pr_err("%s: failed %d\n", __func__, ret);
  5541. return ret;
  5542. }
  5543. EXPORT_SYMBOL(afe_dtmf_generate_rx);
  5544. static int afe_sidetone_iir(u16 tx_port_id)
  5545. {
  5546. int ret;
  5547. uint16_t size = 0;
  5548. int cal_index = AFE_SIDETONE_IIR_CAL;
  5549. int iir_pregain = 0;
  5550. int iir_num_biquad_stages = 0;
  5551. int iir_enable;
  5552. struct cal_block_data *cal_block;
  5553. int mid;
  5554. struct afe_mod_enable_param enable;
  5555. struct afe_sidetone_iir_filter_config_params filter_data;
  5556. struct param_hdr_v3 param_hdr;
  5557. u8 *packed_param_data = NULL;
  5558. u32 packed_param_size = 0;
  5559. u32 single_param_size = 0;
  5560. struct audio_cal_info_sidetone_iir *st_iir_cal_info = NULL;
  5561. memset(&enable, 0, sizeof(enable));
  5562. memset(&filter_data, 0, sizeof(filter_data));
  5563. memset(&param_hdr, 0, sizeof(param_hdr));
  5564. if (this_afe.cal_data[cal_index] == NULL) {
  5565. pr_err("%s: cal data is NULL\n", __func__);
  5566. ret = -EINVAL;
  5567. goto done;
  5568. }
  5569. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  5570. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  5571. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  5572. pr_err("%s: cal_block not found\n ", __func__);
  5573. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5574. ret = -EINVAL;
  5575. goto done;
  5576. }
  5577. /* Cache data from cal block while inside lock to reduce locked time */
  5578. st_iir_cal_info =
  5579. (struct audio_cal_info_sidetone_iir *) cal_block->cal_info;
  5580. iir_pregain = st_iir_cal_info->pregain;
  5581. iir_enable = st_iir_cal_info->iir_enable;
  5582. iir_num_biquad_stages = st_iir_cal_info->num_biquad_stages;
  5583. mid = st_iir_cal_info->mid;
  5584. /*
  5585. * calculate the actual size of payload based on no of stages
  5586. * enabled in calibration
  5587. */
  5588. size = (MAX_SIDETONE_IIR_DATA_SIZE / MAX_NO_IIR_FILTER_STAGE) *
  5589. iir_num_biquad_stages;
  5590. /*
  5591. * For an odd number of stages, 2 bytes of padding are
  5592. * required at the end of the payload.
  5593. */
  5594. if (iir_num_biquad_stages % 2) {
  5595. pr_debug("%s: adding 2 to size:%d\n", __func__, size);
  5596. size = size + 2;
  5597. }
  5598. memcpy(&filter_data.iir_config, &st_iir_cal_info->iir_config, size);
  5599. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5600. packed_param_size =
  5601. sizeof(param_hdr) * 2 + sizeof(enable) + sizeof(filter_data);
  5602. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  5603. if (!packed_param_data)
  5604. return -ENOMEM;
  5605. packed_param_size = 0;
  5606. /*
  5607. * Set IIR enable params
  5608. */
  5609. param_hdr.module_id = mid;
  5610. param_hdr.param_id = INSTANCE_ID_0;
  5611. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  5612. param_hdr.param_size = sizeof(enable);
  5613. enable.enable = iir_enable;
  5614. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  5615. (u8 *) &enable, &single_param_size);
  5616. if (ret) {
  5617. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5618. ret);
  5619. goto done;
  5620. }
  5621. packed_param_size += single_param_size;
  5622. /*
  5623. * Set IIR filter config params
  5624. */
  5625. param_hdr.module_id = mid;
  5626. param_hdr.instance_id = INSTANCE_ID_0;
  5627. param_hdr.param_id = AFE_PARAM_ID_SIDETONE_IIR_FILTER_CONFIG;
  5628. param_hdr.param_size = sizeof(filter_data.num_biquad_stages) +
  5629. sizeof(filter_data.pregain) + size;
  5630. filter_data.num_biquad_stages = iir_num_biquad_stages;
  5631. filter_data.pregain = iir_pregain;
  5632. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  5633. &param_hdr, (u8 *) &filter_data,
  5634. &single_param_size);
  5635. if (ret) {
  5636. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5637. ret);
  5638. goto done;
  5639. }
  5640. packed_param_size += single_param_size;
  5641. pr_debug("%s: tx(0x%x)mid(0x%x)iir_en(%d)stg(%d)gain(0x%x)size(%d)\n",
  5642. __func__, tx_port_id, mid, enable.enable,
  5643. filter_data.num_biquad_stages, filter_data.pregain,
  5644. param_hdr.param_size);
  5645. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  5646. NULL, packed_param_data, packed_param_size);
  5647. if (ret)
  5648. pr_err("%s: AFE sidetone failed for tx_port(0x%x)\n",
  5649. __func__, tx_port_id);
  5650. done:
  5651. kfree(packed_param_data);
  5652. return ret;
  5653. }
  5654. static int afe_sidetone(u16 tx_port_id, u16 rx_port_id, bool enable)
  5655. {
  5656. int ret;
  5657. int cal_index = AFE_SIDETONE_CAL;
  5658. int sidetone_gain;
  5659. int sidetone_enable;
  5660. struct cal_block_data *cal_block;
  5661. int mid = 0;
  5662. struct afe_loopback_sidetone_gain gain_data;
  5663. struct loopback_cfg_data cfg_data;
  5664. struct param_hdr_v3 param_hdr;
  5665. u8 *packed_param_data = NULL;
  5666. u32 packed_param_size = 0;
  5667. u32 single_param_size = 0;
  5668. struct audio_cal_info_sidetone *st_cal_info = NULL;
  5669. if (this_afe.cal_data[cal_index] == NULL) {
  5670. pr_err("%s: cal data is NULL\n", __func__);
  5671. ret = -EINVAL;
  5672. goto done;
  5673. }
  5674. memset(&gain_data, 0, sizeof(gain_data));
  5675. memset(&cfg_data, 0, sizeof(cfg_data));
  5676. memset(&param_hdr, 0, sizeof(param_hdr));
  5677. packed_param_size =
  5678. sizeof(param_hdr) * 2 + sizeof(gain_data) + sizeof(cfg_data);
  5679. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  5680. if (!packed_param_data)
  5681. return -ENOMEM;
  5682. packed_param_size = 0;
  5683. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  5684. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  5685. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  5686. pr_err("%s: cal_block not found\n", __func__);
  5687. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5688. ret = -EINVAL;
  5689. goto done;
  5690. }
  5691. /* Cache data from cal block while inside lock to reduce locked time */
  5692. st_cal_info = (struct audio_cal_info_sidetone *) cal_block->cal_info;
  5693. sidetone_gain = st_cal_info->gain;
  5694. sidetone_enable = st_cal_info->enable;
  5695. mid = st_cal_info->mid;
  5696. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  5697. /* Set gain data. */
  5698. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  5699. param_hdr.instance_id = INSTANCE_ID_0;
  5700. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  5701. param_hdr.param_size = sizeof(struct afe_loopback_sidetone_gain);
  5702. gain_data.rx_port_id = rx_port_id;
  5703. gain_data.gain = sidetone_gain;
  5704. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  5705. (u8 *) &gain_data, &single_param_size);
  5706. if (ret) {
  5707. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5708. ret);
  5709. goto done;
  5710. }
  5711. packed_param_size += single_param_size;
  5712. /* Set configuration data. */
  5713. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  5714. param_hdr.instance_id = INSTANCE_ID_0;
  5715. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  5716. param_hdr.param_size = sizeof(struct loopback_cfg_data);
  5717. cfg_data.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  5718. cfg_data.dst_port_id = rx_port_id;
  5719. cfg_data.routing_mode = LB_MODE_SIDETONE;
  5720. cfg_data.enable = enable;
  5721. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  5722. &param_hdr, (u8 *) &cfg_data,
  5723. &single_param_size);
  5724. if (ret) {
  5725. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5726. ret);
  5727. goto done;
  5728. }
  5729. packed_param_size += single_param_size;
  5730. pr_debug("%s rx(0x%x) tx(0x%x) enable(%d) mid(0x%x) gain(%d) sidetone_enable(%d)\n",
  5731. __func__, rx_port_id, tx_port_id,
  5732. enable, mid, sidetone_gain, sidetone_enable);
  5733. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  5734. NULL, packed_param_data, packed_param_size);
  5735. if (ret)
  5736. pr_err("%s: AFE sidetone send failed for tx_port:%d rx_port:%d ret:%d\n",
  5737. __func__, tx_port_id, rx_port_id, ret);
  5738. done:
  5739. kfree(packed_param_data);
  5740. return ret;
  5741. }
  5742. int afe_sidetone_enable(u16 tx_port_id, u16 rx_port_id, bool enable)
  5743. {
  5744. int ret;
  5745. int index;
  5746. index = q6audio_get_port_index(rx_port_id);
  5747. if (index < 0 || index >= AFE_MAX_PORTS) {
  5748. pr_err("%s: AFE port index[%d] invalid!\n",
  5749. __func__, index);
  5750. ret = -EINVAL;
  5751. goto done;
  5752. }
  5753. if (q6audio_validate_port(rx_port_id) < 0) {
  5754. pr_err("%s: Invalid port 0x%x\n",
  5755. __func__, rx_port_id);
  5756. ret = -EINVAL;
  5757. goto done;
  5758. }
  5759. index = q6audio_get_port_index(tx_port_id);
  5760. if (index < 0 || index >= AFE_MAX_PORTS) {
  5761. pr_err("%s: AFE port index[%d] invalid!\n",
  5762. __func__, index);
  5763. ret = -EINVAL;
  5764. goto done;
  5765. }
  5766. if (q6audio_validate_port(tx_port_id) < 0) {
  5767. pr_err("%s: Invalid port 0x%x\n",
  5768. __func__, tx_port_id);
  5769. ret = -EINVAL;
  5770. goto done;
  5771. }
  5772. if (enable) {
  5773. ret = afe_sidetone_iir(tx_port_id);
  5774. if (ret)
  5775. goto done;
  5776. }
  5777. ret = afe_sidetone(tx_port_id, rx_port_id, enable);
  5778. done:
  5779. return ret;
  5780. }
  5781. /**
  5782. * afe_set_display_stream - command to update AFE dp port params
  5783. *
  5784. * @rx_port_id: AFE port id
  5785. * @stream_idx: dp controller stream index
  5786. * @ctl_idx: dp controller index
  5787. *
  5788. * Returns 0 on success, appropriate error code otherwise
  5789. */
  5790. int afe_set_display_stream(u16 rx_port_id, u32 stream_idx, u32 ctl_idx)
  5791. {
  5792. int ret;
  5793. struct param_hdr_v3 param_hdr;
  5794. u32 packed_param_size = 0;
  5795. u8 *packed_param_data = NULL;
  5796. struct afe_display_stream_idx stream_data;
  5797. struct afe_display_ctl_idx ctl_data;
  5798. u32 single_param_size = 0;
  5799. memset(&param_hdr, 0, sizeof(param_hdr));
  5800. memset(&stream_data, 0, sizeof(stream_data));
  5801. memset(&ctl_data, 0, sizeof(ctl_data));
  5802. packed_param_size =
  5803. sizeof(param_hdr) * 2 + sizeof(stream_data) + sizeof(ctl_data);
  5804. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  5805. if (!packed_param_data)
  5806. return -ENOMEM;
  5807. packed_param_size = 0;
  5808. /* Set stream index */
  5809. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5810. param_hdr.instance_id = INSTANCE_ID_0;
  5811. param_hdr.param_id = AFE_PARAM_ID_HDMI_DP_MST_VID_IDX_CFG;
  5812. param_hdr.param_size = sizeof(struct afe_display_stream_idx);
  5813. stream_data.minor_version = 1;
  5814. stream_data.stream_idx = stream_idx;
  5815. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  5816. (u8 *) &stream_data, &single_param_size);
  5817. if (ret) {
  5818. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5819. ret);
  5820. goto done;
  5821. }
  5822. packed_param_size += single_param_size;
  5823. /* Set controller dptx index */
  5824. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5825. param_hdr.instance_id = INSTANCE_ID_0;
  5826. param_hdr.param_id = AFE_PARAM_ID_HDMI_DPTX_IDX_CFG;
  5827. param_hdr.param_size = sizeof(struct afe_display_ctl_idx);
  5828. ctl_data.minor_version = 1;
  5829. ctl_data.ctl_idx = ctl_idx;
  5830. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  5831. &param_hdr, (u8 *) &ctl_data,
  5832. &single_param_size);
  5833. if (ret) {
  5834. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  5835. ret);
  5836. goto done;
  5837. }
  5838. packed_param_size += single_param_size;
  5839. pr_debug("%s: rx(0x%x) stream(%d) controller(%d)\n",
  5840. __func__, rx_port_id, stream_idx, ctl_idx);
  5841. ret = q6afe_set_params(rx_port_id, q6audio_get_port_index(rx_port_id),
  5842. NULL, packed_param_data, packed_param_size);
  5843. if (ret)
  5844. pr_err("%s: AFE display stream send failed for rx_port:%d ret:%d\n",
  5845. __func__, rx_port_id, ret);
  5846. done:
  5847. kfree(packed_param_data);
  5848. return ret;
  5849. }
  5850. EXPORT_SYMBOL(afe_set_display_stream);
  5851. int afe_validate_port(u16 port_id)
  5852. {
  5853. int ret;
  5854. switch (port_id) {
  5855. case PRIMARY_I2S_RX:
  5856. case PRIMARY_I2S_TX:
  5857. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5858. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5859. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5860. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5861. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5862. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5863. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5864. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5865. case AFE_PORT_ID_QUINARY_PCM_RX:
  5866. case AFE_PORT_ID_QUINARY_PCM_TX:
  5867. case SECONDARY_I2S_RX:
  5868. case SECONDARY_I2S_TX:
  5869. case MI2S_RX:
  5870. case MI2S_TX:
  5871. case HDMI_RX:
  5872. case DISPLAY_PORT_RX:
  5873. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  5874. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  5875. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  5876. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  5877. case RSVD_2:
  5878. case RSVD_3:
  5879. case DIGI_MIC_TX:
  5880. case VOICE_RECORD_RX:
  5881. case VOICE_RECORD_TX:
  5882. case VOICE_PLAYBACK_TX:
  5883. case VOICE2_PLAYBACK_TX:
  5884. case SLIMBUS_0_RX:
  5885. case SLIMBUS_0_TX:
  5886. case SLIMBUS_1_RX:
  5887. case SLIMBUS_1_TX:
  5888. case SLIMBUS_2_RX:
  5889. case SLIMBUS_2_TX:
  5890. case SLIMBUS_3_RX:
  5891. case INT_BT_SCO_RX:
  5892. case INT_BT_SCO_TX:
  5893. case INT_BT_A2DP_RX:
  5894. case INT_FM_RX:
  5895. case INT_FM_TX:
  5896. case RT_PROXY_PORT_001_RX:
  5897. case RT_PROXY_PORT_001_TX:
  5898. case SLIMBUS_4_RX:
  5899. case SLIMBUS_4_TX:
  5900. case SLIMBUS_5_RX:
  5901. case SLIMBUS_6_RX:
  5902. case SLIMBUS_6_TX:
  5903. case SLIMBUS_7_RX:
  5904. case SLIMBUS_7_TX:
  5905. case SLIMBUS_8_RX:
  5906. case SLIMBUS_8_TX:
  5907. case SLIMBUS_9_RX:
  5908. case SLIMBUS_9_TX:
  5909. case AFE_PORT_ID_USB_RX:
  5910. case AFE_PORT_ID_USB_TX:
  5911. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5912. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5913. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  5914. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  5915. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5916. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5917. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  5918. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  5919. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5920. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5921. case AFE_PORT_ID_SENARY_MI2S_TX:
  5922. case AFE_PORT_ID_PRIMARY_TDM_RX:
  5923. case AFE_PORT_ID_PRIMARY_TDM_TX:
  5924. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  5925. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  5926. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  5927. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  5928. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  5929. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  5930. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  5931. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  5932. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  5933. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  5934. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  5935. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  5936. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  5937. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  5938. case AFE_PORT_ID_SECONDARY_TDM_RX:
  5939. case AFE_PORT_ID_SECONDARY_TDM_TX:
  5940. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  5941. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  5942. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  5943. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  5944. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  5945. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  5946. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  5947. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  5948. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  5949. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  5950. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  5951. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  5952. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  5953. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  5954. case AFE_PORT_ID_TERTIARY_TDM_RX:
  5955. case AFE_PORT_ID_TERTIARY_TDM_TX:
  5956. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  5957. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  5958. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  5959. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  5960. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  5961. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  5962. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  5963. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  5964. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  5965. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  5966. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  5967. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  5968. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  5969. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  5970. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  5971. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  5972. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  5973. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  5974. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  5975. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  5976. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  5977. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  5978. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  5979. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  5980. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  5981. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  5982. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  5983. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  5984. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  5985. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  5986. case AFE_PORT_ID_QUINARY_TDM_RX:
  5987. case AFE_PORT_ID_QUINARY_TDM_TX:
  5988. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  5989. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  5990. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  5991. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  5992. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  5993. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  5994. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  5995. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  5996. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  5997. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  5998. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  5999. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  6000. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  6001. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  6002. case AFE_PORT_ID_INT0_MI2S_RX:
  6003. case AFE_PORT_ID_INT1_MI2S_RX:
  6004. case AFE_PORT_ID_INT2_MI2S_RX:
  6005. case AFE_PORT_ID_INT3_MI2S_RX:
  6006. case AFE_PORT_ID_INT4_MI2S_RX:
  6007. case AFE_PORT_ID_INT5_MI2S_RX:
  6008. case AFE_PORT_ID_INT6_MI2S_RX:
  6009. case AFE_PORT_ID_INT0_MI2S_TX:
  6010. case AFE_PORT_ID_INT1_MI2S_TX:
  6011. case AFE_PORT_ID_INT2_MI2S_TX:
  6012. case AFE_PORT_ID_INT3_MI2S_TX:
  6013. case AFE_PORT_ID_INT4_MI2S_TX:
  6014. case AFE_PORT_ID_INT5_MI2S_TX:
  6015. case AFE_PORT_ID_INT6_MI2S_TX:
  6016. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  6017. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  6018. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  6019. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  6020. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  6021. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  6022. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  6023. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  6024. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  6025. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  6026. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  6027. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  6028. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  6029. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  6030. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  6031. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  6032. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  6033. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  6034. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  6035. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  6036. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  6037. {
  6038. ret = 0;
  6039. break;
  6040. }
  6041. default:
  6042. pr_err("%s: default ret 0x%x\n", __func__, port_id);
  6043. ret = -EINVAL;
  6044. }
  6045. return ret;
  6046. }
  6047. int afe_convert_virtual_to_portid(u16 port_id)
  6048. {
  6049. int ret;
  6050. /*
  6051. * if port_id is virtual, convert to physical..
  6052. * if port_id is already physical, return physical
  6053. */
  6054. if (afe_validate_port(port_id) < 0) {
  6055. if (port_id == RT_PROXY_DAI_001_RX ||
  6056. port_id == RT_PROXY_DAI_001_TX ||
  6057. port_id == RT_PROXY_DAI_002_RX ||
  6058. port_id == RT_PROXY_DAI_002_TX) {
  6059. ret = VIRTUAL_ID_TO_PORTID(port_id);
  6060. } else {
  6061. pr_err("%s: wrong port 0x%x\n",
  6062. __func__, port_id);
  6063. ret = -EINVAL;
  6064. }
  6065. } else
  6066. ret = port_id;
  6067. return ret;
  6068. }
  6069. int afe_port_stop_nowait(int port_id)
  6070. {
  6071. struct afe_port_cmd_device_stop stop;
  6072. int ret = 0;
  6073. if (this_afe.apr == NULL) {
  6074. pr_err("%s: AFE is already closed\n", __func__);
  6075. ret = -EINVAL;
  6076. goto fail_cmd;
  6077. }
  6078. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6079. port_id = q6audio_convert_virtual_to_portid(port_id);
  6080. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6081. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6082. stop.hdr.pkt_size = sizeof(stop);
  6083. stop.hdr.src_port = 0;
  6084. stop.hdr.dest_port = 0;
  6085. stop.hdr.token = 0;
  6086. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  6087. stop.port_id = port_id;
  6088. stop.reserved = 0;
  6089. ret = afe_apr_send_pkt(&stop, NULL);
  6090. if (ret)
  6091. pr_err("%s: AFE close failed %d\n", __func__, ret);
  6092. fail_cmd:
  6093. return ret;
  6094. }
  6095. /**
  6096. * afe_close - command to close AFE port
  6097. *
  6098. * @port_id: AFE port id
  6099. *
  6100. * Returns 0 on success, appropriate error code otherwise
  6101. */
  6102. int afe_close(int port_id)
  6103. {
  6104. struct afe_port_cmd_device_stop stop;
  6105. enum afe_mad_type mad_type;
  6106. int ret = 0;
  6107. int index = 0;
  6108. uint16_t port_index;
  6109. if (this_afe.apr == NULL) {
  6110. pr_err("%s: AFE is already closed\n", __func__);
  6111. if ((port_id == RT_PROXY_DAI_001_RX) ||
  6112. (port_id == RT_PROXY_DAI_002_TX))
  6113. pcm_afe_instance[port_id & 0x1] = 0;
  6114. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6115. (port_id == RT_PROXY_DAI_001_TX))
  6116. proxy_afe_instance[port_id & 0x1] = 0;
  6117. afe_close_done[port_id & 0x1] = true;
  6118. ret = -EINVAL;
  6119. goto fail_cmd;
  6120. }
  6121. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6122. if ((port_id == RT_PROXY_DAI_001_RX) ||
  6123. (port_id == RT_PROXY_DAI_002_TX)) {
  6124. pr_debug("%s: before decrementing pcm_afe_instance %d\n",
  6125. __func__, pcm_afe_instance[port_id & 0x1]);
  6126. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6127. pcm_afe_instance[port_id & 0x1]--;
  6128. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  6129. proxy_afe_instance[port_id & 0x1] == 0)) ||
  6130. afe_close_done[port_id & 0x1] == true)
  6131. return 0;
  6132. afe_close_done[port_id & 0x1] = true;
  6133. }
  6134. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6135. (port_id == RT_PROXY_DAI_001_TX)) {
  6136. pr_debug("%s: before decrementing proxy_afe_instance %d\n",
  6137. __func__, proxy_afe_instance[port_id & 0x1]);
  6138. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6139. proxy_afe_instance[port_id & 0x1]--;
  6140. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  6141. proxy_afe_instance[port_id & 0x1] == 0)) ||
  6142. afe_close_done[port_id & 0x1] == true)
  6143. return 0;
  6144. afe_close_done[port_id & 0x1] = true;
  6145. }
  6146. port_id = q6audio_convert_virtual_to_portid(port_id);
  6147. index = q6audio_get_port_index(port_id);
  6148. if (index < 0 || index >= AFE_MAX_PORTS) {
  6149. pr_err("%s: AFE port index[%d] invalid!\n",
  6150. __func__, index);
  6151. return -EINVAL;
  6152. }
  6153. ret = q6audio_validate_port(port_id);
  6154. if (ret < 0) {
  6155. pr_warn("%s: Not a valid port id 0x%x ret %d\n",
  6156. __func__, port_id, ret);
  6157. return -EINVAL;
  6158. }
  6159. mad_type = afe_port_get_mad_type(port_id);
  6160. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  6161. mad_type);
  6162. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  6163. pr_debug("%s: Turn off MAD\n", __func__);
  6164. ret = afe_turn_onoff_hw_mad(mad_type, false);
  6165. if (ret) {
  6166. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  6167. __func__, ret);
  6168. return ret;
  6169. }
  6170. } else {
  6171. pr_debug("%s: Not a MAD port\n", __func__);
  6172. }
  6173. port_index = afe_get_port_index(port_id);
  6174. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  6175. this_afe.afe_sample_rates[port_index] = 0;
  6176. this_afe.topology[port_index] = 0;
  6177. this_afe.dev_acdb_id[port_index] = 0;
  6178. } else {
  6179. pr_err("%s: port %d\n", __func__, port_index);
  6180. ret = -EINVAL;
  6181. goto fail_cmd;
  6182. }
  6183. if ((port_id == this_afe.aanc_info.aanc_tx_port) &&
  6184. (this_afe.aanc_info.aanc_active)) {
  6185. memset(&this_afe.aanc_info, 0x00, sizeof(this_afe.aanc_info));
  6186. ret = afe_aanc_mod_enable(this_afe.apr, port_id, 0);
  6187. if (ret)
  6188. pr_err("%s: AFE mod disable failed %d\n",
  6189. __func__, ret);
  6190. }
  6191. /*
  6192. * even if ramp down configuration failed it is not serious enough to
  6193. * warrant bailaing out.
  6194. */
  6195. if (afe_spk_ramp_dn_cfg(port_id) < 0)
  6196. pr_err("%s: ramp down configuration failed\n", __func__);
  6197. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6198. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6199. stop.hdr.pkt_size = sizeof(stop);
  6200. stop.hdr.src_port = 0;
  6201. stop.hdr.dest_port = 0;
  6202. stop.hdr.token = index;
  6203. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  6204. stop.port_id = q6audio_get_port_id(port_id);
  6205. stop.reserved = 0;
  6206. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  6207. if (ret)
  6208. pr_err("%s: AFE close failed %d\n", __func__, ret);
  6209. fail_cmd:
  6210. return ret;
  6211. }
  6212. EXPORT_SYMBOL(afe_close);
  6213. int afe_set_digital_codec_core_clock(u16 port_id,
  6214. struct afe_digital_clk_cfg *cfg)
  6215. {
  6216. struct afe_digital_clk_cfg clk_cfg;
  6217. struct param_hdr_v3 param_hdr;
  6218. int ret = 0;
  6219. if (!cfg) {
  6220. pr_err("%s: clock cfg is NULL\n", __func__);
  6221. return -EINVAL;
  6222. }
  6223. memset(&clk_cfg, 0, sizeof(clk_cfg));
  6224. memset(&param_hdr, 0, sizeof(param_hdr));
  6225. /*default rx port is taken to enable the codec digital clock*/
  6226. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6227. param_hdr.instance_id = INSTANCE_ID_0;
  6228. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  6229. param_hdr.param_size = sizeof(struct afe_digital_clk_cfg);
  6230. clk_cfg = *cfg;
  6231. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  6232. "clk root = 0x%x resrv = 0x%x\n",
  6233. __func__, cfg->i2s_cfg_minor_version, cfg->clk_val,
  6234. cfg->clk_root, cfg->reserved);
  6235. ret = q6afe_pack_and_set_param_in_band(port_id,
  6236. q6audio_get_port_index(port_id),
  6237. param_hdr, (u8 *) &clk_cfg);
  6238. if (ret < 0)
  6239. pr_err("%s: AFE enable for port 0x%x ret %d\n", __func__,
  6240. port_id, ret);
  6241. return ret;
  6242. }
  6243. /**
  6244. * afe_set_lpass_clock - Enable AFE lpass clock
  6245. *
  6246. * @port_id: AFE port id
  6247. * @cfg: pointer to clk set struct
  6248. *
  6249. * Returns 0 on success, appropriate error code otherwise
  6250. */
  6251. int afe_set_lpass_clock(u16 port_id, struct afe_clk_cfg *cfg)
  6252. {
  6253. struct afe_clk_cfg clk_cfg;
  6254. struct param_hdr_v3 param_hdr;
  6255. int ret = 0;
  6256. if (!cfg) {
  6257. pr_err("%s: clock cfg is NULL\n", __func__);
  6258. return -EINVAL;
  6259. }
  6260. memset(&clk_cfg, 0, sizeof(clk_cfg));
  6261. memset(&param_hdr, 0, sizeof(param_hdr));
  6262. ret = q6audio_is_digital_pcm_interface(port_id);
  6263. if (ret < 0) {
  6264. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  6265. __func__, ret);
  6266. return -EINVAL;
  6267. }
  6268. mutex_lock(&this_afe.afe_cmd_lock);
  6269. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6270. param_hdr.instance_id = INSTANCE_ID_0;
  6271. param_hdr.param_id = AFE_PARAM_ID_LPAIF_CLK_CONFIG;
  6272. param_hdr.param_size = sizeof(clk_cfg);
  6273. clk_cfg = *cfg;
  6274. pr_debug("%s: Minor version =0x%x clk val1 = %d\n"
  6275. "clk val2 = %d, clk src = 0x%x\n"
  6276. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  6277. "port id = 0x%x\n",
  6278. __func__, cfg->i2s_cfg_minor_version,
  6279. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  6280. cfg->clk_root, cfg->clk_set_mode,
  6281. cfg->reserved, q6audio_get_port_id(port_id));
  6282. ret = q6afe_pack_and_set_param_in_band(port_id,
  6283. q6audio_get_port_index(port_id),
  6284. param_hdr, (u8 *) &clk_cfg);
  6285. if (ret < 0)
  6286. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  6287. __func__, port_id, ret);
  6288. mutex_unlock(&this_afe.afe_cmd_lock);
  6289. return ret;
  6290. }
  6291. EXPORT_SYMBOL(afe_set_lpass_clock);
  6292. /**
  6293. * afe_set_lpass_clk_cfg - Set AFE clk config
  6294. *
  6295. * @index: port index
  6296. * @cfg: pointer to clk set struct
  6297. *
  6298. * Returns 0 on success, appropriate error code otherwise
  6299. */
  6300. int afe_set_lpass_clk_cfg(int index, struct afe_clk_set *cfg)
  6301. {
  6302. struct param_hdr_v3 param_hdr;
  6303. int ret = 0;
  6304. if (!cfg) {
  6305. pr_err("%s: clock cfg is NULL\n", __func__);
  6306. ret = -EINVAL;
  6307. return ret;
  6308. }
  6309. if (index < 0 || index >= AFE_MAX_PORTS) {
  6310. pr_err("%s: index[%d] invalid!\n", __func__, index);
  6311. return -EINVAL;
  6312. }
  6313. memset(&param_hdr, 0, sizeof(param_hdr));
  6314. ret = afe_q6_interface_prepare();
  6315. if (ret != 0) {
  6316. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6317. return ret;
  6318. }
  6319. mutex_lock(&this_afe.afe_cmd_lock);
  6320. param_hdr.module_id = AFE_MODULE_CLOCK_SET;
  6321. param_hdr.instance_id = INSTANCE_ID_0;
  6322. param_hdr.param_id = AFE_PARAM_ID_CLOCK_SET;
  6323. param_hdr.param_size = sizeof(struct afe_clk_set);
  6324. pr_debug("%s: Minor version =0x%x clk id = %d\n"
  6325. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  6326. "clk root = 0x%x clk enable = 0x%x\n",
  6327. __func__, cfg->clk_set_minor_version,
  6328. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  6329. cfg->clk_root, cfg->enable);
  6330. ret = q6afe_svc_pack_and_set_param_in_band(index, param_hdr,
  6331. (u8 *) cfg);
  6332. if (ret < 0)
  6333. pr_err("%s: AFE clk cfg failed with ret %d\n",
  6334. __func__, ret);
  6335. mutex_unlock(&this_afe.afe_cmd_lock);
  6336. return ret;
  6337. }
  6338. EXPORT_SYMBOL(afe_set_lpass_clk_cfg);
  6339. /**
  6340. * afe_set_lpass_clock_v2 - Enable AFE lpass clock
  6341. *
  6342. * @port_id: AFE port id
  6343. * @cfg: pointer to clk set struct
  6344. *
  6345. * Returns 0 on success, appropriate error code otherwise
  6346. */
  6347. int afe_set_lpass_clock_v2(u16 port_id, struct afe_clk_set *cfg)
  6348. {
  6349. int index = 0;
  6350. int ret = 0;
  6351. index = q6audio_get_port_index(port_id);
  6352. if (index < 0 || index >= AFE_MAX_PORTS) {
  6353. pr_err("%s: AFE port index[%d] invalid!\n",
  6354. __func__, index);
  6355. return -EINVAL;
  6356. }
  6357. ret = q6audio_is_digital_pcm_interface(port_id);
  6358. if (ret < 0) {
  6359. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  6360. __func__, ret);
  6361. return -EINVAL;
  6362. }
  6363. ret = afe_set_lpass_clk_cfg(index, cfg);
  6364. if (ret)
  6365. pr_err("%s: afe_set_lpass_clk_cfg_v2 failed %d\n",
  6366. __func__, ret);
  6367. return ret;
  6368. }
  6369. EXPORT_SYMBOL(afe_set_lpass_clock_v2);
  6370. int afe_set_lpass_internal_digital_codec_clock(u16 port_id,
  6371. struct afe_digital_clk_cfg *cfg)
  6372. {
  6373. struct afe_digital_clk_cfg clk_cfg;
  6374. struct param_hdr_v3 param_hdr;
  6375. int ret = 0;
  6376. if (!cfg) {
  6377. pr_err("%s: clock cfg is NULL\n", __func__);
  6378. return -EINVAL;
  6379. }
  6380. memset(&clk_cfg, 0, sizeof(clk_cfg));
  6381. memset(&param_hdr, 0, sizeof(param_hdr));
  6382. ret = q6audio_is_digital_pcm_interface(port_id);
  6383. if (ret < 0) {
  6384. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  6385. __func__, ret);
  6386. return -EINVAL;
  6387. }
  6388. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6389. param_hdr.instance_id = INSTANCE_ID_0;
  6390. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  6391. param_hdr.param_size = sizeof(clk_cfg);
  6392. clk_cfg = *cfg;
  6393. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  6394. "clk root = 0x%x resrv = 0x%x port id = 0x%x\n",
  6395. __func__, cfg->i2s_cfg_minor_version,
  6396. cfg->clk_val, cfg->clk_root, cfg->reserved,
  6397. q6audio_get_port_id(port_id));
  6398. ret = q6afe_pack_and_set_param_in_band(port_id,
  6399. q6audio_get_port_index(port_id),
  6400. param_hdr, (u8 *) &clk_cfg);
  6401. if (ret < 0)
  6402. pr_err("%s: AFE enable for port 0x0x%x ret %d\n",
  6403. __func__, port_id, ret);
  6404. return ret;
  6405. }
  6406. int afe_enable_lpass_core_shared_clock(u16 port_id, u32 enable)
  6407. {
  6408. struct afe_param_id_lpass_core_shared_clk_cfg clk_cfg;
  6409. struct param_hdr_v3 param_hdr;
  6410. int ret = 0;
  6411. memset(&clk_cfg, 0, sizeof(clk_cfg));
  6412. memset(&param_hdr, 0, sizeof(param_hdr));
  6413. ret = q6audio_is_digital_pcm_interface(port_id);
  6414. if (ret < 0) {
  6415. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  6416. __func__, ret);
  6417. return -EINVAL;
  6418. }
  6419. mutex_lock(&this_afe.afe_cmd_lock);
  6420. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6421. param_hdr.instance_id = INSTANCE_ID_0;
  6422. param_hdr.param_id = AFE_PARAM_ID_LPASS_CORE_SHARED_CLOCK_CONFIG;
  6423. param_hdr.param_size = sizeof(clk_cfg);
  6424. clk_cfg.lpass_core_shared_clk_cfg_minor_version =
  6425. AFE_API_VERSION_LPASS_CORE_SHARED_CLK_CONFIG;
  6426. clk_cfg.enable = enable;
  6427. pr_debug("%s: port id = %d, enable = %d\n",
  6428. __func__, q6audio_get_port_id(port_id), enable);
  6429. ret = q6afe_pack_and_set_param_in_band(port_id,
  6430. q6audio_get_port_index(port_id),
  6431. param_hdr, (u8 *) &clk_cfg);
  6432. if (ret < 0)
  6433. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  6434. __func__, port_id, ret);
  6435. mutex_unlock(&this_afe.afe_cmd_lock);
  6436. return ret;
  6437. }
  6438. int q6afe_check_osr_clk_freq(u32 freq)
  6439. {
  6440. int ret = 0;
  6441. switch (freq) {
  6442. case Q6AFE_LPASS_OSR_CLK_12_P288_MHZ:
  6443. case Q6AFE_LPASS_OSR_CLK_9_P600_MHZ:
  6444. case Q6AFE_LPASS_OSR_CLK_8_P192_MHZ:
  6445. case Q6AFE_LPASS_OSR_CLK_6_P144_MHZ:
  6446. case Q6AFE_LPASS_OSR_CLK_4_P096_MHZ:
  6447. case Q6AFE_LPASS_OSR_CLK_3_P072_MHZ:
  6448. case Q6AFE_LPASS_OSR_CLK_2_P048_MHZ:
  6449. case Q6AFE_LPASS_OSR_CLK_1_P536_MHZ:
  6450. case Q6AFE_LPASS_OSR_CLK_1_P024_MHZ:
  6451. case Q6AFE_LPASS_OSR_CLK_768_kHZ:
  6452. case Q6AFE_LPASS_OSR_CLK_512_kHZ:
  6453. break;
  6454. default:
  6455. pr_err("%s: default freq 0x%x\n",
  6456. __func__, freq);
  6457. ret = -EINVAL;
  6458. }
  6459. return ret;
  6460. }
  6461. int afe_get_sp_th_vi_ftm_data(struct afe_sp_th_vi_get_param *th_vi)
  6462. {
  6463. struct param_hdr_v3 param_hdr;
  6464. int port = SLIMBUS_4_TX;
  6465. int ret = -EINVAL;
  6466. if (!th_vi) {
  6467. pr_err("%s: Invalid params\n", __func__);
  6468. goto done;
  6469. }
  6470. if (this_afe.vi_tx_port != -1)
  6471. port = this_afe.vi_tx_port;
  6472. memset(&param_hdr, 0, sizeof(param_hdr));
  6473. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  6474. param_hdr.instance_id = INSTANCE_ID_0;
  6475. param_hdr.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  6476. param_hdr.param_size = sizeof(struct afe_sp_th_vi_ftm_params);
  6477. ret = q6afe_get_params(port, NULL, &param_hdr);
  6478. if (ret) {
  6479. pr_err("%s: Failed to get TH VI FTM data\n", __func__);
  6480. goto done;
  6481. }
  6482. th_vi->pdata = param_hdr;
  6483. memcpy(&th_vi->param, &this_afe.th_vi_resp.param,
  6484. sizeof(this_afe.th_vi_resp.param));
  6485. pr_debug("%s: DC resistance %d %d temp %d %d status %d %d\n",
  6486. __func__, th_vi->param.dc_res_q24[SP_V2_SPKR_1],
  6487. th_vi->param.dc_res_q24[SP_V2_SPKR_2],
  6488. th_vi->param.temp_q22[SP_V2_SPKR_1],
  6489. th_vi->param.temp_q22[SP_V2_SPKR_2],
  6490. th_vi->param.status[SP_V2_SPKR_1],
  6491. th_vi->param.status[SP_V2_SPKR_2]);
  6492. ret = 0;
  6493. done:
  6494. return ret;
  6495. }
  6496. int afe_get_sp_ex_vi_ftm_data(struct afe_sp_ex_vi_get_param *ex_vi)
  6497. {
  6498. struct param_hdr_v3 param_hdr;
  6499. int port = SLIMBUS_4_TX;
  6500. int ret = -EINVAL;
  6501. if (!ex_vi) {
  6502. pr_err("%s: Invalid params\n", __func__);
  6503. goto done;
  6504. }
  6505. if (this_afe.vi_tx_port != -1)
  6506. port = this_afe.vi_tx_port;
  6507. memset(&param_hdr, 0, sizeof(param_hdr));
  6508. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  6509. param_hdr.instance_id = INSTANCE_ID_0;
  6510. param_hdr.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  6511. param_hdr.param_size = sizeof(struct afe_sp_ex_vi_ftm_params);
  6512. ret = q6afe_get_params(port, NULL, &param_hdr);
  6513. if (ret < 0) {
  6514. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  6515. __func__, port, param_hdr.param_id, ret);
  6516. goto done;
  6517. }
  6518. ex_vi->pdata = param_hdr;
  6519. memcpy(&ex_vi->param, &this_afe.ex_vi_resp.param,
  6520. sizeof(this_afe.ex_vi_resp.param));
  6521. pr_debug("%s: freq %d %d resistance %d %d qfactor %d %d state %d %d\n",
  6522. __func__, ex_vi->param.freq_q20[SP_V2_SPKR_1],
  6523. ex_vi->param.freq_q20[SP_V2_SPKR_2],
  6524. ex_vi->param.resis_q24[SP_V2_SPKR_1],
  6525. ex_vi->param.resis_q24[SP_V2_SPKR_2],
  6526. ex_vi->param.qmct_q24[SP_V2_SPKR_1],
  6527. ex_vi->param.qmct_q24[SP_V2_SPKR_2],
  6528. ex_vi->param.status[SP_V2_SPKR_1],
  6529. ex_vi->param.status[SP_V2_SPKR_2]);
  6530. ret = 0;
  6531. done:
  6532. return ret;
  6533. }
  6534. /**
  6535. * afe_get_av_dev_drift -
  6536. * command to retrieve AV drift
  6537. *
  6538. * @timing_stats: timing stats to be updated with AV drift values
  6539. * @port: AFE port ID
  6540. *
  6541. * Returns 0 on success or error on failure
  6542. */
  6543. int afe_get_av_dev_drift(struct afe_param_id_dev_timing_stats *timing_stats,
  6544. u16 port)
  6545. {
  6546. struct param_hdr_v3 param_hdr;
  6547. int ret = -EINVAL;
  6548. if (!timing_stats) {
  6549. pr_err("%s: Invalid params\n", __func__);
  6550. goto exit;
  6551. }
  6552. memset(&param_hdr, 0, sizeof(param_hdr));
  6553. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  6554. param_hdr.instance_id = INSTANCE_ID_0;
  6555. param_hdr.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  6556. param_hdr.param_size = sizeof(struct afe_param_id_dev_timing_stats);
  6557. ret = q6afe_get_params(port, NULL, &param_hdr);
  6558. if (ret < 0) {
  6559. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  6560. __func__, port, param_hdr.param_id, ret);
  6561. goto exit;
  6562. }
  6563. memcpy(timing_stats, &this_afe.av_dev_drift_resp.timing_stats,
  6564. param_hdr.param_size);
  6565. ret = 0;
  6566. exit:
  6567. return ret;
  6568. }
  6569. EXPORT_SYMBOL(afe_get_av_dev_drift);
  6570. int afe_spk_prot_get_calib_data(struct afe_spkr_prot_get_vi_calib *calib_resp)
  6571. {
  6572. struct param_hdr_v3 param_hdr;
  6573. int port = SLIMBUS_4_TX;
  6574. int ret = -EINVAL;
  6575. if (!calib_resp) {
  6576. pr_err("%s: Invalid params\n", __func__);
  6577. goto fail_cmd;
  6578. }
  6579. if (this_afe.vi_tx_port != -1)
  6580. port = this_afe.vi_tx_port;
  6581. memset(&param_hdr, 0, sizeof(param_hdr));
  6582. param_hdr.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  6583. param_hdr.instance_id = INSTANCE_ID_0;
  6584. param_hdr.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  6585. param_hdr.param_size = sizeof(struct afe_spkr_prot_get_vi_calib);
  6586. ret = q6afe_get_params(port, NULL, &param_hdr);
  6587. if (ret < 0) {
  6588. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  6589. __func__, port, param_hdr.param_id, ret);
  6590. goto fail_cmd;
  6591. }
  6592. memcpy(&calib_resp->res_cfg, &this_afe.calib_data.res_cfg,
  6593. sizeof(this_afe.calib_data.res_cfg));
  6594. pr_info("%s: state %s resistance %d %d\n", __func__,
  6595. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  6596. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  6597. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  6598. ret = 0;
  6599. fail_cmd:
  6600. return ret;
  6601. }
  6602. /**
  6603. * afe_spk_prot_feed_back_cfg -
  6604. * command to setup spk protection feedback config
  6605. *
  6606. * @src_port: source port id
  6607. * @dst_port: destination port id
  6608. * @l_ch: left speaker active or not
  6609. * @r_ch: right speaker active or not
  6610. * @enable: flag to enable or disable
  6611. *
  6612. * Returns 0 on success or error on failure
  6613. */
  6614. int afe_spk_prot_feed_back_cfg(int src_port, int dst_port,
  6615. int l_ch, int r_ch, u32 enable)
  6616. {
  6617. int ret = -EINVAL;
  6618. union afe_spkr_prot_config prot_config;
  6619. int index = 0;
  6620. if (!enable) {
  6621. pr_debug("%s: Disable Feedback tx path", __func__);
  6622. this_afe.vi_tx_port = -1;
  6623. this_afe.vi_rx_port = -1;
  6624. return 0;
  6625. }
  6626. if ((q6audio_validate_port(src_port) < 0) ||
  6627. (q6audio_validate_port(dst_port) < 0)) {
  6628. pr_err("%s: invalid ports src 0x%x dst 0x%x",
  6629. __func__, src_port, dst_port);
  6630. goto fail_cmd;
  6631. }
  6632. if (!l_ch && !r_ch) {
  6633. pr_err("%s: error ch values zero\n", __func__);
  6634. goto fail_cmd;
  6635. }
  6636. pr_debug("%s: src_port 0x%x dst_port 0x%x l_ch %d r_ch %d\n",
  6637. __func__, src_port, dst_port, l_ch, r_ch);
  6638. memset(&prot_config, 0, sizeof(prot_config));
  6639. prot_config.feedback_path_cfg.dst_portid =
  6640. q6audio_get_port_id(dst_port);
  6641. if (l_ch) {
  6642. prot_config.feedback_path_cfg.chan_info[index++] = 1;
  6643. prot_config.feedback_path_cfg.chan_info[index++] = 2;
  6644. }
  6645. if (r_ch) {
  6646. prot_config.feedback_path_cfg.chan_info[index++] = 3;
  6647. prot_config.feedback_path_cfg.chan_info[index++] = 4;
  6648. }
  6649. prot_config.feedback_path_cfg.num_channels = index;
  6650. pr_debug("%s no of channels: %d\n", __func__, index);
  6651. prot_config.feedback_path_cfg.minor_version = 1;
  6652. ret = afe_spk_prot_prepare(src_port, dst_port,
  6653. AFE_PARAM_ID_FEEDBACK_PATH_CFG, &prot_config);
  6654. fail_cmd:
  6655. return ret;
  6656. }
  6657. EXPORT_SYMBOL(afe_spk_prot_feed_back_cfg);
  6658. static int get_cal_type_index(int32_t cal_type)
  6659. {
  6660. int ret = -EINVAL;
  6661. switch (cal_type) {
  6662. case AFE_COMMON_RX_CAL_TYPE:
  6663. ret = AFE_COMMON_RX_CAL;
  6664. break;
  6665. case AFE_COMMON_TX_CAL_TYPE:
  6666. ret = AFE_COMMON_TX_CAL;
  6667. break;
  6668. case AFE_LSM_TX_CAL_TYPE:
  6669. ret = AFE_LSM_TX_CAL;
  6670. break;
  6671. case AFE_AANC_CAL_TYPE:
  6672. ret = AFE_AANC_CAL;
  6673. break;
  6674. case AFE_HW_DELAY_CAL_TYPE:
  6675. ret = AFE_HW_DELAY_CAL;
  6676. break;
  6677. case AFE_FB_SPKR_PROT_CAL_TYPE:
  6678. ret = AFE_FB_SPKR_PROT_CAL;
  6679. break;
  6680. case AFE_SIDETONE_CAL_TYPE:
  6681. ret = AFE_SIDETONE_CAL;
  6682. break;
  6683. case AFE_SIDETONE_IIR_CAL_TYPE:
  6684. ret = AFE_SIDETONE_IIR_CAL;
  6685. break;
  6686. case AFE_TOPOLOGY_CAL_TYPE:
  6687. ret = AFE_TOPOLOGY_CAL;
  6688. break;
  6689. case AFE_LSM_TOPOLOGY_CAL_TYPE:
  6690. ret = AFE_LSM_TOPOLOGY_CAL;
  6691. break;
  6692. case AFE_CUST_TOPOLOGY_CAL_TYPE:
  6693. ret = AFE_CUST_TOPOLOGY_CAL;
  6694. break;
  6695. default:
  6696. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  6697. }
  6698. return ret;
  6699. }
  6700. int afe_alloc_cal(int32_t cal_type, size_t data_size,
  6701. void *data)
  6702. {
  6703. int ret = 0;
  6704. int cal_index;
  6705. cal_index = get_cal_type_index(cal_type);
  6706. pr_debug("%s: cal_type = %d cal_index = %d\n",
  6707. __func__, cal_type, cal_index);
  6708. if (cal_index < 0) {
  6709. pr_err("%s: could not get cal index %d!\n",
  6710. __func__, cal_index);
  6711. ret = -EINVAL;
  6712. goto done;
  6713. }
  6714. mutex_lock(&this_afe.afe_cmd_lock);
  6715. ret = cal_utils_alloc_cal(data_size, data,
  6716. this_afe.cal_data[cal_index], 0, NULL);
  6717. if (ret < 0) {
  6718. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  6719. __func__, ret, cal_type);
  6720. ret = -EINVAL;
  6721. mutex_unlock(&this_afe.afe_cmd_lock);
  6722. goto done;
  6723. }
  6724. mutex_unlock(&this_afe.afe_cmd_lock);
  6725. done:
  6726. return ret;
  6727. }
  6728. static int afe_dealloc_cal(int32_t cal_type, size_t data_size,
  6729. void *data)
  6730. {
  6731. int ret = 0;
  6732. int cal_index;
  6733. pr_debug("%s:\n", __func__);
  6734. cal_index = get_cal_type_index(cal_type);
  6735. if (cal_index < 0) {
  6736. pr_err("%s: could not get cal index %d!\n",
  6737. __func__, cal_index);
  6738. ret = -EINVAL;
  6739. goto done;
  6740. }
  6741. ret = cal_utils_dealloc_cal(data_size, data,
  6742. this_afe.cal_data[cal_index]);
  6743. if (ret < 0) {
  6744. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  6745. __func__, ret, cal_type);
  6746. ret = -EINVAL;
  6747. goto done;
  6748. }
  6749. done:
  6750. return ret;
  6751. }
  6752. static int afe_set_cal(int32_t cal_type, size_t data_size,
  6753. void *data)
  6754. {
  6755. int ret = 0;
  6756. int cal_index;
  6757. pr_debug("%s:\n", __func__);
  6758. cal_index = get_cal_type_index(cal_type);
  6759. if (cal_index < 0) {
  6760. pr_err("%s: could not get cal index %d!\n",
  6761. __func__, cal_index);
  6762. ret = -EINVAL;
  6763. goto done;
  6764. }
  6765. ret = cal_utils_set_cal(data_size, data,
  6766. this_afe.cal_data[cal_index], 0, NULL);
  6767. if (ret < 0) {
  6768. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  6769. __func__, ret, cal_type);
  6770. ret = -EINVAL;
  6771. goto done;
  6772. }
  6773. if (cal_index == AFE_CUST_TOPOLOGY_CAL) {
  6774. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  6775. this_afe.set_custom_topology = 1;
  6776. pr_debug("%s:[AFE_CUSTOM_TOPOLOGY] ret = %d, cal type = %d!\n",
  6777. __func__, ret, cal_type);
  6778. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  6779. }
  6780. done:
  6781. return ret;
  6782. }
  6783. static struct cal_block_data *afe_find_hw_delay_by_path(
  6784. struct cal_type_data *cal_type, int path)
  6785. {
  6786. struct list_head *ptr, *next;
  6787. struct cal_block_data *cal_block = NULL;
  6788. pr_debug("%s:\n", __func__);
  6789. list_for_each_safe(ptr, next,
  6790. &cal_type->cal_blocks) {
  6791. cal_block = list_entry(ptr,
  6792. struct cal_block_data, list);
  6793. if (cal_utils_is_cal_stale(cal_block))
  6794. continue;
  6795. if (((struct audio_cal_info_hw_delay *)cal_block->cal_info)
  6796. ->path == path) {
  6797. return cal_block;
  6798. }
  6799. }
  6800. return NULL;
  6801. }
  6802. static int afe_get_cal_hw_delay(int32_t path,
  6803. struct audio_cal_hw_delay_entry *entry)
  6804. {
  6805. int ret = 0;
  6806. int i;
  6807. struct cal_block_data *cal_block = NULL;
  6808. struct audio_cal_hw_delay_data *hw_delay_info = NULL;
  6809. pr_debug("%s:\n", __func__);
  6810. if (this_afe.cal_data[AFE_HW_DELAY_CAL] == NULL) {
  6811. pr_err("%s: AFE_HW_DELAY_CAL not initialized\n", __func__);
  6812. ret = -EINVAL;
  6813. goto done;
  6814. }
  6815. if (entry == NULL) {
  6816. pr_err("%s: entry is NULL\n", __func__);
  6817. ret = -EINVAL;
  6818. goto done;
  6819. }
  6820. if ((path >= MAX_PATH_TYPE) || (path < 0)) {
  6821. pr_err("%s: bad path: %d\n",
  6822. __func__, path);
  6823. ret = -EINVAL;
  6824. goto done;
  6825. }
  6826. mutex_lock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  6827. cal_block = afe_find_hw_delay_by_path(
  6828. this_afe.cal_data[AFE_HW_DELAY_CAL], path);
  6829. if (cal_block == NULL)
  6830. goto unlock;
  6831. hw_delay_info = &((struct audio_cal_info_hw_delay *)
  6832. cal_block->cal_info)->data;
  6833. if (hw_delay_info->num_entries > MAX_HW_DELAY_ENTRIES) {
  6834. pr_err("%s: invalid num entries: %d\n",
  6835. __func__, hw_delay_info->num_entries);
  6836. ret = -EINVAL;
  6837. goto unlock;
  6838. }
  6839. for (i = 0; i < hw_delay_info->num_entries; i++) {
  6840. if (hw_delay_info->entry[i].sample_rate ==
  6841. entry->sample_rate) {
  6842. entry->delay_usec = hw_delay_info->entry[i].delay_usec;
  6843. break;
  6844. }
  6845. }
  6846. if (i == hw_delay_info->num_entries) {
  6847. pr_err("%s: Unable to find delay for sample rate %d\n",
  6848. __func__, entry->sample_rate);
  6849. ret = -EFAULT;
  6850. goto unlock;
  6851. }
  6852. cal_utils_mark_cal_used(cal_block);
  6853. pr_debug("%s: Path = %d samplerate = %u usec = %u status %d\n",
  6854. __func__, path, entry->sample_rate, entry->delay_usec, ret);
  6855. unlock:
  6856. mutex_unlock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  6857. done:
  6858. return ret;
  6859. }
  6860. static int afe_set_cal_sp_th_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  6861. void *data)
  6862. {
  6863. int ret = 0;
  6864. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  6865. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  6866. cal_data == NULL ||
  6867. data_size != sizeof(*cal_data))
  6868. goto done;
  6869. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6870. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6871. memcpy(&this_afe.th_ftm_cfg, &cal_data->cal_info,
  6872. sizeof(this_afe.th_ftm_cfg));
  6873. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6874. done:
  6875. return ret;
  6876. }
  6877. static int afe_set_cal_sp_ex_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  6878. void *data)
  6879. {
  6880. int ret = 0;
  6881. struct audio_cal_type_sp_ex_vi_ftm_cfg *cal_data = data;
  6882. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  6883. cal_data == NULL ||
  6884. data_size != sizeof(*cal_data))
  6885. goto done;
  6886. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6887. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6888. memcpy(&this_afe.ex_ftm_cfg, &cal_data->cal_info,
  6889. sizeof(this_afe.ex_ftm_cfg));
  6890. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6891. done:
  6892. return ret;
  6893. }
  6894. static int afe_set_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  6895. void *data)
  6896. {
  6897. int ret = 0;
  6898. struct audio_cal_type_fb_spk_prot_cfg *cal_data = data;
  6899. pr_debug("%s:\n", __func__);
  6900. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  6901. goto done;
  6902. if (cal_data == NULL)
  6903. goto done;
  6904. if (data_size != sizeof(*cal_data))
  6905. goto done;
  6906. if (cal_data->cal_info.mode == MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  6907. __pm_wakeup_event(&wl.ws, jiffies_to_msecs(WAKELOCK_TIMEOUT));
  6908. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6909. memcpy(&this_afe.prot_cfg, &cal_data->cal_info,
  6910. sizeof(this_afe.prot_cfg));
  6911. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  6912. done:
  6913. return ret;
  6914. }
  6915. static int afe_get_cal_sp_th_vi_ftm_param(int32_t cal_type, size_t data_size,
  6916. void *data)
  6917. {
  6918. int i, ret = 0;
  6919. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  6920. struct afe_sp_th_vi_get_param th_vi;
  6921. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6922. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  6923. cal_data == NULL ||
  6924. data_size != sizeof(*cal_data))
  6925. goto done;
  6926. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6927. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6928. cal_data->cal_info.status[i] = -EINVAL;
  6929. cal_data->cal_info.r_dc_q24[i] = -1;
  6930. cal_data->cal_info.temp_q22[i] = -1;
  6931. }
  6932. if (!afe_get_sp_th_vi_ftm_data(&th_vi)) {
  6933. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6934. pr_debug("%s: ftm param status = %d\n",
  6935. __func__, th_vi.param.status[i]);
  6936. if (th_vi.param.status[i] == FBSP_IN_PROGRESS) {
  6937. cal_data->cal_info.status[i] = -EAGAIN;
  6938. } else if (th_vi.param.status[i] == FBSP_SUCCESS) {
  6939. cal_data->cal_info.status[i] = 0;
  6940. cal_data->cal_info.r_dc_q24[i] =
  6941. th_vi.param.dc_res_q24[i];
  6942. cal_data->cal_info.temp_q22[i] =
  6943. th_vi.param.temp_q22[i];
  6944. }
  6945. }
  6946. }
  6947. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  6948. done:
  6949. return ret;
  6950. }
  6951. static int afe_get_cal_sp_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  6952. void *data)
  6953. {
  6954. int i, ret = 0;
  6955. struct audio_cal_type_sp_ex_vi_param *cal_data = data;
  6956. struct afe_sp_ex_vi_get_param ex_vi;
  6957. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  6958. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  6959. cal_data == NULL ||
  6960. data_size != sizeof(*cal_data))
  6961. goto done;
  6962. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6963. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6964. cal_data->cal_info.status[i] = -EINVAL;
  6965. cal_data->cal_info.freq_q20[i] = -1;
  6966. cal_data->cal_info.resis_q24[i] = -1;
  6967. cal_data->cal_info.qmct_q24[i] = -1;
  6968. }
  6969. if (!afe_get_sp_ex_vi_ftm_data(&ex_vi)) {
  6970. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  6971. pr_debug("%s: ftm param status = %d\n",
  6972. __func__, ex_vi.param.status[i]);
  6973. if (ex_vi.param.status[i] == FBSP_IN_PROGRESS) {
  6974. cal_data->cal_info.status[i] = -EAGAIN;
  6975. } else if (ex_vi.param.status[i] == FBSP_SUCCESS) {
  6976. cal_data->cal_info.status[i] = 0;
  6977. cal_data->cal_info.freq_q20[i] =
  6978. ex_vi.param.freq_q20[i];
  6979. cal_data->cal_info.resis_q24[i] =
  6980. ex_vi.param.resis_q24[i];
  6981. cal_data->cal_info.qmct_q24[i] =
  6982. ex_vi.param.qmct_q24[i];
  6983. }
  6984. }
  6985. }
  6986. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  6987. done:
  6988. return ret;
  6989. }
  6990. static int afe_get_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  6991. void *data)
  6992. {
  6993. int ret = 0;
  6994. struct audio_cal_type_fb_spk_prot_status *cal_data = data;
  6995. struct afe_spkr_prot_get_vi_calib calib_resp;
  6996. pr_debug("%s:\n", __func__);
  6997. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  6998. goto done;
  6999. if (cal_data == NULL)
  7000. goto done;
  7001. if (data_size != sizeof(*cal_data))
  7002. goto done;
  7003. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  7004. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_CALIBRATED) {
  7005. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  7006. this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  7007. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  7008. this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  7009. cal_data->cal_info.status = 0;
  7010. } else if (this_afe.prot_cfg.mode ==
  7011. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  7012. /*Call AFE to query the status*/
  7013. cal_data->cal_info.status = -EINVAL;
  7014. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  7015. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  7016. if (!afe_spk_prot_get_calib_data(&calib_resp)) {
  7017. if (calib_resp.res_cfg.th_vi_ca_state ==
  7018. FBSP_IN_PROGRESS)
  7019. cal_data->cal_info.status = -EAGAIN;
  7020. else if (calib_resp.res_cfg.th_vi_ca_state ==
  7021. FBSP_SUCCESS) {
  7022. cal_data->cal_info.status = 0;
  7023. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  7024. calib_resp.res_cfg.r0_cali_q24[SP_V2_SPKR_1];
  7025. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  7026. calib_resp.res_cfg.r0_cali_q24[SP_V2_SPKR_2];
  7027. }
  7028. }
  7029. if (!cal_data->cal_info.status) {
  7030. this_afe.prot_cfg.mode =
  7031. MSM_SPKR_PROT_CALIBRATED;
  7032. this_afe.prot_cfg.r0[SP_V2_SPKR_1] =
  7033. cal_data->cal_info.r0[SP_V2_SPKR_1];
  7034. this_afe.prot_cfg.r0[SP_V2_SPKR_2] =
  7035. cal_data->cal_info.r0[SP_V2_SPKR_2];
  7036. }
  7037. } else {
  7038. /*Indicates calibration data is invalid*/
  7039. cal_data->cal_info.status = -EINVAL;
  7040. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  7041. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  7042. }
  7043. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  7044. __pm_relax(&wl.ws);
  7045. done:
  7046. return ret;
  7047. }
  7048. static int afe_map_cal_data(int32_t cal_type,
  7049. struct cal_block_data *cal_block)
  7050. {
  7051. int ret = 0;
  7052. int cal_index;
  7053. pr_debug("%s:\n", __func__);
  7054. cal_index = get_cal_type_index(cal_type);
  7055. if (cal_index < 0) {
  7056. pr_err("%s: could not get cal index %d!\n",
  7057. __func__, cal_index);
  7058. ret = -EINVAL;
  7059. goto done;
  7060. }
  7061. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  7062. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  7063. cal_block->map_data.map_size);
  7064. atomic_set(&this_afe.mem_map_cal_index, -1);
  7065. if (ret < 0) {
  7066. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  7067. __func__,
  7068. cal_block->map_data.map_size, ret);
  7069. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  7070. __func__,
  7071. &cal_block->cal_data.paddr,
  7072. cal_block->map_data.map_size);
  7073. goto done;
  7074. }
  7075. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  7076. mem_map_cal_handles[cal_index]);
  7077. done:
  7078. return ret;
  7079. }
  7080. static int afe_unmap_cal_data(int32_t cal_type,
  7081. struct cal_block_data *cal_block)
  7082. {
  7083. int ret = 0;
  7084. int cal_index;
  7085. pr_debug("%s:\n", __func__);
  7086. cal_index = get_cal_type_index(cal_type);
  7087. if (cal_index < 0) {
  7088. pr_err("%s: could not get cal index %d!\n",
  7089. __func__, cal_index);
  7090. ret = -EINVAL;
  7091. goto done;
  7092. }
  7093. if (cal_block == NULL) {
  7094. pr_err("%s: Cal block is NULL!\n",
  7095. __func__);
  7096. goto done;
  7097. }
  7098. if (cal_block->map_data.q6map_handle == 0) {
  7099. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  7100. __func__);
  7101. goto done;
  7102. }
  7103. atomic_set(&this_afe.mem_map_cal_handles[cal_index],
  7104. cal_block->map_data.q6map_handle);
  7105. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  7106. ret = afe_cmd_memory_unmap_nowait(
  7107. cal_block->map_data.q6map_handle);
  7108. atomic_set(&this_afe.mem_map_cal_index, -1);
  7109. if (ret < 0) {
  7110. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  7111. __func__, cal_index, ret);
  7112. }
  7113. cal_block->map_data.q6map_handle = 0;
  7114. done:
  7115. return ret;
  7116. }
  7117. static void afe_delete_cal_data(void)
  7118. {
  7119. pr_debug("%s:\n", __func__);
  7120. cal_utils_destroy_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data);
  7121. }
  7122. static int afe_init_cal_data(void)
  7123. {
  7124. int ret = 0;
  7125. struct cal_type_info cal_type_info[] = {
  7126. {{AFE_COMMON_RX_CAL_TYPE,
  7127. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7128. afe_set_cal, NULL, NULL} },
  7129. {afe_map_cal_data, afe_unmap_cal_data,
  7130. cal_utils_match_buf_num} },
  7131. {{AFE_COMMON_TX_CAL_TYPE,
  7132. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7133. afe_set_cal, NULL, NULL} },
  7134. {afe_map_cal_data, afe_unmap_cal_data,
  7135. cal_utils_match_buf_num} },
  7136. {{AFE_LSM_TX_CAL_TYPE,
  7137. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7138. afe_set_cal, NULL, NULL} },
  7139. {afe_map_cal_data, afe_unmap_cal_data,
  7140. cal_utils_match_buf_num} },
  7141. {{AFE_AANC_CAL_TYPE,
  7142. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7143. afe_set_cal, NULL, NULL} },
  7144. {afe_map_cal_data, afe_unmap_cal_data,
  7145. cal_utils_match_buf_num} },
  7146. {{AFE_FB_SPKR_PROT_CAL_TYPE,
  7147. {NULL, NULL, NULL, afe_set_cal_fb_spkr_prot,
  7148. afe_get_cal_fb_spkr_prot, NULL} },
  7149. {NULL, NULL, cal_utils_match_buf_num} },
  7150. {{AFE_HW_DELAY_CAL_TYPE,
  7151. {NULL, NULL, NULL,
  7152. afe_set_cal, NULL, NULL} },
  7153. {NULL, NULL, cal_utils_match_buf_num} },
  7154. {{AFE_SIDETONE_CAL_TYPE,
  7155. {NULL, NULL, NULL,
  7156. afe_set_cal, NULL, NULL} },
  7157. {NULL, NULL, cal_utils_match_buf_num} },
  7158. {{AFE_SIDETONE_IIR_CAL_TYPE,
  7159. {NULL, NULL, NULL,
  7160. afe_set_cal, NULL, NULL} },
  7161. {NULL, NULL, cal_utils_match_buf_num} },
  7162. {{AFE_TOPOLOGY_CAL_TYPE,
  7163. {NULL, NULL, NULL,
  7164. afe_set_cal, NULL, NULL} },
  7165. {NULL, NULL,
  7166. cal_utils_match_buf_num} },
  7167. {{AFE_LSM_TOPOLOGY_CAL_TYPE,
  7168. {NULL, NULL, NULL,
  7169. afe_set_cal, NULL, NULL} },
  7170. {NULL, NULL,
  7171. cal_utils_match_buf_num} },
  7172. {{AFE_CUST_TOPOLOGY_CAL_TYPE,
  7173. {afe_alloc_cal, afe_dealloc_cal, NULL,
  7174. afe_set_cal, NULL, NULL} },
  7175. {afe_map_cal_data, afe_unmap_cal_data,
  7176. cal_utils_match_buf_num} },
  7177. {{AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
  7178. {NULL, NULL, NULL, afe_set_cal_sp_th_vi_ftm_cfg,
  7179. afe_get_cal_sp_th_vi_ftm_param, NULL} },
  7180. {NULL, NULL, cal_utils_match_buf_num} },
  7181. {{AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
  7182. {NULL, NULL, NULL, afe_set_cal_sp_ex_vi_ftm_cfg,
  7183. afe_get_cal_sp_ex_vi_ftm_param, NULL} },
  7184. {NULL, NULL, cal_utils_match_buf_num} },
  7185. };
  7186. pr_debug("%s:\n", __func__);
  7187. ret = cal_utils_create_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data,
  7188. cal_type_info);
  7189. if (ret < 0) {
  7190. pr_err("%s: could not create cal type! %d\n",
  7191. __func__, ret);
  7192. ret = -EINVAL;
  7193. goto err;
  7194. }
  7195. return ret;
  7196. err:
  7197. afe_delete_cal_data();
  7198. return ret;
  7199. }
  7200. int afe_map_rtac_block(struct rtac_cal_block_data *cal_block)
  7201. {
  7202. int result = 0;
  7203. pr_debug("%s:\n", __func__);
  7204. if (cal_block == NULL) {
  7205. pr_err("%s: cal_block is NULL!\n",
  7206. __func__);
  7207. result = -EINVAL;
  7208. goto done;
  7209. }
  7210. if (cal_block->cal_data.paddr == 0) {
  7211. pr_debug("%s: No address to map!\n",
  7212. __func__);
  7213. result = -EINVAL;
  7214. goto done;
  7215. }
  7216. if (cal_block->map_data.map_size == 0) {
  7217. pr_debug("%s: map size is 0!\n",
  7218. __func__);
  7219. result = -EINVAL;
  7220. goto done;
  7221. }
  7222. result = afe_cmd_memory_map(cal_block->cal_data.paddr,
  7223. cal_block->map_data.map_size);
  7224. if (result < 0) {
  7225. pr_err("%s: afe_cmd_memory_map failed for addr = 0x%pK, size = %d, err %d\n",
  7226. __func__, &cal_block->cal_data.paddr,
  7227. cal_block->map_data.map_size, result);
  7228. return result;
  7229. }
  7230. cal_block->map_data.map_handle = this_afe.mmap_handle;
  7231. done:
  7232. return result;
  7233. }
  7234. int afe_unmap_rtac_block(uint32_t *mem_map_handle)
  7235. {
  7236. int result = 0;
  7237. pr_debug("%s:\n", __func__);
  7238. if (mem_map_handle == NULL) {
  7239. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  7240. __func__);
  7241. goto done;
  7242. }
  7243. if (*mem_map_handle == 0) {
  7244. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  7245. __func__);
  7246. goto done;
  7247. }
  7248. result = afe_cmd_memory_unmap(*mem_map_handle);
  7249. if (result) {
  7250. pr_err("%s: AFE memory unmap failed %d, handle 0x%x\n",
  7251. __func__, result, *mem_map_handle);
  7252. goto done;
  7253. } else {
  7254. *mem_map_handle = 0;
  7255. }
  7256. done:
  7257. return result;
  7258. }
  7259. static void afe_release_uevent_data(struct kobject *kobj)
  7260. {
  7261. struct audio_uevent_data *data = container_of(kobj,
  7262. struct audio_uevent_data, kobj);
  7263. kfree(data);
  7264. }
  7265. int __init afe_init(void)
  7266. {
  7267. int i = 0, ret;
  7268. atomic_set(&this_afe.state, 0);
  7269. atomic_set(&this_afe.status, 0);
  7270. atomic_set(&this_afe.mem_map_cal_index, -1);
  7271. this_afe.apr = NULL;
  7272. this_afe.dtmf_gen_rx_portid = -1;
  7273. this_afe.mmap_handle = 0;
  7274. this_afe.vi_tx_port = -1;
  7275. this_afe.vi_rx_port = -1;
  7276. this_afe.prot_cfg.mode = MSM_SPKR_PROT_DISABLED;
  7277. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  7278. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  7279. mutex_init(&this_afe.afe_cmd_lock);
  7280. for (i = 0; i < AFE_MAX_PORTS; i++) {
  7281. this_afe.afe_cal_mode[i] = AFE_CAL_MODE_DEFAULT;
  7282. this_afe.afe_sample_rates[i] = 0;
  7283. this_afe.dev_acdb_id[i] = 0;
  7284. this_afe.island_mode[i] = 0;
  7285. this_afe.vad_cfg[i].is_enable = 0;
  7286. this_afe.vad_cfg[i].pre_roll = 0;
  7287. init_waitqueue_head(&this_afe.wait[i]);
  7288. }
  7289. init_waitqueue_head(&this_afe.wait_wakeup);
  7290. wakeup_source_init(&wl.ws, "spkr-prot");
  7291. ret = afe_init_cal_data();
  7292. if (ret)
  7293. pr_err("%s: could not init cal data! %d\n", __func__, ret);
  7294. config_debug_fs_init();
  7295. this_afe.uevent_data = kzalloc(sizeof(*(this_afe.uevent_data)), GFP_KERNEL);
  7296. if (!this_afe.uevent_data)
  7297. return -ENOMEM;
  7298. /*
  7299. * Set release function to cleanup memory related to kobject
  7300. * before initializing the kobject.
  7301. */
  7302. this_afe.uevent_data->ktype.release = afe_release_uevent_data;
  7303. q6core_init_uevent_data(this_afe.uevent_data, "q6afe_uevent");
  7304. INIT_WORK(&this_afe.afe_dc_work, afe_notify_dc_presence_work_fn);
  7305. INIT_WORK(&this_afe.afe_spdif_work,
  7306. afe_notify_spdif_fmt_update_work_fn);
  7307. this_afe.event_notifier.notifier_call = afe_aud_event_notify;
  7308. msm_aud_evt_blocking_register_client(&this_afe.event_notifier);
  7309. return 0;
  7310. }
  7311. void afe_exit(void)
  7312. {
  7313. if (this_afe.apr) {
  7314. apr_reset(this_afe.apr);
  7315. atomic_set(&this_afe.state, 0);
  7316. this_afe.apr = NULL;
  7317. rtac_set_afe_handle(this_afe.apr);
  7318. }
  7319. q6core_destroy_uevent_data(this_afe.uevent_data);
  7320. afe_delete_cal_data();
  7321. config_debug_fs_exit();
  7322. mutex_destroy(&this_afe.afe_cmd_lock);
  7323. wakeup_source_trash(&wl.ws);
  7324. }
  7325. /*
  7326. * afe_cal_init_hwdep -
  7327. * Initiliaze AFE HW dependent Node
  7328. *
  7329. * @card: pointer to sound card
  7330. *
  7331. */
  7332. int afe_cal_init_hwdep(void *card)
  7333. {
  7334. int ret = 0;
  7335. this_afe.fw_data = kzalloc(sizeof(*(this_afe.fw_data)),
  7336. GFP_KERNEL);
  7337. if (!this_afe.fw_data)
  7338. return -ENOMEM;
  7339. set_bit(Q6AFE_VAD_CORE_CAL, this_afe.fw_data->cal_bit);
  7340. ret = q6afe_cal_create_hwdep(this_afe.fw_data, Q6AFE_HWDEP_NODE, card);
  7341. if (ret < 0) {
  7342. pr_err("%s: couldn't create hwdep for AFE %d\n", __func__, ret);
  7343. return ret;
  7344. }
  7345. return ret;
  7346. }
  7347. EXPORT_SYMBOL(afe_cal_init_hwdep);