q6afe.c 231 KB

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