q6afe.c 325 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/slab.h>
  5. #include <linux/debugfs.h>
  6. #include <linux/kernel.h>
  7. #include <linux/kthread.h>
  8. #include <linux/uaccess.h>
  9. #include <linux/wait.h>
  10. #include <linux/jiffies.h>
  11. #include <linux/sched.h>
  12. #include <linux/delay.h>
  13. #include <dsp/msm_audio_ion.h>
  14. #include <dsp/apr_audio-v2.h>
  15. #include <dsp/audio_cal_utils.h>
  16. #include <dsp/q6afe-v2.h>
  17. #include <dsp/q6audio-v2.h>
  18. #include <dsp/q6common.h>
  19. #include <dsp/q6core.h>
  20. #include <dsp/msm-audio-event-notify.h>
  21. #include <ipc/apr_tal.h>
  22. #include "adsp_err.h"
  23. #include "q6afecal-hwdep.h"
  24. #define WAKELOCK_TIMEOUT 5000
  25. #define AFE_CLK_TOKEN 1024
  26. #define SP_V4_NUM_MAX_SPKRS SP_V2_NUM_MAX_SPKRS
  27. struct afe_avcs_payload_port_mapping {
  28. u16 port_id;
  29. struct avcs_load_unload_modules_payload *payload;
  30. } __packed;
  31. enum {
  32. ENCODER_CASE,
  33. DECODER_CASE,
  34. /* Add new use case here */
  35. MAX_ALLOWED_USE_CASES
  36. };
  37. static struct afe_avcs_payload_port_mapping *pm[MAX_ALLOWED_USE_CASES];
  38. enum {
  39. AFE_COMMON_RX_CAL = 0,
  40. AFE_COMMON_TX_CAL,
  41. AFE_LSM_TX_CAL,
  42. AFE_AANC_CAL,
  43. AFE_FB_SPKR_PROT_CAL,
  44. AFE_HW_DELAY_CAL,
  45. AFE_SIDETONE_CAL,
  46. AFE_SIDETONE_IIR_CAL,
  47. AFE_TOPOLOGY_CAL,
  48. AFE_LSM_TOPOLOGY_CAL,
  49. AFE_CUST_TOPOLOGY_CAL,
  50. AFE_FB_SPKR_PROT_TH_VI_CAL,
  51. AFE_FB_SPKR_PROT_EX_VI_CAL,
  52. AFE_FB_SPKR_PROT_V4_EX_VI_CAL,
  53. MAX_AFE_CAL_TYPES
  54. };
  55. enum fbsp_state {
  56. FBSP_INCORRECT_OP_MODE,
  57. FBSP_INACTIVE,
  58. FBSP_WARMUP,
  59. FBSP_IN_PROGRESS,
  60. FBSP_SUCCESS,
  61. FBSP_FAILED,
  62. MAX_FBSP_STATE
  63. };
  64. static char fbsp_state[MAX_FBSP_STATE][50] = {
  65. [FBSP_INCORRECT_OP_MODE] = "incorrect operation mode",
  66. [FBSP_INACTIVE] = "port not started",
  67. [FBSP_WARMUP] = "waiting for warmup",
  68. [FBSP_IN_PROGRESS] = "in progress state",
  69. [FBSP_SUCCESS] = "success",
  70. [FBSP_FAILED] = "failed"
  71. };
  72. enum v_vali_state {
  73. V_VALI_FAILED,
  74. V_VALI_SUCCESS,
  75. V_VALI_INCORRECT_OP_MODE,
  76. V_VALI_INACTIVE,
  77. V_VALI_WARMUP,
  78. V_VALI_IN_PROGRESS,
  79. MAX_V_VALI_STATE
  80. };
  81. enum {
  82. USE_CALIBRATED_R0TO,
  83. USE_SAFE_R0TO
  84. };
  85. enum {
  86. QUICK_CALIB_DISABLE,
  87. QUICK_CALIB_ENABLE
  88. };
  89. enum {
  90. Q6AFE_MSM_SPKR_PROCESSING = 0,
  91. Q6AFE_MSM_SPKR_CALIBRATION,
  92. Q6AFE_MSM_SPKR_FTM_MODE,
  93. Q6AFE_MSM_SPKR_V_VALI_MODE
  94. };
  95. enum {
  96. APTX_AD_48 = 0,
  97. APTX_AD_44_1 = 1
  98. };
  99. enum {
  100. AFE_MATCHED_PORT_DISABLE,
  101. AFE_MATCHED_PORT_ENABLE
  102. };
  103. enum {
  104. AFE_FBSP_V4_EX_VI_MODE_NORMAL = 0,
  105. AFE_FBSP_V4_EX_VI_MODE_FTM = 1
  106. };
  107. struct wlock {
  108. struct wakeup_source *ws;
  109. };
  110. static struct wlock wl;
  111. struct afe_sp_v4_th_vi_ftm_get_param_resp {
  112. struct afe_sp_v4_gen_get_param_resp gen_resp;
  113. int32_t num_ch;
  114. /* Number of channels for Rx signal.
  115. */
  116. struct afe_sp_v4_channel_ftm_params
  117. ch_ftm_params[SP_V4_NUM_MAX_SPKRS];
  118. } __packed;
  119. struct afe_sp_v4_v_vali_get_param_resp {
  120. struct afe_sp_v4_gen_get_param_resp gen_resp;
  121. int32_t num_ch;
  122. /* Number of channels for Rx signal.
  123. */
  124. struct afe_sp_v4_channel_v_vali_params
  125. ch_v_vali_params[SP_V4_NUM_MAX_SPKRS];
  126. } __packed;
  127. struct afe_sp_v4_ex_vi_ftm_get_param_resp {
  128. struct afe_sp_v4_gen_get_param_resp gen_resp;
  129. int32_t num_ch;
  130. /* Number of channels for Rx signal.
  131. */
  132. struct afe_sp_v4_channel_ex_vi_ftm_params
  133. ch_ex_vi_ftm_params[SP_V4_NUM_MAX_SPKRS];
  134. } __packed;
  135. struct afe_sp_v4_max_log_get_param_resp {
  136. struct afe_sp_v4_gen_get_param_resp gen_resp;
  137. int32_t num_ch;
  138. /* Number of channels for Rx signal.
  139. */
  140. struct afe_sp_v4_channel_tmax_xmax_params
  141. ch_max_params[SP_V4_NUM_MAX_SPKRS];
  142. } __packed;
  143. struct afe_ctl {
  144. void *apr;
  145. atomic_t state;
  146. atomic_t status;
  147. atomic_t clk_state;
  148. atomic_t clk_status;
  149. wait_queue_head_t wait[AFE_MAX_PORTS];
  150. wait_queue_head_t wait_wakeup;
  151. wait_queue_head_t clk_wait;
  152. struct task_struct *task;
  153. wait_queue_head_t lpass_core_hw_wait;
  154. uint32_t lpass_hw_core_client_hdl[AFE_LPASS_CORE_HW_VOTE_MAX];
  155. void (*tx_cb)(uint32_t opcode,
  156. uint32_t token, uint32_t *payload, void *priv);
  157. void (*rx_cb)(uint32_t opcode,
  158. uint32_t token, uint32_t *payload, void *priv);
  159. void *tx_private_data;
  160. void *rx_private_data[NUM_RX_PROXY_PORTS];
  161. uint32_t mmap_handle;
  162. void (*pri_spdif_tx_cb)(uint32_t opcode,
  163. uint32_t token, uint32_t *payload, void *priv);
  164. void (*sec_spdif_tx_cb)(uint32_t opcode,
  165. uint32_t token, uint32_t *payload, void *priv);
  166. void *pri_spdif_tx_private_data;
  167. void *sec_spdif_tx_private_data;
  168. int pri_spdif_config_change;
  169. int sec_spdif_config_change;
  170. struct work_struct afe_spdif_work;
  171. int topology[AFE_MAX_PORTS];
  172. struct cal_type_data *cal_data[MAX_AFE_CAL_TYPES];
  173. atomic_t mem_map_cal_handles[MAX_AFE_CAL_TYPES];
  174. atomic_t mem_map_cal_index;
  175. u32 afe_cal_mode[AFE_MAX_PORTS];
  176. u16 dtmf_gen_rx_portid;
  177. struct audio_cal_info_spk_prot_cfg prot_cfg;
  178. struct afe_spkr_prot_calib_get_resp calib_data;
  179. struct audio_cal_info_sp_th_vi_ftm_cfg th_ftm_cfg;
  180. struct audio_cal_info_sp_th_vi_v_vali_cfg v_vali_cfg;
  181. struct audio_cal_info_sp_ex_vi_ftm_cfg ex_ftm_cfg;
  182. struct afe_sp_th_vi_get_param_resp th_vi_resp;
  183. struct afe_sp_th_vi_v_vali_get_param_resp th_vi_v_vali_resp;
  184. struct afe_sp_ex_vi_get_param_resp ex_vi_resp;
  185. struct afe_sp_rx_tmax_xmax_logging_resp xt_logging_resp;
  186. struct afe_sp_v4_th_vi_calib_resp spv4_calib_data;
  187. struct afe_sp_v4_param_vi_channel_map_cfg v4_ch_map_cfg;
  188. struct afe_sp_v4_th_vi_ftm_get_param_resp spv4_th_vi_ftm_resp;
  189. uint32_t spv4_th_vi_ftm_rcvd_param_size;
  190. struct afe_sp_v4_v_vali_get_param_resp spv4_v_vali_resp;
  191. uint32_t spv4_v_vali_rcvd_param_size;
  192. struct afe_sp_v4_ex_vi_ftm_get_param_resp spv4_ex_vi_ftm_resp;
  193. uint32_t spv4_ex_vi_ftm_rcvd_param_size;
  194. struct afe_sp_v4_max_log_get_param_resp spv4_max_log_resp;
  195. uint32_t spv4_max_log_rcvd_param_size;
  196. struct afe_av_dev_drift_get_param_resp av_dev_drift_resp;
  197. struct afe_doa_tracking_mon_get_param_resp doa_tracking_mon_resp;
  198. int vi_tx_port;
  199. int vi_rx_port;
  200. uint32_t afe_sample_rates[AFE_MAX_PORTS];
  201. struct aanc_data aanc_info;
  202. struct mutex afe_cmd_lock;
  203. struct mutex afe_apr_lock;
  204. struct mutex afe_clk_lock;
  205. int set_custom_topology;
  206. int dev_acdb_id[AFE_MAX_PORTS];
  207. routing_cb rt_cb;
  208. struct audio_uevent_data *uevent_data;
  209. /* cal info for AFE */
  210. struct afe_fw_info *fw_data;
  211. u32 island_mode[AFE_MAX_PORTS];
  212. u32 power_mode[AFE_MAX_PORTS];
  213. struct vad_config vad_cfg[AFE_MAX_PORTS];
  214. struct work_struct afe_dc_work;
  215. struct notifier_block event_notifier;
  216. /* FTM spk params */
  217. uint32_t initial_cal;
  218. uint32_t v_vali_flag;
  219. uint32_t num_spkrs;
  220. };
  221. struct afe_clkinfo_per_port {
  222. u16 port_id; /* AFE port ID */
  223. uint32_t clk_id; /* Clock ID */
  224. uint32_t mclk_src_id; /* MCLK SRC ID */
  225. uint32_t mclk_freq; /* MCLK_FREQ */
  226. };
  227. struct afe_ext_mclk_cb_info {
  228. afe_enable_mclk_and_get_info_cb_func ext_mclk_cb;
  229. void *private_data;
  230. };
  231. static struct afe_clkinfo_per_port clkinfo_per_port[] = {
  232. { AFE_PORT_ID_PRIMARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_PRI_MI2S_IBIT,
  233. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  234. { AFE_PORT_ID_SECONDARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_SEC_MI2S_IBIT,
  235. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  236. { AFE_PORT_ID_TERTIARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_TER_MI2S_IBIT,
  237. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  238. { AFE_PORT_ID_QUATERNARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_QUAD_MI2S_IBIT,
  239. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  240. { AFE_PORT_ID_QUINARY_MI2S_RX, Q6AFE_LPASS_CLK_ID_QUI_MI2S_IBIT,
  241. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  242. { AFE_PORT_ID_SENARY_MI2S_TX, Q6AFE_LPASS_CLK_ID_SEN_MI2S_IBIT,
  243. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  244. { AFE_PORT_ID_PRIMARY_PCM_RX, Q6AFE_LPASS_CLK_ID_PRI_PCM_IBIT,
  245. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  246. { AFE_PORT_ID_SECONDARY_PCM_RX, Q6AFE_LPASS_CLK_ID_SEC_PCM_IBIT,
  247. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  248. { AFE_PORT_ID_TERTIARY_PCM_RX, Q6AFE_LPASS_CLK_ID_TER_PCM_IBIT,
  249. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  250. { AFE_PORT_ID_QUATERNARY_PCM_RX, Q6AFE_LPASS_CLK_ID_QUAD_PCM_IBIT,
  251. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  252. { AFE_PORT_ID_QUINARY_PCM_RX, Q6AFE_LPASS_CLK_ID_QUIN_PCM_IBIT,
  253. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  254. { AFE_PORT_ID_SENARY_PCM_RX, Q6AFE_LPASS_CLK_ID_SEN_PCM_IBIT,
  255. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  256. { AFE_PORT_ID_PRIMARY_TDM_RX, Q6AFE_LPASS_CLK_ID_PRI_TDM_IBIT,
  257. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  258. { AFE_PORT_ID_SECONDARY_TDM_RX, Q6AFE_LPASS_CLK_ID_SEC_TDM_IBIT,
  259. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  260. { AFE_PORT_ID_TERTIARY_TDM_RX, Q6AFE_LPASS_CLK_ID_TER_TDM_IBIT,
  261. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  262. { AFE_PORT_ID_QUATERNARY_TDM_RX, Q6AFE_LPASS_CLK_ID_QUAD_TDM_IBIT,
  263. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  264. { AFE_PORT_ID_QUINARY_TDM_RX, Q6AFE_LPASS_CLK_ID_QUIN_TDM_IBIT,
  265. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  266. { AFE_PORT_ID_PRIMARY_SPDIF_RX,
  267. AFE_CLOCK_SET_CLOCK_ID_PRI_SPDIF_OUTPUT_CORE,
  268. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  269. { AFE_PORT_ID_PRIMARY_SPDIF_TX,
  270. AFE_CLOCK_SET_CLOCK_ID_PRI_SPDIF_INPUT_CORE,
  271. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  272. { AFE_PORT_ID_SECONDARY_SPDIF_RX,
  273. AFE_CLOCK_SET_CLOCK_ID_SEC_SPDIF_OUTPUT_CORE,
  274. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  275. { AFE_PORT_ID_SECONDARY_SPDIF_TX,
  276. AFE_CLOCK_SET_CLOCK_ID_SEC_SPDIF_INPUT_CORE,
  277. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  278. { AFE_PORT_ID_PRIMARY_META_MI2S_RX, Q6AFE_LPASS_CLK_ID_PRI_MI2S_IBIT,
  279. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  280. { AFE_PORT_ID_SECONDARY_META_MI2S_RX, Q6AFE_LPASS_CLK_ID_PRI_MI2S_IBIT,
  281. MCLK_SRC_INT, Q6AFE_EXT_MCLK_FREQ_DEFAULT},
  282. };
  283. static struct afe_ext_mclk_cb_info afe_ext_mclk;
  284. static atomic_t afe_ports_mad_type[SLIMBUS_PORT_LAST - SLIMBUS_0_RX];
  285. static unsigned long afe_configured_cmd;
  286. static struct afe_ctl this_afe;
  287. #define TIMEOUT_MS 1000
  288. #define Q6AFE_MAX_VOLUME 0x3FFF
  289. static int pcm_afe_instance[2];
  290. static int proxy_afe_instance[2];
  291. bool afe_close_done[2] = {true, true};
  292. static bool proxy_afe_started = false;
  293. #define SIZEOF_CFG_CMD(y) \
  294. (sizeof(struct apr_hdr) + sizeof(u16) + (sizeof(struct y)))
  295. static void q6afe_unload_avcs_modules(u16 port_id, int index)
  296. {
  297. int ret = 0;
  298. ret = q6core_avcs_load_unload_modules(pm[index]->payload,
  299. AVCS_UNLOAD_MODULES);
  300. if (ret < 0)
  301. pr_err("%s: avcs module unload failed %d\n", __func__, ret);
  302. kfree(pm[index]->payload);
  303. pm[index]->payload = NULL;
  304. kfree(pm[index]);
  305. pm[index] = NULL;
  306. }
  307. static int q6afe_load_avcs_modules(int num_modules, u16 port_id,
  308. uint32_t use_case, u32 format_id)
  309. {
  310. int i = 0;
  311. int32_t ret = 0;
  312. size_t payload_size = 0, port_struct_size = 0;
  313. struct afe_avcs_payload_port_mapping payload_map;
  314. struct avcs_load_unload_modules_sec_payload sec_payload;
  315. if (num_modules <= 0) {
  316. pr_err("%s: Invalid number of modules to load\n", __func__);
  317. return -EINVAL;
  318. }
  319. for (i = 0; i < MAX_ALLOWED_USE_CASES; i++) {
  320. if (pm[i] == NULL) {
  321. port_struct_size = sizeof(payload_map);
  322. pm[i] = kzalloc(port_struct_size, GFP_KERNEL);
  323. if (!pm[i])
  324. return -ENOMEM;
  325. pm[i]->port_id = port_id;
  326. payload_size = sizeof(uint32_t) + (sizeof(sec_payload)
  327. * num_modules);
  328. pm[i]->payload = kzalloc(payload_size, GFP_KERNEL);
  329. if (!pm[i]->payload) {
  330. kfree(pm[i]);
  331. pm[i] = NULL;
  332. return -ENOMEM;
  333. }
  334. /*
  335. * index 0 : packetizer/de-packetizer
  336. * index 1 : encoder/decoder
  337. */
  338. pm[i]->payload->num_modules = num_modules;
  339. /*
  340. * Remaining fields of payload
  341. * are initialized to zero
  342. */
  343. if (use_case == ENCODER_CASE) {
  344. pm[i]->payload->load_unload_info[0].module_type =
  345. AMDB_MODULE_TYPE_PACKETIZER;
  346. pm[i]->payload->load_unload_info[0].id1 =
  347. AVS_MODULE_ID_PACKETIZER_COP;
  348. pm[i]->payload->load_unload_info[1].module_type =
  349. AMDB_MODULE_TYPE_ENCODER;
  350. pm[i]->payload->load_unload_info[1].id1 =
  351. format_id;
  352. } else if (use_case == DECODER_CASE) {
  353. pm[i]->payload->load_unload_info[0].module_type =
  354. AMDB_MODULE_TYPE_DEPACKETIZER;
  355. pm[i]->payload->load_unload_info[0].id1 =
  356. AVS_MODULE_ID_DEPACKETIZER_COP_V1;
  357. if (format_id == ENC_CODEC_TYPE_LDAC) {
  358. pm[i]->payload->load_unload_info[0].id1 =
  359. AVS_MODULE_ID_DEPACKETIZER_COP;
  360. goto load_unload;
  361. }
  362. pm[i]->payload->load_unload_info[1].module_type =
  363. AMDB_MODULE_TYPE_DECODER;
  364. pm[i]->payload->load_unload_info[1].id1 =
  365. format_id;
  366. } else {
  367. pr_err("%s:load usecase %d not supported\n",
  368. __func__, use_case);
  369. ret = -EINVAL;
  370. goto fail;
  371. }
  372. load_unload:
  373. ret = q6core_avcs_load_unload_modules(pm[i]->payload,
  374. AVCS_LOAD_MODULES);
  375. if (ret < 0) {
  376. pr_err("%s: load failed %d\n", __func__, ret);
  377. goto fail;
  378. }
  379. return 0;
  380. }
  381. }
  382. ret = -EINVAL;
  383. if (i == MAX_ALLOWED_USE_CASES) {
  384. pr_err("%s: Not enough ports available\n", __func__);
  385. return ret;
  386. }
  387. fail:
  388. kfree(pm[i]->payload);
  389. pm[i]->payload = NULL;
  390. kfree(pm[i]);
  391. pm[i] = NULL;
  392. return ret;
  393. }
  394. static int afe_get_cal_hw_delay(int32_t path,
  395. struct audio_cal_hw_delay_entry *entry);
  396. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index);
  397. /**
  398. * afe_register_ext_mclk_cb - register callback for external mclk
  399. *
  400. * @fn - external mclk callback function
  401. * @private_data - external mclk callback specific data
  402. *
  403. * Returns 0 in case of success and -EINVAL for failure
  404. */
  405. int afe_register_ext_mclk_cb(afe_enable_mclk_and_get_info_cb_func fn,
  406. void *private_data)
  407. {
  408. if (fn && private_data) {
  409. afe_ext_mclk.ext_mclk_cb = fn;
  410. afe_ext_mclk.private_data = private_data;
  411. return 0;
  412. }
  413. return -EINVAL;
  414. }
  415. EXPORT_SYMBOL(afe_register_ext_mclk_cb);
  416. /**
  417. * afe_unregister_ext_mclk_cb - unregister external mclk callback
  418. */
  419. void afe_unregister_ext_mclk_cb(void)
  420. {
  421. afe_ext_mclk.ext_mclk_cb = NULL;
  422. afe_ext_mclk.private_data = NULL;
  423. }
  424. EXPORT_SYMBOL(afe_unregister_ext_mclk_cb);
  425. int afe_get_spk_initial_cal(void)
  426. {
  427. return this_afe.initial_cal;
  428. }
  429. void afe_get_spk_r0(int *spk_r0)
  430. {
  431. uint16_t i = 0;
  432. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  433. spk_r0[i] = this_afe.prot_cfg.r0[i];
  434. }
  435. void afe_get_spk_t0(int *spk_t0)
  436. {
  437. uint16_t i = 0;
  438. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  439. spk_t0[i] = this_afe.prot_cfg.t0[i];
  440. }
  441. int afe_get_spk_v_vali_flag(void)
  442. {
  443. return this_afe.v_vali_flag;
  444. }
  445. void afe_get_spk_v_vali_sts(int *spk_v_vali_sts)
  446. {
  447. uint16_t i = 0;
  448. for (; i < SP_V2_NUM_MAX_SPKRS; i++)
  449. spk_v_vali_sts[i] =
  450. this_afe.th_vi_v_vali_resp.param.status[i];
  451. }
  452. void afe_set_spk_initial_cal(int initial_cal)
  453. {
  454. this_afe.initial_cal = initial_cal;
  455. }
  456. void afe_set_spk_v_vali_flag(int v_vali_flag)
  457. {
  458. this_afe.v_vali_flag = v_vali_flag;
  459. }
  460. int afe_get_topology(int port_id)
  461. {
  462. int topology;
  463. int port_index = afe_get_port_index(port_id);
  464. if ((port_index < 0) || (port_index >= AFE_MAX_PORTS)) {
  465. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  466. topology = -EINVAL;
  467. goto done;
  468. }
  469. topology = this_afe.topology[port_index];
  470. done:
  471. return topology;
  472. }
  473. /**
  474. * afe_set_aanc_info -
  475. * Update AFE AANC info
  476. *
  477. * @q6_aanc_info: AFE AANC info params
  478. *
  479. */
  480. void afe_set_aanc_info(struct aanc_data *q6_aanc_info)
  481. {
  482. this_afe.aanc_info.aanc_active = q6_aanc_info->aanc_active;
  483. this_afe.aanc_info.aanc_rx_port = q6_aanc_info->aanc_rx_port;
  484. this_afe.aanc_info.aanc_tx_port = q6_aanc_info->aanc_tx_port;
  485. pr_debug("%s: aanc active is %d rx port is 0x%x, tx port is 0x%x\n",
  486. __func__,
  487. this_afe.aanc_info.aanc_active,
  488. this_afe.aanc_info.aanc_rx_port,
  489. this_afe.aanc_info.aanc_tx_port);
  490. }
  491. EXPORT_SYMBOL(afe_set_aanc_info);
  492. static void afe_callback_debug_print(struct apr_client_data *data)
  493. {
  494. uint32_t *payload;
  495. payload = data->payload;
  496. if (data->payload_size >= 8)
  497. pr_debug("%s: code = 0x%x PL#0[0x%x], PL#1[0x%x], size = %d\n",
  498. __func__, data->opcode, payload[0], payload[1],
  499. data->payload_size);
  500. else if (data->payload_size >= 4)
  501. pr_debug("%s: code = 0x%x PL#0[0x%x], size = %d\n",
  502. __func__, data->opcode, payload[0],
  503. data->payload_size);
  504. else
  505. pr_debug("%s: code = 0x%x, size = %d\n",
  506. __func__, data->opcode, data->payload_size);
  507. }
  508. static void av_dev_drift_afe_cb_handler(uint32_t opcode, uint32_t *payload,
  509. uint32_t payload_size)
  510. {
  511. u32 param_id;
  512. size_t expected_size =
  513. sizeof(u32) + sizeof(struct afe_param_id_dev_timing_stats);
  514. /* Get param ID depending on command type */
  515. param_id = (opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) ? payload[3] :
  516. payload[2];
  517. if (param_id != AFE_PARAM_ID_DEV_TIMING_STATS) {
  518. pr_err("%s: Unrecognized param ID %d\n", __func__, param_id);
  519. return;
  520. }
  521. switch (opcode) {
  522. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  523. expected_size += sizeof(struct param_hdr_v1);
  524. if (payload_size < expected_size) {
  525. pr_err("%s: Error: received size %d, expected size %zu\n",
  526. __func__, payload_size, expected_size);
  527. return;
  528. }
  529. /* Repack response to add IID */
  530. this_afe.av_dev_drift_resp.status = payload[0];
  531. this_afe.av_dev_drift_resp.pdata.module_id = payload[1];
  532. this_afe.av_dev_drift_resp.pdata.instance_id = INSTANCE_ID_0;
  533. this_afe.av_dev_drift_resp.pdata.param_id = payload[2];
  534. this_afe.av_dev_drift_resp.pdata.param_size = payload[3];
  535. memcpy(&this_afe.av_dev_drift_resp.timing_stats, &payload[4],
  536. sizeof(struct afe_param_id_dev_timing_stats));
  537. break;
  538. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  539. expected_size += sizeof(struct param_hdr_v3);
  540. if (payload_size < expected_size) {
  541. pr_err("%s: Error: received size %d, expected size %zu\n",
  542. __func__, payload_size, expected_size);
  543. return;
  544. }
  545. memcpy(&this_afe.av_dev_drift_resp, payload,
  546. sizeof(this_afe.av_dev_drift_resp));
  547. break;
  548. default:
  549. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  550. return;
  551. }
  552. if (!this_afe.av_dev_drift_resp.status) {
  553. atomic_set(&this_afe.state, 0);
  554. } else {
  555. pr_debug("%s: av_dev_drift_resp status: %d\n", __func__,
  556. this_afe.av_dev_drift_resp.status);
  557. atomic_set(&this_afe.state, -1);
  558. }
  559. }
  560. static void doa_tracking_mon_afe_cb_handler(uint32_t opcode, uint32_t *payload,
  561. uint32_t payload_size)
  562. {
  563. size_t expected_size =
  564. sizeof(u32) + sizeof(struct doa_tracking_mon_param);
  565. if (payload[0]) {
  566. atomic_set(&this_afe.status, payload[0]);
  567. atomic_set(&this_afe.state, 0);
  568. pr_err("%s: doa_tracking_mon_resp status: %d payload size %d\n",
  569. __func__, payload[0], payload_size);
  570. return;
  571. }
  572. switch (opcode) {
  573. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  574. expected_size += sizeof(struct param_hdr_v1);
  575. if (payload_size < expected_size) {
  576. pr_err("%s: Error: received size %d, expected size %zu\n",
  577. __func__, payload_size, expected_size);
  578. return;
  579. }
  580. /* Repack response to add IID */
  581. this_afe.doa_tracking_mon_resp.status = payload[0];
  582. this_afe.doa_tracking_mon_resp.pdata.module_id = payload[1];
  583. this_afe.doa_tracking_mon_resp.pdata.instance_id =
  584. INSTANCE_ID_0;
  585. this_afe.doa_tracking_mon_resp.pdata.param_id = payload[2];
  586. this_afe.doa_tracking_mon_resp.pdata.param_size = payload[3];
  587. memcpy(&this_afe.doa_tracking_mon_resp.doa, &payload[4],
  588. sizeof(struct doa_tracking_mon_param));
  589. break;
  590. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  591. expected_size += sizeof(struct param_hdr_v3);
  592. if (payload_size < expected_size) {
  593. pr_err("%s: Error: received size %d, expected size %zu\n",
  594. __func__, payload_size, expected_size);
  595. return;
  596. }
  597. memcpy(&this_afe.doa_tracking_mon_resp, payload,
  598. sizeof(this_afe.doa_tracking_mon_resp));
  599. break;
  600. default:
  601. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  602. return;
  603. }
  604. atomic_set(&this_afe.state, 0);
  605. }
  606. static int32_t sp_make_afe_callback(uint32_t opcode, uint32_t *payload,
  607. uint32_t payload_size)
  608. {
  609. struct param_hdr_v3 param_hdr;
  610. u32 *data_dest = NULL;
  611. u32 *data_start = NULL;
  612. size_t expected_size = sizeof(u32);
  613. uint32_t num_ch = 0;
  614. memset(&param_hdr, 0, sizeof(param_hdr));
  615. /* Set command specific details */
  616. switch (opcode) {
  617. case AFE_PORT_CMDRSP_GET_PARAM_V2:
  618. if (payload_size < (5 * sizeof(uint32_t))) {
  619. pr_err("%s: Error: size %d is less than expected\n",
  620. __func__, payload_size);
  621. return -EINVAL;
  622. }
  623. expected_size += sizeof(struct param_hdr_v1);
  624. param_hdr.module_id = payload[1];
  625. param_hdr.instance_id = INSTANCE_ID_0;
  626. param_hdr.param_id = payload[2];
  627. param_hdr.param_size = payload[3];
  628. data_start = &payload[4];
  629. break;
  630. case AFE_PORT_CMDRSP_GET_PARAM_V3:
  631. if (payload_size < (6 * sizeof(uint32_t))) {
  632. pr_err("%s: Error: size %d is less than expected\n",
  633. __func__, payload_size);
  634. return -EINVAL;
  635. }
  636. expected_size += sizeof(struct param_hdr_v3);
  637. if (payload_size < expected_size) {
  638. pr_err("%s: Error: size %d is less than expected\n",
  639. __func__, payload_size);
  640. return -EINVAL;
  641. }
  642. memcpy(&param_hdr, &payload[1], sizeof(struct param_hdr_v3));
  643. data_start = &payload[5];
  644. break;
  645. default:
  646. pr_err("%s: Unrecognized command %d\n", __func__, opcode);
  647. return -EINVAL;
  648. }
  649. switch (param_hdr.param_id) {
  650. case AFE_PARAM_ID_CALIB_RES_CFG_V2:
  651. expected_size += sizeof(struct asm_calib_res_cfg);
  652. data_dest = (u32 *) &this_afe.calib_data;
  653. break;
  654. case AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS:
  655. expected_size += sizeof(struct afe_sp_th_vi_ftm_params);
  656. data_dest = (u32 *) &this_afe.th_vi_resp;
  657. break;
  658. case AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_PARAMS:
  659. expected_size += sizeof(struct afe_sp_th_vi_v_vali_params);
  660. data_dest = (u32 *) &this_afe.th_vi_v_vali_resp;
  661. break;
  662. case AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS:
  663. expected_size += sizeof(struct afe_sp_ex_vi_ftm_params);
  664. data_dest = (u32 *) &this_afe.ex_vi_resp;
  665. break;
  666. case AFE_PARAM_ID_SP_RX_TMAX_XMAX_LOGGING:
  667. expected_size += sizeof(
  668. struct afe_sp_rx_tmax_xmax_logging_param);
  669. data_dest = (u32 *) &this_afe.xt_logging_resp;
  670. break;
  671. case AFE_PARAM_ID_SP_V4_CALIB_RES_CFG:
  672. expected_size += sizeof(
  673. struct afe_sp_v4_param_th_vi_calib_res_cfg);
  674. data_dest = (u32 *) &this_afe.spv4_calib_data;
  675. break;
  676. case AFE_PARAM_ID_SP_V4_TH_VI_FTM_PARAMS:
  677. num_ch = data_start[0];
  678. this_afe.spv4_th_vi_ftm_rcvd_param_size = param_hdr.param_size;
  679. data_dest = (u32 *)&this_afe.spv4_th_vi_ftm_resp;
  680. expected_size +=
  681. sizeof(struct afe_sp_v4_param_th_vi_ftm_params) +
  682. (num_ch * sizeof(struct afe_sp_v4_channel_ftm_params));
  683. break;
  684. case AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_PARAMS:
  685. num_ch = data_start[0];
  686. this_afe.spv4_v_vali_rcvd_param_size = param_hdr.param_size;
  687. data_dest = (u32 *)&this_afe.spv4_v_vali_resp;
  688. expected_size +=
  689. sizeof(struct afe_sp_v4_param_th_vi_v_vali_params) +
  690. (num_ch *
  691. sizeof(struct afe_sp_v4_channel_v_vali_params));
  692. break;
  693. case AFE_PARAM_ID_SP_V4_EX_VI_FTM_PARAMS:
  694. num_ch = data_start[0];
  695. this_afe.spv4_ex_vi_ftm_rcvd_param_size = param_hdr.param_size;
  696. data_dest = (u32 *)&this_afe.spv4_ex_vi_ftm_resp;
  697. expected_size +=
  698. sizeof(struct afe_sp_v4_param_ex_vi_ftm_params) +
  699. (num_ch * sizeof(struct afe_sp_v4_channel_ex_vi_ftm_params));
  700. break;
  701. case AFE_PARAM_ID_SP_V4_RX_TMAX_XMAX_LOGGING:
  702. num_ch = data_start[0];
  703. this_afe.spv4_max_log_rcvd_param_size = param_hdr.param_size;
  704. data_dest = (u32 *)&this_afe.spv4_max_log_resp;
  705. expected_size +=
  706. sizeof(struct afe_sp_v4_param_tmax_xmax_logging) +
  707. (num_ch * sizeof(struct afe_sp_v4_channel_tmax_xmax_params));
  708. break;
  709. default:
  710. pr_err("%s: Unrecognized param ID %d\n", __func__,
  711. param_hdr.param_id);
  712. return -EINVAL;
  713. }
  714. if (!data_dest)
  715. return -ENOMEM;
  716. if (payload_size < expected_size) {
  717. pr_err(
  718. "%s: Error: received size %d, expected size %zu for param %d\n",
  719. __func__, payload_size, expected_size,
  720. param_hdr.param_id);
  721. return -EINVAL;
  722. }
  723. data_dest[0] = payload[0];
  724. memcpy(&data_dest[1], &param_hdr, sizeof(struct param_hdr_v3));
  725. memcpy(&data_dest[5], data_start, param_hdr.param_size);
  726. if (!data_dest[0]) {
  727. atomic_set(&this_afe.state, 0);
  728. } else {
  729. pr_debug("%s: status: %d", __func__, data_dest[0]);
  730. atomic_set(&this_afe.state, -1);
  731. }
  732. return 0;
  733. }
  734. static void afe_notify_dc_presence(void)
  735. {
  736. pr_debug("%s: DC detected\n", __func__);
  737. msm_aud_evt_notifier_call_chain(MSM_AUD_DC_EVENT, NULL);
  738. schedule_work(&this_afe.afe_dc_work);
  739. }
  740. static void afe_notify_dc_presence_work_fn(struct work_struct *work)
  741. {
  742. int ret = 0;
  743. char event[] = "DC_PRESENCE=TRUE";
  744. ret = q6core_send_uevent(this_afe.uevent_data, event);
  745. if (ret)
  746. pr_err("%s: Send UEvent %s failed :%d\n",
  747. __func__, event, ret);
  748. }
  749. static int afe_aud_event_notify(struct notifier_block *self,
  750. unsigned long action, void *data)
  751. {
  752. switch (action) {
  753. case SWR_WAKE_IRQ_REGISTER:
  754. afe_send_cmd_wakeup_register(data, true);
  755. break;
  756. case SWR_WAKE_IRQ_DEREGISTER:
  757. afe_send_cmd_wakeup_register(data, false);
  758. break;
  759. default:
  760. pr_err("%s: invalid event type: %lu\n", __func__, action);
  761. return -EINVAL;
  762. }
  763. return 0;
  764. }
  765. static void afe_notify_spdif_fmt_update_work_fn(struct work_struct *work)
  766. {
  767. int ret = 0;
  768. char event_pri[] = "PRI_SPDIF_TX=MEDIA_CONFIG_CHANGE";
  769. char event_sec[] = "SEC_SPDIF_TX=MEDIA_CONFIG_CHANGE";
  770. if (this_afe.pri_spdif_config_change) {
  771. this_afe.pri_spdif_config_change = 0;
  772. ret = q6core_send_uevent(this_afe.uevent_data, event_pri);
  773. if (ret)
  774. pr_err("%s: Send UEvent %s failed :%d\n",
  775. __func__, event_pri, ret);
  776. }
  777. if (this_afe.sec_spdif_config_change) {
  778. this_afe.sec_spdif_config_change = 0;
  779. ret = q6core_send_uevent(this_afe.uevent_data, event_sec);
  780. if (ret)
  781. pr_err("%s: Send UEvent %s failed :%d\n",
  782. __func__, event_sec, ret);
  783. }
  784. }
  785. static void afe_notify_spdif_fmt_update(void *payload)
  786. {
  787. struct afe_port_mod_evt_rsp_hdr *evt_pl;
  788. evt_pl = (struct afe_port_mod_evt_rsp_hdr *)payload;
  789. if (evt_pl->port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX)
  790. this_afe.pri_spdif_config_change = 1;
  791. else
  792. this_afe.sec_spdif_config_change = 1;
  793. schedule_work(&this_afe.afe_spdif_work);
  794. }
  795. static bool afe_token_is_valid(uint32_t token)
  796. {
  797. if (token >= AFE_MAX_PORTS) {
  798. pr_err("%s: token %d is invalid.\n", __func__, token);
  799. return false;
  800. }
  801. return true;
  802. }
  803. static int32_t afe_callback(struct apr_client_data *data, void *priv)
  804. {
  805. uint16_t i = 0;
  806. if (!data) {
  807. pr_err("%s: Invalid param data\n", __func__);
  808. return -EINVAL;
  809. }
  810. if (data->opcode == RESET_EVENTS) {
  811. pr_debug("%s: reset event = %d %d apr[%pK]\n",
  812. __func__,
  813. data->reset_event, data->reset_proc, this_afe.apr);
  814. cal_utils_clear_cal_block_q6maps(MAX_AFE_CAL_TYPES,
  815. this_afe.cal_data);
  816. /* Reset the custom topology mode: to resend again to AFE. */
  817. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  818. this_afe.set_custom_topology = 1;
  819. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  820. rtac_clear_mapping(AFE_RTAC_CAL);
  821. if (this_afe.apr) {
  822. apr_reset(this_afe.apr);
  823. atomic_set(&this_afe.state, 0);
  824. this_afe.apr = NULL;
  825. rtac_set_afe_handle(this_afe.apr);
  826. }
  827. /* Reset the core client handle in SSR/PDR use cases */
  828. mutex_lock(&this_afe.afe_cmd_lock);
  829. for (i = 0; i < AFE_LPASS_CORE_HW_VOTE_MAX; i++)
  830. this_afe.lpass_hw_core_client_hdl[i] = 0;
  831. mutex_unlock(&this_afe.afe_cmd_lock);
  832. /*
  833. * Pass reset events to proxy driver, if cb is registered
  834. */
  835. if (this_afe.tx_cb) {
  836. this_afe.tx_cb(data->opcode, data->token,
  837. data->payload,
  838. this_afe.tx_private_data);
  839. this_afe.tx_cb = NULL;
  840. }
  841. for (i = 0; i < NUM_RX_PROXY_PORTS; i++) {
  842. if (this_afe.rx_cb && this_afe.rx_private_data[i]) {
  843. this_afe.rx_cb(data->opcode, data->token,
  844. data->payload,
  845. this_afe.rx_private_data[i]);
  846. }
  847. }
  848. this_afe.rx_cb = NULL;
  849. return 0;
  850. }
  851. afe_callback_debug_print(data);
  852. if (data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V2 ||
  853. data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V3) {
  854. uint32_t *payload = data->payload;
  855. uint32_t param_id;
  856. uint32_t param_id_pos = 0;
  857. if (!payload || (data->token >= AFE_MAX_PORTS)) {
  858. pr_err("%s: Error: size %d payload %pK token %d\n",
  859. __func__, data->payload_size,
  860. payload, data->token);
  861. return -EINVAL;
  862. }
  863. if (rtac_make_afe_callback(data->payload,
  864. data->payload_size))
  865. return 0;
  866. if (data->opcode == AFE_PORT_CMDRSP_GET_PARAM_V3)
  867. param_id_pos = 4;
  868. else
  869. param_id_pos = 3;
  870. if (data->payload_size >= param_id_pos * sizeof(uint32_t))
  871. param_id = payload[param_id_pos - 1];
  872. else {
  873. pr_err("%s: Error: size %d is less than expected\n",
  874. __func__, data->payload_size);
  875. return -EINVAL;
  876. }
  877. if (param_id == AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR) {
  878. doa_tracking_mon_afe_cb_handler(data->opcode,
  879. data->payload, data->payload_size);
  880. } else if (param_id == AFE_PARAM_ID_DEV_TIMING_STATS) {
  881. av_dev_drift_afe_cb_handler(data->opcode, data->payload,
  882. data->payload_size);
  883. } else {
  884. if (sp_make_afe_callback(data->opcode, data->payload,
  885. data->payload_size))
  886. return -EINVAL;
  887. }
  888. if (afe_token_is_valid(data->token))
  889. wake_up(&this_afe.wait[data->token]);
  890. else
  891. return -EINVAL;
  892. } else if (data->opcode == AFE_EVENT_MBHC_DETECTION_SW_WA) {
  893. msm_aud_evt_notifier_call_chain(SWR_WAKE_IRQ_EVENT, NULL);
  894. } else if (data->opcode ==
  895. AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST) {
  896. uint32_t *payload = data->payload;
  897. pr_debug("%s: AFE_CMD_RSP_REMOTE_LPASS_CORE_HW_VOTE_REQUEST handle %d\n",
  898. __func__, payload[0]);
  899. if (data->token < AFE_LPASS_CORE_HW_VOTE_MAX)
  900. this_afe.lpass_hw_core_client_hdl[data->token] =
  901. payload[0];
  902. atomic_set(&this_afe.clk_state, 0);
  903. atomic_set(&this_afe.clk_status, 0);
  904. wake_up(&this_afe.lpass_core_hw_wait);
  905. } else if (data->payload_size) {
  906. uint32_t *payload;
  907. uint16_t port_id = 0;
  908. payload = data->payload;
  909. if (data->opcode == APR_BASIC_RSP_RESULT) {
  910. if (data->payload_size < (2 * sizeof(uint32_t))) {
  911. pr_err("%s: Error: size %d is less than expected\n",
  912. __func__, data->payload_size);
  913. return -EINVAL;
  914. }
  915. pr_debug("%s:opcode = 0x%x cmd = 0x%x status = 0x%x token=%d\n",
  916. __func__, data->opcode,
  917. payload[0], payload[1], data->token);
  918. /* payload[1] contains the error status for response */
  919. if (payload[1] != 0) {
  920. if(data->token == AFE_CLK_TOKEN)
  921. atomic_set(&this_afe.clk_status, payload[1]);
  922. else
  923. atomic_set(&this_afe.status, payload[1]);
  924. pr_err("%s: cmd = 0x%x returned error = 0x%x\n",
  925. __func__, payload[0], payload[1]);
  926. }
  927. switch (payload[0]) {
  928. case AFE_PORT_CMD_SET_PARAM_V2:
  929. case AFE_PORT_CMD_SET_PARAM_V3:
  930. if (rtac_make_afe_callback(payload,
  931. data->payload_size))
  932. return 0;
  933. case AFE_PORT_CMD_DEVICE_STOP:
  934. case AFE_PORT_CMD_DEVICE_START:
  935. case AFE_PSEUDOPORT_CMD_START:
  936. case AFE_PSEUDOPORT_CMD_STOP:
  937. case AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS:
  938. case AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS:
  939. case AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER:
  940. case AFE_PORTS_CMD_DTMF_CTL:
  941. case AFE_SVC_CMD_SET_PARAM:
  942. case AFE_SVC_CMD_SET_PARAM_V2:
  943. case AFE_PORT_CMD_MOD_EVENT_CFG:
  944. if(data->token == AFE_CLK_TOKEN) {
  945. atomic_set(&this_afe.clk_state, 0);
  946. wake_up(&this_afe.clk_wait);
  947. } else {
  948. atomic_set(&this_afe.state, 0);
  949. if (afe_token_is_valid(data->token))
  950. wake_up(&this_afe.wait[data->token]);
  951. else
  952. return -EINVAL;
  953. }
  954. break;
  955. case AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER:
  956. break;
  957. case AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2:
  958. port_id = RT_PROXY_PORT_001_TX;
  959. break;
  960. case AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2:
  961. port_id = data->src_port;
  962. break;
  963. case AFE_CMD_ADD_TOPOLOGIES:
  964. atomic_set(&this_afe.state, 0);
  965. if (afe_token_is_valid(data->token))
  966. wake_up(&this_afe.wait[data->token]);
  967. else
  968. return -EINVAL;
  969. pr_debug("%s: AFE_CMD_ADD_TOPOLOGIES cmd 0x%x\n",
  970. __func__, payload[1]);
  971. break;
  972. case AFE_PORT_CMD_GET_PARAM_V2:
  973. case AFE_PORT_CMD_GET_PARAM_V3:
  974. /*
  975. * Should only come here if there is an APR
  976. * error or malformed APR packet. Otherwise
  977. * response will be returned as
  978. * AFE_PORT_CMDRSP_GET_PARAM_V2/3
  979. */
  980. pr_debug("%s: AFE Get Param opcode 0x%x token 0x%x src %d dest %d\n",
  981. __func__, data->opcode, data->token,
  982. data->src_port, data->dest_port);
  983. if (payload[1] != 0) {
  984. pr_err("%s: AFE Get Param failed with error %d\n",
  985. __func__, payload[1]);
  986. if (rtac_make_afe_callback(
  987. payload,
  988. data->payload_size))
  989. return 0;
  990. }
  991. atomic_set(&this_afe.state, payload[1]);
  992. if (afe_token_is_valid(data->token))
  993. wake_up(&this_afe.wait[data->token]);
  994. else
  995. return -EINVAL;
  996. break;
  997. case AFE_CMD_REMOTE_LPASS_CORE_HW_VOTE_REQUEST:
  998. case AFE_CMD_REMOTE_LPASS_CORE_HW_DEVOTE_REQUEST:
  999. atomic_set(&this_afe.clk_state, 0);
  1000. if (payload[1] != 0)
  1001. atomic_set(&this_afe.clk_status,
  1002. payload[1]);
  1003. wake_up(&this_afe.lpass_core_hw_wait);
  1004. break;
  1005. case AFE_SVC_CMD_EVENT_CFG:
  1006. atomic_set(&this_afe.state, payload[1]);
  1007. wake_up(&this_afe.wait_wakeup);
  1008. break;
  1009. default:
  1010. pr_err("%s: Unknown cmd 0x%x\n", __func__,
  1011. payload[0]);
  1012. break;
  1013. }
  1014. } else if (data->opcode ==
  1015. AFE_SERVICE_CMDRSP_SHARED_MEM_MAP_REGIONS) {
  1016. pr_debug("%s: mmap_handle: 0x%x, cal index %d\n",
  1017. __func__, payload[0],
  1018. atomic_read(&this_afe.mem_map_cal_index));
  1019. if (atomic_read(&this_afe.mem_map_cal_index) != -1)
  1020. atomic_set(&this_afe.mem_map_cal_handles[
  1021. atomic_read(
  1022. &this_afe.mem_map_cal_index)],
  1023. (uint32_t)payload[0]);
  1024. else
  1025. this_afe.mmap_handle = payload[0];
  1026. atomic_set(&this_afe.state, 0);
  1027. if (afe_token_is_valid(data->token))
  1028. wake_up(&this_afe.wait[data->token]);
  1029. else
  1030. return -EINVAL;
  1031. } else if (data->opcode == AFE_EVENT_RT_PROXY_PORT_STATUS) {
  1032. port_id = (uint16_t)(0x0000FFFF & payload[0]);
  1033. } else if (data->opcode == AFE_PORT_MOD_EVENT) {
  1034. u32 flag_dc_presence[2];
  1035. uint32_t *payload = data->payload;
  1036. struct afe_port_mod_evt_rsp_hdr *evt_pl =
  1037. (struct afe_port_mod_evt_rsp_hdr *)payload;
  1038. if (!payload || (data->token >= AFE_MAX_PORTS)) {
  1039. pr_err("%s: Error: size %d payload %pK token %d\n",
  1040. __func__, data->payload_size,
  1041. payload, data->token);
  1042. return -EINVAL;
  1043. }
  1044. if ((evt_pl->module_id == AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI) &&
  1045. (evt_pl->event_id == AFE_PORT_SP_DC_DETECTION_EVENT) &&
  1046. (evt_pl->payload_size == sizeof(flag_dc_presence))) {
  1047. memcpy(&flag_dc_presence,
  1048. (uint8_t *)payload +
  1049. sizeof(struct afe_port_mod_evt_rsp_hdr),
  1050. evt_pl->payload_size);
  1051. if (flag_dc_presence[0] == 1 ||
  1052. flag_dc_presence[1] == 1) {
  1053. afe_notify_dc_presence();
  1054. }
  1055. } else if ((evt_pl->module_id ==
  1056. AFE_MODULE_SPEAKER_PROTECTION_V4_VI) &&
  1057. (evt_pl->event_id ==
  1058. AFE_PORT_SP_DC_DETECTION_EVENT)) {
  1059. bool dc_detected = false;
  1060. uint32_t *num_channels =
  1061. (uint32_t *)((uint8_t *)payload +
  1062. sizeof(struct afe_port_mod_evt_rsp_hdr));
  1063. uint32_t *dc_presence_flag = num_channels + 1;
  1064. for (i = 0; i < *num_channels; i++) {
  1065. if (dc_presence_flag[i] == 1)
  1066. dc_detected = true;
  1067. }
  1068. if (dc_detected)
  1069. afe_notify_dc_presence();
  1070. } else if (evt_pl->port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  1071. if (this_afe.pri_spdif_tx_cb) {
  1072. this_afe.pri_spdif_tx_cb(data->opcode,
  1073. data->token, data->payload,
  1074. this_afe.pri_spdif_tx_private_data);
  1075. }
  1076. afe_notify_spdif_fmt_update(data->payload);
  1077. } else if (evt_pl->port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  1078. if (this_afe.sec_spdif_tx_cb) {
  1079. this_afe.sec_spdif_tx_cb(data->opcode,
  1080. data->token, data->payload,
  1081. this_afe.sec_spdif_tx_private_data);
  1082. }
  1083. afe_notify_spdif_fmt_update(data->payload);
  1084. } else {
  1085. pr_debug("%s: mod ID = 0x%x event_id = 0x%x\n",
  1086. __func__, evt_pl->module_id,
  1087. evt_pl->event_id);
  1088. }
  1089. }
  1090. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  1091. switch (port_id) {
  1092. case RT_PROXY_PORT_001_TX: {
  1093. if (this_afe.tx_cb) {
  1094. this_afe.tx_cb(data->opcode, data->token,
  1095. data->payload,
  1096. this_afe.tx_private_data);
  1097. }
  1098. break;
  1099. }
  1100. case RT_PROXY_PORT_001_RX:
  1101. case RT_PROXY_PORT_002_RX:
  1102. {
  1103. if (this_afe.rx_cb) {
  1104. this_afe.rx_cb(data->opcode, data->token,
  1105. data->payload,
  1106. this_afe.rx_private_data[PORTID_TO_IDX(port_id)]);
  1107. }
  1108. break;
  1109. }
  1110. default:
  1111. pr_debug("%s: default case 0x%x\n", __func__, port_id);
  1112. break;
  1113. }
  1114. }
  1115. return 0;
  1116. }
  1117. /**
  1118. * afe_get_port_type -
  1119. * Retrieve AFE port type whether RX or TX
  1120. *
  1121. * @port_id: AFE Port ID number
  1122. *
  1123. * Returns RX/TX type.
  1124. */
  1125. int afe_get_port_type(u16 port_id)
  1126. {
  1127. int ret = MSM_AFE_PORT_TYPE_RX;
  1128. switch (port_id) {
  1129. case VOICE_RECORD_RX:
  1130. case VOICE_RECORD_TX:
  1131. ret = MSM_AFE_PORT_TYPE_TX;
  1132. break;
  1133. case VOICE_PLAYBACK_TX:
  1134. case VOICE2_PLAYBACK_TX:
  1135. ret = MSM_AFE_PORT_TYPE_RX;
  1136. break;
  1137. default:
  1138. /* Odd numbered ports are TX and Rx are Even numbered */
  1139. if (port_id & 0x1)
  1140. ret = MSM_AFE_PORT_TYPE_TX;
  1141. else
  1142. ret = MSM_AFE_PORT_TYPE_RX;
  1143. break;
  1144. }
  1145. return ret;
  1146. }
  1147. EXPORT_SYMBOL(afe_get_port_type);
  1148. int afe_sizeof_cfg_cmd(u16 port_id)
  1149. {
  1150. int ret_size;
  1151. switch (port_id) {
  1152. case PRIMARY_I2S_RX:
  1153. case PRIMARY_I2S_TX:
  1154. case SECONDARY_I2S_RX:
  1155. case SECONDARY_I2S_TX:
  1156. case MI2S_RX:
  1157. case MI2S_TX:
  1158. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  1159. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  1160. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  1161. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  1162. case AFE_PORT_ID_QUINARY_MI2S_RX:
  1163. case AFE_PORT_ID_QUINARY_MI2S_TX:
  1164. case AFE_PORT_ID_SENARY_MI2S_RX:
  1165. case AFE_PORT_ID_SENARY_MI2S_TX:
  1166. ret_size = SIZEOF_CFG_CMD(afe_param_id_i2s_cfg);
  1167. break;
  1168. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  1169. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  1170. ret_size = SIZEOF_CFG_CMD(afe_param_id_meta_i2s_cfg);
  1171. break;
  1172. case HDMI_RX:
  1173. case HDMI_RX_MS:
  1174. case DISPLAY_PORT_RX:
  1175. ret_size =
  1176. SIZEOF_CFG_CMD(afe_param_id_hdmi_multi_chan_audio_cfg);
  1177. break;
  1178. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  1179. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  1180. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  1181. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  1182. ret_size =
  1183. SIZEOF_CFG_CMD(afe_param_id_spdif_cfg_v2);
  1184. break;
  1185. case SLIMBUS_0_RX:
  1186. case SLIMBUS_0_TX:
  1187. case SLIMBUS_1_RX:
  1188. case SLIMBUS_1_TX:
  1189. case SLIMBUS_2_RX:
  1190. case SLIMBUS_2_TX:
  1191. case SLIMBUS_3_RX:
  1192. case SLIMBUS_3_TX:
  1193. case SLIMBUS_4_RX:
  1194. case SLIMBUS_4_TX:
  1195. case SLIMBUS_5_RX:
  1196. case SLIMBUS_5_TX:
  1197. case SLIMBUS_6_RX:
  1198. case SLIMBUS_6_TX:
  1199. case SLIMBUS_7_RX:
  1200. case SLIMBUS_7_TX:
  1201. case SLIMBUS_8_RX:
  1202. case SLIMBUS_8_TX:
  1203. case SLIMBUS_9_RX:
  1204. case SLIMBUS_9_TX:
  1205. ret_size = SIZEOF_CFG_CMD(afe_param_id_slimbus_cfg);
  1206. break;
  1207. case VOICE_PLAYBACK_TX:
  1208. case VOICE2_PLAYBACK_TX:
  1209. case VOICE_RECORD_RX:
  1210. case VOICE_RECORD_TX:
  1211. ret_size = SIZEOF_CFG_CMD(afe_param_id_pseudo_port_cfg);
  1212. break;
  1213. case RT_PROXY_PORT_001_RX:
  1214. case RT_PROXY_PORT_001_TX:
  1215. case RT_PROXY_PORT_002_RX:
  1216. case RT_PROXY_PORT_002_TX:
  1217. ret_size = SIZEOF_CFG_CMD(afe_param_id_rt_proxy_port_cfg);
  1218. break;
  1219. case AFE_PORT_ID_USB_RX:
  1220. case AFE_PORT_ID_USB_TX:
  1221. ret_size = SIZEOF_CFG_CMD(afe_param_id_usb_audio_cfg);
  1222. break;
  1223. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  1224. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  1225. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  1226. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  1227. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  1228. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  1229. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  1230. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  1231. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  1232. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  1233. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  1234. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  1235. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  1236. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  1237. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  1238. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  1239. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  1240. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  1241. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  1242. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  1243. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  1244. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  1245. ret_size = SIZEOF_CFG_CMD(afe_param_id_cdc_dma_cfg_t);
  1246. break;
  1247. case AFE_PORT_ID_PRIMARY_PCM_RX:
  1248. case AFE_PORT_ID_PRIMARY_PCM_TX:
  1249. case AFE_PORT_ID_SECONDARY_PCM_RX:
  1250. case AFE_PORT_ID_SECONDARY_PCM_TX:
  1251. case AFE_PORT_ID_TERTIARY_PCM_RX:
  1252. case AFE_PORT_ID_TERTIARY_PCM_TX:
  1253. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  1254. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  1255. case AFE_PORT_ID_QUINARY_PCM_RX:
  1256. case AFE_PORT_ID_QUINARY_PCM_TX:
  1257. case AFE_PORT_ID_SENARY_PCM_RX:
  1258. case AFE_PORT_ID_SENARY_PCM_TX:
  1259. default:
  1260. pr_debug("%s: default case 0x%x\n", __func__, port_id);
  1261. ret_size = SIZEOF_CFG_CMD(afe_param_id_pcm_cfg);
  1262. break;
  1263. }
  1264. return ret_size;
  1265. }
  1266. /**
  1267. * afe_q6_interface_prepare -
  1268. * wrapper API to check Q6 AFE registered to APR otherwise registers
  1269. *
  1270. * Returns 0 on success or error on failure.
  1271. */
  1272. int afe_q6_interface_prepare(void)
  1273. {
  1274. int ret = 0;
  1275. pr_debug("%s:\n", __func__);
  1276. if (this_afe.apr == NULL) {
  1277. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  1278. 0xFFFFFFFF, &this_afe);
  1279. if (this_afe.apr == NULL) {
  1280. pr_err("%s: Unable to register AFE\n", __func__);
  1281. ret = -ENETRESET;
  1282. }
  1283. rtac_set_afe_handle(this_afe.apr);
  1284. }
  1285. return ret;
  1286. }
  1287. EXPORT_SYMBOL(afe_q6_interface_prepare);
  1288. /*
  1289. * afe_apr_send_pkt : returns 0 on success, negative otherwise.
  1290. */
  1291. static int afe_apr_send_pkt(void *data, wait_queue_head_t *wait)
  1292. {
  1293. int ret;
  1294. mutex_lock(&this_afe.afe_apr_lock);
  1295. if (wait)
  1296. atomic_set(&this_afe.state, 1);
  1297. atomic_set(&this_afe.status, 0);
  1298. ret = apr_send_pkt(this_afe.apr, data);
  1299. if (ret > 0) {
  1300. if (wait) {
  1301. ret = wait_event_timeout(*wait,
  1302. (atomic_read(&this_afe.state) == 0),
  1303. msecs_to_jiffies(2 * TIMEOUT_MS));
  1304. if (!ret) {
  1305. pr_err_ratelimited("%s: request timedout\n",
  1306. __func__);
  1307. ret = -ETIMEDOUT;
  1308. trace_printk("%s: wait for ADSP response timed out\n",
  1309. __func__);
  1310. } else if (atomic_read(&this_afe.status) > 0) {
  1311. pr_err("%s: DSP returned error[%s]\n", __func__,
  1312. adsp_err_get_err_str(atomic_read(
  1313. &this_afe.status)));
  1314. ret = adsp_err_get_lnx_err_code(
  1315. atomic_read(&this_afe.status));
  1316. } else {
  1317. ret = 0;
  1318. }
  1319. } else {
  1320. ret = 0;
  1321. }
  1322. } else if (ret == 0) {
  1323. pr_err("%s: packet not transmitted\n", __func__);
  1324. /* apr_send_pkt can return 0 when nothing is transmitted */
  1325. ret = -EINVAL;
  1326. }
  1327. pr_debug("%s: leave %d\n", __func__, ret);
  1328. mutex_unlock(&this_afe.afe_apr_lock);
  1329. return ret;
  1330. }
  1331. /*
  1332. * afe_apr_send_clk_pkt : returns 0 on success, negative otherwise.
  1333. */
  1334. static int afe_apr_send_clk_pkt(void *data, wait_queue_head_t *wait)
  1335. {
  1336. int ret;
  1337. if (wait)
  1338. atomic_set(&this_afe.clk_state, 1);
  1339. atomic_set(&this_afe.clk_status, 0);
  1340. ret = apr_send_pkt(this_afe.apr, data);
  1341. if (ret > 0) {
  1342. if (wait) {
  1343. ret = wait_event_timeout(*wait,
  1344. (atomic_read(&this_afe.clk_state) == 0),
  1345. msecs_to_jiffies(2 * TIMEOUT_MS));
  1346. if (!ret) {
  1347. pr_err("%s: timeout\n", __func__);
  1348. ret = -ETIMEDOUT;
  1349. } else if (atomic_read(&this_afe.clk_status) > 0) {
  1350. pr_err("%s: DSP returned error[%s]\n", __func__,
  1351. adsp_err_get_err_str(atomic_read(
  1352. &this_afe.clk_status)));
  1353. ret = adsp_err_get_lnx_err_code(
  1354. atomic_read(&this_afe.clk_status));
  1355. } else {
  1356. ret = 0;
  1357. }
  1358. } else {
  1359. ret = 0;
  1360. }
  1361. } else if (ret == 0) {
  1362. pr_err("%s: packet not transmitted\n", __func__);
  1363. /* apr_send_pkt can return 0 when nothing is transmitted */
  1364. ret = -EINVAL;
  1365. }
  1366. pr_debug("%s: leave %d\n", __func__, ret);
  1367. return ret;
  1368. }
  1369. /* This function shouldn't be called directly. Instead call q6afe_set_params. */
  1370. static int q6afe_set_params_v2(u16 port_id, int index,
  1371. struct mem_mapping_hdr *mem_hdr,
  1372. u8 *packed_param_data, u32 packed_data_size)
  1373. {
  1374. struct afe_port_cmd_set_param_v2 *set_param = NULL;
  1375. uint32_t size = sizeof(struct afe_port_cmd_set_param_v2);
  1376. int rc = 0;
  1377. if (packed_param_data != NULL)
  1378. size += packed_data_size;
  1379. set_param = kzalloc(size, GFP_KERNEL);
  1380. if (set_param == NULL)
  1381. return -ENOMEM;
  1382. set_param->apr_hdr.hdr_field =
  1383. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1384. APR_PKT_VER);
  1385. set_param->apr_hdr.pkt_size = size;
  1386. set_param->apr_hdr.src_port = 0;
  1387. set_param->apr_hdr.dest_port = 0;
  1388. set_param->apr_hdr.token = index;
  1389. set_param->apr_hdr.opcode = AFE_PORT_CMD_SET_PARAM_V2;
  1390. set_param->port_id = port_id;
  1391. if (packed_data_size > U16_MAX) {
  1392. pr_err("%s: Invalid data size for set params V2 %d\n", __func__,
  1393. packed_data_size);
  1394. rc = -EINVAL;
  1395. goto done;
  1396. }
  1397. set_param->payload_size = packed_data_size;
  1398. if (mem_hdr != NULL) {
  1399. set_param->mem_hdr = *mem_hdr;
  1400. } else if (packed_param_data != NULL) {
  1401. memcpy(&set_param->param_data, packed_param_data,
  1402. packed_data_size);
  1403. } else {
  1404. pr_err("%s: Both memory header and param data are NULL\n",
  1405. __func__);
  1406. rc = -EINVAL;
  1407. goto done;
  1408. }
  1409. rc = afe_apr_send_pkt(set_param, &this_afe.wait[index]);
  1410. done:
  1411. kfree(set_param);
  1412. return rc;
  1413. }
  1414. /* This function shouldn't be called directly. Instead call q6afe_set_params. */
  1415. static int q6afe_set_params_v3(u16 port_id, int index,
  1416. struct mem_mapping_hdr *mem_hdr,
  1417. u8 *packed_param_data, u32 packed_data_size)
  1418. {
  1419. struct afe_port_cmd_set_param_v3 *set_param = NULL;
  1420. uint32_t size = sizeof(struct afe_port_cmd_set_param_v3);
  1421. int rc = 0;
  1422. if (packed_param_data != NULL)
  1423. size += packed_data_size;
  1424. set_param = kzalloc(size, GFP_KERNEL);
  1425. if (set_param == NULL)
  1426. return -ENOMEM;
  1427. set_param->apr_hdr.hdr_field =
  1428. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1429. APR_PKT_VER);
  1430. set_param->apr_hdr.pkt_size = size;
  1431. set_param->apr_hdr.src_port = 0;
  1432. set_param->apr_hdr.dest_port = 0;
  1433. set_param->apr_hdr.token = index;
  1434. set_param->apr_hdr.opcode = AFE_PORT_CMD_SET_PARAM_V3;
  1435. set_param->port_id = port_id;
  1436. set_param->payload_size = packed_data_size;
  1437. if (mem_hdr != NULL) {
  1438. set_param->mem_hdr = *mem_hdr;
  1439. } else if (packed_param_data != NULL) {
  1440. memcpy(&set_param->param_data, packed_param_data,
  1441. packed_data_size);
  1442. } else {
  1443. pr_err("%s: Both memory header and param data are NULL\n",
  1444. __func__);
  1445. rc = -EINVAL;
  1446. goto done;
  1447. }
  1448. rc = afe_apr_send_pkt(set_param, &this_afe.wait[index]);
  1449. done:
  1450. kfree(set_param);
  1451. return rc;
  1452. }
  1453. static int q6afe_set_params(u16 port_id, int index,
  1454. struct mem_mapping_hdr *mem_hdr,
  1455. u8 *packed_param_data, u32 packed_data_size)
  1456. {
  1457. int ret = 0;
  1458. ret = afe_q6_interface_prepare();
  1459. if (ret != 0) {
  1460. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1461. return ret;
  1462. }
  1463. port_id = q6audio_get_port_id(port_id);
  1464. ret = q6audio_validate_port(port_id);
  1465. if (ret < 0) {
  1466. pr_err("%s: Not a valid port id = 0x%x ret %d\n", __func__,
  1467. port_id, ret);
  1468. return -EINVAL;
  1469. }
  1470. if (index < 0 || index >= AFE_MAX_PORTS) {
  1471. pr_err("%s: AFE port index[%d] invalid\n", __func__, index);
  1472. return -EINVAL;
  1473. }
  1474. if (q6common_is_instance_id_supported())
  1475. return q6afe_set_params_v3(port_id, index, mem_hdr,
  1476. packed_param_data, packed_data_size);
  1477. else
  1478. return q6afe_set_params_v2(port_id, index, mem_hdr,
  1479. packed_param_data, packed_data_size);
  1480. }
  1481. static int q6afe_pack_and_set_param_in_band(u16 port_id, int index,
  1482. struct param_hdr_v3 param_hdr,
  1483. u8 *param_data)
  1484. {
  1485. u8 *packed_param_data = NULL;
  1486. int packed_data_size = sizeof(union param_hdrs) + param_hdr.param_size;
  1487. int ret;
  1488. packed_param_data = kzalloc(packed_data_size, GFP_KERNEL);
  1489. if (packed_param_data == NULL)
  1490. return -ENOMEM;
  1491. ret = q6common_pack_pp_params(packed_param_data, &param_hdr, param_data,
  1492. &packed_data_size);
  1493. if (ret) {
  1494. pr_err("%s: Failed to pack param header and data, error %d\n",
  1495. __func__, ret);
  1496. goto fail_cmd;
  1497. }
  1498. ret = q6afe_set_params(port_id, index, NULL, packed_param_data,
  1499. packed_data_size);
  1500. fail_cmd:
  1501. kfree(packed_param_data);
  1502. return ret;
  1503. }
  1504. static int q6afe_set_aanc_level(void)
  1505. {
  1506. struct param_hdr_v3 param_hdr;
  1507. struct afe_param_id_aanc_noise_reduction aanc_noise_level;
  1508. int ret = 0;
  1509. uint16_t tx_port = 0;
  1510. if (!this_afe.aanc_info.aanc_active)
  1511. return -EINVAL;
  1512. pr_debug("%s: level: %d\n", __func__, this_afe.aanc_info.level);
  1513. memset(&aanc_noise_level, 0, sizeof(aanc_noise_level));
  1514. aanc_noise_level.minor_version = 1;
  1515. aanc_noise_level.ad_beta = this_afe.aanc_info.level;
  1516. memset(&param_hdr, 0, sizeof(param_hdr));
  1517. param_hdr.module_id = AFE_MODULE_AANC;
  1518. param_hdr.instance_id = INSTANCE_ID_0;
  1519. param_hdr.param_id = AFE_PARAM_ID_AANC_NOISE_REDUCTION;
  1520. param_hdr.param_size = sizeof(struct afe_param_id_aanc_noise_reduction);
  1521. tx_port = this_afe.aanc_info.aanc_tx_port;
  1522. ret = q6afe_pack_and_set_param_in_band(tx_port,
  1523. q6audio_get_port_index(tx_port),
  1524. param_hdr,
  1525. (u8 *) &aanc_noise_level);
  1526. if (ret)
  1527. pr_err("%s: AANC noise level enable failed for tx_port 0x%x ret %d\n",
  1528. __func__, tx_port, ret);
  1529. return ret;
  1530. }
  1531. /**
  1532. * afe_set_aanc_noise_level - controls aanc noise reduction strength
  1533. *
  1534. * @level: Noise level to be controlled
  1535. *
  1536. * Returns 0 on success or error on failure.
  1537. */
  1538. int afe_set_aanc_noise_level(int level)
  1539. {
  1540. int ret = 0;
  1541. if (this_afe.aanc_info.level == level)
  1542. return ret;
  1543. mutex_lock(&this_afe.afe_cmd_lock);
  1544. this_afe.aanc_info.level = level;
  1545. ret = q6afe_set_aanc_level();
  1546. mutex_unlock(&this_afe.afe_cmd_lock);
  1547. return ret;
  1548. }
  1549. EXPORT_SYMBOL(afe_set_aanc_noise_level);
  1550. /* This function shouldn't be called directly. Instead call q6afe_get_param. */
  1551. static int q6afe_get_params_v2(u16 port_id, int index,
  1552. struct mem_mapping_hdr *mem_hdr,
  1553. struct param_hdr_v3 *param_hdr)
  1554. {
  1555. struct afe_port_cmd_get_param_v2 afe_get_param;
  1556. u32 param_size = param_hdr->param_size;
  1557. memset(&afe_get_param, 0, sizeof(afe_get_param));
  1558. afe_get_param.apr_hdr.hdr_field =
  1559. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1560. APR_PKT_VER);
  1561. afe_get_param.apr_hdr.pkt_size = sizeof(afe_get_param);
  1562. afe_get_param.apr_hdr.src_port = 0;
  1563. afe_get_param.apr_hdr.dest_port = 0;
  1564. afe_get_param.apr_hdr.token = index;
  1565. afe_get_param.apr_hdr.opcode = AFE_PORT_CMD_GET_PARAM_V2;
  1566. afe_get_param.port_id = port_id;
  1567. afe_get_param.payload_size = sizeof(struct param_hdr_v1) + param_size;
  1568. if (mem_hdr != NULL)
  1569. afe_get_param.mem_hdr = *mem_hdr;
  1570. /* Set MID and PID in command */
  1571. afe_get_param.module_id = param_hdr->module_id;
  1572. afe_get_param.param_id = param_hdr->param_id;
  1573. /* Set param header in payload */
  1574. afe_get_param.param_hdr.module_id = param_hdr->module_id;
  1575. afe_get_param.param_hdr.param_id = param_hdr->param_id;
  1576. afe_get_param.param_hdr.param_size = param_size;
  1577. return afe_apr_send_pkt(&afe_get_param, &this_afe.wait[index]);
  1578. }
  1579. /* This function shouldn't be called directly. Instead call q6afe_get_param. */
  1580. static int q6afe_get_params_v3(u16 port_id, int index,
  1581. struct mem_mapping_hdr *mem_hdr,
  1582. struct param_hdr_v3 *param_hdr)
  1583. {
  1584. struct afe_port_cmd_get_param_v3 afe_get_param;
  1585. memset(&afe_get_param, 0, sizeof(afe_get_param));
  1586. afe_get_param.apr_hdr.hdr_field =
  1587. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1588. APR_PKT_VER);
  1589. afe_get_param.apr_hdr.pkt_size = sizeof(afe_get_param);
  1590. afe_get_param.apr_hdr.src_port = 0;
  1591. afe_get_param.apr_hdr.dest_port = 0;
  1592. afe_get_param.apr_hdr.token = index;
  1593. afe_get_param.apr_hdr.opcode = AFE_PORT_CMD_GET_PARAM_V3;
  1594. afe_get_param.port_id = port_id;
  1595. if (mem_hdr != NULL)
  1596. afe_get_param.mem_hdr = *mem_hdr;
  1597. /* Set param header in command, no payload in V3 */
  1598. afe_get_param.param_hdr = *param_hdr;
  1599. return afe_apr_send_pkt(&afe_get_param, &this_afe.wait[index]);
  1600. }
  1601. /*
  1602. * Calling functions copy param data directly from this_afe. Do not copy data
  1603. * back to caller here.
  1604. */
  1605. static int q6afe_get_params(u16 port_id, struct mem_mapping_hdr *mem_hdr,
  1606. struct param_hdr_v3 *param_hdr)
  1607. {
  1608. int index;
  1609. int ret;
  1610. ret = afe_q6_interface_prepare();
  1611. if (ret != 0) {
  1612. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1613. return ret;
  1614. }
  1615. port_id = q6audio_get_port_id(port_id);
  1616. ret = q6audio_validate_port(port_id);
  1617. if (ret < 0) {
  1618. pr_err("%s: Not a valid port id = 0x%x ret %d\n", __func__,
  1619. port_id, ret);
  1620. return -EINVAL;
  1621. }
  1622. index = q6audio_get_port_index(port_id);
  1623. if (index < 0 || index >= AFE_MAX_PORTS) {
  1624. pr_err("%s: AFE port index[%d] invalid\n", __func__, index);
  1625. return -EINVAL;
  1626. }
  1627. if (q6common_is_instance_id_supported())
  1628. return q6afe_get_params_v3(port_id, index, NULL, param_hdr);
  1629. else
  1630. return q6afe_get_params_v2(port_id, index, NULL, param_hdr);
  1631. }
  1632. /*
  1633. * This function shouldn't be called directly. Instead call
  1634. * q6afe_svc_set_params.
  1635. */
  1636. static int q6afe_svc_set_params_v1(int index, struct mem_mapping_hdr *mem_hdr,
  1637. u8 *packed_param_data, u32 packed_data_size)
  1638. {
  1639. struct afe_svc_cmd_set_param_v1 *svc_set_param = NULL;
  1640. uint32_t size = sizeof(struct afe_svc_cmd_set_param_v1);
  1641. int rc = 0;
  1642. if (packed_param_data != NULL)
  1643. size += packed_data_size;
  1644. svc_set_param = kzalloc(size, GFP_KERNEL);
  1645. if (svc_set_param == NULL)
  1646. return -ENOMEM;
  1647. svc_set_param->apr_hdr.hdr_field =
  1648. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1649. APR_PKT_VER);
  1650. svc_set_param->apr_hdr.pkt_size = size;
  1651. svc_set_param->apr_hdr.src_port = 0;
  1652. svc_set_param->apr_hdr.dest_port = 0;
  1653. svc_set_param->apr_hdr.token = index;
  1654. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  1655. svc_set_param->payload_size = packed_data_size;
  1656. if (mem_hdr != NULL) {
  1657. /* Out of band case. */
  1658. svc_set_param->mem_hdr = *mem_hdr;
  1659. } else if (packed_param_data != NULL) {
  1660. /* In band case. */
  1661. memcpy(&svc_set_param->param_data, packed_param_data,
  1662. packed_data_size);
  1663. } else {
  1664. pr_err("%s: Both memory header and param data are NULL\n",
  1665. __func__);
  1666. rc = -EINVAL;
  1667. goto done;
  1668. }
  1669. rc = afe_apr_send_pkt(svc_set_param, &this_afe.wait[index]);
  1670. done:
  1671. kfree(svc_set_param);
  1672. return rc;
  1673. }
  1674. /*
  1675. * This function shouldn't be called directly. Instead call
  1676. * q6afe_svc_set_params.
  1677. */
  1678. static int q6afe_svc_set_params_v2(int index, struct mem_mapping_hdr *mem_hdr,
  1679. u8 *packed_param_data, u32 packed_data_size)
  1680. {
  1681. struct afe_svc_cmd_set_param_v2 *svc_set_param = NULL;
  1682. uint16_t size = sizeof(struct afe_svc_cmd_set_param_v2);
  1683. int rc = 0;
  1684. if (packed_param_data != NULL)
  1685. size += packed_data_size;
  1686. svc_set_param = kzalloc(size, GFP_KERNEL);
  1687. if (svc_set_param == NULL)
  1688. return -ENOMEM;
  1689. svc_set_param->apr_hdr.hdr_field =
  1690. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1691. APR_PKT_VER);
  1692. svc_set_param->apr_hdr.pkt_size = size;
  1693. svc_set_param->apr_hdr.src_port = 0;
  1694. svc_set_param->apr_hdr.dest_port = 0;
  1695. svc_set_param->apr_hdr.token = index;
  1696. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM_V2;
  1697. svc_set_param->payload_size = packed_data_size;
  1698. if (mem_hdr != NULL) {
  1699. /* Out of band case. */
  1700. svc_set_param->mem_hdr = *mem_hdr;
  1701. } else if (packed_param_data != NULL) {
  1702. /* In band case. */
  1703. memcpy(&svc_set_param->param_data, packed_param_data,
  1704. packed_data_size);
  1705. } else {
  1706. pr_err("%s: Both memory header and param data are NULL\n",
  1707. __func__);
  1708. rc = -EINVAL;
  1709. goto done;
  1710. }
  1711. rc = afe_apr_send_pkt(svc_set_param, &this_afe.wait[index]);
  1712. done:
  1713. kfree(svc_set_param);
  1714. return rc;
  1715. }
  1716. /*
  1717. * This function shouldn't be called directly. Instead call
  1718. * q6afe_clk_set_params.
  1719. */
  1720. static int q6afe_clk_set_params_v1(int index, struct mem_mapping_hdr *mem_hdr,
  1721. u8 *packed_param_data, u32 packed_data_size)
  1722. {
  1723. struct afe_svc_cmd_set_param_v1 *svc_set_param = NULL;
  1724. uint32_t size = sizeof(struct afe_svc_cmd_set_param_v1);
  1725. int rc = 0;
  1726. if (packed_param_data != NULL)
  1727. size += packed_data_size;
  1728. svc_set_param = kzalloc(size, GFP_KERNEL);
  1729. if (svc_set_param == NULL)
  1730. return -ENOMEM;
  1731. svc_set_param->apr_hdr.hdr_field =
  1732. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1733. APR_PKT_VER);
  1734. svc_set_param->apr_hdr.pkt_size = size;
  1735. svc_set_param->apr_hdr.src_port = 0;
  1736. svc_set_param->apr_hdr.dest_port = 0;
  1737. svc_set_param->apr_hdr.token = AFE_CLK_TOKEN;
  1738. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM;
  1739. svc_set_param->payload_size = packed_data_size;
  1740. if (mem_hdr != NULL) {
  1741. /* Out of band case. */
  1742. svc_set_param->mem_hdr = *mem_hdr;
  1743. } else if (packed_param_data != NULL) {
  1744. /* In band case. */
  1745. memcpy(&svc_set_param->param_data, packed_param_data,
  1746. packed_data_size);
  1747. } else {
  1748. pr_err("%s: Both memory header and param data are NULL\n",
  1749. __func__);
  1750. rc = -EINVAL;
  1751. goto done;
  1752. }
  1753. rc = afe_apr_send_clk_pkt(svc_set_param, &this_afe.clk_wait);
  1754. done:
  1755. kfree(svc_set_param);
  1756. return rc;
  1757. }
  1758. /*
  1759. * This function shouldn't be called directly. Instead call
  1760. * q6afe_clk_set_params.
  1761. */
  1762. static int q6afe_clk_set_params_v2(int index, struct mem_mapping_hdr *mem_hdr,
  1763. u8 *packed_param_data, u32 packed_data_size)
  1764. {
  1765. struct afe_svc_cmd_set_param_v2 *svc_set_param = NULL;
  1766. uint16_t size = sizeof(struct afe_svc_cmd_set_param_v2);
  1767. int rc = 0;
  1768. if (packed_param_data != NULL)
  1769. size += packed_data_size;
  1770. svc_set_param = kzalloc(size, GFP_KERNEL);
  1771. if (svc_set_param == NULL)
  1772. return -ENOMEM;
  1773. svc_set_param->apr_hdr.hdr_field =
  1774. APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD, APR_HDR_LEN(APR_HDR_SIZE),
  1775. APR_PKT_VER);
  1776. svc_set_param->apr_hdr.pkt_size = size;
  1777. svc_set_param->apr_hdr.src_port = 0;
  1778. svc_set_param->apr_hdr.dest_port = 0;
  1779. svc_set_param->apr_hdr.token = AFE_CLK_TOKEN;
  1780. svc_set_param->apr_hdr.opcode = AFE_SVC_CMD_SET_PARAM_V2;
  1781. svc_set_param->payload_size = packed_data_size;
  1782. if (mem_hdr != NULL) {
  1783. /* Out of band case. */
  1784. svc_set_param->mem_hdr = *mem_hdr;
  1785. } else if (packed_param_data != NULL) {
  1786. /* In band case. */
  1787. memcpy(&svc_set_param->param_data, packed_param_data,
  1788. packed_data_size);
  1789. } else {
  1790. pr_err("%s: Both memory header and param data are NULL\n",
  1791. __func__);
  1792. rc = -EINVAL;
  1793. goto done;
  1794. }
  1795. rc = afe_apr_send_clk_pkt(svc_set_param, &this_afe.clk_wait);
  1796. done:
  1797. kfree(svc_set_param);
  1798. return rc;
  1799. }
  1800. static int q6afe_clk_set_params(int index, struct mem_mapping_hdr *mem_hdr,
  1801. u8 *packed_param_data, u32 packed_data_size,
  1802. bool is_iid_supported)
  1803. {
  1804. int ret;
  1805. ret = afe_q6_interface_prepare();
  1806. if (ret != 0) {
  1807. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1808. return ret;
  1809. }
  1810. if (is_iid_supported)
  1811. return q6afe_clk_set_params_v2(index, mem_hdr,
  1812. packed_param_data,
  1813. packed_data_size);
  1814. else
  1815. return q6afe_clk_set_params_v1(index, mem_hdr,
  1816. packed_param_data,
  1817. packed_data_size);
  1818. }
  1819. static int q6afe_svc_set_params(int index, struct mem_mapping_hdr *mem_hdr,
  1820. u8 *packed_param_data, u32 packed_data_size,
  1821. bool is_iid_supported)
  1822. {
  1823. int ret;
  1824. ret = afe_q6_interface_prepare();
  1825. if (ret != 0) {
  1826. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  1827. return ret;
  1828. }
  1829. if (is_iid_supported)
  1830. return q6afe_svc_set_params_v2(index, mem_hdr,
  1831. packed_param_data,
  1832. packed_data_size);
  1833. else
  1834. return q6afe_svc_set_params_v1(index, mem_hdr,
  1835. packed_param_data,
  1836. packed_data_size);
  1837. }
  1838. static int q6afe_svc_pack_and_set_param_in_band(int index,
  1839. struct param_hdr_v3 param_hdr,
  1840. u8 *param_data)
  1841. {
  1842. u8 *packed_param_data = NULL;
  1843. u32 packed_data_size =
  1844. sizeof(struct param_hdr_v3) + param_hdr.param_size;
  1845. int ret = 0;
  1846. bool is_iid_supported = q6common_is_instance_id_supported();
  1847. packed_param_data = kzalloc(packed_data_size, GFP_KERNEL);
  1848. if (!packed_param_data)
  1849. return -ENOMEM;
  1850. ret = q6common_pack_pp_params_v2(packed_param_data, &param_hdr,
  1851. param_data, &packed_data_size,
  1852. is_iid_supported);
  1853. if (ret) {
  1854. pr_err("%s: Failed to pack parameter header and data, error %d\n",
  1855. __func__, ret);
  1856. goto done;
  1857. }
  1858. if (param_hdr.module_id == AFE_MODULE_CLOCK_SET)
  1859. ret = q6afe_clk_set_params(index, NULL, packed_param_data,
  1860. packed_data_size, is_iid_supported);
  1861. else
  1862. ret = q6afe_svc_set_params(index, NULL, packed_param_data,
  1863. packed_data_size, is_iid_supported);
  1864. done:
  1865. kfree(packed_param_data);
  1866. return ret;
  1867. }
  1868. static int afe_send_cal_block(u16 port_id, struct cal_block_data *cal_block)
  1869. {
  1870. struct mem_mapping_hdr mem_hdr;
  1871. int payload_size = 0;
  1872. int result = 0;
  1873. memset(&mem_hdr, 0, sizeof(mem_hdr));
  1874. if (!cal_block) {
  1875. pr_debug("%s: No AFE cal to send!\n", __func__);
  1876. result = -EINVAL;
  1877. goto done;
  1878. }
  1879. if (cal_block->cal_data.size <= 0) {
  1880. pr_debug("%s: AFE cal has invalid size!\n", __func__);
  1881. result = -EINVAL;
  1882. goto done;
  1883. }
  1884. payload_size = cal_block->cal_data.size;
  1885. mem_hdr.data_payload_addr_lsw =
  1886. lower_32_bits(cal_block->cal_data.paddr);
  1887. mem_hdr.data_payload_addr_msw =
  1888. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1889. mem_hdr.mem_map_handle = cal_block->map_data.q6map_handle;
  1890. pr_debug("%s: AFE cal sent for device port = 0x%x, cal size = %zd, cal addr = 0x%pK\n",
  1891. __func__, port_id,
  1892. cal_block->cal_data.size, &cal_block->cal_data.paddr);
  1893. result = q6afe_set_params(port_id, q6audio_get_port_index(port_id),
  1894. &mem_hdr, NULL, payload_size);
  1895. if (result)
  1896. pr_err("%s: AFE cal for port 0x%x failed %d\n",
  1897. __func__, port_id, result);
  1898. done:
  1899. return result;
  1900. }
  1901. static int afe_send_custom_topology_block(struct cal_block_data *cal_block)
  1902. {
  1903. int result = 0;
  1904. int index = 0;
  1905. struct cmd_set_topologies afe_cal;
  1906. if (!cal_block) {
  1907. pr_err("%s: No AFE SVC cal to send!\n", __func__);
  1908. return -EINVAL;
  1909. }
  1910. if (cal_block->cal_data.size <= 0) {
  1911. pr_err("%s: AFE SVC cal has invalid size: %zd!\n",
  1912. __func__, cal_block->cal_data.size);
  1913. return -EINVAL;
  1914. }
  1915. afe_cal.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  1916. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  1917. afe_cal.hdr.pkt_size = sizeof(afe_cal);
  1918. afe_cal.hdr.src_port = 0;
  1919. afe_cal.hdr.dest_port = 0;
  1920. afe_cal.hdr.token = index;
  1921. afe_cal.hdr.opcode = AFE_CMD_ADD_TOPOLOGIES;
  1922. afe_cal.payload_size = cal_block->cal_data.size;
  1923. afe_cal.payload_addr_lsw =
  1924. lower_32_bits(cal_block->cal_data.paddr);
  1925. afe_cal.payload_addr_msw =
  1926. msm_audio_populate_upper_32_bits(cal_block->cal_data.paddr);
  1927. afe_cal.mem_map_handle = cal_block->map_data.q6map_handle;
  1928. pr_debug("%s:cmd_id:0x%x calsize:%zd memmap_hdl:0x%x caladdr:0x%pK",
  1929. __func__, AFE_CMD_ADD_TOPOLOGIES, cal_block->cal_data.size,
  1930. afe_cal.mem_map_handle, &cal_block->cal_data.paddr);
  1931. result = afe_apr_send_pkt(&afe_cal, &this_afe.wait[index]);
  1932. if (result)
  1933. pr_err("%s: AFE send topology for command 0x%x failed %d\n",
  1934. __func__, AFE_CMD_ADD_TOPOLOGIES, result);
  1935. return result;
  1936. }
  1937. static void afe_send_custom_topology(void)
  1938. {
  1939. struct cal_block_data *cal_block = NULL;
  1940. int cal_index = AFE_CUST_TOPOLOGY_CAL;
  1941. int ret;
  1942. if (this_afe.cal_data[cal_index] == NULL) {
  1943. pr_err("%s: cal_index %d not allocated!\n",
  1944. __func__, cal_index);
  1945. return;
  1946. }
  1947. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  1948. if (!this_afe.set_custom_topology)
  1949. goto unlock;
  1950. this_afe.set_custom_topology = 0;
  1951. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  1952. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  1953. pr_err("%s cal_block not found!!\n", __func__);
  1954. goto unlock;
  1955. }
  1956. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  1957. ret = remap_cal_data(cal_block, cal_index);
  1958. if (ret) {
  1959. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  1960. __func__, cal_index);
  1961. goto unlock;
  1962. }
  1963. ret = afe_send_custom_topology_block(cal_block);
  1964. if (ret < 0) {
  1965. pr_err("%s: No cal sent for cal_index %d! ret %d\n",
  1966. __func__, cal_index, ret);
  1967. goto unlock;
  1968. }
  1969. pr_debug("%s:sent custom topology for AFE\n", __func__);
  1970. unlock:
  1971. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  1972. }
  1973. static int afe_spk_ramp_dn_cfg(int port)
  1974. {
  1975. struct param_hdr_v3 param_info;
  1976. int ret = -EINVAL;
  1977. memset(&param_info, 0, sizeof(param_info));
  1978. if (afe_get_port_type(port) != MSM_AFE_PORT_TYPE_RX) {
  1979. pr_debug("%s: port doesn't match 0x%x\n", __func__, port);
  1980. return 0;
  1981. }
  1982. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_DISABLED ||
  1983. (this_afe.vi_rx_port != port)) {
  1984. pr_debug("%s: spkr protection disabled port 0x%x %d 0x%x\n",
  1985. __func__, port, ret, this_afe.vi_rx_port);
  1986. return 0;
  1987. }
  1988. param_info.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  1989. param_info.instance_id = INSTANCE_ID_0;
  1990. param_info.param_id = AFE_PARAM_ID_FBSP_PTONE_RAMP_CFG;
  1991. param_info.param_size = 0;
  1992. ret = q6afe_pack_and_set_param_in_band(port,
  1993. q6audio_get_port_index(port),
  1994. param_info, NULL);
  1995. if (ret) {
  1996. pr_err("%s: Failed to set speaker ramp duration param, err %d\n",
  1997. __func__, ret);
  1998. goto fail_cmd;
  1999. }
  2000. /* dsp needs atleast 15ms to ramp down pilot tone*/
  2001. usleep_range(15000, 15010);
  2002. ret = 0;
  2003. fail_cmd:
  2004. pr_debug("%s: config.pdata.param_id 0x%x status %d\n", __func__,
  2005. param_info.param_id, ret);
  2006. return ret;
  2007. }
  2008. /**
  2009. * afe_send_cps_config -
  2010. * to send cps speaker protection configuration
  2011. *
  2012. * @src_port: source port to send configuration to
  2013. * @cps_config: cps speaker protection v4 configuration
  2014. * @param_size: size of payload
  2015. *
  2016. * Returns 0 on success or error value on failure.
  2017. */
  2018. int afe_send_cps_config(int src_port,
  2019. struct afe_cps_hw_intf_cfg *cps_config,
  2020. int param_size)
  2021. {
  2022. struct param_hdr_v3 param_info;
  2023. int ret = -EINVAL;
  2024. u8 *packed_payload = NULL;
  2025. int cpy_size = 0;
  2026. ret = q6audio_validate_port(src_port);
  2027. if (ret < 0) {
  2028. pr_err("%s: Invalid src port 0x%x ret %d", __func__,
  2029. src_port, ret);
  2030. return -EINVAL;
  2031. }
  2032. packed_payload = kzalloc(param_size, GFP_KERNEL);
  2033. if (packed_payload == NULL)
  2034. return -ENOMEM;
  2035. cpy_size = sizeof(struct afe_cps_hw_intf_cfg) -
  2036. sizeof(cps_config->spkr_dep_cfg);
  2037. memcpy(packed_payload, cps_config, cpy_size);
  2038. memcpy(packed_payload + cpy_size, cps_config->spkr_dep_cfg,
  2039. sizeof(struct lpass_swr_spkr_dep_cfg_t)
  2040. * cps_config->hw_reg_cfg.num_spkr);
  2041. memset(&param_info, 0, sizeof(param_info));
  2042. mutex_lock(&this_afe.afe_cmd_lock);
  2043. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_RX;
  2044. param_info.instance_id = INSTANCE_ID_0;
  2045. param_info.param_id = AFE_PARAM_ID_CPS_LPASS_HW_INTF_CFG;
  2046. param_info.param_size = param_size;
  2047. ret = q6afe_pack_and_set_param_in_band(src_port,
  2048. q6audio_get_port_index(src_port),
  2049. param_info, packed_payload);
  2050. if (ret)
  2051. pr_err("%s: port = 0x%x param = 0x%x failed %d\n", __func__,
  2052. src_port, param_info.param_id, ret);
  2053. mutex_unlock(&this_afe.afe_cmd_lock);
  2054. pr_debug("%s: config.pdata.param_id 0x%x status %d 0x%x\n", __func__,
  2055. param_info.param_id, ret, src_port);
  2056. kfree(packed_payload);
  2057. return ret;
  2058. }
  2059. EXPORT_SYMBOL(afe_send_cps_config);
  2060. static int afe_spk_prot_prepare(int src_port, int dst_port, int param_id,
  2061. union afe_spkr_prot_config *prot_config, uint32_t param_size)
  2062. {
  2063. struct param_hdr_v3 param_info;
  2064. int ret = -EINVAL;
  2065. memset(&param_info, 0, sizeof(param_info));
  2066. ret = q6audio_validate_port(src_port);
  2067. if (ret < 0) {
  2068. pr_err("%s: Invalid src port 0x%x ret %d", __func__, src_port,
  2069. ret);
  2070. ret = -EINVAL;
  2071. goto fail_cmd;
  2072. }
  2073. ret = q6audio_validate_port(dst_port);
  2074. if (ret < 0) {
  2075. pr_err("%s: Invalid dst port 0x%x ret %d", __func__,
  2076. dst_port, ret);
  2077. ret = -EINVAL;
  2078. goto fail_cmd;
  2079. }
  2080. switch (param_id) {
  2081. case AFE_PARAM_ID_FBSP_MODE_RX_CFG:
  2082. case AFE_PARAM_ID_SP_RX_LIMITER_TH:
  2083. param_info.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  2084. break;
  2085. case AFE_PARAM_ID_SP_V4_OP_MODE:
  2086. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_RX;
  2087. break;
  2088. case AFE_PARAM_ID_FEEDBACK_PATH_CFG:
  2089. this_afe.vi_tx_port = src_port;
  2090. this_afe.vi_rx_port = dst_port;
  2091. param_info.module_id = AFE_MODULE_FEEDBACK;
  2092. break;
  2093. /*
  2094. * AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2 is same as
  2095. * AFE_PARAM_ID_SP_V2_TH_VI_MODE_CFG. V_VALI_CFG uses
  2096. * same module TH_VI.
  2097. */
  2098. case AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2:
  2099. case AFE_PARAM_ID_SP_V2_TH_VI_FTM_CFG:
  2100. case AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_CFG:
  2101. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  2102. break;
  2103. case AFE_PARAM_ID_SP_V2_EX_VI_MODE_CFG:
  2104. case AFE_PARAM_ID_SP_V2_EX_VI_FTM_CFG:
  2105. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  2106. break;
  2107. case AFE_PARAM_ID_SP_V4_VI_CHANNEL_MAP_CFG:
  2108. case AFE_PARAM_ID_SP_V4_VI_OP_MODE_CFG:
  2109. case AFE_PARAM_ID_SP_V4_VI_R0T0_CFG:
  2110. case AFE_PARAM_ID_SP_V4_TH_VI_FTM_CFG:
  2111. case AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_CFG:
  2112. case AFE_PARAM_ID_SP_V4_EX_VI_MODE_CFG:
  2113. case AFE_PARAM_ID_SP_V4_EX_VI_FTM_CFG:
  2114. param_info.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  2115. break;
  2116. default:
  2117. pr_err("%s: default case 0x%x\n", __func__, param_id);
  2118. goto fail_cmd;
  2119. }
  2120. param_info.instance_id = INSTANCE_ID_0;
  2121. param_info.param_id = param_id;
  2122. param_info.param_size = param_size;
  2123. ret = q6afe_pack_and_set_param_in_band(src_port,
  2124. q6audio_get_port_index(src_port),
  2125. param_info, (u8 *) prot_config);
  2126. if (ret)
  2127. pr_err("%s: port = 0x%x param = 0x%x failed %d\n", __func__,
  2128. src_port, param_id, ret);
  2129. fail_cmd:
  2130. pr_debug("%s: config.pdata.param_id 0x%x status %d 0x%x\n", __func__,
  2131. param_info.param_id, ret, src_port);
  2132. return ret;
  2133. }
  2134. static int afe_spkr_prot_reg_event_cfg(u16 port_id, uint32_t module_id)
  2135. {
  2136. struct afe_port_cmd_event_cfg *config;
  2137. struct afe_port_cmd_mod_evt_cfg_payload pl;
  2138. int index;
  2139. int ret;
  2140. int num_events = 1;
  2141. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  2142. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  2143. config = kzalloc(cmd_size, GFP_KERNEL);
  2144. if (!config)
  2145. return -ENOMEM;
  2146. index = q6audio_get_port_index(port_id);
  2147. if (index < 0) {
  2148. pr_err("%s: Invalid index number: %d\n", __func__, index);
  2149. ret = -EINVAL;
  2150. goto fail_idx;
  2151. }
  2152. memset(&pl, 0, sizeof(pl));
  2153. pl.module_id = module_id;
  2154. pl.event_id = AFE_PORT_SP_DC_DETECTION_EVENT;
  2155. pl.reg_flag = AFE_MODULE_REGISTER_EVENT_FLAG;
  2156. config->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  2157. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  2158. config->hdr.pkt_size = cmd_size;
  2159. config->hdr.src_port = 0;
  2160. config->hdr.dest_port = 0;
  2161. config->hdr.token = index;
  2162. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  2163. config->port_id = q6audio_get_port_id(port_id);
  2164. config->num_events = num_events;
  2165. config->version = 1;
  2166. memcpy(config->payload, &pl, sizeof(pl));
  2167. ret = afe_apr_send_pkt((uint32_t *) config, &this_afe.wait[index]);
  2168. fail_idx:
  2169. kfree(config);
  2170. return ret;
  2171. }
  2172. static void afe_send_cal_spv4_tx(int port_id)
  2173. {
  2174. union afe_spkr_prot_config afe_spk_config;
  2175. uint32_t size = 0;
  2176. void *tmp_ptr = NULL;
  2177. struct afe_sp_v4_param_th_vi_r0t0_cfg *th_vi_r0t0_cfg = NULL;
  2178. struct afe_sp_v4_channel_r0t0 *ch_r0t0_cfg = NULL;
  2179. struct afe_sp_v4_param_th_vi_ftm_cfg *th_vi_ftm_cfg = NULL;
  2180. struct afe_sp_v4_channel_ftm_cfg *ch_ftm_cfg = NULL;
  2181. struct afe_sp_v4_param_th_vi_v_vali_cfg *th_vi_v_vali_cfg = NULL;
  2182. struct afe_sp_v4_channel_v_vali_cfg *ch_v_vali_cfg = NULL;
  2183. struct afe_sp_v4_param_ex_vi_ftm_cfg *ex_vi_ftm_cfg = NULL;
  2184. struct afe_sp_v4_channel_ex_vi_ftm *ch_ex_vi_ftm_cfg = NULL;
  2185. uint32_t i = 0;
  2186. pr_debug("%s: Entry.. port_id %d\n", __func__, port_id);
  2187. if (this_afe.vi_tx_port == port_id) {
  2188. memcpy(&afe_spk_config.v4_ch_map_cfg, &this_afe.v4_ch_map_cfg,
  2189. sizeof(struct afe_sp_v4_param_vi_channel_map_cfg));
  2190. if (afe_spk_prot_prepare(port_id, this_afe.vi_rx_port,
  2191. AFE_PARAM_ID_SP_V4_VI_CHANNEL_MAP_CFG, &afe_spk_config,
  2192. sizeof(struct afe_sp_v4_param_vi_channel_map_cfg)))
  2193. pr_info("%s: SPKR_CALIB_CHANNEL_MAP_CFG failed\n",
  2194. __func__);
  2195. }
  2196. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL ||
  2197. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  2198. this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL) {
  2199. pr_info("%s: Returning as no cal data cached\n", __func__);
  2200. return;
  2201. }
  2202. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2203. if ((this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED) &&
  2204. (this_afe.vi_tx_port == port_id) &&
  2205. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2206. if (this_afe.prot_cfg.mode ==
  2207. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  2208. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  2209. Q6AFE_MSM_SPKR_CALIBRATION;
  2210. afe_spk_config.v4_vi_op_mode.th_quick_calib_flag =
  2211. this_afe.prot_cfg.quick_calib_flag;
  2212. } else {
  2213. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  2214. Q6AFE_MSM_SPKR_PROCESSING;
  2215. }
  2216. if (this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE)
  2217. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  2218. Q6AFE_MSM_SPKR_FTM_MODE;
  2219. else if (this_afe.v_vali_cfg.mode ==
  2220. MSM_SPKR_PROT_IN_V_VALI_MODE)
  2221. afe_spk_config.v4_vi_op_mode.th_operation_mode =
  2222. Q6AFE_MSM_SPKR_V_VALI_MODE;
  2223. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_NOT_CALIBRATED) {
  2224. struct afe_sp_v4_param_vi_op_mode_cfg *v4_vi_op_mode;
  2225. v4_vi_op_mode = &afe_spk_config.v4_vi_op_mode;
  2226. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_1] =
  2227. USE_CALIBRATED_R0TO;
  2228. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_2] =
  2229. USE_CALIBRATED_R0TO;
  2230. } else {
  2231. struct afe_sp_v4_param_vi_op_mode_cfg *v4_vi_op_mode;
  2232. v4_vi_op_mode = &afe_spk_config.v4_vi_op_mode;
  2233. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_1] =
  2234. USE_SAFE_R0TO;
  2235. v4_vi_op_mode->th_r0t0_selection_flag[SP_V2_SPKR_2] =
  2236. USE_SAFE_R0TO;
  2237. }
  2238. afe_spk_config.v4_vi_op_mode.num_speakers = this_afe.num_spkrs;
  2239. if (afe_spk_prot_prepare(port_id, 0,
  2240. AFE_PARAM_ID_SP_V4_VI_OP_MODE_CFG,
  2241. &afe_spk_config,
  2242. sizeof(struct afe_sp_v4_param_vi_op_mode_cfg)))
  2243. pr_info("%s: SPKR_CALIB_VI_PROC_CFG failed\n",
  2244. __func__);
  2245. size = sizeof(struct afe_sp_v4_param_th_vi_r0t0_cfg) +
  2246. (this_afe.num_spkrs * sizeof(struct afe_sp_v4_channel_r0t0));
  2247. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2248. if (!tmp_ptr) {
  2249. mutex_unlock(
  2250. &this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2251. return;
  2252. }
  2253. memset(tmp_ptr, 0, size);
  2254. th_vi_r0t0_cfg =
  2255. (struct afe_sp_v4_param_th_vi_r0t0_cfg *)tmp_ptr;
  2256. ch_r0t0_cfg =
  2257. (struct afe_sp_v4_channel_r0t0 *)(th_vi_r0t0_cfg + 1);
  2258. th_vi_r0t0_cfg->num_speakers = this_afe.num_spkrs;
  2259. for (i = 0; i < this_afe.num_spkrs; i++) {
  2260. ch_r0t0_cfg[i].r0_cali_q24 =
  2261. (uint32_t) this_afe.prot_cfg.r0[i];
  2262. ch_r0t0_cfg[i].t0_cali_q6 =
  2263. (uint32_t) this_afe.prot_cfg.t0[i];
  2264. }
  2265. if (afe_spk_prot_prepare(port_id, 0,
  2266. AFE_PARAM_ID_SP_V4_VI_R0T0_CFG,
  2267. (union afe_spkr_prot_config *)tmp_ptr, size))
  2268. pr_info("%s: th vi ftm cfg failed\n", __func__);
  2269. kfree(tmp_ptr);
  2270. }
  2271. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2272. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2273. if ((this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2274. (this_afe.vi_tx_port == port_id) &&
  2275. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2276. size = sizeof(struct afe_sp_v4_param_th_vi_ftm_cfg) +
  2277. (this_afe.num_spkrs * sizeof(struct afe_sp_v4_channel_ftm_cfg));
  2278. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2279. if (!tmp_ptr) {
  2280. mutex_unlock(
  2281. &this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2282. return;
  2283. }
  2284. memset(tmp_ptr, 0, size);
  2285. th_vi_ftm_cfg = (struct afe_sp_v4_param_th_vi_ftm_cfg *)tmp_ptr;
  2286. ch_ftm_cfg =
  2287. (struct afe_sp_v4_channel_ftm_cfg *)(th_vi_ftm_cfg+1);
  2288. th_vi_ftm_cfg->num_ch = this_afe.num_spkrs;
  2289. for (i = 0; i < this_afe.num_spkrs; i++) {
  2290. ch_ftm_cfg[i].wait_time_ms =
  2291. this_afe.th_ftm_cfg.wait_time[i];
  2292. ch_ftm_cfg[i].ftm_time_ms =
  2293. this_afe.th_ftm_cfg.ftm_time[i];
  2294. }
  2295. if (afe_spk_prot_prepare(port_id, 0,
  2296. AFE_PARAM_ID_SP_V4_TH_VI_FTM_CFG,
  2297. (union afe_spkr_prot_config *)tmp_ptr, size))
  2298. pr_info("%s: th vi ftm cfg failed\n", __func__);
  2299. kfree(tmp_ptr);
  2300. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2301. } else if ((this_afe.v_vali_cfg.mode ==
  2302. MSM_SPKR_PROT_IN_V_VALI_MODE) &&
  2303. (this_afe.vi_tx_port == port_id)) {
  2304. size = sizeof(struct afe_sp_v4_param_th_vi_v_vali_cfg) +
  2305. (this_afe.num_spkrs *
  2306. sizeof(struct afe_sp_v4_channel_v_vali_cfg));
  2307. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2308. if (!tmp_ptr) {
  2309. mutex_unlock(
  2310. &this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2311. return;
  2312. }
  2313. memset(tmp_ptr, 0, size);
  2314. th_vi_v_vali_cfg =
  2315. (struct afe_sp_v4_param_th_vi_v_vali_cfg *)tmp_ptr;
  2316. ch_v_vali_cfg =
  2317. (struct afe_sp_v4_channel_v_vali_cfg *)(th_vi_v_vali_cfg + 1);
  2318. th_vi_v_vali_cfg->num_ch = this_afe.num_spkrs;
  2319. for (i = 0; i < this_afe.num_spkrs; i++) {
  2320. ch_v_vali_cfg[i].wait_time_ms =
  2321. this_afe.v_vali_cfg.wait_time[i];
  2322. ch_v_vali_cfg[i].vali_time_ms =
  2323. this_afe.v_vali_cfg.vali_time[i];
  2324. }
  2325. if (afe_spk_prot_prepare(port_id, 0,
  2326. AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_CFG,
  2327. (union afe_spkr_prot_config *)tmp_ptr, size))
  2328. pr_info("%s: th vi v-vali cfg failed\n", __func__);
  2329. kfree(tmp_ptr);
  2330. this_afe.v_vali_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2331. }
  2332. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2333. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2334. if ((this_afe.ex_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2335. (this_afe.vi_tx_port == port_id) &&
  2336. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2337. size = sizeof(struct afe_sp_v4_param_ex_vi_ftm_cfg) +
  2338. (this_afe.num_spkrs *
  2339. sizeof(struct afe_sp_v4_channel_ex_vi_ftm));
  2340. tmp_ptr = kzalloc(size, GFP_KERNEL);
  2341. if (!tmp_ptr) {
  2342. mutex_unlock(
  2343. &this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2344. return;
  2345. }
  2346. memset(tmp_ptr, 0, size);
  2347. ex_vi_ftm_cfg = (struct afe_sp_v4_param_ex_vi_ftm_cfg *)tmp_ptr;
  2348. ch_ex_vi_ftm_cfg =
  2349. (struct afe_sp_v4_channel_ex_vi_ftm *)(ex_vi_ftm_cfg + 1);
  2350. afe_spk_config.v4_ex_vi_mode_cfg.operation_mode =
  2351. AFE_FBSP_V4_EX_VI_MODE_FTM;
  2352. if (afe_spk_prot_prepare(port_id, 0,
  2353. AFE_PARAM_ID_SP_V4_EX_VI_MODE_CFG,
  2354. &afe_spk_config,
  2355. sizeof(struct afe_sp_v4_param_ex_vi_mode_cfg)))
  2356. pr_info("%s: ex vi mode cfg failed\n", __func__);
  2357. ex_vi_ftm_cfg->num_ch = this_afe.num_spkrs;
  2358. for (i = 0; i < this_afe.num_spkrs; i++) {
  2359. ch_ex_vi_ftm_cfg[i].wait_time_ms =
  2360. this_afe.ex_ftm_cfg.wait_time[i];
  2361. ch_ex_vi_ftm_cfg[i].ftm_time_ms =
  2362. this_afe.ex_ftm_cfg.ftm_time[i];
  2363. }
  2364. if (afe_spk_prot_prepare(port_id, 0,
  2365. AFE_PARAM_ID_SP_V4_EX_VI_FTM_CFG,
  2366. (union afe_spkr_prot_config *)tmp_ptr, size))
  2367. pr_info("%s: ex vi ftm cfg failed\n", __func__);
  2368. kfree(tmp_ptr);
  2369. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2370. }
  2371. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2372. /* Register for DC detection event if speaker protection is enabled */
  2373. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2374. (this_afe.vi_tx_port == port_id)) {
  2375. afe_spkr_prot_reg_event_cfg(port_id,
  2376. AFE_MODULE_SPEAKER_PROTECTION_V4_VI);
  2377. }
  2378. }
  2379. static void afe_send_cal_spkr_prot_tx(int port_id)
  2380. {
  2381. union afe_spkr_prot_config afe_spk_config;
  2382. if (q6core_get_avcs_api_version_per_service(
  2383. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  2384. afe_send_cal_spv4_tx(port_id);
  2385. return;
  2386. }
  2387. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL ||
  2388. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  2389. this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL)
  2390. return;
  2391. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2392. if ((this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED) &&
  2393. (this_afe.vi_tx_port == port_id)) {
  2394. if (this_afe.prot_cfg.mode ==
  2395. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  2396. afe_spk_config.vi_proc_cfg.operation_mode =
  2397. Q6AFE_MSM_SPKR_CALIBRATION;
  2398. afe_spk_config.vi_proc_cfg.quick_calib_flag =
  2399. this_afe.prot_cfg.quick_calib_flag;
  2400. } else {
  2401. afe_spk_config.vi_proc_cfg.operation_mode =
  2402. Q6AFE_MSM_SPKR_PROCESSING;
  2403. }
  2404. if (this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE)
  2405. afe_spk_config.vi_proc_cfg.operation_mode =
  2406. Q6AFE_MSM_SPKR_FTM_MODE;
  2407. else if (this_afe.v_vali_cfg.mode ==
  2408. MSM_SPKR_PROT_IN_V_VALI_MODE)
  2409. afe_spk_config.vi_proc_cfg.operation_mode =
  2410. Q6AFE_MSM_SPKR_V_VALI_MODE;
  2411. afe_spk_config.vi_proc_cfg.minor_version = 1;
  2412. afe_spk_config.vi_proc_cfg.r0_cali_q24[SP_V2_SPKR_1] =
  2413. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  2414. afe_spk_config.vi_proc_cfg.r0_cali_q24[SP_V2_SPKR_2] =
  2415. (uint32_t) this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  2416. afe_spk_config.vi_proc_cfg.t0_cali_q6[SP_V2_SPKR_1] =
  2417. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_1];
  2418. afe_spk_config.vi_proc_cfg.t0_cali_q6[SP_V2_SPKR_2] =
  2419. (uint32_t) this_afe.prot_cfg.t0[SP_V2_SPKR_2];
  2420. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_NOT_CALIBRATED) {
  2421. struct asm_spkr_calib_vi_proc_cfg *vi_proc_cfg;
  2422. vi_proc_cfg = &afe_spk_config.vi_proc_cfg;
  2423. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_1] =
  2424. USE_CALIBRATED_R0TO;
  2425. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_2] =
  2426. USE_CALIBRATED_R0TO;
  2427. } else {
  2428. struct asm_spkr_calib_vi_proc_cfg *vi_proc_cfg;
  2429. vi_proc_cfg = &afe_spk_config.vi_proc_cfg;
  2430. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_1] =
  2431. USE_SAFE_R0TO;
  2432. vi_proc_cfg->r0_t0_selection_flag[SP_V2_SPKR_2] =
  2433. USE_SAFE_R0TO;
  2434. }
  2435. if (afe_spk_prot_prepare(port_id, 0,
  2436. AFE_PARAM_ID_SPKR_CALIB_VI_PROC_CFG_V2,
  2437. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2438. pr_err("%s: SPKR_CALIB_VI_PROC_CFG failed\n",
  2439. __func__);
  2440. }
  2441. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2442. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2443. if ((this_afe.th_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2444. (this_afe.vi_tx_port == port_id)) {
  2445. afe_spk_config.th_vi_ftm_cfg.minor_version = 1;
  2446. afe_spk_config.th_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2447. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_1];
  2448. afe_spk_config.th_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2449. this_afe.th_ftm_cfg.wait_time[SP_V2_SPKR_2];
  2450. afe_spk_config.th_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_1] =
  2451. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  2452. afe_spk_config.th_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_2] =
  2453. this_afe.th_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  2454. if (afe_spk_prot_prepare(port_id, 0,
  2455. AFE_PARAM_ID_SP_V2_TH_VI_FTM_CFG,
  2456. &afe_spk_config,
  2457. sizeof(union afe_spkr_prot_config)))
  2458. pr_err("%s: th vi ftm cfg failed\n", __func__);
  2459. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2460. } else if ((this_afe.v_vali_cfg.mode ==
  2461. MSM_SPKR_PROT_IN_V_VALI_MODE) &&
  2462. (this_afe.vi_tx_port == port_id)) {
  2463. afe_spk_config.th_vi_v_vali_cfg.minor_version = 1;
  2464. afe_spk_config.th_vi_v_vali_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2465. this_afe.v_vali_cfg.wait_time[SP_V2_SPKR_1];
  2466. afe_spk_config.th_vi_v_vali_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2467. this_afe.v_vali_cfg.wait_time[SP_V2_SPKR_2];
  2468. afe_spk_config.th_vi_v_vali_cfg.vali_time_ms[SP_V2_SPKR_1] =
  2469. this_afe.v_vali_cfg.vali_time[SP_V2_SPKR_1];
  2470. afe_spk_config.th_vi_v_vali_cfg.vali_time_ms[SP_V2_SPKR_2] =
  2471. this_afe.v_vali_cfg.vali_time[SP_V2_SPKR_2];
  2472. if (afe_spk_prot_prepare(port_id, 0,
  2473. AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_CFG,
  2474. &afe_spk_config,
  2475. sizeof(union afe_spkr_prot_config)))
  2476. pr_err("%s: th vi v-vali cfg failed\n", __func__);
  2477. this_afe.v_vali_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2478. }
  2479. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  2480. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2481. if ((this_afe.ex_ftm_cfg.mode == MSM_SPKR_PROT_IN_FTM_MODE) &&
  2482. (this_afe.vi_tx_port == port_id)) {
  2483. afe_spk_config.ex_vi_mode_cfg.minor_version = 1;
  2484. afe_spk_config.ex_vi_mode_cfg.operation_mode =
  2485. Q6AFE_MSM_SPKR_FTM_MODE;
  2486. if (afe_spk_prot_prepare(port_id, 0,
  2487. AFE_PARAM_ID_SP_V2_EX_VI_MODE_CFG,
  2488. &afe_spk_config,
  2489. sizeof(union afe_spkr_prot_config)))
  2490. pr_err("%s: ex vi mode cfg failed\n", __func__);
  2491. afe_spk_config.ex_vi_ftm_cfg.minor_version = 1;
  2492. afe_spk_config.ex_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_1] =
  2493. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_1];
  2494. afe_spk_config.ex_vi_ftm_cfg.wait_time_ms[SP_V2_SPKR_2] =
  2495. this_afe.ex_ftm_cfg.wait_time[SP_V2_SPKR_2];
  2496. afe_spk_config.ex_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_1] =
  2497. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_1];
  2498. afe_spk_config.ex_vi_ftm_cfg.ftm_time_ms[SP_V2_SPKR_2] =
  2499. this_afe.ex_ftm_cfg.ftm_time[SP_V2_SPKR_2];
  2500. if (afe_spk_prot_prepare(port_id, 0,
  2501. AFE_PARAM_ID_SP_V2_EX_VI_FTM_CFG,
  2502. &afe_spk_config,
  2503. sizeof(union afe_spkr_prot_config)))
  2504. pr_err("%s: ex vi ftm cfg failed\n", __func__);
  2505. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  2506. }
  2507. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  2508. /* Register for DC detection event if speaker protection is enabled */
  2509. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2510. (this_afe.vi_tx_port == port_id)) {
  2511. afe_spkr_prot_reg_event_cfg(port_id,
  2512. AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI);
  2513. }
  2514. }
  2515. static void afe_send_cal_spv4_rx(int port_id)
  2516. {
  2517. union afe_spkr_prot_config afe_spk_config;
  2518. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  2519. return;
  2520. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2521. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2522. (this_afe.vi_rx_port == port_id) &&
  2523. (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9)) {
  2524. if (this_afe.prot_cfg.mode ==
  2525. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  2526. afe_spk_config.v4_op_mode.mode =
  2527. Q6AFE_MSM_SPKR_CALIBRATION;
  2528. else
  2529. afe_spk_config.v4_op_mode.mode =
  2530. Q6AFE_MSM_SPKR_PROCESSING;
  2531. if (afe_spk_prot_prepare(port_id, 0,
  2532. AFE_PARAM_ID_SP_V4_OP_MODE,
  2533. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2534. pr_info("%s: RX MODE_VI_PROC_CFG failed\n",
  2535. __func__);
  2536. }
  2537. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2538. }
  2539. static void afe_send_cal_spkr_prot_rx(int port_id)
  2540. {
  2541. union afe_spkr_prot_config afe_spk_config;
  2542. union afe_spkr_prot_config afe_spk_limiter_config;
  2543. if (q6core_get_avcs_api_version_per_service(
  2544. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  2545. afe_send_cal_spv4_rx(port_id);
  2546. return;
  2547. }
  2548. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  2549. goto done;
  2550. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2551. if (this_afe.prot_cfg.mode != MSM_SPKR_PROT_DISABLED &&
  2552. (this_afe.vi_rx_port == port_id)) {
  2553. if (this_afe.prot_cfg.mode ==
  2554. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  2555. afe_spk_config.mode_rx_cfg.mode =
  2556. Q6AFE_MSM_SPKR_CALIBRATION;
  2557. else
  2558. afe_spk_config.mode_rx_cfg.mode =
  2559. Q6AFE_MSM_SPKR_PROCESSING;
  2560. afe_spk_config.mode_rx_cfg.minor_version = 1;
  2561. if (afe_spk_prot_prepare(port_id, 0,
  2562. AFE_PARAM_ID_FBSP_MODE_RX_CFG,
  2563. &afe_spk_config, sizeof(union afe_spkr_prot_config)))
  2564. pr_err("%s: RX MODE_VI_PROC_CFG failed\n",
  2565. __func__);
  2566. if (afe_spk_config.mode_rx_cfg.mode ==
  2567. Q6AFE_MSM_SPKR_PROCESSING) {
  2568. if (this_afe.prot_cfg.sp_version >=
  2569. AFE_API_VERSION_SUPPORT_SPV3) {
  2570. afe_spk_limiter_config.limiter_th_cfg.
  2571. minor_version = 1;
  2572. afe_spk_limiter_config.limiter_th_cfg.
  2573. lim_thr_per_calib_q27[SP_V2_SPKR_1] =
  2574. this_afe.prot_cfg.limiter_th[SP_V2_SPKR_1];
  2575. afe_spk_limiter_config.limiter_th_cfg.
  2576. lim_thr_per_calib_q27[SP_V2_SPKR_2] =
  2577. this_afe.prot_cfg.limiter_th[SP_V2_SPKR_2];
  2578. if (afe_spk_prot_prepare(port_id, 0,
  2579. AFE_PARAM_ID_SP_RX_LIMITER_TH,
  2580. &afe_spk_limiter_config,
  2581. sizeof(union afe_spkr_prot_config)))
  2582. pr_err("%s: SP_RX_LIMITER_TH failed.\n",
  2583. __func__);
  2584. } else {
  2585. pr_debug("%s: SPv3 failed to apply on AFE API version=%d.\n",
  2586. __func__,
  2587. this_afe.prot_cfg.sp_version);
  2588. }
  2589. }
  2590. }
  2591. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  2592. done:
  2593. return;
  2594. }
  2595. /**
  2596. * afe_send_cdc_dma_data_align -
  2597. * for sending codec dma data alignment
  2598. *
  2599. * @port_id: AFE port id number
  2600. */
  2601. int afe_send_cdc_dma_data_align(u16 port_id, u32 cdc_dma_data_align)
  2602. {
  2603. struct afe_param_id_cdc_dma_data_align data_align;
  2604. struct param_hdr_v3 param_info;
  2605. uint16_t port_index = 0;
  2606. int ret = -EINVAL;
  2607. memset(&data_align, 0, sizeof(data_align));
  2608. memset(&param_info, 0, sizeof(param_info));
  2609. port_index = afe_get_port_index(port_id);
  2610. if (port_index < 0 || port_index >= AFE_MAX_PORTS) {
  2611. pr_err("%s: AFE port index[%d] invalid!\n",
  2612. __func__, port_index);
  2613. return -EINVAL;
  2614. }
  2615. data_align.cdc_dma_data_align =
  2616. cdc_dma_data_align;
  2617. pr_debug("%s: port_id %x, data_align %d\n", __func__,
  2618. port_id, data_align.cdc_dma_data_align);
  2619. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2620. param_info.instance_id = INSTANCE_ID_0;
  2621. param_info.param_id = AFE_PARAM_ID_CODEC_DMA_DATA_ALIGN;
  2622. param_info.param_size = sizeof(data_align);
  2623. ret = q6afe_pack_and_set_param_in_band(port_id,
  2624. q6audio_get_port_index(port_id),
  2625. param_info, (u8 *) &data_align);
  2626. if (ret)
  2627. pr_err("%s: AFE cdc cdc data alignment for port 0x%x failed %d\n",
  2628. __func__, port_id, ret);
  2629. return ret;
  2630. }
  2631. EXPORT_SYMBOL(afe_send_cdc_dma_data_align);
  2632. static int afe_send_hw_delay(u16 port_id, u32 rate)
  2633. {
  2634. struct audio_cal_hw_delay_entry delay_entry;
  2635. struct afe_param_id_device_hw_delay_cfg hw_delay;
  2636. struct param_hdr_v3 param_info;
  2637. int ret = -EINVAL;
  2638. pr_debug("%s:\n", __func__);
  2639. memset(&delay_entry, 0, sizeof(delay_entry));
  2640. memset(&param_info, 0, sizeof(param_info));
  2641. delay_entry.sample_rate = rate;
  2642. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX)
  2643. ret = afe_get_cal_hw_delay(TX_DEVICE, &delay_entry);
  2644. else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX)
  2645. ret = afe_get_cal_hw_delay(RX_DEVICE, &delay_entry);
  2646. /*
  2647. * HW delay is only used for IMS calls to sync audio with video
  2648. * It is only needed for devices & sample rates used for IMS video
  2649. * calls. Values are received from ACDB calbration files
  2650. */
  2651. if (ret != 0) {
  2652. pr_debug("%s: debug: HW delay info not available %d\n",
  2653. __func__, ret);
  2654. goto fail_cmd;
  2655. }
  2656. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2657. param_info.instance_id = INSTANCE_ID_0;
  2658. param_info.param_id = AFE_PARAM_ID_DEVICE_HW_DELAY;
  2659. param_info.param_size = sizeof(hw_delay);
  2660. hw_delay.delay_in_us = delay_entry.delay_usec;
  2661. hw_delay.device_hw_delay_minor_version =
  2662. AFE_API_VERSION_DEVICE_HW_DELAY;
  2663. ret = q6afe_pack_and_set_param_in_band(port_id,
  2664. q6audio_get_port_index(port_id),
  2665. param_info, (u8 *) &hw_delay);
  2666. if (ret)
  2667. pr_err("%s: AFE hw delay for port 0x%x failed %d\n",
  2668. __func__, port_id, ret);
  2669. fail_cmd:
  2670. pr_info("%s: port_id 0x%x rate %u delay_usec %d status %d\n",
  2671. __func__, port_id, rate, delay_entry.delay_usec, ret);
  2672. return ret;
  2673. }
  2674. static struct cal_block_data *afe_find_cal_topo_id_by_port(
  2675. struct cal_type_data *cal_type, u16 port_id)
  2676. {
  2677. struct list_head *ptr, *next;
  2678. struct cal_block_data *cal_block = NULL;
  2679. int32_t path;
  2680. struct audio_cal_info_afe_top *afe_top;
  2681. int afe_port_index = q6audio_get_port_index(port_id);
  2682. if (afe_port_index < 0)
  2683. goto err_exit;
  2684. list_for_each_safe(ptr, next,
  2685. &cal_type->cal_blocks) {
  2686. cal_block = list_entry(ptr,
  2687. struct cal_block_data, list);
  2688. /* Skip cal_block if it is already marked stale */
  2689. if (cal_utils_is_cal_stale(cal_block))
  2690. continue;
  2691. pr_debug("%s: port id: 0x%x, dev_acdb_id: %d\n", __func__,
  2692. port_id, this_afe.dev_acdb_id[afe_port_index]);
  2693. path = ((afe_get_port_type(port_id) ==
  2694. MSM_AFE_PORT_TYPE_TX)?(TX_DEVICE):(RX_DEVICE));
  2695. afe_top =
  2696. (struct audio_cal_info_afe_top *)cal_block->cal_info;
  2697. if (afe_top->path == path) {
  2698. if (this_afe.dev_acdb_id[afe_port_index] > 0) {
  2699. if (afe_top->acdb_id ==
  2700. this_afe.dev_acdb_id[afe_port_index]) {
  2701. pr_debug("%s: top_id:%x acdb_id:%d afe_port_id:0x%x\n",
  2702. __func__, afe_top->topology,
  2703. afe_top->acdb_id,
  2704. q6audio_get_port_id(port_id));
  2705. return cal_block;
  2706. }
  2707. } else {
  2708. pr_debug("%s: top_id:%x acdb_id:%d afe_port:0x%x\n",
  2709. __func__, afe_top->topology, afe_top->acdb_id,
  2710. q6audio_get_port_id(port_id));
  2711. return cal_block;
  2712. }
  2713. }
  2714. }
  2715. err_exit:
  2716. return NULL;
  2717. }
  2718. /*
  2719. * Retrieving cal_block will mark cal_block as stale.
  2720. * Hence it cannot be reused or resent unless the flag
  2721. * is reset.
  2722. */
  2723. static int afe_get_cal_topology_id(u16 port_id, u32 *topology_id,
  2724. int cal_type_index)
  2725. {
  2726. int ret = 0;
  2727. struct cal_block_data *cal_block = NULL;
  2728. struct audio_cal_info_afe_top *afe_top_info = NULL;
  2729. if (this_afe.cal_data[cal_type_index] == NULL) {
  2730. pr_err("%s: cal_type %d not initialized\n", __func__,
  2731. cal_type_index);
  2732. return -EINVAL;
  2733. }
  2734. if (topology_id == NULL) {
  2735. pr_err("%s: topology_id is NULL\n", __func__);
  2736. return -EINVAL;
  2737. }
  2738. *topology_id = 0;
  2739. mutex_lock(&this_afe.cal_data[cal_type_index]->lock);
  2740. cal_block = afe_find_cal_topo_id_by_port(
  2741. this_afe.cal_data[cal_type_index], port_id);
  2742. if (cal_block == NULL) {
  2743. pr_err("%s: cal_type %d not initialized for this port %d\n",
  2744. __func__, cal_type_index, port_id);
  2745. ret = -EINVAL;
  2746. goto unlock;
  2747. }
  2748. afe_top_info = ((struct audio_cal_info_afe_top *)
  2749. cal_block->cal_info);
  2750. if (!afe_top_info->topology) {
  2751. pr_err("%s: invalid topology id : [%d, %d]\n",
  2752. __func__, afe_top_info->acdb_id, afe_top_info->topology);
  2753. ret = -EINVAL;
  2754. goto unlock;
  2755. }
  2756. *topology_id = (u32)afe_top_info->topology;
  2757. cal_utils_mark_cal_used(cal_block);
  2758. pr_info("%s: port_id = 0x%x acdb_id = %d topology_id = 0x%x cal_type_index=%d ret=%d\n",
  2759. __func__, port_id, afe_top_info->acdb_id,
  2760. afe_top_info->topology, cal_type_index, ret);
  2761. unlock:
  2762. mutex_unlock(&this_afe.cal_data[cal_type_index]->lock);
  2763. return ret;
  2764. }
  2765. static int afe_port_topology_deregister(u16 port_id)
  2766. {
  2767. struct param_hdr_v3 param_info;
  2768. int ret = 0;
  2769. uint32_t build_major_version = 0;
  2770. uint32_t build_minor_version = 0;
  2771. uint32_t build_branch_version = 0;
  2772. uint32_t afe_api_version = 0;
  2773. ret = q6core_get_avcs_avs_build_version_info(&build_major_version,
  2774. &build_minor_version,
  2775. &build_branch_version);
  2776. if (ret < 0) {
  2777. pr_err("%s: get AVS build versions failed %d\n",
  2778. __func__, ret);
  2779. goto done;
  2780. }
  2781. afe_api_version = q6core_get_avcs_api_version_per_service(
  2782. APRV2_IDS_SERVICE_ID_ADSP_AFE_V);
  2783. if (afe_api_version < 0) {
  2784. ret = -EINVAL;
  2785. goto done;
  2786. }
  2787. pr_debug("%s: major: %u, minor: %u, branch: %u, afe_api: %u\n",
  2788. __func__, build_major_version, build_minor_version,
  2789. build_branch_version, afe_api_version);
  2790. if (build_major_version != AVS_BUILD_MAJOR_VERSION_V2 ||
  2791. build_minor_version != AVS_BUILD_MINOR_VERSION_V9 ||
  2792. (build_branch_version != AVS_BUILD_BRANCH_VERSION_V0 &&
  2793. build_branch_version != AVS_BUILD_BRANCH_VERSION_V3) ||
  2794. afe_api_version < AFE_API_VERSION_V9) {
  2795. ret = -EINVAL;
  2796. pr_err("%s: AVS build versions mismatched %d\n",
  2797. __func__, ret);
  2798. goto done;
  2799. }
  2800. memset(&param_info, 0, sizeof(param_info));
  2801. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2802. param_info.instance_id = INSTANCE_ID_0;
  2803. param_info.param_id = AFE_PARAM_ID_DEREGISTER_TOPOLOGY;
  2804. param_info.param_size = 0;
  2805. ret = q6afe_pack_and_set_param_in_band(port_id,
  2806. q6audio_get_port_index(port_id),
  2807. param_info, NULL);
  2808. if (ret < 0)
  2809. pr_err("%s: AFE deregister topology for port 0x%x failed %d\n",
  2810. __func__, port_id, ret);
  2811. done:
  2812. pr_debug("%s: AFE port 0x%x deregister topology, ret %d\n",
  2813. __func__, port_id, ret);
  2814. return ret;
  2815. }
  2816. static int afe_send_port_topology_id(u16 port_id)
  2817. {
  2818. struct afe_param_id_set_topology_cfg topology;
  2819. struct param_hdr_v3 param_info;
  2820. u32 topology_id = 0;
  2821. int index = 0;
  2822. int ret = 0;
  2823. memset(&topology, 0, sizeof(topology));
  2824. memset(&param_info, 0, sizeof(param_info));
  2825. index = q6audio_get_port_index(port_id);
  2826. if (index < 0 || index >= AFE_MAX_PORTS) {
  2827. pr_err("%s: AFE port index[%d] invalid!\n",
  2828. __func__, index);
  2829. return -EINVAL;
  2830. }
  2831. ret = afe_get_cal_topology_id(port_id, &topology_id, AFE_TOPOLOGY_CAL);
  2832. if (ret < 0) {
  2833. pr_debug("%s: Check for LSM topology\n", __func__);
  2834. ret = afe_get_cal_topology_id(port_id, &topology_id,
  2835. AFE_LSM_TOPOLOGY_CAL);
  2836. }
  2837. if (ret || !topology_id) {
  2838. pr_debug("%s: AFE port[%d] get_cal_topology[%d] invalid!\n",
  2839. __func__, port_id, topology_id);
  2840. goto done;
  2841. }
  2842. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2843. param_info.instance_id = INSTANCE_ID_0;
  2844. param_info.param_id = AFE_PARAM_ID_SET_TOPOLOGY;
  2845. param_info.param_size = sizeof(topology);
  2846. topology.minor_version = AFE_API_VERSION_TOPOLOGY_V1;
  2847. topology.topology_id = topology_id;
  2848. ret = q6afe_pack_and_set_param_in_band(port_id,
  2849. q6audio_get_port_index(port_id),
  2850. param_info, (u8 *) &topology);
  2851. if (ret) {
  2852. pr_err("%s: AFE set topology id enable for port 0x%x failed %d\n",
  2853. __func__, port_id, ret);
  2854. goto done;
  2855. }
  2856. this_afe.topology[index] = topology_id;
  2857. rtac_update_afe_topology(port_id);
  2858. done:
  2859. pr_debug("%s: AFE set topology id 0x%x enable for port 0x%x ret %d\n",
  2860. __func__, topology_id, port_id, ret);
  2861. return ret;
  2862. }
  2863. static int afe_get_power_mode(u16 port_id, u32 *power_mode)
  2864. {
  2865. int ret = 0;
  2866. int index = 0;
  2867. *power_mode = 0;
  2868. index = q6audio_get_port_index(port_id);
  2869. if (index < 0 || index >= AFE_MAX_PORTS) {
  2870. pr_err("%s: AFE port index[%d] invalid!\n",
  2871. __func__, index);
  2872. return -EINVAL;
  2873. }
  2874. *power_mode = this_afe.power_mode[index];
  2875. return ret;
  2876. }
  2877. /**
  2878. * afe_send_port_power_mode -
  2879. * for sending power mode to AFE
  2880. *
  2881. * @port_id: AFE port id number
  2882. * Returns 0 on success or error on failure.
  2883. */
  2884. int afe_send_port_power_mode(u16 port_id)
  2885. {
  2886. struct afe_param_id_power_mode_cfg_t power_mode_cfg;
  2887. struct param_hdr_v3 param_info;
  2888. u32 power_mode = 0;
  2889. int ret = 0;
  2890. if (!(q6core_get_avcs_api_version_per_service(
  2891. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4)) {
  2892. pr_debug("%s: AFE port[%d] API version is invalid!\n",
  2893. __func__, port_id);
  2894. return 0;
  2895. }
  2896. memset(&power_mode_cfg, 0, sizeof(power_mode_cfg));
  2897. memset(&param_info, 0, sizeof(param_info));
  2898. ret = afe_get_power_mode(port_id, &power_mode);
  2899. if (ret) {
  2900. pr_err("%s: AFE port[%d] get power mode is invalid!\n",
  2901. __func__, port_id);
  2902. return ret;
  2903. }
  2904. if (power_mode == 0) {
  2905. pr_debug("%s: AFE port[%d] power mode is not enabled\n",
  2906. __func__, port_id);
  2907. return ret;
  2908. }
  2909. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2910. param_info.instance_id = INSTANCE_ID_0;
  2911. param_info.param_id = AFE_PARAM_ID_POWER_MODE_CONFIG;
  2912. param_info.param_size = sizeof(power_mode_cfg);
  2913. power_mode_cfg.power_mode_cfg_minor_version =
  2914. AFE_API_VERSION_POWER_MODE_CONFIG;
  2915. power_mode_cfg.power_mode_enable = power_mode;
  2916. ret = q6afe_pack_and_set_param_in_band(port_id,
  2917. q6audio_get_port_index(port_id),
  2918. param_info, (u8 *) &power_mode_cfg);
  2919. if (ret) {
  2920. pr_err("%s: AFE set power mode enable for port 0x%x failed %d\n",
  2921. __func__, port_id, ret);
  2922. return ret;
  2923. }
  2924. pr_debug("%s: AFE set power mode 0x%x enable for port 0x%x ret %d\n",
  2925. __func__, power_mode, port_id, ret);
  2926. trace_printk("%s: AFE set power mode 0x%x enable for port 0x%x ret %d\n",
  2927. __func__, power_mode, port_id, ret);
  2928. return ret;
  2929. }
  2930. EXPORT_SYMBOL(afe_send_port_power_mode);
  2931. static int afe_get_island_mode(u16 port_id, u32 *island_mode)
  2932. {
  2933. int ret = 0;
  2934. int index = 0;
  2935. *island_mode = 0;
  2936. index = q6audio_get_port_index(port_id);
  2937. if (index < 0 || index >= AFE_MAX_PORTS) {
  2938. pr_err("%s: AFE port index[%d] invalid!\n",
  2939. __func__, index);
  2940. return -EINVAL;
  2941. }
  2942. *island_mode = this_afe.island_mode[index];
  2943. return ret;
  2944. }
  2945. /*
  2946. * afe_send_port_island_mode -
  2947. * for sending island mode to AFE
  2948. *
  2949. * @port_id: AFE port id number
  2950. *
  2951. * Returns 0 on success or error on failure.
  2952. */
  2953. int afe_send_port_island_mode(u16 port_id)
  2954. {
  2955. struct afe_param_id_island_cfg_t island_cfg;
  2956. struct param_hdr_v3 param_info;
  2957. u32 island_mode = 0;
  2958. int ret = 0;
  2959. if (!(q6core_get_avcs_api_version_per_service(
  2960. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4)) {
  2961. pr_debug("%s: AFE port[%d] API version is invalid!\n",
  2962. __func__, port_id);
  2963. return 0;
  2964. }
  2965. memset(&island_cfg, 0, sizeof(island_cfg));
  2966. memset(&param_info, 0, sizeof(param_info));
  2967. ret = afe_get_island_mode(port_id, &island_mode);
  2968. if (ret) {
  2969. pr_err("%s: AFE port[%d] get island mode is invalid!\n",
  2970. __func__, port_id);
  2971. return ret;
  2972. }
  2973. if (island_mode == 0) {
  2974. pr_debug("%s: AFE port[%d] island mode is not enabled\n",
  2975. __func__, port_id);
  2976. return ret;
  2977. }
  2978. param_info.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  2979. param_info.instance_id = INSTANCE_ID_0;
  2980. param_info.param_id = AFE_PARAM_ID_ISLAND_CONFIG;
  2981. param_info.param_size = sizeof(island_cfg);
  2982. island_cfg.island_cfg_minor_version = AFE_API_VERSION_ISLAND_CONFIG;
  2983. island_cfg.island_enable = island_mode;
  2984. ret = q6afe_pack_and_set_param_in_band(port_id,
  2985. q6audio_get_port_index(port_id),
  2986. param_info, (u8 *) &island_cfg);
  2987. if (ret) {
  2988. pr_err("%s: AFE set island mode enable for port 0x%x failed %d\n",
  2989. __func__, port_id, ret);
  2990. return ret;
  2991. }
  2992. pr_debug("%s: AFE set island mode 0x%x enable for port 0x%x ret %d\n",
  2993. __func__, island_mode, port_id, ret);
  2994. trace_printk("%s: AFE set island mode 0x%x enable for port 0x%x ret %d\n",
  2995. __func__, island_mode, port_id, ret);
  2996. return ret;
  2997. }
  2998. EXPORT_SYMBOL(afe_send_port_island_mode);
  2999. static int afe_get_vad_preroll_cfg(u16 port_id, u32 *preroll_cfg)
  3000. {
  3001. int ret = 0;
  3002. int index = 0;
  3003. *preroll_cfg = 0;
  3004. index = q6audio_get_port_index(port_id);
  3005. if (index < 0 || index >= AFE_MAX_PORTS) {
  3006. pr_err("%s: AFE port index[%d] invalid!\n",
  3007. __func__, index);
  3008. return -EINVAL;
  3009. }
  3010. *preroll_cfg = this_afe.vad_cfg[index].pre_roll;
  3011. return ret;
  3012. }
  3013. int afe_send_port_vad_cfg_params(u16 port_id)
  3014. {
  3015. struct afe_param_id_vad_cfg_t vad_cfg;
  3016. struct afe_mod_enable_param vad_enable;
  3017. struct param_hdr_v3 param_info;
  3018. u32 pre_roll_cfg = 0;
  3019. struct firmware_cal *hwdep_cal = NULL;
  3020. int ret = 0;
  3021. uint16_t port_index = 0;
  3022. if (!(q6core_get_avcs_api_version_per_service(
  3023. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V4)) {
  3024. pr_err("%s: AFE port[%d]: AFE API version doesn't support VAD config\n",
  3025. __func__, port_id);
  3026. return 0;
  3027. }
  3028. port_index = afe_get_port_index(port_id);
  3029. if (this_afe.vad_cfg[port_index].is_enable) {
  3030. memset(&vad_cfg, 0, sizeof(vad_cfg));
  3031. memset(&param_info, 0, sizeof(param_info));
  3032. ret = afe_get_vad_preroll_cfg(port_id, &pre_roll_cfg);
  3033. if (ret) {
  3034. pr_err("%s: AFE port[%d] get preroll cfg is invalid!\n",
  3035. __func__, port_id);
  3036. return ret;
  3037. }
  3038. param_info.module_id = AFE_MODULE_VAD;
  3039. param_info.instance_id = INSTANCE_ID_0;
  3040. param_info.param_id = AFE_PARAM_ID_VAD_CFG;
  3041. param_info.param_size = sizeof(vad_cfg);
  3042. vad_cfg.vad_cfg_minor_version = AFE_API_VERSION_VAD_CFG;
  3043. vad_cfg.pre_roll_in_ms = pre_roll_cfg;
  3044. ret = q6afe_pack_and_set_param_in_band(port_id,
  3045. q6audio_get_port_index(port_id),
  3046. param_info, (u8 *) &vad_cfg);
  3047. if (ret) {
  3048. pr_err("%s: AFE set vad cfg for port 0x%x failed %d\n",
  3049. __func__, port_id, ret);
  3050. return ret;
  3051. }
  3052. memset(&param_info, 0, sizeof(param_info));
  3053. hwdep_cal = q6afecal_get_fw_cal(this_afe.fw_data,
  3054. Q6AFE_VAD_CORE_CAL);
  3055. if (!hwdep_cal) {
  3056. pr_err("%s: error in retrieving vad core calibration",
  3057. __func__);
  3058. return -EINVAL;
  3059. }
  3060. param_info.module_id = AFE_MODULE_VAD;
  3061. param_info.instance_id = INSTANCE_ID_0;
  3062. param_info.param_id = AFE_PARAM_ID_VAD_CORE_CFG;
  3063. param_info.param_size = hwdep_cal->size;
  3064. ret = q6afe_pack_and_set_param_in_band(port_id,
  3065. q6audio_get_port_index(port_id),
  3066. param_info,
  3067. (u8 *) hwdep_cal->data);
  3068. if (ret) {
  3069. pr_err("%s: AFE set vad cfg for port 0x%x failed %d\n",
  3070. __func__, port_id, ret);
  3071. return ret;
  3072. }
  3073. }
  3074. if (q6core_get_avcs_api_version_per_service(
  3075. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V6) {
  3076. memset(&vad_enable, 0, sizeof(vad_enable));
  3077. memset(&param_info, 0, sizeof(param_info));
  3078. param_info.module_id = AFE_MODULE_VAD;
  3079. param_info.instance_id = INSTANCE_ID_0;
  3080. param_info.param_id = AFE_PARAM_ID_ENABLE;
  3081. param_info.param_size = sizeof(vad_enable);
  3082. port_index = afe_get_port_index(port_id);
  3083. vad_enable.enable = this_afe.vad_cfg[port_index].is_enable;
  3084. ret = q6afe_pack_and_set_param_in_band(port_id,
  3085. q6audio_get_port_index(port_id),
  3086. param_info, (u8 *) &vad_enable);
  3087. if (ret) {
  3088. pr_err("%s: AFE set vad enable for port 0x%x failed %d\n",
  3089. __func__, port_id, ret);
  3090. return ret;
  3091. }
  3092. }
  3093. pr_debug("%s: AFE set preroll cfg %d vad core cfg port 0x%x ret %d\n",
  3094. __func__, pre_roll_cfg, port_id, ret);
  3095. return ret;
  3096. }
  3097. EXPORT_SYMBOL(afe_send_port_vad_cfg_params);
  3098. static int remap_cal_data(struct cal_block_data *cal_block, int cal_index)
  3099. {
  3100. int ret = 0;
  3101. if (cal_block->map_data.dma_buf == NULL) {
  3102. pr_err("%s: No ION allocation for cal index %d!\n",
  3103. __func__, cal_index);
  3104. ret = -EINVAL;
  3105. goto done;
  3106. }
  3107. if ((cal_block->map_data.map_size > 0) &&
  3108. (cal_block->map_data.q6map_handle == 0)) {
  3109. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  3110. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  3111. cal_block->map_data.map_size);
  3112. atomic_set(&this_afe.mem_map_cal_index, -1);
  3113. if (ret < 0) {
  3114. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  3115. __func__,
  3116. cal_block->map_data.map_size, ret);
  3117. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  3118. __func__,
  3119. &cal_block->cal_data.paddr,
  3120. cal_block->map_data.map_size);
  3121. goto done;
  3122. }
  3123. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  3124. mem_map_cal_handles[cal_index]);
  3125. }
  3126. done:
  3127. return ret;
  3128. }
  3129. static struct cal_block_data *afe_find_cal(int cal_index, int port_id)
  3130. {
  3131. struct list_head *ptr, *next;
  3132. struct cal_block_data *cal_block = NULL;
  3133. struct audio_cal_info_afe *afe_cal_info = NULL;
  3134. int afe_port_index = q6audio_get_port_index(port_id);
  3135. pr_debug("%s: cal_index %d port_id 0x%x port_index %d\n", __func__,
  3136. cal_index, port_id, afe_port_index);
  3137. if (afe_port_index < 0) {
  3138. pr_err("%s: Error getting AFE port index %d\n",
  3139. __func__, afe_port_index);
  3140. goto exit;
  3141. }
  3142. list_for_each_safe(ptr, next,
  3143. &this_afe.cal_data[cal_index]->cal_blocks) {
  3144. cal_block = list_entry(ptr, struct cal_block_data, list);
  3145. afe_cal_info = cal_block->cal_info;
  3146. pr_debug("%s: acdb_id %d dev_acdb_id %d sample_rate %d afe_sample_rates %d\n",
  3147. __func__, afe_cal_info->acdb_id,
  3148. this_afe.dev_acdb_id[afe_port_index],
  3149. afe_cal_info->sample_rate,
  3150. this_afe.afe_sample_rates[afe_port_index]);
  3151. if ((afe_cal_info->acdb_id ==
  3152. this_afe.dev_acdb_id[afe_port_index]) &&
  3153. (afe_cal_info->sample_rate ==
  3154. this_afe.afe_sample_rates[afe_port_index])) {
  3155. pr_debug("%s: cal block is a match, size is %zd\n",
  3156. __func__, cal_block->cal_data.size);
  3157. goto exit;
  3158. }
  3159. }
  3160. pr_info("%s: no matching cal_block found\n", __func__);
  3161. cal_block = NULL;
  3162. exit:
  3163. return cal_block;
  3164. }
  3165. static int send_afe_cal_type(int cal_index, int port_id)
  3166. {
  3167. struct cal_block_data *cal_block = NULL;
  3168. int ret;
  3169. int afe_port_index = q6audio_get_port_index(port_id);
  3170. pr_debug("%s: cal_index is %d\n", __func__, cal_index);
  3171. if (this_afe.cal_data[cal_index] == NULL) {
  3172. pr_warn("%s: cal_index %d not allocated!\n",
  3173. __func__, cal_index);
  3174. ret = -EINVAL;
  3175. goto done;
  3176. }
  3177. if (afe_port_index < 0) {
  3178. pr_err("%s: Error getting AFE port index %d\n",
  3179. __func__, afe_port_index);
  3180. ret = -EINVAL;
  3181. goto done;
  3182. }
  3183. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  3184. pr_debug("%s: dev_acdb_id[%d] is %d\n",
  3185. __func__, afe_port_index,
  3186. this_afe.dev_acdb_id[afe_port_index]);
  3187. if (((cal_index == AFE_COMMON_RX_CAL) ||
  3188. (cal_index == AFE_COMMON_TX_CAL) ||
  3189. (cal_index == AFE_LSM_TX_CAL)) &&
  3190. (this_afe.dev_acdb_id[afe_port_index] > 0))
  3191. cal_block = afe_find_cal(cal_index, port_id);
  3192. else
  3193. cal_block = cal_utils_get_only_cal_block(
  3194. this_afe.cal_data[cal_index]);
  3195. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  3196. pr_err("%s cal_block not found!!\n", __func__);
  3197. ret = -EINVAL;
  3198. goto unlock;
  3199. }
  3200. pr_debug("%s: Sending cal_index cal %d\n", __func__, cal_index);
  3201. ret = remap_cal_data(cal_block, cal_index);
  3202. if (ret) {
  3203. pr_err("%s: Remap_cal_data failed for cal %d!\n",
  3204. __func__, cal_index);
  3205. ret = -EINVAL;
  3206. goto unlock;
  3207. }
  3208. ret = afe_send_cal_block(port_id, cal_block);
  3209. if (ret < 0)
  3210. pr_err("%s: No cal sent for cal_index %d, port_id = 0x%x! ret %d\n",
  3211. __func__, cal_index, port_id, ret);
  3212. cal_utils_mark_cal_used(cal_block);
  3213. unlock:
  3214. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  3215. done:
  3216. return ret;
  3217. }
  3218. void afe_send_cal(u16 port_id)
  3219. {
  3220. int ret;
  3221. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  3222. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_TX) {
  3223. afe_send_cal_spkr_prot_tx(port_id);
  3224. ret = send_afe_cal_type(AFE_COMMON_TX_CAL, port_id);
  3225. if (ret < 0)
  3226. send_afe_cal_type(AFE_LSM_TX_CAL, port_id);
  3227. } else if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  3228. send_afe_cal_type(AFE_COMMON_RX_CAL, port_id);
  3229. afe_send_cal_spkr_prot_rx(port_id);
  3230. }
  3231. }
  3232. int afe_turn_onoff_hw_mad(u16 mad_type, u16 enable)
  3233. {
  3234. struct afe_param_hw_mad_ctrl mad_enable_param;
  3235. struct param_hdr_v3 param_info;
  3236. int ret;
  3237. pr_debug("%s: enter\n", __func__);
  3238. memset(&mad_enable_param, 0, sizeof(mad_enable_param));
  3239. memset(&param_info, 0, sizeof(param_info));
  3240. param_info.module_id = AFE_MODULE_HW_MAD;
  3241. param_info.instance_id = INSTANCE_ID_0;
  3242. param_info.param_id = AFE_PARAM_ID_HW_MAD_CTRL;
  3243. param_info.param_size = sizeof(mad_enable_param);
  3244. mad_enable_param.minor_version = 1;
  3245. mad_enable_param.mad_type = mad_type;
  3246. mad_enable_param.mad_enable = enable;
  3247. ret = q6afe_pack_and_set_param_in_band(SLIMBUS_5_TX, IDX_GLOBAL_CFG,
  3248. param_info,
  3249. (u8 *) &mad_enable_param);
  3250. if (ret)
  3251. pr_err("%s: AFE_PARAM_ID_HW_MAD_CTRL failed %d\n", __func__,
  3252. ret);
  3253. return ret;
  3254. }
  3255. static int afe_send_slimbus_slave_cfg(
  3256. struct afe_param_cdc_slimbus_slave_cfg *sb_slave_cfg)
  3257. {
  3258. struct param_hdr_v3 param_hdr;
  3259. int ret;
  3260. pr_debug("%s: enter\n", __func__);
  3261. memset(&param_hdr, 0, sizeof(param_hdr));
  3262. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3263. param_hdr.instance_id = INSTANCE_ID_0;
  3264. param_hdr.param_id = AFE_PARAM_ID_CDC_SLIMBUS_SLAVE_CFG;
  3265. param_hdr.param_size = sizeof(struct afe_param_cdc_slimbus_slave_cfg);
  3266. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3267. (u8 *) sb_slave_cfg);
  3268. if (ret)
  3269. pr_err("%s: AFE_PARAM_ID_CDC_SLIMBUS_SLAVE_CFG failed %d\n",
  3270. __func__, ret);
  3271. pr_debug("%s: leave %d\n", __func__, ret);
  3272. return ret;
  3273. }
  3274. static int afe_send_codec_reg_page_config(
  3275. struct afe_param_cdc_reg_page_cfg *cdc_reg_page_cfg)
  3276. {
  3277. struct param_hdr_v3 param_hdr;
  3278. int ret;
  3279. memset(&param_hdr, 0, sizeof(param_hdr));
  3280. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3281. param_hdr.instance_id = INSTANCE_ID_0;
  3282. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_PAGE_CFG;
  3283. param_hdr.param_size = sizeof(struct afe_param_cdc_reg_page_cfg);
  3284. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3285. (u8 *) cdc_reg_page_cfg);
  3286. if (ret)
  3287. pr_err("%s: AFE_PARAM_ID_CDC_REG_PAGE_CFG failed %d\n",
  3288. __func__, ret);
  3289. return ret;
  3290. }
  3291. static int afe_send_codec_reg_config(
  3292. struct afe_param_cdc_reg_cfg_data *cdc_reg_cfg)
  3293. {
  3294. u8 *packed_param_data = NULL;
  3295. u32 packed_data_size = 0;
  3296. u32 single_param_size = 0;
  3297. u32 max_data_size = 0;
  3298. u32 max_single_param = 0;
  3299. struct param_hdr_v3 param_hdr;
  3300. int idx = 0;
  3301. int ret = -EINVAL;
  3302. bool is_iid_supported = q6common_is_instance_id_supported();
  3303. memset(&param_hdr, 0, sizeof(param_hdr));
  3304. max_single_param = sizeof(struct param_hdr_v3) +
  3305. sizeof(struct afe_param_cdc_reg_cfg);
  3306. max_data_size = APR_MAX_BUF - sizeof(struct afe_svc_cmd_set_param_v2);
  3307. packed_param_data = kzalloc(max_data_size, GFP_KERNEL);
  3308. if (!packed_param_data)
  3309. return -ENOMEM;
  3310. /* param_hdr is the same for all params sent, set once at top */
  3311. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3312. param_hdr.instance_id = INSTANCE_ID_0;
  3313. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_CFG;
  3314. param_hdr.param_size = sizeof(struct afe_param_cdc_reg_cfg);
  3315. while (idx < cdc_reg_cfg->num_registers) {
  3316. memset(packed_param_data, 0, max_data_size);
  3317. packed_data_size = 0;
  3318. single_param_size = 0;
  3319. while (packed_data_size + max_single_param < max_data_size &&
  3320. idx < cdc_reg_cfg->num_registers) {
  3321. ret = q6common_pack_pp_params_v2(
  3322. packed_param_data + packed_data_size,
  3323. &param_hdr, (u8 *) &cdc_reg_cfg->reg_data[idx],
  3324. &single_param_size, is_iid_supported);
  3325. if (ret) {
  3326. pr_err("%s: Failed to pack parameters with error %d\n",
  3327. __func__, ret);
  3328. goto done;
  3329. }
  3330. packed_data_size += single_param_size;
  3331. idx++;
  3332. }
  3333. ret = q6afe_svc_set_params(IDX_GLOBAL_CFG, NULL,
  3334. packed_param_data, packed_data_size,
  3335. is_iid_supported);
  3336. if (ret) {
  3337. pr_err("%s: AFE_PARAM_ID_CDC_REG_CFG failed %d\n",
  3338. __func__, ret);
  3339. break;
  3340. }
  3341. }
  3342. done:
  3343. kfree(packed_param_data);
  3344. return ret;
  3345. }
  3346. static int afe_init_cdc_reg_config(void)
  3347. {
  3348. struct param_hdr_v3 param_hdr;
  3349. int ret;
  3350. pr_debug("%s: enter\n", __func__);
  3351. memset(&param_hdr, 0, sizeof(param_hdr));
  3352. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3353. param_hdr.instance_id = INSTANCE_ID_0;
  3354. param_hdr.param_id = AFE_PARAM_ID_CDC_REG_CFG_INIT;
  3355. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3356. NULL);
  3357. if (ret)
  3358. pr_err("%s: AFE_PARAM_ID_CDC_INIT_REG_CFG failed %d\n",
  3359. __func__, ret);
  3360. return ret;
  3361. }
  3362. static int afe_send_slimbus_slave_port_cfg(
  3363. struct afe_param_slimbus_slave_port_cfg *slim_slave_config, u16 port_id)
  3364. {
  3365. struct param_hdr_v3 param_hdr;
  3366. int ret;
  3367. pr_debug("%s: enter, port_id = 0x%x\n", __func__, port_id);
  3368. memset(&param_hdr, 0, sizeof(param_hdr));
  3369. param_hdr.module_id = AFE_MODULE_HW_MAD;
  3370. param_hdr.instance_id = INSTANCE_ID_0;
  3371. param_hdr.reserved = 0;
  3372. param_hdr.param_id = AFE_PARAM_ID_SLIMBUS_SLAVE_PORT_CFG;
  3373. param_hdr.param_size = sizeof(struct afe_param_slimbus_slave_port_cfg);
  3374. ret = q6afe_pack_and_set_param_in_band(port_id,
  3375. q6audio_get_port_index(port_id),
  3376. param_hdr,
  3377. (u8 *) slim_slave_config);
  3378. if (ret)
  3379. pr_err("%s: AFE_PARAM_ID_SLIMBUS_SLAVE_PORT_CFG failed %d\n",
  3380. __func__, ret);
  3381. pr_debug("%s: leave %d\n", __func__, ret);
  3382. return ret;
  3383. }
  3384. static int afe_aanc_port_cfg(void *apr, uint16_t tx_port, uint16_t rx_port)
  3385. {
  3386. struct afe_param_aanc_port_cfg aanc_port_cfg;
  3387. struct param_hdr_v3 param_hdr;
  3388. int ret = 0;
  3389. pr_debug("%s: tx_port 0x%x, rx_port 0x%x\n",
  3390. __func__, tx_port, rx_port);
  3391. pr_debug("%s: AANC sample rate tx rate: %d rx rate %d\n", __func__,
  3392. this_afe.aanc_info.aanc_tx_port_sample_rate,
  3393. this_afe.aanc_info.aanc_rx_port_sample_rate);
  3394. memset(&aanc_port_cfg, 0, sizeof(aanc_port_cfg));
  3395. memset(&param_hdr, 0, sizeof(param_hdr));
  3396. /*
  3397. * If aanc tx sample rate or rx sample rate is zero, skip aanc
  3398. * configuration as AFE resampler will fail for invalid sample
  3399. * rates.
  3400. */
  3401. if (!this_afe.aanc_info.aanc_tx_port_sample_rate ||
  3402. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  3403. return -EINVAL;
  3404. }
  3405. param_hdr.module_id = AFE_MODULE_AANC;
  3406. param_hdr.instance_id = INSTANCE_ID_0;
  3407. param_hdr.param_id = AFE_PARAM_ID_AANC_PORT_CONFIG;
  3408. param_hdr.param_size = sizeof(struct afe_param_aanc_port_cfg);
  3409. aanc_port_cfg.aanc_port_cfg_minor_version =
  3410. AFE_API_VERSION_AANC_PORT_CONFIG;
  3411. aanc_port_cfg.tx_port_sample_rate =
  3412. this_afe.aanc_info.aanc_tx_port_sample_rate;
  3413. aanc_port_cfg.tx_port_channel_map[0] = AANC_TX_VOICE_MIC;
  3414. aanc_port_cfg.tx_port_channel_map[1] = AANC_TX_NOISE_MIC;
  3415. aanc_port_cfg.tx_port_channel_map[2] = AANC_TX_ERROR_MIC;
  3416. aanc_port_cfg.tx_port_channel_map[3] = AANC_TX_MIC_UNUSED;
  3417. aanc_port_cfg.tx_port_channel_map[4] = AANC_TX_MIC_UNUSED;
  3418. aanc_port_cfg.tx_port_channel_map[5] = AANC_TX_MIC_UNUSED;
  3419. aanc_port_cfg.tx_port_channel_map[6] = AANC_TX_MIC_UNUSED;
  3420. aanc_port_cfg.tx_port_channel_map[7] = AANC_TX_MIC_UNUSED;
  3421. aanc_port_cfg.tx_port_num_channels = 3;
  3422. aanc_port_cfg.rx_path_ref_port_id = rx_port;
  3423. aanc_port_cfg.ref_port_sample_rate =
  3424. this_afe.aanc_info.aanc_rx_port_sample_rate;
  3425. ret = q6afe_pack_and_set_param_in_band(tx_port,
  3426. q6audio_get_port_index(tx_port),
  3427. param_hdr,
  3428. (u8 *) &aanc_port_cfg);
  3429. if (ret)
  3430. pr_err("%s: AFE AANC port config failed for tx_port 0x%x, rx_port 0x%x ret %d\n",
  3431. __func__, tx_port, rx_port, ret);
  3432. else
  3433. q6afe_set_aanc_level();
  3434. return ret;
  3435. }
  3436. static int afe_aanc_mod_enable(void *apr, uint16_t tx_port, uint16_t enable)
  3437. {
  3438. struct afe_mod_enable_param mod_enable;
  3439. struct param_hdr_v3 param_hdr;
  3440. int ret = 0;
  3441. pr_debug("%s: tx_port 0x%x\n", __func__, tx_port);
  3442. memset(&mod_enable, 0, sizeof(mod_enable));
  3443. memset(&param_hdr, 0, sizeof(param_hdr));
  3444. param_hdr.module_id = AFE_MODULE_AANC;
  3445. param_hdr.instance_id = INSTANCE_ID_0;
  3446. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  3447. param_hdr.param_size = sizeof(struct afe_mod_enable_param);
  3448. mod_enable.enable = enable;
  3449. mod_enable.reserved = 0;
  3450. ret = q6afe_pack_and_set_param_in_band(tx_port,
  3451. q6audio_get_port_index(tx_port),
  3452. param_hdr, (u8 *) &mod_enable);
  3453. if (ret)
  3454. pr_err("%s: AFE AANC enable failed for tx_port 0x%x ret %d\n",
  3455. __func__, tx_port, ret);
  3456. return ret;
  3457. }
  3458. static int afe_send_bank_selection_clip(
  3459. struct afe_param_id_clip_bank_sel *param)
  3460. {
  3461. struct param_hdr_v3 param_hdr;
  3462. int ret;
  3463. if (!param) {
  3464. pr_err("%s: Invalid params", __func__);
  3465. return -EINVAL;
  3466. }
  3467. memset(&param_hdr, 0, sizeof(param_hdr));
  3468. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3469. param_hdr.instance_id = INSTANCE_ID_0;
  3470. param_hdr.param_id = AFE_PARAM_ID_CLIP_BANK_SEL_CFG;
  3471. param_hdr.param_size = sizeof(struct afe_param_id_clip_bank_sel);
  3472. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3473. (u8 *) param);
  3474. if (ret)
  3475. pr_err("%s: AFE_PARAM_ID_CLIP_BANK_SEL_CFG failed %d\n",
  3476. __func__, ret);
  3477. return ret;
  3478. }
  3479. int afe_send_aanc_version(
  3480. struct afe_param_id_cdc_aanc_version *version_cfg)
  3481. {
  3482. struct param_hdr_v3 param_hdr;
  3483. int ret;
  3484. pr_debug("%s: enter\n", __func__);
  3485. memset(&param_hdr, 0, sizeof(param_hdr));
  3486. param_hdr.module_id = AFE_MODULE_CDC_DEV_CFG;
  3487. param_hdr.instance_id = INSTANCE_ID_0;
  3488. param_hdr.param_id = AFE_PARAM_ID_CDC_AANC_VERSION;
  3489. param_hdr.param_size = sizeof(struct afe_param_id_cdc_aanc_version);
  3490. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  3491. (u8 *) version_cfg);
  3492. if (ret)
  3493. pr_err("%s: AFE_PARAM_ID_CDC_AANC_VERSION failed %d\n",
  3494. __func__, ret);
  3495. return ret;
  3496. }
  3497. /**
  3498. * afe_port_set_mad_type -
  3499. * to update mad type
  3500. *
  3501. * @port_id: AFE port id number
  3502. * @mad_type: MAD type enum value
  3503. *
  3504. * Returns 0 on success or error on failure.
  3505. */
  3506. int afe_port_set_mad_type(u16 port_id, enum afe_mad_type mad_type)
  3507. {
  3508. int i;
  3509. if (port_id == AFE_PORT_ID_TERTIARY_MI2S_TX ||
  3510. port_id == AFE_PORT_ID_INT3_MI2S_TX ||
  3511. port_id == AFE_PORT_ID_TX_CODEC_DMA_TX_3 ||
  3512. port_id == AFE_PORT_ID_TERTIARY_TDM_TX) {
  3513. mad_type = MAD_SW_AUDIO;
  3514. return 0;
  3515. }
  3516. i = port_id - SLIMBUS_0_RX;
  3517. if (i < 0 || i >= ARRAY_SIZE(afe_ports_mad_type)) {
  3518. pr_err("%s: Invalid port_id 0x%x\n", __func__, port_id);
  3519. return -EINVAL;
  3520. }
  3521. atomic_set(&afe_ports_mad_type[i], mad_type);
  3522. return 0;
  3523. }
  3524. EXPORT_SYMBOL(afe_port_set_mad_type);
  3525. /**
  3526. * afe_port_get_mad_type -
  3527. * to retrieve mad type
  3528. *
  3529. * @port_id: AFE port id number
  3530. *
  3531. * Returns valid enum value on success or MAD_HW_NONE on failure.
  3532. */
  3533. enum afe_mad_type afe_port_get_mad_type(u16 port_id)
  3534. {
  3535. int i;
  3536. if (port_id == AFE_PORT_ID_TERTIARY_MI2S_TX ||
  3537. port_id == AFE_PORT_ID_INT3_MI2S_TX ||
  3538. port_id == AFE_PORT_ID_TX_CODEC_DMA_TX_3 ||
  3539. port_id == AFE_PORT_ID_TERTIARY_TDM_TX)
  3540. return MAD_SW_AUDIO;
  3541. i = port_id - SLIMBUS_0_RX;
  3542. if (i < 0 || i >= ARRAY_SIZE(afe_ports_mad_type)) {
  3543. pr_debug("%s: Non Slimbus port_id 0x%x\n", __func__, port_id);
  3544. return MAD_HW_NONE;
  3545. }
  3546. return (enum afe_mad_type) atomic_read(&afe_ports_mad_type[i]);
  3547. }
  3548. EXPORT_SYMBOL(afe_port_get_mad_type);
  3549. /**
  3550. * afe_set_config -
  3551. * to configure AFE session with
  3552. * specified configuration for given config type
  3553. *
  3554. * @config_type: config type
  3555. * @config_data: configuration to pass to AFE session
  3556. * @arg: argument used in specific config types
  3557. *
  3558. * Returns 0 on success or error value on port start failure.
  3559. */
  3560. int afe_set_config(enum afe_config_type config_type, void *config_data, int arg)
  3561. {
  3562. int ret;
  3563. pr_debug("%s: enter config_type %d\n", __func__, config_type);
  3564. ret = afe_q6_interface_prepare();
  3565. if (ret) {
  3566. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3567. return ret;
  3568. }
  3569. switch (config_type) {
  3570. case AFE_SLIMBUS_SLAVE_CONFIG:
  3571. ret = afe_send_slimbus_slave_cfg(config_data);
  3572. if (!ret)
  3573. ret = afe_init_cdc_reg_config();
  3574. else
  3575. pr_err("%s: Sending slimbus slave config failed %d\n",
  3576. __func__, ret);
  3577. break;
  3578. case AFE_CDC_REGISTERS_CONFIG:
  3579. ret = afe_send_codec_reg_config(config_data);
  3580. break;
  3581. case AFE_SLIMBUS_SLAVE_PORT_CONFIG:
  3582. ret = afe_send_slimbus_slave_port_cfg(config_data, arg);
  3583. break;
  3584. case AFE_AANC_VERSION:
  3585. ret = afe_send_aanc_version(config_data);
  3586. break;
  3587. case AFE_CLIP_BANK_SEL:
  3588. ret = afe_send_bank_selection_clip(config_data);
  3589. break;
  3590. case AFE_CDC_CLIP_REGISTERS_CONFIG:
  3591. ret = afe_send_codec_reg_config(config_data);
  3592. break;
  3593. case AFE_CDC_REGISTER_PAGE_CONFIG:
  3594. ret = afe_send_codec_reg_page_config(config_data);
  3595. break;
  3596. default:
  3597. pr_err("%s: unknown configuration type %d",
  3598. __func__, config_type);
  3599. ret = -EINVAL;
  3600. }
  3601. if (!ret)
  3602. set_bit(config_type, &afe_configured_cmd);
  3603. return ret;
  3604. }
  3605. EXPORT_SYMBOL(afe_set_config);
  3606. /*
  3607. * afe_clear_config - If SSR happens ADSP loses AFE configs, let AFE driver know
  3608. * about the state so client driver can wait until AFE is
  3609. * reconfigured.
  3610. */
  3611. void afe_clear_config(enum afe_config_type config)
  3612. {
  3613. clear_bit(config, &afe_configured_cmd);
  3614. }
  3615. EXPORT_SYMBOL(afe_clear_config);
  3616. bool afe_has_config(enum afe_config_type config)
  3617. {
  3618. return !!test_bit(config, &afe_configured_cmd);
  3619. }
  3620. int afe_send_spdif_clk_cfg(struct afe_param_id_spdif_clk_cfg *cfg,
  3621. u16 port_id)
  3622. {
  3623. struct afe_param_id_spdif_clk_cfg clk_cfg;
  3624. struct param_hdr_v3 param_hdr;
  3625. int ret = 0;
  3626. if (!cfg) {
  3627. pr_err("%s: Error, no configuration data\n", __func__);
  3628. return -EINVAL;
  3629. }
  3630. memset(&clk_cfg, 0, sizeof(clk_cfg));
  3631. memset(&param_hdr, 0, sizeof(param_hdr));
  3632. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3633. param_hdr.instance_id = INSTANCE_ID_0;
  3634. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  3635. param_hdr.param_size = sizeof(struct afe_param_id_spdif_clk_cfg);
  3636. pr_debug("%s: Minor version = 0x%x clk val = %d clk root = 0x%x port id = 0x%x\n",
  3637. __func__, clk_cfg.clk_cfg_minor_version, clk_cfg.clk_value,
  3638. clk_cfg.clk_root, q6audio_get_port_id(port_id));
  3639. ret = q6afe_pack_and_set_param_in_band(port_id,
  3640. q6audio_get_port_index(port_id),
  3641. param_hdr, (u8 *) &clk_cfg);
  3642. if (ret < 0)
  3643. pr_err("%s: AFE send clock config for port 0x%x failed ret = %d\n",
  3644. __func__, port_id, ret);
  3645. return ret;
  3646. }
  3647. /**
  3648. * afe_send_spdif_ch_status_cfg -
  3649. * to configure AFE session with
  3650. * specified channel status configuration
  3651. *
  3652. * @ch_status_cfg: channel status configutation
  3653. * @port_id: AFE port id number
  3654. *
  3655. * Returns 0 on success or error value on port start failure.
  3656. */
  3657. int afe_send_spdif_ch_status_cfg(struct afe_param_id_spdif_ch_status_cfg
  3658. *ch_status_cfg, u16 port_id)
  3659. {
  3660. struct param_hdr_v3 param_hdr;
  3661. int ret = 0;
  3662. if (!ch_status_cfg) {
  3663. pr_err("%s: Error, no configuration data\n", __func__);
  3664. return -EINVAL;
  3665. }
  3666. memset(&param_hdr, 0, sizeof(param_hdr));
  3667. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3668. param_hdr.instance_id = INSTANCE_ID_0;
  3669. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CLK_CONFIG;
  3670. param_hdr.param_size = sizeof(struct afe_param_id_spdif_ch_status_cfg);
  3671. ret = q6afe_pack_and_set_param_in_band(port_id,
  3672. q6audio_get_port_index(port_id),
  3673. param_hdr, (u8 *) ch_status_cfg);
  3674. if (ret < 0)
  3675. pr_err("%s: AFE send channel status for port 0x%x failed ret = %d\n",
  3676. __func__, port_id, ret);
  3677. return ret;
  3678. }
  3679. EXPORT_SYMBOL(afe_send_spdif_ch_status_cfg);
  3680. int afe_send_cmd_wakeup_register(void *handle, bool enable)
  3681. {
  3682. struct afe_svc_cmd_evt_cfg_payload wakeup_irq;
  3683. int ret = 0;
  3684. pr_debug("%s: enter\n", __func__);
  3685. wakeup_irq.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3686. APR_HDR_LEN(APR_HDR_SIZE),
  3687. APR_PKT_VER);
  3688. wakeup_irq.hdr.pkt_size = sizeof(wakeup_irq);
  3689. wakeup_irq.hdr.src_port = 0;
  3690. wakeup_irq.hdr.dest_port = 0;
  3691. wakeup_irq.hdr.token = 0x0;
  3692. wakeup_irq.hdr.opcode = AFE_SVC_CMD_EVENT_CFG;
  3693. wakeup_irq.event_id = AFE_EVENT_ID_MBHC_DETECTION_SW_WA;
  3694. wakeup_irq.reg_flag = enable;
  3695. pr_debug("%s: cmd wakeup register opcode[0x%x] register:%d\n",
  3696. __func__, wakeup_irq.hdr.opcode, wakeup_irq.reg_flag);
  3697. ret = afe_apr_send_pkt(&wakeup_irq, &this_afe.wait_wakeup);
  3698. if (ret)
  3699. pr_err("%s: AFE wakeup command register %d failed %d\n",
  3700. __func__, enable, ret);
  3701. return ret;
  3702. }
  3703. EXPORT_SYMBOL(afe_send_cmd_wakeup_register);
  3704. static int afe_send_cmd_port_start(u16 port_id)
  3705. {
  3706. struct afe_port_cmd_device_start start;
  3707. int ret, index;
  3708. pr_debug("%s: enter\n", __func__);
  3709. index = q6audio_get_port_index(port_id);
  3710. if (index < 0 || index >= AFE_MAX_PORTS) {
  3711. pr_err("%s: AFE port index[%d] invalid!\n",
  3712. __func__, index);
  3713. return -EINVAL;
  3714. }
  3715. ret = q6audio_validate_port(port_id);
  3716. if (ret < 0) {
  3717. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3718. return -EINVAL;
  3719. }
  3720. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3721. APR_HDR_LEN(APR_HDR_SIZE),
  3722. APR_PKT_VER);
  3723. start.hdr.pkt_size = sizeof(start);
  3724. start.hdr.src_port = 0;
  3725. start.hdr.dest_port = 0;
  3726. start.hdr.token = index;
  3727. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  3728. start.port_id = q6audio_get_port_id(port_id);
  3729. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  3730. __func__, start.hdr.opcode, start.port_id);
  3731. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  3732. if (ret)
  3733. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  3734. port_id, ret);
  3735. return ret;
  3736. }
  3737. static int afe_aanc_start(uint16_t tx_port_id, uint16_t rx_port_id)
  3738. {
  3739. int ret;
  3740. pr_debug("%s: Tx port is 0x%x, Rx port is 0x%x\n",
  3741. __func__, tx_port_id, rx_port_id);
  3742. ret = afe_aanc_port_cfg(this_afe.apr, tx_port_id, rx_port_id);
  3743. if (ret) {
  3744. pr_err("%s: Send AANC Port Config failed %d\n",
  3745. __func__, ret);
  3746. goto fail_cmd;
  3747. }
  3748. send_afe_cal_type(AFE_AANC_CAL, tx_port_id);
  3749. fail_cmd:
  3750. return ret;
  3751. }
  3752. /**
  3753. * afe_spdif_port_start - to configure AFE session with
  3754. * specified port configuration
  3755. *
  3756. * @port_id: AFE port id number
  3757. * @spdif_port: spdif port configutation
  3758. * @rate: sampling rate of port
  3759. *
  3760. * Returns 0 on success or error value on port start failure.
  3761. */
  3762. int afe_spdif_port_start(u16 port_id, struct afe_spdif_port_config *spdif_port,
  3763. u32 rate)
  3764. {
  3765. struct param_hdr_v3 param_hdr;
  3766. uint16_t port_index;
  3767. int ret = 0;
  3768. if (!spdif_port) {
  3769. pr_err("%s: Error, no configuration data\n", __func__);
  3770. ret = -EINVAL;
  3771. return ret;
  3772. }
  3773. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3774. memset(&param_hdr, 0, sizeof(param_hdr));
  3775. ret = q6audio_validate_port(port_id);
  3776. if (ret < 0) {
  3777. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3778. return -EINVAL;
  3779. }
  3780. afe_send_cal(port_id);
  3781. afe_send_hw_delay(port_id, rate);
  3782. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  3783. param_hdr.instance_id = INSTANCE_ID_0;
  3784. param_hdr.param_id = AFE_PARAM_ID_SPDIF_CONFIG;
  3785. param_hdr.param_size = sizeof(struct afe_spdif_port_config);
  3786. ret = q6afe_pack_and_set_param_in_band(port_id,
  3787. q6audio_get_port_index(port_id),
  3788. param_hdr, (u8 *) spdif_port);
  3789. if (ret) {
  3790. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  3791. __func__, port_id, ret);
  3792. goto fail_cmd;
  3793. }
  3794. port_index = afe_get_port_index(port_id);
  3795. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  3796. this_afe.afe_sample_rates[port_index] = rate;
  3797. } else {
  3798. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  3799. ret = -EINVAL;
  3800. goto fail_cmd;
  3801. }
  3802. if (afe_get_port_type(port_id) == MSM_AFE_PORT_TYPE_RX) {
  3803. ret = afe_send_spdif_ch_status_cfg(&spdif_port->ch_status,
  3804. port_id);
  3805. if (ret < 0) {
  3806. pr_err("%s: afe send failed %d\n", __func__, ret);
  3807. goto fail_cmd;
  3808. }
  3809. }
  3810. return afe_send_cmd_port_start(port_id);
  3811. fail_cmd:
  3812. return ret;
  3813. }
  3814. EXPORT_SYMBOL(afe_spdif_port_start);
  3815. /**
  3816. * afe_spdif_reg_event_cfg -
  3817. * register for event from AFE spdif port
  3818. *
  3819. * @port_id: Port ID to register event
  3820. * @reg_flag: register or unregister
  3821. * @cb: callback function to invoke for events from module
  3822. * @private_data: private data to sent back in callback fn
  3823. *
  3824. * Returns 0 on success or error on failure
  3825. */
  3826. int afe_spdif_reg_event_cfg(u16 port_id, u16 reg_flag,
  3827. void (*cb)(uint32_t opcode,
  3828. uint32_t token, uint32_t *payload, void *priv),
  3829. void *private_data)
  3830. {
  3831. struct afe_port_cmd_event_cfg *config;
  3832. struct afe_port_cmd_mod_evt_cfg_payload pl;
  3833. int index;
  3834. int ret;
  3835. int num_events = 1;
  3836. int cmd_size = sizeof(struct afe_port_cmd_event_cfg) +
  3837. (num_events * sizeof(struct afe_port_cmd_mod_evt_cfg_payload));
  3838. config = kzalloc(cmd_size, GFP_KERNEL);
  3839. if (!config)
  3840. return -ENOMEM;
  3841. if (port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) {
  3842. this_afe.pri_spdif_tx_cb = cb;
  3843. this_afe.pri_spdif_tx_private_data = private_data;
  3844. } else if (port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX) {
  3845. this_afe.sec_spdif_tx_cb = cb;
  3846. this_afe.sec_spdif_tx_private_data = private_data;
  3847. } else {
  3848. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  3849. ret = -EINVAL;
  3850. goto fail_idx;
  3851. }
  3852. index = q6audio_get_port_index(port_id);
  3853. if (index < 0) {
  3854. pr_err("%s: Invalid index number: %d\n", __func__, index);
  3855. ret = -EINVAL;
  3856. goto fail_idx;
  3857. }
  3858. memset(&pl, 0, sizeof(pl));
  3859. pl.module_id = AFE_MODULE_CUSTOM_EVENTS;
  3860. pl.event_id = AFE_PORT_FMT_UPDATE_EVENT;
  3861. pl.reg_flag = reg_flag;
  3862. config->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  3863. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  3864. config->hdr.pkt_size = cmd_size;
  3865. config->hdr.src_port = 1;
  3866. config->hdr.dest_port = 1;
  3867. config->hdr.token = index;
  3868. config->hdr.opcode = AFE_PORT_CMD_MOD_EVENT_CFG;
  3869. config->port_id = q6audio_get_port_id(port_id);
  3870. config->num_events = num_events;
  3871. config->version = 1;
  3872. memcpy(config->payload, &pl, sizeof(pl));
  3873. ret = afe_apr_send_pkt((uint32_t *) config, &this_afe.wait[index]);
  3874. fail_idx:
  3875. kfree(config);
  3876. return ret;
  3877. }
  3878. EXPORT_SYMBOL(afe_spdif_reg_event_cfg);
  3879. int afe_send_slot_mapping_cfg(
  3880. struct afe_param_id_slot_mapping_cfg *slot_mapping_cfg,
  3881. u16 port_id)
  3882. {
  3883. struct param_hdr_v3 param_hdr;
  3884. int ret = 0;
  3885. if (!slot_mapping_cfg) {
  3886. pr_err("%s: Error, no configuration data\n", __func__);
  3887. return -EINVAL;
  3888. }
  3889. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3890. memset(&param_hdr, 0, sizeof(param_hdr));
  3891. param_hdr.module_id = AFE_MODULE_TDM;
  3892. param_hdr.instance_id = INSTANCE_ID_0;
  3893. param_hdr.param_id = AFE_PARAM_ID_PORT_SLOT_MAPPING_CONFIG;
  3894. param_hdr.param_size = sizeof(struct afe_param_id_slot_mapping_cfg);
  3895. ret = q6afe_pack_and_set_param_in_band(port_id,
  3896. q6audio_get_port_index(port_id),
  3897. param_hdr,
  3898. (u8 *) slot_mapping_cfg);
  3899. if (ret < 0)
  3900. pr_err("%s: AFE send slot mapping for port 0x%x failed ret = %d\n",
  3901. __func__, port_id, ret);
  3902. return ret;
  3903. }
  3904. int afe_send_slot_mapping_cfg_v2(
  3905. struct afe_param_id_slot_mapping_cfg_v2 *slot_mapping_cfg,
  3906. u16 port_id)
  3907. {
  3908. struct param_hdr_v3 param_hdr;
  3909. int ret = 0;
  3910. if (!slot_mapping_cfg) {
  3911. pr_err("%s: Error, no configuration data\n", __func__);
  3912. return -EINVAL;
  3913. }
  3914. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3915. memset(&param_hdr, 0, sizeof(param_hdr));
  3916. param_hdr.module_id = AFE_MODULE_TDM;
  3917. param_hdr.instance_id = INSTANCE_ID_0;
  3918. param_hdr.param_id = AFE_PARAM_ID_PORT_SLOT_MAPPING_CONFIG;
  3919. param_hdr.param_size = sizeof(struct afe_param_id_slot_mapping_cfg_v2);
  3920. ret = q6afe_pack_and_set_param_in_band(port_id,
  3921. q6audio_get_port_index(port_id),
  3922. param_hdr,
  3923. (u8 *) slot_mapping_cfg);
  3924. if (ret < 0)
  3925. pr_err("%s: AFE send slot mapping for port 0x%x failed ret = %d\n",
  3926. __func__, port_id, ret);
  3927. return ret;
  3928. }
  3929. int afe_send_custom_tdm_header_cfg(
  3930. struct afe_param_id_custom_tdm_header_cfg *custom_tdm_header_cfg,
  3931. u16 port_id)
  3932. {
  3933. struct param_hdr_v3 param_hdr;
  3934. int ret = 0;
  3935. if (!custom_tdm_header_cfg) {
  3936. pr_err("%s: Error, no configuration data\n", __func__);
  3937. return -EINVAL;
  3938. }
  3939. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3940. memset(&param_hdr, 0, sizeof(param_hdr));
  3941. param_hdr.module_id = AFE_MODULE_TDM;
  3942. param_hdr.instance_id = INSTANCE_ID_0;
  3943. param_hdr.param_id = AFE_PARAM_ID_CUSTOM_TDM_HEADER_CONFIG;
  3944. param_hdr.param_size =
  3945. sizeof(struct afe_param_id_custom_tdm_header_cfg);
  3946. ret = q6afe_pack_and_set_param_in_band(port_id,
  3947. q6audio_get_port_index(port_id),
  3948. param_hdr,
  3949. (u8 *) custom_tdm_header_cfg);
  3950. if (ret < 0)
  3951. pr_err("%s: AFE send custom tdm header for port 0x%x failed ret = %d\n",
  3952. __func__, port_id, ret);
  3953. return ret;
  3954. }
  3955. /**
  3956. * afe_tdm_port_start - to configure AFE session with
  3957. * specified port configuration
  3958. *
  3959. * @port_id: AFE port id number
  3960. * @tdm_port: TDM port configutation
  3961. * @rate: sampling rate of port
  3962. * @num_groups: number of TDM groups
  3963. *
  3964. * Returns 0 on success or error value on port start failure.
  3965. */
  3966. int afe_tdm_port_start(u16 port_id, struct afe_tdm_port_config *tdm_port,
  3967. u32 rate, u16 num_groups)
  3968. {
  3969. struct param_hdr_v3 param_hdr;
  3970. int index = 0;
  3971. uint16_t port_index = 0;
  3972. enum afe_mad_type mad_type = MAD_HW_NONE;
  3973. int ret = 0;
  3974. if (!tdm_port) {
  3975. pr_err("%s: Error, no configuration data\n", __func__);
  3976. return -EINVAL;
  3977. }
  3978. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  3979. memset(&param_hdr, 0, sizeof(param_hdr));
  3980. index = q6audio_get_port_index(port_id);
  3981. if (index < 0 || index >= AFE_MAX_PORTS) {
  3982. pr_err("%s: AFE port index[%d] invalid!\n",
  3983. __func__, index);
  3984. return -EINVAL;
  3985. }
  3986. ret = q6audio_validate_port(port_id);
  3987. if (ret < 0) {
  3988. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  3989. return -EINVAL;
  3990. }
  3991. ret = afe_q6_interface_prepare();
  3992. if (ret != 0) {
  3993. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  3994. return ret;
  3995. }
  3996. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  3997. this_afe.afe_sample_rates[index] = rate;
  3998. if (this_afe.rt_cb)
  3999. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  4000. }
  4001. port_index = afe_get_port_index(port_id);
  4002. /* Also send the topology id here: */
  4003. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  4004. /* One time call: only for first time */
  4005. afe_send_custom_topology();
  4006. afe_send_port_topology_id(port_id);
  4007. afe_send_cal(port_id);
  4008. afe_send_hw_delay(port_id, rate);
  4009. }
  4010. /* Start SW MAD module */
  4011. mad_type = afe_port_get_mad_type(port_id);
  4012. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  4013. mad_type);
  4014. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  4015. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  4016. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  4017. pr_err("%s: AFE isn't configured yet for\n"
  4018. "HW MAD try Again\n", __func__);
  4019. ret = -EAGAIN;
  4020. goto fail_cmd;
  4021. }
  4022. ret = afe_turn_onoff_hw_mad(mad_type, true);
  4023. if (ret) {
  4024. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  4025. __func__, ret);
  4026. goto fail_cmd;
  4027. }
  4028. }
  4029. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  4030. param_hdr.instance_id = INSTANCE_ID_0;
  4031. param_hdr.param_id = AFE_PARAM_ID_TDM_CONFIG;
  4032. param_hdr.param_size = sizeof(struct afe_param_id_tdm_cfg);
  4033. ret = q6afe_pack_and_set_param_in_band(port_id,
  4034. q6audio_get_port_index(port_id),
  4035. param_hdr,
  4036. (u8 *) &tdm_port->tdm);
  4037. if (ret) {
  4038. pr_err("%s: AFE enable for port 0x%x failed ret = %d\n",
  4039. __func__, port_id, ret);
  4040. goto fail_cmd;
  4041. }
  4042. port_index = afe_get_port_index(port_id);
  4043. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  4044. this_afe.afe_sample_rates[port_index] = rate;
  4045. } else {
  4046. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  4047. ret = -EINVAL;
  4048. goto fail_cmd;
  4049. }
  4050. if (q6core_get_avcs_api_version_per_service(
  4051. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V3)
  4052. ret = afe_send_slot_mapping_cfg_v2(
  4053. &tdm_port->slot_mapping_v2, port_id);
  4054. else
  4055. ret = afe_send_slot_mapping_cfg(
  4056. &tdm_port->slot_mapping,
  4057. port_id);
  4058. if (ret < 0) {
  4059. pr_err("%s: afe send failed %d\n", __func__, ret);
  4060. goto fail_cmd;
  4061. }
  4062. if (tdm_port->custom_tdm_header.header_type) {
  4063. ret = afe_send_custom_tdm_header_cfg(
  4064. &tdm_port->custom_tdm_header, port_id);
  4065. if (ret < 0) {
  4066. pr_err("%s: afe send failed %d\n", __func__, ret);
  4067. goto fail_cmd;
  4068. }
  4069. }
  4070. ret = afe_send_cmd_port_start(port_id);
  4071. fail_cmd:
  4072. return ret;
  4073. }
  4074. EXPORT_SYMBOL(afe_tdm_port_start);
  4075. /**
  4076. * afe_set_cal_mode -
  4077. * set cal mode for AFE calibration
  4078. *
  4079. * @port_id: AFE port id number
  4080. * @afe_cal_mode: AFE calib mode
  4081. *
  4082. */
  4083. void afe_set_cal_mode(u16 port_id, enum afe_cal_mode afe_cal_mode)
  4084. {
  4085. uint16_t port_index;
  4086. port_index = afe_get_port_index(port_id);
  4087. this_afe.afe_cal_mode[port_index] = afe_cal_mode;
  4088. }
  4089. EXPORT_SYMBOL(afe_set_cal_mode);
  4090. /**
  4091. * afe_set_vad_cfg -
  4092. * set configuration for VAD
  4093. *
  4094. * @port_id: AFE port id number
  4095. * @vad_enable: enable/disable vad
  4096. * @preroll_config: Preroll configuration
  4097. *
  4098. */
  4099. void afe_set_vad_cfg(u32 vad_enable, u32 preroll_config,
  4100. u32 port_id)
  4101. {
  4102. uint16_t port_index;
  4103. port_index = afe_get_port_index(port_id);
  4104. this_afe.vad_cfg[port_index].is_enable = vad_enable;
  4105. this_afe.vad_cfg[port_index].pre_roll = preroll_config;
  4106. }
  4107. EXPORT_SYMBOL(afe_set_vad_cfg);
  4108. /**
  4109. * afe_get_island_mode_cfg -
  4110. * get island mode configuration
  4111. *
  4112. * @port_id: AFE port id number
  4113. * @enable_flag: Enable or Disable
  4114. *
  4115. */
  4116. void afe_get_island_mode_cfg(u16 port_id, u32 *enable_flag)
  4117. {
  4118. uint16_t port_index;
  4119. if (enable_flag) {
  4120. port_index = afe_get_port_index(port_id);
  4121. *enable_flag = this_afe.island_mode[port_index];
  4122. }
  4123. }
  4124. EXPORT_SYMBOL(afe_get_island_mode_cfg);
  4125. /**
  4126. * afe_set_island_mode_cfg -
  4127. * set island mode configuration
  4128. *
  4129. * @port_id: AFE port id number
  4130. * @enable_flag: Enable or Disable
  4131. *
  4132. */
  4133. void afe_set_island_mode_cfg(u16 port_id, u32 enable_flag)
  4134. {
  4135. uint16_t port_index;
  4136. port_index = afe_get_port_index(port_id);
  4137. this_afe.island_mode[port_index] = enable_flag;
  4138. trace_printk("%s: set island mode cfg 0x%x for port 0x%x\n",
  4139. __func__, this_afe.island_mode[port_index], port_id);
  4140. }
  4141. EXPORT_SYMBOL(afe_set_island_mode_cfg);
  4142. /**
  4143. * afe_get_power_mode_cfg -
  4144. * get power mode configuration
  4145. * @port_id: AFE port id number
  4146. * @enable_flag: Enable or Disable
  4147. */
  4148. int afe_get_power_mode_cfg(u16 port_id, u32 *enable_flag)
  4149. {
  4150. uint16_t port_index;
  4151. int ret = 0;
  4152. if (enable_flag) {
  4153. port_index = afe_get_port_index(port_id);
  4154. if (port_index < 0 || port_index >= AFE_MAX_PORTS) {
  4155. pr_err("%s: AFE port index[%d] invalid!\n",
  4156. __func__, port_index);
  4157. return -EINVAL;
  4158. }
  4159. *enable_flag = this_afe.power_mode[port_index];
  4160. }
  4161. return ret;
  4162. }
  4163. EXPORT_SYMBOL(afe_get_power_mode_cfg);
  4164. /**
  4165. * afe_set_power_mode_cfg -
  4166. * set power mode configuration
  4167. * @port_id: AFE port id number
  4168. * @enable_flag: Enable or Disable
  4169. */
  4170. int afe_set_power_mode_cfg(u16 port_id, u32 enable_flag)
  4171. {
  4172. uint16_t port_index;
  4173. int ret= 0;
  4174. port_index = afe_get_port_index(port_id);
  4175. if (port_index < 0 || port_index >= AFE_MAX_PORTS) {
  4176. pr_err("%s: AFE port index[%d] invalid!\n",
  4177. __func__, port_index);
  4178. return -EINVAL;
  4179. }
  4180. this_afe.power_mode[port_index] = enable_flag;
  4181. trace_printk("%s: set power mode cfg 0x%x for port 0x%x\n",
  4182. __func__, this_afe.power_mode[port_index], port_id);
  4183. return ret;
  4184. }
  4185. EXPORT_SYMBOL(afe_set_power_mode_cfg);
  4186. /**
  4187. * afe_set_routing_callback -
  4188. * Update callback function for routing
  4189. *
  4190. * @cb: callback function to update with
  4191. *
  4192. */
  4193. void afe_set_routing_callback(routing_cb cb)
  4194. {
  4195. this_afe.rt_cb = cb;
  4196. }
  4197. EXPORT_SYMBOL(afe_set_routing_callback);
  4198. int afe_port_send_usb_dev_param(u16 port_id, union afe_port_config *afe_config)
  4199. {
  4200. struct afe_param_id_usb_audio_dev_params usb_dev;
  4201. struct afe_param_id_usb_audio_dev_lpcm_fmt lpcm_fmt;
  4202. struct afe_param_id_usb_audio_svc_interval svc_int;
  4203. struct param_hdr_v3 param_hdr;
  4204. int ret = 0, index = 0;
  4205. if (!afe_config) {
  4206. pr_err("%s: Error, no configuration data\n", __func__);
  4207. ret = -EINVAL;
  4208. goto exit;
  4209. }
  4210. index = q6audio_get_port_index(port_id);
  4211. if (index < 0 || index >= AFE_MAX_PORTS) {
  4212. pr_err("%s: AFE port index[%d] invalid!\n",
  4213. __func__, index);
  4214. return -EINVAL;
  4215. }
  4216. memset(&usb_dev, 0, sizeof(usb_dev));
  4217. memset(&lpcm_fmt, 0, sizeof(lpcm_fmt));
  4218. memset(&param_hdr, 0, sizeof(param_hdr));
  4219. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  4220. param_hdr.instance_id = INSTANCE_ID_0;
  4221. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_PARAMS;
  4222. param_hdr.param_size = sizeof(usb_dev);
  4223. usb_dev.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  4224. usb_dev.dev_token = afe_config->usb_audio.dev_token;
  4225. ret = q6afe_pack_and_set_param_in_band(port_id,
  4226. q6audio_get_port_index(port_id),
  4227. param_hdr, (u8 *) &usb_dev);
  4228. if (ret) {
  4229. pr_err("%s: AFE device param cmd failed %d\n",
  4230. __func__, ret);
  4231. goto exit;
  4232. }
  4233. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_DEV_LPCM_FMT;
  4234. param_hdr.param_size = sizeof(lpcm_fmt);
  4235. lpcm_fmt.cfg_minor_version = AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  4236. lpcm_fmt.endian = afe_config->usb_audio.endian;
  4237. ret = q6afe_pack_and_set_param_in_band(port_id,
  4238. q6audio_get_port_index(port_id),
  4239. param_hdr, (u8 *) &lpcm_fmt);
  4240. if (ret) {
  4241. pr_err("%s: AFE device param cmd LPCM_FMT failed %d\n",
  4242. __func__, ret);
  4243. goto exit;
  4244. }
  4245. param_hdr.param_id = AFE_PARAM_ID_USB_AUDIO_SVC_INTERVAL;
  4246. param_hdr.param_size = sizeof(svc_int);
  4247. svc_int.cfg_minor_version =
  4248. AFE_API_MINOR_VERSION_USB_AUDIO_CONFIG;
  4249. svc_int.svc_interval = afe_config->usb_audio.service_interval;
  4250. pr_debug("%s: AFE device param cmd sending SVC_INTERVAL %d\n",
  4251. __func__, svc_int.svc_interval);
  4252. ret = q6afe_pack_and_set_param_in_band(port_id,
  4253. q6audio_get_port_index(port_id),
  4254. param_hdr, (u8 *) &svc_int);
  4255. if (ret) {
  4256. pr_err("%s: AFE device param cmd svc_interval failed %d\n",
  4257. __func__, ret);
  4258. ret = -EINVAL;
  4259. goto exit;
  4260. }
  4261. exit:
  4262. return ret;
  4263. }
  4264. static int q6afe_send_ttp_config(u16 port_id,
  4265. union afe_port_config afe_config,
  4266. struct afe_ttp_config *ttp_cfg)
  4267. {
  4268. struct afe_ttp_gen_enable_t ttp_gen_enable;
  4269. struct afe_ttp_gen_cfg_t ttp_gen_cfg;
  4270. struct param_hdr_v3 param_hdr;
  4271. int ret;
  4272. memset(&ttp_gen_enable, 0, sizeof(ttp_gen_enable));
  4273. memset(&ttp_gen_cfg, 0, sizeof(ttp_gen_cfg));
  4274. memset(&param_hdr, 0, sizeof(param_hdr));
  4275. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  4276. param_hdr.instance_id = INSTANCE_ID_0;
  4277. pr_debug("%s: Enable TTP generator\n", __func__);
  4278. ttp_gen_enable = ttp_cfg->ttp_gen_enable;
  4279. param_hdr.param_id = AVS_DEPACKETIZER_PARAM_ID_TTP_GEN_STATE;
  4280. param_hdr.param_size = sizeof(struct afe_ttp_gen_enable_t);
  4281. ret = q6afe_pack_and_set_param_in_band(port_id,
  4282. q6audio_get_port_index(port_id),
  4283. param_hdr,
  4284. (u8 *) &ttp_gen_enable);
  4285. if (ret) {
  4286. pr_err("%s: AVS_DEPACKETIZER_PARAM_ID_TTP_GEN_STATE for port 0x%x failed %d\n",
  4287. __func__, port_id, ret);
  4288. goto exit;
  4289. }
  4290. pr_debug("%s: sending TTP generator config\n", __func__);
  4291. ttp_gen_cfg = ttp_cfg->ttp_gen_cfg;
  4292. param_hdr.param_id = AVS_DEPACKETIZER_PARAM_ID_TTP_GEN_CFG;
  4293. param_hdr.param_size = sizeof(struct afe_ttp_gen_cfg_t);
  4294. ret = q6afe_pack_and_set_param_in_band(port_id,
  4295. q6audio_get_port_index(port_id),
  4296. param_hdr,
  4297. (u8 *) &ttp_gen_cfg);
  4298. if (ret)
  4299. pr_err("%s: AVS_DEPACKETIZER_PARAM_ID_TTP_GEN_CFG for port 0x%x failed %d\n",
  4300. __func__, port_id, ret);
  4301. exit:
  4302. return ret;
  4303. }
  4304. static int q6afe_send_dec_config(u16 port_id,
  4305. union afe_port_config afe_config,
  4306. struct afe_dec_config *cfg,
  4307. u32 format,
  4308. u16 afe_in_channels, u16 afe_in_bit_width)
  4309. {
  4310. struct afe_dec_media_fmt_t dec_media_fmt;
  4311. struct avs_dec_depacketizer_id_param_t dec_depkt_id_param;
  4312. struct avs_dec_congestion_buffer_param_t dec_buffer_id_param;
  4313. struct afe_enc_dec_imc_info_param_t imc_info_param;
  4314. struct afe_port_media_type_t media_type;
  4315. struct afe_matched_port_t matched_port_param;
  4316. struct asm_aptx_ad_speech_mode_cfg_t speech_codec_init_param;
  4317. struct param_hdr_v3 param_hdr;
  4318. int ret;
  4319. u32 dec_fmt;
  4320. memset(&dec_depkt_id_param, 0, sizeof(dec_depkt_id_param));
  4321. memset(&dec_media_fmt, 0, sizeof(dec_media_fmt));
  4322. memset(&imc_info_param, 0, sizeof(imc_info_param));
  4323. memset(&media_type, 0, sizeof(media_type));
  4324. memset(&matched_port_param, 0, sizeof(matched_port_param));
  4325. memset(&speech_codec_init_param, 0, sizeof(speech_codec_init_param));
  4326. memset(&param_hdr, 0, sizeof(param_hdr));
  4327. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  4328. param_hdr.instance_id = INSTANCE_ID_0;
  4329. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEPACKETIZER to DSP payload\n",
  4330. __func__);
  4331. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEPACKETIZER_ID;
  4332. param_hdr.param_size = sizeof(struct avs_dec_depacketizer_id_param_t);
  4333. dec_depkt_id_param.dec_depacketizer_id =
  4334. AFE_MODULE_ID_DEPACKETIZER_COP_V1;
  4335. if (cfg->format == ENC_CODEC_TYPE_LDAC)
  4336. dec_depkt_id_param.dec_depacketizer_id =
  4337. AFE_MODULE_ID_DEPACKETIZER_COP;
  4338. ret = q6afe_pack_and_set_param_in_band(port_id,
  4339. q6audio_get_port_index(port_id),
  4340. param_hdr,
  4341. (u8 *) &dec_depkt_id_param);
  4342. if (ret) {
  4343. pr_err("%s: AFE_DECODER_PARAM_ID_DEPACKETIZER for port 0x%x failed %d\n",
  4344. __func__, port_id, ret);
  4345. goto exit;
  4346. }
  4347. switch (cfg->format) {
  4348. case ASM_MEDIA_FMT_SBC:
  4349. case ASM_MEDIA_FMT_AAC_V2:
  4350. case ASM_MEDIA_FMT_MP3:
  4351. if (port_id == SLIMBUS_9_TX) {
  4352. dec_buffer_id_param.max_nr_buffers = 200;
  4353. dec_buffer_id_param.pre_buffer_size = 200;
  4354. } else {
  4355. dec_buffer_id_param.max_nr_buffers = 0;
  4356. dec_buffer_id_param.pre_buffer_size = 0;
  4357. }
  4358. pr_debug("%s: sending AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE to DSP payload\n",
  4359. __func__);
  4360. param_hdr.param_id =
  4361. AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE;
  4362. param_hdr.param_size =
  4363. sizeof(struct avs_dec_congestion_buffer_param_t);
  4364. dec_buffer_id_param.version = 0;
  4365. ret = q6afe_pack_and_set_param_in_band(port_id,
  4366. q6audio_get_port_index(port_id),
  4367. param_hdr,
  4368. (u8 *) &dec_buffer_id_param);
  4369. if (ret) {
  4370. pr_err("%s: AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE for port 0x%x failed %d\n",
  4371. __func__, port_id, ret);
  4372. goto exit;
  4373. }
  4374. break;
  4375. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  4376. if (!cfg->abr_dec_cfg.is_abr_enabled) {
  4377. pr_debug("%s: sending aptx adaptive congestion buffer size to dsp\n",
  4378. __func__);
  4379. param_hdr.param_id =
  4380. AFE_DECODER_PARAM_ID_CONGESTION_BUFFER_SIZE;
  4381. param_hdr.param_size =
  4382. sizeof(struct avs_dec_congestion_buffer_param_t);
  4383. dec_buffer_id_param.version = 0;
  4384. dec_buffer_id_param.max_nr_buffers = 226;
  4385. dec_buffer_id_param.pre_buffer_size = 226;
  4386. ret = q6afe_pack_and_set_param_in_band(port_id,
  4387. q6audio_get_port_index(port_id),
  4388. param_hdr,
  4389. (u8 *) &dec_buffer_id_param);
  4390. if (ret) {
  4391. pr_err("%s: aptx adaptive congestion buffer size for port 0x%x failed %d\n",
  4392. __func__, port_id, ret);
  4393. goto exit;
  4394. }
  4395. break;
  4396. }
  4397. /* fall through for abr enabled case */
  4398. default:
  4399. pr_debug("%s:sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload\n",
  4400. __func__);
  4401. param_hdr.param_id =
  4402. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  4403. param_hdr.param_size =
  4404. sizeof(struct afe_enc_dec_imc_info_param_t);
  4405. imc_info_param.imc_info = cfg->abr_dec_cfg.imc_info;
  4406. ret = q6afe_pack_and_set_param_in_band(port_id,
  4407. q6audio_get_port_index(port_id),
  4408. param_hdr,
  4409. (u8 *) &imc_info_param);
  4410. if (ret) {
  4411. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  4412. __func__, port_id, ret);
  4413. goto exit;
  4414. }
  4415. break;
  4416. }
  4417. pr_debug("%s: Send AFE_API_VERSION_PORT_MEDIA_TYPE to DSP\n", __func__);
  4418. param_hdr.module_id = AFE_MODULE_PORT;
  4419. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  4420. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  4421. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4422. switch (cfg->format) {
  4423. case ASM_MEDIA_FMT_AAC_V2:
  4424. media_type.sample_rate =
  4425. cfg->data.aac_config.sample_rate;
  4426. break;
  4427. case ASM_MEDIA_FMT_SBC:
  4428. media_type.sample_rate =
  4429. cfg->data.sbc_config.sample_rate;
  4430. break;
  4431. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  4432. if (!cfg->abr_dec_cfg.is_abr_enabled) {
  4433. media_type.sample_rate =
  4434. (cfg->data.aptx_ad_config.sample_rate == APTX_AD_44_1) ?
  4435. AFE_PORT_SAMPLE_RATE_44_1K :
  4436. AFE_PORT_SAMPLE_RATE_48K;
  4437. break;
  4438. }
  4439. /* fall through for abr enabled case */
  4440. case ASM_MEDIA_FMT_APTX_AD_SPEECH:
  4441. media_type.sample_rate = AFE_PORT_SAMPLE_RATE_32K;
  4442. break;
  4443. default:
  4444. media_type.sample_rate =
  4445. afe_config.slim_sch.sample_rate;
  4446. }
  4447. if (afe_in_bit_width)
  4448. media_type.bit_width = afe_in_bit_width;
  4449. else
  4450. media_type.bit_width = afe_config.slim_sch.bit_width;
  4451. if (afe_in_channels)
  4452. media_type.num_channels = afe_in_channels;
  4453. else
  4454. media_type.num_channels = afe_config.slim_sch.num_channels;
  4455. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  4456. media_type.reserved = 0;
  4457. ret = q6afe_pack_and_set_param_in_band(port_id,
  4458. q6audio_get_port_index(port_id),
  4459. param_hdr, (u8 *) &media_type);
  4460. if (ret) {
  4461. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  4462. __func__, port_id, ret);
  4463. goto exit;
  4464. }
  4465. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  4466. format != ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  4467. format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4468. pr_debug("%s:Unsuppported dec format. Ignore AFE config %u\n",
  4469. __func__, format);
  4470. goto exit;
  4471. }
  4472. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  4473. cfg->abr_dec_cfg.is_abr_enabled) {
  4474. pr_debug("%s: Ignore AFE config for abr case\n", __func__);
  4475. goto exit;
  4476. }
  4477. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4478. pr_debug("%s: sending AFE_PARAM_ID_RATE_MATCHED_PORT to DSP payload\n",
  4479. __func__);
  4480. param_hdr.param_id = AFE_PARAM_ID_RATE_MATCHED_PORT;
  4481. param_hdr.param_size =
  4482. sizeof(struct afe_matched_port_t);
  4483. matched_port_param.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4484. matched_port_param.enable = AFE_MATCHED_PORT_ENABLE;
  4485. ret = q6afe_pack_and_set_param_in_band(port_id,
  4486. q6audio_get_port_index(port_id),
  4487. param_hdr,
  4488. (u8 *) &matched_port_param);
  4489. if (ret) {
  4490. pr_err("%s: AFE_PARAM_ID_RATE_MATCHED_PORT for port 0x%x failed %d\n",
  4491. __func__, port_id, ret);
  4492. goto exit;
  4493. }
  4494. }
  4495. pr_debug("%s: sending AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT to DSP payload\n",
  4496. __func__);
  4497. param_hdr.module_id = AFE_MODULE_ID_DECODER;
  4498. param_hdr.instance_id = INSTANCE_ID_0;
  4499. param_hdr.param_id = AFE_DECODER_PARAM_ID_DEC_FMT_ID;
  4500. param_hdr.param_size = sizeof(dec_fmt);
  4501. dec_fmt = format;
  4502. ret = q6afe_pack_and_set_param_in_band(port_id,
  4503. q6audio_get_port_index(port_id),
  4504. param_hdr, (u8 *) &dec_fmt);
  4505. if (ret) {
  4506. pr_err("%s: AFE_DECODER_PARAM_ID_DEC_MEDIA_FMT for port 0x%x failed %d\n",
  4507. __func__, port_id, ret);
  4508. goto exit;
  4509. }
  4510. switch (cfg->format) {
  4511. case ASM_MEDIA_FMT_AAC_V2:
  4512. case ASM_MEDIA_FMT_APTX_ADAPTIVE:
  4513. param_hdr.param_size = sizeof(struct afe_dec_media_fmt_t);
  4514. pr_debug("%s:send AVS_DECODER_PARAM_ID DEC_MEDIA_FMT to DSP payload\n",
  4515. __func__);
  4516. param_hdr.param_id = AVS_DECODER_PARAM_ID_DEC_MEDIA_FMT;
  4517. dec_media_fmt.dec_media_config = cfg->data;
  4518. ret = q6afe_pack_and_set_param_in_band(port_id,
  4519. q6audio_get_port_index(port_id),
  4520. param_hdr,
  4521. (u8 *) &dec_media_fmt);
  4522. if (ret) {
  4523. pr_err("%s: AVS_DECODER_PARAM_ID DEC_MEDIA_FMT for port 0x%x failed %d\n",
  4524. __func__, port_id, ret);
  4525. goto exit;
  4526. }
  4527. break;
  4528. case ASM_MEDIA_FMT_APTX_AD_SPEECH:
  4529. param_hdr.param_size =
  4530. sizeof(struct asm_aptx_ad_speech_dec_cfg_t);
  4531. pr_debug("%s: send AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_DEC_INIT to DSP payload\n",
  4532. __func__);
  4533. param_hdr.param_id =
  4534. AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_DEC_INIT;
  4535. speech_codec_init_param =
  4536. cfg->data.aptx_ad_speech_config.speech_mode;
  4537. ret = q6afe_pack_and_set_param_in_band(port_id,
  4538. q6audio_get_port_index(port_id),
  4539. param_hdr,
  4540. (u8 *) &speech_codec_init_param);
  4541. if (ret) {
  4542. pr_err("%s: AVS_DECODER_PARAM_ID_APTX_ADAPTIVE_SPEECH_DEC_INIT for port 0x%x failed %d\n",
  4543. __func__, port_id, ret);
  4544. goto exit;
  4545. }
  4546. break;
  4547. default:
  4548. pr_debug("%s:No need to send DEC_MEDIA_FMT to DSP payload\n",
  4549. __func__);
  4550. }
  4551. exit:
  4552. return ret;
  4553. }
  4554. static int q6afe_send_enc_config(u16 port_id,
  4555. union afe_enc_config_data *cfg, u32 format,
  4556. union afe_port_config afe_config,
  4557. u16 afe_in_channels, u16 afe_in_bit_width,
  4558. u32 scrambler_mode, u32 mono_mode)
  4559. {
  4560. u32 enc_fmt;
  4561. struct afe_enc_cfg_blk_param_t enc_blk_param;
  4562. struct afe_param_id_aptx_sync_mode sync_mode_param;
  4563. struct afe_id_aptx_adaptive_enc_init aptx_adaptive_enc_init;
  4564. struct avs_enc_packetizer_id_param_t enc_pkt_id_param;
  4565. struct avs_enc_set_scrambler_param_t enc_set_scrambler_param;
  4566. struct afe_enc_level_to_bitrate_map_param_t map_param;
  4567. struct afe_enc_dec_imc_info_param_t imc_info_param;
  4568. struct asm_aac_frame_size_control_t frame_ctl_param;
  4569. struct afe_port_media_type_t media_type;
  4570. struct aptx_channel_mode_param_t channel_mode_param;
  4571. struct afe_matched_port_t matched_port_param;
  4572. struct asm_aptx_ad_speech_mode_cfg_t speech_codec_init_param;
  4573. struct param_hdr_v3 param_hdr;
  4574. int ret;
  4575. uint32_t frame_size_ctl_value_v2;
  4576. pr_debug("%s:update DSP for enc format = %d\n", __func__, format);
  4577. memset(&enc_blk_param, 0, sizeof(enc_blk_param));
  4578. memset(&sync_mode_param, 0, sizeof(sync_mode_param));
  4579. memset(&aptx_adaptive_enc_init, 0, sizeof(aptx_adaptive_enc_init));
  4580. memset(&enc_pkt_id_param, 0, sizeof(enc_pkt_id_param));
  4581. memset(&enc_set_scrambler_param, 0, sizeof(enc_set_scrambler_param));
  4582. memset(&map_param, 0, sizeof(map_param));
  4583. memset(&imc_info_param, 0, sizeof(imc_info_param));
  4584. memset(&frame_ctl_param, 0, sizeof(frame_ctl_param));
  4585. memset(&media_type, 0, sizeof(media_type));
  4586. memset(&matched_port_param, 0, sizeof(matched_port_param));
  4587. memset(&speech_codec_init_param, 0, sizeof(speech_codec_init_param));
  4588. memset(&param_hdr, 0, sizeof(param_hdr));
  4589. if (format != ASM_MEDIA_FMT_SBC && format != ASM_MEDIA_FMT_AAC_V2 &&
  4590. format != ASM_MEDIA_FMT_APTX && format != ASM_MEDIA_FMT_APTX_HD &&
  4591. format != ASM_MEDIA_FMT_CELT && format != ASM_MEDIA_FMT_LDAC &&
  4592. format != ASM_MEDIA_FMT_APTX_ADAPTIVE &&
  4593. format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4594. pr_err("%s:Unsuppported enc format. Ignore AFE config\n",
  4595. __func__);
  4596. return 0;
  4597. }
  4598. param_hdr.module_id = AFE_MODULE_ID_ENCODER;
  4599. param_hdr.instance_id = INSTANCE_ID_0;
  4600. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_FMT_ID;
  4601. param_hdr.param_size = sizeof(enc_fmt);
  4602. enc_fmt = format;
  4603. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENC_FMT_ID payload\n",
  4604. __func__);
  4605. ret = q6afe_pack_and_set_param_in_band(port_id,
  4606. q6audio_get_port_index(port_id),
  4607. param_hdr, (u8 *) &enc_fmt);
  4608. if (ret) {
  4609. pr_err("%s:unable to send AFE_ENCODER_PARAM_ID_ENC_FMT_ID",
  4610. __func__);
  4611. goto exit;
  4612. }
  4613. if (format == ASM_MEDIA_FMT_LDAC) {
  4614. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t)
  4615. - sizeof(struct afe_abr_enc_cfg_t);
  4616. enc_blk_param.enc_cfg_blk_size =
  4617. sizeof(union afe_enc_config_data)
  4618. - sizeof(struct afe_abr_enc_cfg_t);
  4619. } else if (format == ASM_MEDIA_FMT_AAC_V2) {
  4620. param_hdr.param_size = sizeof(enc_blk_param)
  4621. - sizeof(struct asm_aac_frame_size_control_t);
  4622. enc_blk_param.enc_cfg_blk_size =
  4623. sizeof(enc_blk_param.enc_blk_config)
  4624. - sizeof(struct asm_aac_frame_size_control_t);
  4625. } else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4626. param_hdr.param_size = sizeof(struct afe_enc_aptx_ad_speech_cfg_blk_param_t);
  4627. enc_blk_param.enc_cfg_blk_size = sizeof(struct asm_custom_enc_cfg_t);
  4628. } else {
  4629. param_hdr.param_size = sizeof(struct afe_enc_cfg_blk_param_t);
  4630. enc_blk_param.enc_cfg_blk_size =
  4631. sizeof(union afe_enc_config_data);
  4632. }
  4633. pr_debug("%s:send AFE_ENCODER_PARAM_ID_ENC_CFG_BLK to DSP payload\n",
  4634. __func__);
  4635. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENC_CFG_BLK;
  4636. enc_blk_param.enc_blk_config = *cfg;
  4637. ret = q6afe_pack_and_set_param_in_band(port_id,
  4638. q6audio_get_port_index(port_id),
  4639. param_hdr,
  4640. (u8 *) &enc_blk_param);
  4641. if (ret) {
  4642. pr_err("%s: AFE_ENCODER_PARAM_ID_ENC_CFG_BLK for port 0x%x failed %d\n",
  4643. __func__, port_id, ret);
  4644. goto exit;
  4645. }
  4646. if (format == ASM_MEDIA_FMT_AAC_V2) {
  4647. uint32_t frame_size_ctl_value = enc_blk_param.enc_blk_config.
  4648. aac_config.frame_ctl.ctl_value;
  4649. if (frame_size_ctl_value > 0) {
  4650. param_hdr.param_id =
  4651. AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL;
  4652. param_hdr.param_size = sizeof(frame_ctl_param);
  4653. frame_ctl_param.ctl_type = enc_blk_param.
  4654. enc_blk_config.aac_config.frame_ctl.ctl_type;
  4655. frame_ctl_param.ctl_value = frame_size_ctl_value;
  4656. pr_debug("%s: send AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL\n",
  4657. __func__);
  4658. ret = q6afe_pack_and_set_param_in_band(port_id,
  4659. q6audio_get_port_index(port_id),
  4660. param_hdr,
  4661. (u8 *) &frame_ctl_param);
  4662. if (ret) {
  4663. pr_err("%s: AAC_FRM_SIZE_CONTROL failed %d\n",
  4664. __func__, ret);
  4665. goto exit;
  4666. }
  4667. }
  4668. frame_size_ctl_value_v2 = enc_blk_param.enc_blk_config.
  4669. aac_config.frame_ctl_v2.ctl_value;
  4670. if (frame_size_ctl_value_v2 > 0) {
  4671. param_hdr.param_id =
  4672. AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL;
  4673. param_hdr.param_size = sizeof(frame_ctl_param);
  4674. frame_ctl_param.ctl_type = enc_blk_param.
  4675. enc_blk_config.aac_config.frame_ctl_v2.ctl_type;
  4676. frame_ctl_param.ctl_value = enc_blk_param.
  4677. enc_blk_config.aac_config.frame_ctl_v2.ctl_value;
  4678. pr_debug("%s: send AFE_PARAM_ID_AAC_FRM_SIZE_CONTROL V2\n",
  4679. __func__);
  4680. ret = q6afe_pack_and_set_param_in_band(port_id,
  4681. q6audio_get_port_index(port_id),
  4682. param_hdr,
  4683. (u8 *) &frame_ctl_param);
  4684. if (ret) {
  4685. pr_err("%s: AAC_FRM_SIZE_CONTROL with VBR support failed %d\n",
  4686. __func__, ret);
  4687. goto exit;
  4688. }
  4689. }
  4690. }
  4691. if (format == ASM_MEDIA_FMT_APTX) {
  4692. pr_debug("%s: sending AFE_PARAM_ID_APTX_SYNC_MODE to DSP",
  4693. __func__);
  4694. param_hdr.param_id = AFE_PARAM_ID_APTX_SYNC_MODE;
  4695. param_hdr.param_size =
  4696. sizeof(struct afe_param_id_aptx_sync_mode);
  4697. sync_mode_param.sync_mode =
  4698. enc_blk_param.enc_blk_config.aptx_config.
  4699. aptx_v2_cfg.sync_mode;
  4700. ret = q6afe_pack_and_set_param_in_band(port_id,
  4701. q6audio_get_port_index(port_id),
  4702. param_hdr,
  4703. (u8 *) &sync_mode_param);
  4704. if (ret) {
  4705. pr_err("%s: AFE_PARAM_ID_APTX_SYNC_MODE for port 0x%x failed %d\n",
  4706. __func__, port_id, ret);
  4707. goto exit;
  4708. }
  4709. }
  4710. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  4711. pr_debug("%s: sending AFE_ID_APTX_ADAPTIVE_ENC_INIT to DSP\n",
  4712. __func__);
  4713. param_hdr.param_id = AFE_ID_APTX_ADAPTIVE_ENC_INIT;
  4714. param_hdr.param_size =
  4715. sizeof(struct afe_id_aptx_adaptive_enc_init);
  4716. aptx_adaptive_enc_init =
  4717. enc_blk_param.enc_blk_config.aptx_ad_config.
  4718. aptx_ad_cfg;
  4719. ret = q6afe_pack_and_set_param_in_band(port_id,
  4720. q6audio_get_port_index(port_id),
  4721. param_hdr,
  4722. (u8 *) &aptx_adaptive_enc_init);
  4723. if (ret) {
  4724. pr_err("%s: AFE_ID_APTX_ADAPTIVE_ENC_INIT for port 0x%x failed %d\n",
  4725. __func__, port_id, ret);
  4726. goto exit;
  4727. }
  4728. }
  4729. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4730. pr_debug("%s: sending AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_ENC_INIT to DSP\n",
  4731. __func__);
  4732. param_hdr.param_id = AVS_DECODER_PARAM_ID_APTX_AD_SPEECH_ENC_INIT;
  4733. param_hdr.param_size =
  4734. sizeof(struct asm_aptx_ad_speech_dec_cfg_t);
  4735. speech_codec_init_param = cfg->aptx_ad_speech_config.speech_mode;
  4736. ret = q6afe_pack_and_set_param_in_band(port_id,
  4737. q6audio_get_port_index(port_id),
  4738. param_hdr,
  4739. (u8 *) &speech_codec_init_param);
  4740. if (ret) {
  4741. pr_err("%s: AFE_ID_APTX_ADAPTIVE_ENC_INIT for port 0x%x failed %d\n",
  4742. __func__, port_id, ret);
  4743. goto exit;
  4744. }
  4745. }
  4746. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_PACKETIZER to DSP\n",
  4747. __func__);
  4748. param_hdr.param_id = AFE_ENCODER_PARAM_ID_PACKETIZER_ID;
  4749. param_hdr.param_size = sizeof(struct avs_enc_packetizer_id_param_t);
  4750. enc_pkt_id_param.enc_packetizer_id = AFE_MODULE_ID_PACKETIZER_COP;
  4751. ret = q6afe_pack_and_set_param_in_band(port_id,
  4752. q6audio_get_port_index(port_id),
  4753. param_hdr,
  4754. (u8 *) &enc_pkt_id_param);
  4755. if (ret) {
  4756. pr_err("%s: AFE_ENCODER_PARAM_ID_PACKETIZER for port 0x%x failed %d\n",
  4757. __func__, port_id, ret);
  4758. goto exit;
  4759. }
  4760. if (format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4761. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING mode= %d to DSP payload\n",
  4762. __func__, scrambler_mode);
  4763. param_hdr.param_id = AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING;
  4764. param_hdr.param_size = sizeof(struct avs_enc_set_scrambler_param_t);
  4765. enc_set_scrambler_param.enable_scrambler = scrambler_mode;
  4766. ret = q6afe_pack_and_set_param_in_band(port_id,
  4767. q6audio_get_port_index(port_id),
  4768. param_hdr,
  4769. (u8 *) &enc_set_scrambler_param);
  4770. if (ret) {
  4771. pr_err("%s: AFE_ENCODER_PARAM_ID_ENABLE_SCRAMBLING for port 0x%x failed %d\n",
  4772. __func__, port_id, ret);
  4773. goto exit;
  4774. }
  4775. }
  4776. if (format == ASM_MEDIA_FMT_APTX) {
  4777. pr_debug("%s:sending CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO mode= %d to DSP payload\n",
  4778. __func__, mono_mode);
  4779. param_hdr.param_id = CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO;
  4780. param_hdr.param_size = sizeof(channel_mode_param);
  4781. channel_mode_param.channel_mode = mono_mode;
  4782. ret = q6afe_pack_and_set_param_in_band(port_id,
  4783. q6audio_get_port_index(port_id),
  4784. param_hdr,
  4785. (u8 *) &channel_mode_param);
  4786. if (ret) {
  4787. pr_err("%s: CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO for port 0x%x failed %d\n",
  4788. __func__, port_id, ret);
  4789. }
  4790. }
  4791. if ((format == ASM_MEDIA_FMT_LDAC &&
  4792. cfg->ldac_config.abr_config.is_abr_enabled) ||
  4793. format == ASM_MEDIA_FMT_APTX_ADAPTIVE ||
  4794. format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4795. if (format != ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4796. pr_debug("%s:sending AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP to DSP payload",
  4797. __func__);
  4798. param_hdr.param_id = AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP;
  4799. param_hdr.param_size =
  4800. sizeof(struct afe_enc_level_to_bitrate_map_param_t);
  4801. map_param.mapping_table =
  4802. cfg->ldac_config.abr_config.mapping_info;
  4803. ret = q6afe_pack_and_set_param_in_band(port_id,
  4804. q6audio_get_port_index(port_id),
  4805. param_hdr,
  4806. (u8 *) &map_param);
  4807. if (ret) {
  4808. pr_err("%s: AFE_ENCODER_PARAM_ID_BIT_RATE_LEVEL_MAP for port 0x%x failed %d\n",
  4809. __func__, port_id, ret);
  4810. goto exit;
  4811. }
  4812. }
  4813. pr_debug("%s: sending AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION to DSP payload",
  4814. __func__);
  4815. param_hdr.param_id =
  4816. AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION;
  4817. param_hdr.param_size =
  4818. sizeof(struct afe_enc_dec_imc_info_param_t);
  4819. if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  4820. imc_info_param.imc_info =
  4821. cfg->aptx_ad_config.abr_cfg.imc_info;
  4822. else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH)
  4823. imc_info_param.imc_info =
  4824. cfg->aptx_ad_speech_config.imc_info;
  4825. else
  4826. imc_info_param.imc_info =
  4827. cfg->ldac_config.abr_config.imc_info;
  4828. ret = q6afe_pack_and_set_param_in_band(port_id,
  4829. q6audio_get_port_index(port_id),
  4830. param_hdr,
  4831. (u8 *) &imc_info_param);
  4832. if (ret) {
  4833. pr_err("%s: AFE_ENCDEC_PARAM_ID_DEC_TO_ENC_COMMUNICATION for port 0x%x failed %d\n",
  4834. __func__, port_id, ret);
  4835. goto exit;
  4836. }
  4837. }
  4838. pr_debug("%s:Sending AFE_API_VERSION_PORT_MEDIA_TYPE to DSP", __func__);
  4839. param_hdr.module_id = AFE_MODULE_PORT;
  4840. param_hdr.param_id = AFE_PARAM_ID_PORT_MEDIA_TYPE;
  4841. param_hdr.param_size = sizeof(struct afe_port_media_type_t);
  4842. media_type.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4843. if (format == ASM_MEDIA_FMT_LDAC)
  4844. media_type.sample_rate =
  4845. cfg->ldac_config.custom_config.sample_rate;
  4846. else if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  4847. media_type.sample_rate =
  4848. cfg->aptx_ad_config.custom_cfg.sample_rate;
  4849. else if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH)
  4850. media_type.sample_rate =
  4851. cfg->aptx_ad_speech_config.custom_cfg.sample_rate;
  4852. else
  4853. media_type.sample_rate =
  4854. afe_config.slim_sch.sample_rate;
  4855. if (afe_in_bit_width)
  4856. media_type.bit_width = afe_in_bit_width;
  4857. else
  4858. media_type.bit_width = afe_config.slim_sch.bit_width;
  4859. if (afe_in_channels)
  4860. media_type.num_channels = afe_in_channels;
  4861. else
  4862. media_type.num_channels = afe_config.slim_sch.num_channels;
  4863. media_type.data_format = AFE_PORT_DATA_FORMAT_PCM;
  4864. media_type.reserved = 0;
  4865. ret = q6afe_pack_and_set_param_in_band(port_id,
  4866. q6audio_get_port_index(port_id),
  4867. param_hdr, (u8 *) &media_type);
  4868. if (ret) {
  4869. pr_err("%s: AFE_API_VERSION_PORT_MEDIA_TYPE for port 0x%x failed %d\n",
  4870. __func__, port_id, ret);
  4871. goto exit;
  4872. }
  4873. if (format == ASM_MEDIA_FMT_APTX_AD_SPEECH) {
  4874. pr_debug("%s: sending AFE_PARAM_ID_RATE_MATCHED_PORT to DSP payload",
  4875. __func__);
  4876. param_hdr.param_id = AFE_PARAM_ID_RATE_MATCHED_PORT;
  4877. param_hdr.param_size =
  4878. sizeof(struct afe_matched_port_t);
  4879. matched_port_param.minor_version = AFE_API_VERSION_PORT_MEDIA_TYPE;
  4880. matched_port_param.enable = AFE_MATCHED_PORT_ENABLE;
  4881. ret = q6afe_pack_and_set_param_in_band(port_id,
  4882. q6audio_get_port_index(port_id),
  4883. param_hdr,
  4884. (u8 *) &matched_port_param);
  4885. if (ret) {
  4886. pr_err("%s: AFE_PARAM_ID_RATE_MATCHED_PORT for port 0x%x failed %d\n",
  4887. __func__, port_id, ret);
  4888. goto exit;
  4889. }
  4890. }
  4891. exit:
  4892. return ret;
  4893. }
  4894. int afe_set_tws_channel_mode(u32 format, u16 port_id, u32 channel_mode)
  4895. {
  4896. struct aptx_channel_mode_param_t channel_mode_param;
  4897. struct param_hdr_v3 param_info;
  4898. int ret = 0;
  4899. u32 param_id = 0;
  4900. if (format == ASM_MEDIA_FMT_APTX) {
  4901. param_id = CAPI_V2_PARAM_ID_APTX_ENC_SWITCH_TO_MONO;
  4902. } else if (format == ASM_MEDIA_FMT_APTX_ADAPTIVE) {
  4903. param_id = CAPI_V2_PARAM_ID_APTX_AD_ENC_SWITCH_TO_MONO;
  4904. } else {
  4905. pr_err("%s: Not supported format 0x%x\n", __func__, format);
  4906. return -EINVAL;
  4907. }
  4908. memset(&param_info, 0, sizeof(param_info));
  4909. memset(&channel_mode_param, 0, sizeof(channel_mode_param));
  4910. param_info.module_id = AFE_MODULE_ID_ENCODER;
  4911. param_info.instance_id = INSTANCE_ID_0;
  4912. param_info.param_id = param_id;
  4913. param_info.param_size = sizeof(channel_mode_param);
  4914. channel_mode_param.channel_mode = channel_mode;
  4915. ret = q6afe_pack_and_set_param_in_band(port_id,
  4916. q6audio_get_port_index(port_id),
  4917. param_info,
  4918. (u8 *) &channel_mode_param);
  4919. if (ret)
  4920. pr_err("%s: AFE set channel mode cfg for port 0x%x failed %d\n",
  4921. __func__, port_id, ret);
  4922. return ret;
  4923. }
  4924. EXPORT_SYMBOL(afe_set_tws_channel_mode);
  4925. static int __afe_port_start(u16 port_id, union afe_port_config *afe_config,
  4926. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  4927. union afe_enc_config_data *enc_cfg,
  4928. u32 codec_format, u32 scrambler_mode, u32 mono_mode,
  4929. struct afe_dec_config *dec_cfg,
  4930. struct afe_ttp_config *ttp_cfg)
  4931. {
  4932. union afe_port_config port_cfg;
  4933. struct param_hdr_v3 param_hdr;
  4934. int ret = 0;
  4935. int cfg_type;
  4936. int index = 0;
  4937. enum afe_mad_type mad_type;
  4938. uint16_t port_index;
  4939. memset(&param_hdr, 0, sizeof(param_hdr));
  4940. memset(&port_cfg, 0, sizeof(port_cfg));
  4941. if (!afe_config) {
  4942. pr_err("%s: Error, no configuration data\n", __func__);
  4943. ret = -EINVAL;
  4944. return ret;
  4945. }
  4946. if (port_id == RT_PROXY_PORT_002_RX) {
  4947. if (proxy_afe_started) {
  4948. pr_debug("%s: afe port already started, port id 0x%x\n",
  4949. __func__, RT_PROXY_PORT_002_RX);
  4950. return 0;
  4951. } else {
  4952. proxy_afe_started = true;
  4953. }
  4954. }
  4955. if (port_id == RT_PROXY_DAI_003_TX) {
  4956. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4957. if (proxy_afe_started) {
  4958. pr_debug("%s: reconfigure afe port again\n", __func__);
  4959. afe_close(port_id);
  4960. }
  4961. proxy_afe_started = true;
  4962. }
  4963. if ((port_id == RT_PROXY_DAI_001_RX) ||
  4964. (port_id == RT_PROXY_DAI_002_TX)) {
  4965. pr_debug("%s: before incrementing pcm_afe_instance %d port_id 0x%x\n",
  4966. __func__,
  4967. pcm_afe_instance[port_id & 0x1], port_id);
  4968. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4969. pcm_afe_instance[port_id & 0x1]++;
  4970. return 0;
  4971. }
  4972. if ((port_id == RT_PROXY_DAI_002_RX) ||
  4973. (port_id == RT_PROXY_DAI_001_TX)) {
  4974. pr_debug("%s: before incrementing proxy_afe_instance %d port_id 0x%x\n",
  4975. __func__,
  4976. proxy_afe_instance[port_id & 0x1], port_id);
  4977. if (!afe_close_done[port_id & 0x1]) {
  4978. /*close pcm dai corresponding to the proxy dai*/
  4979. afe_close(port_id - 0x10);
  4980. pcm_afe_instance[port_id & 0x1]++;
  4981. pr_debug("%s: reconfigure afe port again\n", __func__);
  4982. }
  4983. proxy_afe_instance[port_id & 0x1]++;
  4984. afe_close_done[port_id & 0x1] = false;
  4985. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  4986. }
  4987. pr_debug("%s: port id: 0x%x\n", __func__, port_id);
  4988. index = q6audio_get_port_index(port_id);
  4989. if (index < 0 || index >= AFE_MAX_PORTS) {
  4990. pr_err("%s: AFE port index[%d] invalid!\n",
  4991. __func__, index);
  4992. return -EINVAL;
  4993. }
  4994. ret = q6audio_validate_port(port_id);
  4995. if (ret < 0) {
  4996. pr_err("%s: port id: 0x%x ret %d\n", __func__, port_id, ret);
  4997. return -EINVAL;
  4998. }
  4999. ret = afe_q6_interface_prepare();
  5000. if (ret != 0) {
  5001. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5002. return ret;
  5003. }
  5004. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  5005. this_afe.afe_sample_rates[index] = rate;
  5006. if (this_afe.rt_cb)
  5007. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  5008. }
  5009. mutex_lock(&this_afe.afe_cmd_lock);
  5010. port_index = afe_get_port_index(port_id);
  5011. /* Also send the topology id here: */
  5012. if (!(this_afe.afe_cal_mode[port_index] == AFE_CAL_MODE_NONE)) {
  5013. /* One time call: only for first time */
  5014. afe_send_custom_topology();
  5015. /*
  5016. * Deregister existing afe topology before
  5017. * sending a new one for VA use cases only
  5018. */
  5019. if (port_id == AFE_PORT_ID_VA_CODEC_DMA_TX_0 ||
  5020. port_id == AFE_PORT_ID_VA_CODEC_DMA_TX_1 ||
  5021. port_id == AFE_PORT_ID_VA_CODEC_DMA_TX_2)
  5022. afe_port_topology_deregister(port_id);
  5023. afe_send_port_topology_id(port_id);
  5024. afe_send_cal(port_id);
  5025. afe_send_hw_delay(port_id, rate);
  5026. }
  5027. /* Start SW MAD module */
  5028. mad_type = afe_port_get_mad_type(port_id);
  5029. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  5030. mad_type);
  5031. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  5032. if (!afe_has_config(AFE_CDC_REGISTERS_CONFIG) ||
  5033. !afe_has_config(AFE_SLIMBUS_SLAVE_CONFIG)) {
  5034. pr_err("%s: AFE isn't configured yet for\n"
  5035. "HW MAD try Again\n", __func__);
  5036. ret = -EAGAIN;
  5037. goto fail_cmd;
  5038. }
  5039. ret = afe_turn_onoff_hw_mad(mad_type, true);
  5040. if (ret) {
  5041. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  5042. __func__, ret);
  5043. goto fail_cmd;
  5044. }
  5045. }
  5046. if ((this_afe.aanc_info.aanc_active) &&
  5047. (this_afe.aanc_info.aanc_tx_port == port_id)) {
  5048. this_afe.aanc_info.aanc_tx_port_sample_rate = rate;
  5049. port_index =
  5050. afe_get_port_index(this_afe.aanc_info.aanc_rx_port);
  5051. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  5052. this_afe.aanc_info.aanc_rx_port_sample_rate =
  5053. this_afe.afe_sample_rates[port_index];
  5054. } else {
  5055. pr_err("%s: Invalid port index %d\n",
  5056. __func__, port_index);
  5057. ret = -EINVAL;
  5058. goto fail_cmd;
  5059. }
  5060. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  5061. this_afe.aanc_info.aanc_rx_port);
  5062. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  5063. }
  5064. if ((port_id == AFE_PORT_ID_USB_RX) ||
  5065. (port_id == AFE_PORT_ID_USB_TX)) {
  5066. ret = afe_port_send_usb_dev_param(port_id, afe_config);
  5067. if (ret) {
  5068. pr_err("%s: AFE device param for port 0x%x failed %d\n",
  5069. __func__, port_id, ret);
  5070. ret = -EINVAL;
  5071. goto fail_cmd;
  5072. }
  5073. }
  5074. switch (port_id) {
  5075. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5076. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5077. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5078. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5079. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5080. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5081. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5082. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5083. case AFE_PORT_ID_QUINARY_PCM_RX:
  5084. case AFE_PORT_ID_QUINARY_PCM_TX:
  5085. case AFE_PORT_ID_SENARY_PCM_RX:
  5086. case AFE_PORT_ID_SENARY_PCM_TX:
  5087. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  5088. break;
  5089. case PRIMARY_I2S_RX:
  5090. case PRIMARY_I2S_TX:
  5091. case SECONDARY_I2S_RX:
  5092. case SECONDARY_I2S_TX:
  5093. case MI2S_RX:
  5094. case MI2S_TX:
  5095. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5096. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5097. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  5098. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  5099. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  5100. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  5101. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  5102. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5103. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5104. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5105. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5106. case AFE_PORT_ID_SENARY_MI2S_RX:
  5107. case AFE_PORT_ID_SENARY_MI2S_TX:
  5108. case AFE_PORT_ID_INT0_MI2S_RX:
  5109. case AFE_PORT_ID_INT0_MI2S_TX:
  5110. case AFE_PORT_ID_INT1_MI2S_RX:
  5111. case AFE_PORT_ID_INT1_MI2S_TX:
  5112. case AFE_PORT_ID_INT2_MI2S_RX:
  5113. case AFE_PORT_ID_INT2_MI2S_TX:
  5114. case AFE_PORT_ID_INT3_MI2S_RX:
  5115. case AFE_PORT_ID_INT3_MI2S_TX:
  5116. case AFE_PORT_ID_INT4_MI2S_RX:
  5117. case AFE_PORT_ID_INT4_MI2S_TX:
  5118. case AFE_PORT_ID_INT5_MI2S_RX:
  5119. case AFE_PORT_ID_INT5_MI2S_TX:
  5120. case AFE_PORT_ID_INT6_MI2S_RX:
  5121. case AFE_PORT_ID_INT6_MI2S_TX:
  5122. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  5123. break;
  5124. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  5125. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  5126. cfg_type = AFE_PARAM_ID_META_I2S_CONFIG;
  5127. break;
  5128. case HDMI_RX:
  5129. case HDMI_RX_MS:
  5130. case DISPLAY_PORT_RX:
  5131. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  5132. break;
  5133. case VOICE_PLAYBACK_TX:
  5134. case VOICE2_PLAYBACK_TX:
  5135. case VOICE_RECORD_RX:
  5136. case VOICE_RECORD_TX:
  5137. cfg_type = AFE_PARAM_ID_PSEUDO_PORT_CONFIG;
  5138. break;
  5139. case SLIMBUS_0_RX:
  5140. case SLIMBUS_0_TX:
  5141. case SLIMBUS_1_RX:
  5142. case SLIMBUS_1_TX:
  5143. case SLIMBUS_2_RX:
  5144. case SLIMBUS_2_TX:
  5145. case SLIMBUS_3_RX:
  5146. case SLIMBUS_3_TX:
  5147. case SLIMBUS_4_RX:
  5148. case SLIMBUS_4_TX:
  5149. case SLIMBUS_5_RX:
  5150. case SLIMBUS_5_TX:
  5151. case SLIMBUS_6_RX:
  5152. case SLIMBUS_6_TX:
  5153. case SLIMBUS_7_RX:
  5154. case SLIMBUS_7_TX:
  5155. case SLIMBUS_8_RX:
  5156. case SLIMBUS_8_TX:
  5157. case SLIMBUS_9_RX:
  5158. case SLIMBUS_9_TX:
  5159. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  5160. break;
  5161. case AFE_PORT_ID_USB_RX:
  5162. case AFE_PORT_ID_USB_TX:
  5163. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  5164. break;
  5165. case RT_PROXY_PORT_001_RX:
  5166. case RT_PROXY_PORT_001_TX:
  5167. case RT_PROXY_PORT_002_RX:
  5168. case RT_PROXY_PORT_002_TX:
  5169. cfg_type = AFE_PARAM_ID_RT_PROXY_CONFIG;
  5170. break;
  5171. case INT_BT_SCO_RX:
  5172. case INT_BT_A2DP_RX:
  5173. case INT_BT_SCO_TX:
  5174. case INT_FM_RX:
  5175. case INT_FM_TX:
  5176. cfg_type = AFE_PARAM_ID_INTERNAL_BT_FM_CONFIG;
  5177. break;
  5178. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  5179. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  5180. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  5181. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  5182. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  5183. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  5184. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  5185. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  5186. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  5187. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  5188. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  5189. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  5190. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  5191. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  5192. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  5193. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  5194. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  5195. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  5196. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  5197. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  5198. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  5199. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  5200. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  5201. break;
  5202. default:
  5203. pr_err("%s: Invalid port id 0x%x\n", __func__, port_id);
  5204. ret = -EINVAL;
  5205. goto fail_cmd;
  5206. }
  5207. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5208. param_hdr.instance_id = INSTANCE_ID_0;
  5209. param_hdr.param_id = cfg_type;
  5210. param_hdr.param_size = sizeof(union afe_port_config);
  5211. port_cfg = *afe_config;
  5212. if (((enc_cfg != NULL) || (dec_cfg != NULL)) &&
  5213. (codec_format != ASM_MEDIA_FMT_NONE) &&
  5214. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  5215. port_cfg.slim_sch.data_format =
  5216. AFE_SB_DATA_FORMAT_GENERIC_COMPRESSED;
  5217. }
  5218. ret = q6afe_pack_and_set_param_in_band(port_id,
  5219. q6audio_get_port_index(port_id),
  5220. param_hdr, (u8 *) &port_cfg);
  5221. if (ret) {
  5222. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  5223. __func__, port_id, ret);
  5224. goto fail_cmd;
  5225. }
  5226. if ((codec_format != ASM_MEDIA_FMT_NONE) &&
  5227. (cfg_type == AFE_PARAM_ID_SLIMBUS_CONFIG)) {
  5228. if (enc_cfg != NULL) {
  5229. pr_debug("%s: Found AFE encoder support for SLIMBUS format = %d\n",
  5230. __func__, codec_format);
  5231. if ((q6core_get_avcs_api_version_per_service(
  5232. APRV2_IDS_SERVICE_ID_ADSP_CORE_V) >=
  5233. AVCS_API_VERSION_V5)) {
  5234. ret = q6afe_load_avcs_modules(2, port_id,
  5235. ENCODER_CASE, codec_format);
  5236. if (ret < 0) {
  5237. pr_err("%s:encoder load for port 0x%x failed %d\n",
  5238. __func__, port_id, ret);
  5239. goto fail_cmd;
  5240. }
  5241. }
  5242. ret = q6afe_send_enc_config(port_id, enc_cfg,
  5243. codec_format, *afe_config,
  5244. afe_in_channels,
  5245. afe_in_bit_width,
  5246. scrambler_mode, mono_mode);
  5247. if (ret) {
  5248. pr_err("%s: AFE encoder config for port 0x%x failed %d\n",
  5249. __func__, port_id, ret);
  5250. goto fail_cmd;
  5251. }
  5252. }
  5253. if (dec_cfg != NULL) {
  5254. pr_debug("%s: Found AFE decoder support for SLIMBUS format = %d\n",
  5255. __func__, codec_format);
  5256. if ((q6core_get_avcs_api_version_per_service(
  5257. APRV2_IDS_SERVICE_ID_ADSP_CORE_V) >=
  5258. AVCS_API_VERSION_V5)) {
  5259. /*
  5260. * LDAC and APTX_ADAPTIVE don't require loading decoder module
  5261. * Only loading de-packetizer module.
  5262. */
  5263. if (codec_format == ENC_CODEC_TYPE_LDAC ||
  5264. codec_format == ASM_MEDIA_FMT_APTX_ADAPTIVE)
  5265. ret = q6afe_load_avcs_modules(1, port_id,
  5266. DECODER_CASE, codec_format);
  5267. else
  5268. ret = q6afe_load_avcs_modules(2, port_id,
  5269. DECODER_CASE, codec_format);
  5270. if (ret < 0) {
  5271. pr_err("%s:decoder load for port 0x%x failed %d\n",
  5272. __func__, port_id, ret);
  5273. goto fail_cmd;
  5274. }
  5275. }
  5276. ret = q6afe_send_dec_config(port_id, *afe_config,
  5277. dec_cfg, codec_format,
  5278. afe_in_channels,
  5279. afe_in_bit_width);
  5280. if (ret) {
  5281. pr_err("%s: AFE decoder config for port 0x%x failed %d\n",
  5282. __func__, port_id, ret);
  5283. goto fail_cmd;
  5284. }
  5285. }
  5286. if (ttp_cfg != NULL) {
  5287. ret = q6afe_send_ttp_config(port_id, *afe_config,
  5288. ttp_cfg);
  5289. if (ret) {
  5290. pr_err("%s: AFE TTP config for port 0x%x failed %d\n",
  5291. __func__, port_id, ret);
  5292. goto fail_cmd;
  5293. }
  5294. }
  5295. }
  5296. port_index = afe_get_port_index(port_id);
  5297. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  5298. /*
  5299. * If afe_port_start() for tx port called before
  5300. * rx port, then aanc rx sample rate is zero. So,
  5301. * AANC state machine in AFE will not get triggered.
  5302. * Make sure to check whether aanc is active during
  5303. * afe_port_start() for rx port and if aanc rx
  5304. * sample rate is zero, call afe_aanc_start to configure
  5305. * aanc with valid sample rates.
  5306. */
  5307. if (this_afe.aanc_info.aanc_active &&
  5308. !this_afe.aanc_info.aanc_rx_port_sample_rate) {
  5309. this_afe.aanc_info.aanc_rx_port_sample_rate =
  5310. this_afe.afe_sample_rates[port_index];
  5311. ret = afe_aanc_start(this_afe.aanc_info.aanc_tx_port,
  5312. this_afe.aanc_info.aanc_rx_port);
  5313. pr_debug("%s: afe_aanc_start ret %d\n", __func__, ret);
  5314. }
  5315. } else {
  5316. pr_err("%s: Invalid port index %d\n", __func__, port_index);
  5317. ret = -EINVAL;
  5318. goto fail_cmd;
  5319. }
  5320. ret = afe_send_cmd_port_start(port_id);
  5321. fail_cmd:
  5322. mutex_unlock(&this_afe.afe_cmd_lock);
  5323. return ret;
  5324. }
  5325. /**
  5326. * afe_port_start - to configure AFE session with
  5327. * specified port configuration
  5328. *
  5329. * @port_id: AFE port id number
  5330. * @afe_config: port configutation
  5331. * @rate: sampling rate of port
  5332. *
  5333. * Returns 0 on success or error value on port start failure.
  5334. */
  5335. int afe_port_start(u16 port_id, union afe_port_config *afe_config,
  5336. u32 rate)
  5337. {
  5338. return __afe_port_start(port_id, afe_config, rate, 0, 0, NULL,
  5339. ASM_MEDIA_FMT_NONE, 0, 0, NULL, NULL);
  5340. }
  5341. EXPORT_SYMBOL(afe_port_start);
  5342. /**
  5343. * afe_port_start_v2 - to configure AFE session with
  5344. * specified port configuration and encoder /decoder params
  5345. *
  5346. * @port_id: AFE port id number
  5347. * @afe_config: port configutation
  5348. * @rate: sampling rate of port
  5349. * @enc_cfg: AFE enc configuration information to setup encoder
  5350. * @afe_in_channels: AFE input channel configuration, this needs
  5351. * update only if input channel is differ from AFE output
  5352. * @dec_cfg: AFE dec configuration information to set up decoder
  5353. *
  5354. * Returns 0 on success or error value on port start failure.
  5355. */
  5356. int afe_port_start_v2(u16 port_id, union afe_port_config *afe_config,
  5357. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  5358. struct afe_enc_config *enc_cfg,
  5359. struct afe_dec_config *dec_cfg)
  5360. {
  5361. int ret = 0;
  5362. if (enc_cfg != NULL)
  5363. ret = __afe_port_start(port_id, afe_config, rate,
  5364. afe_in_channels, afe_in_bit_width,
  5365. &enc_cfg->data, enc_cfg->format,
  5366. enc_cfg->scrambler_mode,
  5367. enc_cfg->mono_mode, dec_cfg, NULL);
  5368. else if (dec_cfg != NULL)
  5369. ret = __afe_port_start(port_id, afe_config, rate,
  5370. afe_in_channels, afe_in_bit_width,
  5371. NULL, dec_cfg->format, 0, 0,
  5372. dec_cfg, NULL);
  5373. return ret;
  5374. }
  5375. EXPORT_SYMBOL(afe_port_start_v2);
  5376. /**
  5377. * afe_port_start_v3 - to configure AFE session with
  5378. * specified port configuration and encoder /decoder params
  5379. *
  5380. * @port_id: AFE port id number
  5381. * @afe_config: port configuration
  5382. * @rate: sampling rate of port
  5383. * @enc_cfg: AFE enc configuration information to setup encoder
  5384. * @afe_in_channels: AFE input channel configuration, this needs
  5385. * update only if input channel is differ from AFE output
  5386. * @dec_cfg: AFE dec configuration information to set up decoder
  5387. * @ttp_cfg: TTP generator configuration to enable TTP in AFE
  5388. *
  5389. * Returns 0 on success or error value on port start failure.
  5390. */
  5391. int afe_port_start_v3(u16 port_id, union afe_port_config *afe_config,
  5392. u32 rate, u16 afe_in_channels, u16 afe_in_bit_width,
  5393. struct afe_enc_config *enc_cfg,
  5394. struct afe_dec_config *dec_cfg,
  5395. struct afe_ttp_config *ttp_cfg)
  5396. {
  5397. int ret = 0;
  5398. if (dec_cfg != NULL && ttp_cfg != NULL)
  5399. ret = __afe_port_start(port_id, afe_config, rate,
  5400. afe_in_channels, afe_in_bit_width,
  5401. NULL, dec_cfg->format, 0, 0,
  5402. dec_cfg, ttp_cfg);
  5403. return ret;
  5404. }
  5405. EXPORT_SYMBOL(afe_port_start_v3);
  5406. int afe_get_port_index(u16 port_id)
  5407. {
  5408. switch (port_id) {
  5409. case PRIMARY_I2S_RX: return IDX_PRIMARY_I2S_RX;
  5410. case PRIMARY_I2S_TX: return IDX_PRIMARY_I2S_TX;
  5411. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5412. return IDX_AFE_PORT_ID_PRIMARY_PCM_RX;
  5413. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5414. return IDX_AFE_PORT_ID_PRIMARY_PCM_TX;
  5415. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5416. return IDX_AFE_PORT_ID_SECONDARY_PCM_RX;
  5417. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5418. return IDX_AFE_PORT_ID_SECONDARY_PCM_TX;
  5419. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5420. return IDX_AFE_PORT_ID_TERTIARY_PCM_RX;
  5421. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5422. return IDX_AFE_PORT_ID_TERTIARY_PCM_TX;
  5423. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5424. return IDX_AFE_PORT_ID_QUATERNARY_PCM_RX;
  5425. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5426. return IDX_AFE_PORT_ID_QUATERNARY_PCM_TX;
  5427. case AFE_PORT_ID_QUINARY_PCM_RX:
  5428. return IDX_AFE_PORT_ID_QUINARY_PCM_RX;
  5429. case AFE_PORT_ID_QUINARY_PCM_TX:
  5430. return IDX_AFE_PORT_ID_QUINARY_PCM_TX;
  5431. case AFE_PORT_ID_SENARY_PCM_RX:
  5432. return IDX_AFE_PORT_ID_SENARY_PCM_RX;
  5433. case AFE_PORT_ID_SENARY_PCM_TX:
  5434. return IDX_AFE_PORT_ID_SENARY_PCM_TX;
  5435. case SECONDARY_I2S_RX: return IDX_SECONDARY_I2S_RX;
  5436. case SECONDARY_I2S_TX: return IDX_SECONDARY_I2S_TX;
  5437. case MI2S_RX: return IDX_MI2S_RX;
  5438. case MI2S_TX: return IDX_MI2S_TX;
  5439. case HDMI_RX: return IDX_HDMI_RX;
  5440. case HDMI_RX_MS: return IDX_HDMI_RX_MS;
  5441. case DISPLAY_PORT_RX: return IDX_DISPLAY_PORT_RX;
  5442. case AFE_PORT_ID_PRIMARY_SPDIF_RX: return IDX_PRIMARY_SPDIF_RX;
  5443. case AFE_PORT_ID_PRIMARY_SPDIF_TX: return IDX_PRIMARY_SPDIF_TX;
  5444. case AFE_PORT_ID_SECONDARY_SPDIF_RX: return IDX_SECONDARY_SPDIF_RX;
  5445. case AFE_PORT_ID_SECONDARY_SPDIF_TX: return IDX_SECONDARY_SPDIF_TX;
  5446. case RSVD_2: return IDX_RSVD_2;
  5447. case RSVD_3: return IDX_RSVD_3;
  5448. case DIGI_MIC_TX: return IDX_DIGI_MIC_TX;
  5449. case VOICE_RECORD_RX: return IDX_VOICE_RECORD_RX;
  5450. case VOICE_RECORD_TX: return IDX_VOICE_RECORD_TX;
  5451. case VOICE_PLAYBACK_TX: return IDX_VOICE_PLAYBACK_TX;
  5452. case VOICE2_PLAYBACK_TX: return IDX_VOICE2_PLAYBACK_TX;
  5453. case SLIMBUS_0_RX: return IDX_SLIMBUS_0_RX;
  5454. case SLIMBUS_0_TX: return IDX_SLIMBUS_0_TX;
  5455. case SLIMBUS_1_RX: return IDX_SLIMBUS_1_RX;
  5456. case SLIMBUS_1_TX: return IDX_SLIMBUS_1_TX;
  5457. case SLIMBUS_2_RX: return IDX_SLIMBUS_2_RX;
  5458. case SLIMBUS_2_TX: return IDX_SLIMBUS_2_TX;
  5459. case SLIMBUS_3_RX: return IDX_SLIMBUS_3_RX;
  5460. case SLIMBUS_3_TX: return IDX_SLIMBUS_3_TX;
  5461. case INT_BT_SCO_RX: return IDX_INT_BT_SCO_RX;
  5462. case INT_BT_SCO_TX: return IDX_INT_BT_SCO_TX;
  5463. case INT_BT_A2DP_RX: return IDX_INT_BT_A2DP_RX;
  5464. case INT_FM_RX: return IDX_INT_FM_RX;
  5465. case INT_FM_TX: return IDX_INT_FM_TX;
  5466. case RT_PROXY_PORT_001_RX: return IDX_RT_PROXY_PORT_001_RX;
  5467. case RT_PROXY_PORT_001_TX: return IDX_RT_PROXY_PORT_001_TX;
  5468. case SLIMBUS_4_RX: return IDX_SLIMBUS_4_RX;
  5469. case SLIMBUS_4_TX: return IDX_SLIMBUS_4_TX;
  5470. case SLIMBUS_5_RX: return IDX_SLIMBUS_5_RX;
  5471. case SLIMBUS_5_TX: return IDX_SLIMBUS_5_TX;
  5472. case SLIMBUS_6_RX: return IDX_SLIMBUS_6_RX;
  5473. case SLIMBUS_6_TX: return IDX_SLIMBUS_6_TX;
  5474. case SLIMBUS_7_RX: return IDX_SLIMBUS_7_RX;
  5475. case SLIMBUS_7_TX: return IDX_SLIMBUS_7_TX;
  5476. case SLIMBUS_8_RX: return IDX_SLIMBUS_8_RX;
  5477. case SLIMBUS_8_TX: return IDX_SLIMBUS_8_TX;
  5478. case SLIMBUS_9_RX: return IDX_SLIMBUS_9_RX;
  5479. case SLIMBUS_9_TX: return IDX_SLIMBUS_9_TX;
  5480. case AFE_PORT_ID_USB_RX: return IDX_AFE_PORT_ID_USB_RX;
  5481. case AFE_PORT_ID_USB_TX: return IDX_AFE_PORT_ID_USB_TX;
  5482. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5483. return IDX_AFE_PORT_ID_PRIMARY_MI2S_RX;
  5484. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5485. return IDX_AFE_PORT_ID_PRIMARY_MI2S_TX;
  5486. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5487. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_RX;
  5488. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5489. return IDX_AFE_PORT_ID_QUATERNARY_MI2S_TX;
  5490. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  5491. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX;
  5492. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  5493. return IDX_AFE_PORT_ID_SECONDARY_MI2S_TX;
  5494. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  5495. return IDX_AFE_PORT_ID_TERTIARY_MI2S_RX;
  5496. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  5497. return IDX_AFE_PORT_ID_TERTIARY_MI2S_TX;
  5498. case AFE_PORT_ID_SECONDARY_MI2S_RX_SD1:
  5499. return IDX_AFE_PORT_ID_SECONDARY_MI2S_RX_SD1;
  5500. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5501. return IDX_AFE_PORT_ID_QUINARY_MI2S_RX;
  5502. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5503. return IDX_AFE_PORT_ID_QUINARY_MI2S_TX;
  5504. case AFE_PORT_ID_SENARY_MI2S_RX:
  5505. return IDX_AFE_PORT_ID_SENARY_MI2S_RX;
  5506. case AFE_PORT_ID_SENARY_MI2S_TX:
  5507. return IDX_AFE_PORT_ID_SENARY_MI2S_TX;
  5508. case AFE_PORT_ID_PRIMARY_TDM_RX:
  5509. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_0;
  5510. case AFE_PORT_ID_PRIMARY_TDM_TX:
  5511. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_0;
  5512. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  5513. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_1;
  5514. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  5515. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_1;
  5516. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  5517. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_2;
  5518. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  5519. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_2;
  5520. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  5521. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_3;
  5522. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  5523. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_3;
  5524. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  5525. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_4;
  5526. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  5527. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_4;
  5528. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  5529. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_5;
  5530. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  5531. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_5;
  5532. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  5533. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_6;
  5534. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  5535. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_6;
  5536. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  5537. return IDX_AFE_PORT_ID_PRIMARY_TDM_RX_7;
  5538. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  5539. return IDX_AFE_PORT_ID_PRIMARY_TDM_TX_7;
  5540. case AFE_PORT_ID_SECONDARY_TDM_RX:
  5541. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_0;
  5542. case AFE_PORT_ID_SECONDARY_TDM_TX:
  5543. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_0;
  5544. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  5545. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_1;
  5546. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  5547. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_1;
  5548. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  5549. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_2;
  5550. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  5551. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_2;
  5552. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  5553. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_3;
  5554. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  5555. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_3;
  5556. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  5557. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_4;
  5558. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  5559. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_4;
  5560. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  5561. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_5;
  5562. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  5563. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_5;
  5564. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  5565. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_6;
  5566. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  5567. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_6;
  5568. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  5569. return IDX_AFE_PORT_ID_SECONDARY_TDM_RX_7;
  5570. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  5571. return IDX_AFE_PORT_ID_SECONDARY_TDM_TX_7;
  5572. case AFE_PORT_ID_TERTIARY_TDM_RX:
  5573. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_0;
  5574. case AFE_PORT_ID_TERTIARY_TDM_TX:
  5575. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_0;
  5576. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  5577. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_1;
  5578. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  5579. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_1;
  5580. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  5581. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_2;
  5582. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  5583. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_2;
  5584. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  5585. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_3;
  5586. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  5587. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_3;
  5588. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  5589. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_4;
  5590. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  5591. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_4;
  5592. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  5593. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_5;
  5594. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  5595. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_5;
  5596. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  5597. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_6;
  5598. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  5599. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_6;
  5600. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  5601. return IDX_AFE_PORT_ID_TERTIARY_TDM_RX_7;
  5602. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  5603. return IDX_AFE_PORT_ID_TERTIARY_TDM_TX_7;
  5604. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  5605. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_0;
  5606. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  5607. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_0;
  5608. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  5609. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_1;
  5610. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  5611. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_1;
  5612. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  5613. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_2;
  5614. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  5615. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_2;
  5616. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  5617. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_3;
  5618. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  5619. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_3;
  5620. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  5621. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_4;
  5622. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  5623. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_4;
  5624. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  5625. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_5;
  5626. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  5627. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_5;
  5628. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  5629. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_6;
  5630. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  5631. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_6;
  5632. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  5633. return IDX_AFE_PORT_ID_QUATERNARY_TDM_RX_7;
  5634. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  5635. return IDX_AFE_PORT_ID_QUATERNARY_TDM_TX_7;
  5636. case AFE_PORT_ID_QUINARY_TDM_RX:
  5637. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_0;
  5638. case AFE_PORT_ID_QUINARY_TDM_TX:
  5639. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_0;
  5640. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  5641. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_1;
  5642. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  5643. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_1;
  5644. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  5645. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_2;
  5646. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  5647. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_2;
  5648. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  5649. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_3;
  5650. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  5651. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_3;
  5652. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  5653. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_4;
  5654. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  5655. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_4;
  5656. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  5657. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_5;
  5658. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  5659. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_5;
  5660. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  5661. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_6;
  5662. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  5663. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_6;
  5664. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  5665. return IDX_AFE_PORT_ID_QUINARY_TDM_RX_7;
  5666. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  5667. return IDX_AFE_PORT_ID_QUINARY_TDM_TX_7;
  5668. case AFE_PORT_ID_SENARY_TDM_RX:
  5669. return IDX_AFE_PORT_ID_SENARY_TDM_RX_0;
  5670. case AFE_PORT_ID_SENARY_TDM_TX:
  5671. return IDX_AFE_PORT_ID_SENARY_TDM_TX_0;
  5672. case AFE_PORT_ID_SENARY_TDM_RX_1:
  5673. return IDX_AFE_PORT_ID_SENARY_TDM_RX_1;
  5674. case AFE_PORT_ID_SENARY_TDM_TX_1:
  5675. return IDX_AFE_PORT_ID_SENARY_TDM_TX_1;
  5676. case AFE_PORT_ID_SENARY_TDM_RX_2:
  5677. return IDX_AFE_PORT_ID_SENARY_TDM_RX_2;
  5678. case AFE_PORT_ID_SENARY_TDM_TX_2:
  5679. return IDX_AFE_PORT_ID_SENARY_TDM_TX_2;
  5680. case AFE_PORT_ID_SENARY_TDM_RX_3:
  5681. return IDX_AFE_PORT_ID_SENARY_TDM_RX_3;
  5682. case AFE_PORT_ID_SENARY_TDM_TX_3:
  5683. return IDX_AFE_PORT_ID_SENARY_TDM_TX_3;
  5684. case AFE_PORT_ID_SENARY_TDM_RX_4:
  5685. return IDX_AFE_PORT_ID_SENARY_TDM_RX_4;
  5686. case AFE_PORT_ID_SENARY_TDM_TX_4:
  5687. return IDX_AFE_PORT_ID_SENARY_TDM_TX_4;
  5688. case AFE_PORT_ID_SENARY_TDM_RX_5:
  5689. return IDX_AFE_PORT_ID_SENARY_TDM_RX_5;
  5690. case AFE_PORT_ID_SENARY_TDM_TX_5:
  5691. return IDX_AFE_PORT_ID_SENARY_TDM_TX_5;
  5692. case AFE_PORT_ID_SENARY_TDM_RX_6:
  5693. return IDX_AFE_PORT_ID_SENARY_TDM_RX_6;
  5694. case AFE_PORT_ID_SENARY_TDM_TX_6:
  5695. return IDX_AFE_PORT_ID_SENARY_TDM_TX_6;
  5696. case AFE_PORT_ID_SENARY_TDM_RX_7:
  5697. return IDX_AFE_PORT_ID_SENARY_TDM_RX_7;
  5698. case AFE_PORT_ID_SENARY_TDM_TX_7:
  5699. return IDX_AFE_PORT_ID_SENARY_TDM_TX_7;
  5700. case AFE_PORT_ID_INT0_MI2S_RX:
  5701. return IDX_AFE_PORT_ID_INT0_MI2S_RX;
  5702. case AFE_PORT_ID_INT0_MI2S_TX:
  5703. return IDX_AFE_PORT_ID_INT0_MI2S_TX;
  5704. case AFE_PORT_ID_INT1_MI2S_RX:
  5705. return IDX_AFE_PORT_ID_INT1_MI2S_RX;
  5706. case AFE_PORT_ID_INT1_MI2S_TX:
  5707. return IDX_AFE_PORT_ID_INT1_MI2S_TX;
  5708. case AFE_PORT_ID_INT2_MI2S_RX:
  5709. return IDX_AFE_PORT_ID_INT2_MI2S_RX;
  5710. case AFE_PORT_ID_INT2_MI2S_TX:
  5711. return IDX_AFE_PORT_ID_INT2_MI2S_TX;
  5712. case AFE_PORT_ID_INT3_MI2S_RX:
  5713. return IDX_AFE_PORT_ID_INT3_MI2S_RX;
  5714. case AFE_PORT_ID_INT3_MI2S_TX:
  5715. return IDX_AFE_PORT_ID_INT3_MI2S_TX;
  5716. case AFE_PORT_ID_INT4_MI2S_RX:
  5717. return IDX_AFE_PORT_ID_INT4_MI2S_RX;
  5718. case AFE_PORT_ID_INT4_MI2S_TX:
  5719. return IDX_AFE_PORT_ID_INT4_MI2S_TX;
  5720. case AFE_PORT_ID_INT5_MI2S_RX:
  5721. return IDX_AFE_PORT_ID_INT5_MI2S_RX;
  5722. case AFE_PORT_ID_INT5_MI2S_TX:
  5723. return IDX_AFE_PORT_ID_INT5_MI2S_TX;
  5724. case AFE_PORT_ID_INT6_MI2S_RX:
  5725. return IDX_AFE_PORT_ID_INT6_MI2S_RX;
  5726. case AFE_PORT_ID_INT6_MI2S_TX:
  5727. return IDX_AFE_PORT_ID_INT6_MI2S_TX;
  5728. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  5729. return IDX_AFE_PORT_ID_PRIMARY_META_MI2S_RX;
  5730. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  5731. return IDX_AFE_PORT_ID_SECONDARY_META_MI2S_RX;
  5732. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  5733. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_0;
  5734. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  5735. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_1;
  5736. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  5737. return IDX_AFE_PORT_ID_VA_CODEC_DMA_TX_2;
  5738. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  5739. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_0;
  5740. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  5741. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_0;
  5742. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  5743. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_RX_1;
  5744. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  5745. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_1;
  5746. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  5747. return IDX_AFE_PORT_ID_WSA_CODEC_DMA_TX_2;
  5748. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  5749. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_0;
  5750. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  5751. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_0;
  5752. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  5753. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_1;
  5754. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  5755. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_1;
  5756. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  5757. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_2;
  5758. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  5759. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_2;
  5760. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  5761. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_3;
  5762. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  5763. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_3;
  5764. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  5765. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_4;
  5766. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  5767. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_4;
  5768. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  5769. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_5;
  5770. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  5771. return IDX_AFE_PORT_ID_TX_CODEC_DMA_TX_5;
  5772. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  5773. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_6;
  5774. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  5775. return IDX_AFE_PORT_ID_RX_CODEC_DMA_RX_7;
  5776. case AFE_LOOPBACK_TX:
  5777. return IDX_AFE_LOOPBACK_TX;
  5778. case RT_PROXY_PORT_002_RX:
  5779. return IDX_RT_PROXY_PORT_002_RX;
  5780. case RT_PROXY_PORT_002_TX:
  5781. return IDX_RT_PROXY_PORT_002_TX;
  5782. default:
  5783. pr_err("%s: port 0x%x\n", __func__, port_id);
  5784. return -EINVAL;
  5785. }
  5786. }
  5787. /**
  5788. * afe_open -
  5789. * command to open AFE port
  5790. *
  5791. * @port_id: AFE port id
  5792. * @afe_config: AFE port config to pass
  5793. * @rate: sample rate
  5794. *
  5795. * Returns 0 on success or error on failure
  5796. */
  5797. int afe_open(u16 port_id,
  5798. union afe_port_config *afe_config, int rate)
  5799. {
  5800. struct afe_port_cmd_device_start start;
  5801. union afe_port_config port_cfg;
  5802. struct param_hdr_v3 param_hdr;
  5803. int ret = 0;
  5804. int cfg_type;
  5805. int index = 0;
  5806. memset(&param_hdr, 0, sizeof(param_hdr));
  5807. memset(&start, 0, sizeof(start));
  5808. memset(&port_cfg, 0, sizeof(port_cfg));
  5809. if (!afe_config) {
  5810. pr_err("%s: Error, no configuration data\n", __func__);
  5811. ret = -EINVAL;
  5812. return ret;
  5813. }
  5814. pr_err("%s: port_id 0x%x rate %d\n", __func__, port_id, rate);
  5815. index = q6audio_get_port_index(port_id);
  5816. if (index < 0 || index >= AFE_MAX_PORTS) {
  5817. pr_err("%s: AFE port index[%d] invalid!\n",
  5818. __func__, index);
  5819. return -EINVAL;
  5820. }
  5821. ret = q6audio_validate_port(port_id);
  5822. if (ret < 0) {
  5823. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  5824. return -EINVAL;
  5825. }
  5826. if ((port_id == RT_PROXY_DAI_001_RX) ||
  5827. (port_id == RT_PROXY_DAI_002_TX)) {
  5828. pr_err("%s: wrong port 0x%x\n", __func__, port_id);
  5829. return -EINVAL;
  5830. }
  5831. if ((port_id == RT_PROXY_DAI_002_RX) ||
  5832. (port_id == RT_PROXY_DAI_001_TX))
  5833. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  5834. ret = afe_q6_interface_prepare();
  5835. if (ret != 0) {
  5836. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  5837. return -EINVAL;
  5838. }
  5839. if ((index >= 0) && (index < AFE_MAX_PORTS)) {
  5840. this_afe.afe_sample_rates[index] = rate;
  5841. if (this_afe.rt_cb)
  5842. this_afe.dev_acdb_id[index] = this_afe.rt_cb(port_id);
  5843. }
  5844. /* Also send the topology id here: */
  5845. afe_send_custom_topology(); /* One time call: only for first time */
  5846. afe_send_port_topology_id(port_id);
  5847. ret = q6audio_validate_port(port_id);
  5848. if (ret < 0) {
  5849. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  5850. __func__, port_id, ret);
  5851. return -EINVAL;
  5852. }
  5853. mutex_lock(&this_afe.afe_cmd_lock);
  5854. switch (port_id) {
  5855. case PRIMARY_I2S_RX:
  5856. case PRIMARY_I2S_TX:
  5857. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  5858. break;
  5859. case AFE_PORT_ID_PRIMARY_PCM_RX:
  5860. case AFE_PORT_ID_PRIMARY_PCM_TX:
  5861. case AFE_PORT_ID_SECONDARY_PCM_RX:
  5862. case AFE_PORT_ID_SECONDARY_PCM_TX:
  5863. case AFE_PORT_ID_TERTIARY_PCM_RX:
  5864. case AFE_PORT_ID_TERTIARY_PCM_TX:
  5865. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  5866. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  5867. case AFE_PORT_ID_QUINARY_PCM_RX:
  5868. case AFE_PORT_ID_QUINARY_PCM_TX:
  5869. case AFE_PORT_ID_SENARY_PCM_RX:
  5870. case AFE_PORT_ID_SENARY_PCM_TX:
  5871. cfg_type = AFE_PARAM_ID_PCM_CONFIG;
  5872. break;
  5873. case SECONDARY_I2S_RX:
  5874. case SECONDARY_I2S_TX:
  5875. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  5876. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  5877. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  5878. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  5879. case MI2S_RX:
  5880. case MI2S_TX:
  5881. case AFE_PORT_ID_QUINARY_MI2S_RX:
  5882. case AFE_PORT_ID_QUINARY_MI2S_TX:
  5883. case AFE_PORT_ID_SENARY_MI2S_RX:
  5884. case AFE_PORT_ID_SENARY_MI2S_TX:
  5885. cfg_type = AFE_PARAM_ID_I2S_CONFIG;
  5886. break;
  5887. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  5888. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  5889. cfg_type = AFE_PARAM_ID_META_I2S_CONFIG;
  5890. break;
  5891. case HDMI_RX:
  5892. case HDMI_RX_MS:
  5893. case DISPLAY_PORT_RX:
  5894. cfg_type = AFE_PARAM_ID_HDMI_CONFIG;
  5895. break;
  5896. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  5897. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  5898. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  5899. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  5900. cfg_type = AFE_PARAM_ID_SPDIF_CONFIG;
  5901. break;
  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 SLIMBUS_3_TX:
  5910. case SLIMBUS_4_RX:
  5911. case SLIMBUS_4_TX:
  5912. case SLIMBUS_5_RX:
  5913. case SLIMBUS_6_RX:
  5914. case SLIMBUS_6_TX:
  5915. case SLIMBUS_7_RX:
  5916. case SLIMBUS_7_TX:
  5917. case SLIMBUS_8_RX:
  5918. case SLIMBUS_8_TX:
  5919. case SLIMBUS_9_RX:
  5920. case SLIMBUS_9_TX:
  5921. cfg_type = AFE_PARAM_ID_SLIMBUS_CONFIG;
  5922. break;
  5923. case AFE_PORT_ID_USB_RX:
  5924. case AFE_PORT_ID_USB_TX:
  5925. cfg_type = AFE_PARAM_ID_USB_AUDIO_CONFIG;
  5926. break;
  5927. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  5928. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  5929. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  5930. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  5931. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  5932. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  5933. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  5934. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  5935. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  5936. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  5937. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  5938. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  5939. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  5940. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  5941. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  5942. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  5943. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  5944. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  5945. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  5946. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  5947. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  5948. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  5949. cfg_type = AFE_PARAM_ID_CODEC_DMA_CONFIG;
  5950. break;
  5951. default:
  5952. pr_err("%s: Invalid port id 0x%x\n",
  5953. __func__, port_id);
  5954. ret = -EINVAL;
  5955. goto fail_cmd;
  5956. }
  5957. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  5958. param_hdr.instance_id = INSTANCE_ID_0;
  5959. param_hdr.param_id = cfg_type;
  5960. param_hdr.param_size = sizeof(union afe_port_config);
  5961. port_cfg = *afe_config;
  5962. ret = q6afe_pack_and_set_param_in_band(port_id,
  5963. q6audio_get_port_index(port_id),
  5964. param_hdr, (u8 *) &port_cfg);
  5965. if (ret) {
  5966. pr_err("%s: AFE enable for port 0x%x opcode[0x%x]failed %d\n",
  5967. __func__, port_id, cfg_type, ret);
  5968. goto fail_cmd;
  5969. }
  5970. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  5971. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  5972. start.hdr.pkt_size = sizeof(start);
  5973. start.hdr.src_port = 0;
  5974. start.hdr.dest_port = 0;
  5975. start.hdr.token = index;
  5976. start.hdr.opcode = AFE_PORT_CMD_DEVICE_START;
  5977. start.port_id = q6audio_get_port_id(port_id);
  5978. pr_debug("%s: cmd device start opcode[0x%x] port id[0x%x]\n",
  5979. __func__, start.hdr.opcode, start.port_id);
  5980. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  5981. if (ret) {
  5982. pr_err("%s: AFE enable for port 0x%x failed %d\n", __func__,
  5983. port_id, ret);
  5984. goto fail_cmd;
  5985. }
  5986. fail_cmd:
  5987. mutex_unlock(&this_afe.afe_cmd_lock);
  5988. return ret;
  5989. }
  5990. EXPORT_SYMBOL(afe_open);
  5991. /**
  5992. * afe_loopback -
  5993. * command to set loopback between AFE ports
  5994. *
  5995. * @enable: enable or disable loopback
  5996. * @rx_port: AFE RX port ID
  5997. * @tx_port: AFE TX port ID
  5998. *
  5999. * Returns 0 on success or error on failure
  6000. */
  6001. int afe_loopback(u16 enable, u16 rx_port, u16 tx_port)
  6002. {
  6003. struct afe_loopback_cfg_v1 lb_param;
  6004. struct param_hdr_v3 param_hdr;
  6005. int ret = 0;
  6006. memset(&lb_param, 0, sizeof(lb_param));
  6007. memset(&param_hdr, 0, sizeof(param_hdr));
  6008. if (rx_port == MI2S_RX)
  6009. rx_port = AFE_PORT_ID_PRIMARY_MI2S_RX;
  6010. if (tx_port == MI2S_TX)
  6011. tx_port = AFE_PORT_ID_PRIMARY_MI2S_TX;
  6012. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  6013. param_hdr.instance_id = INSTANCE_ID_0;
  6014. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  6015. param_hdr.param_size = sizeof(struct afe_loopback_cfg_v1);
  6016. lb_param.dst_port_id = rx_port;
  6017. lb_param.routing_mode = LB_MODE_DEFAULT;
  6018. lb_param.enable = (enable ? 1 : 0);
  6019. lb_param.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  6020. ret = q6afe_pack_and_set_param_in_band(tx_port,
  6021. q6audio_get_port_index(tx_port),
  6022. param_hdr, (u8 *) &lb_param);
  6023. if (ret)
  6024. pr_err("%s: AFE loopback failed %d\n", __func__, ret);
  6025. return ret;
  6026. }
  6027. EXPORT_SYMBOL(afe_loopback);
  6028. /**
  6029. * afe_loopback_gain -
  6030. * command to set gain for AFE loopback
  6031. *
  6032. * @port_id: AFE port id
  6033. * @volume: gain value to set
  6034. *
  6035. * Returns 0 on success or error on failure
  6036. */
  6037. int afe_loopback_gain(u16 port_id, u16 volume)
  6038. {
  6039. struct afe_loopback_gain_per_path_param set_param;
  6040. struct param_hdr_v3 param_hdr;
  6041. int ret = 0;
  6042. memset(&set_param, 0, sizeof(set_param));
  6043. memset(&param_hdr, 0, sizeof(param_hdr));
  6044. if (this_afe.apr == NULL) {
  6045. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6046. 0xFFFFFFFF, &this_afe);
  6047. pr_debug("%s: Register AFE\n", __func__);
  6048. if (this_afe.apr == NULL) {
  6049. pr_err("%s: Unable to register AFE\n", __func__);
  6050. ret = -ENODEV;
  6051. return ret;
  6052. }
  6053. rtac_set_afe_handle(this_afe.apr);
  6054. }
  6055. ret = q6audio_validate_port(port_id);
  6056. if (ret < 0) {
  6057. pr_err("%s: Failed : Invalid Port id = 0x%x ret %d\n",
  6058. __func__, port_id, ret);
  6059. ret = -EINVAL;
  6060. goto fail_cmd;
  6061. }
  6062. /* RX ports numbers are even .TX ports numbers are odd. */
  6063. if (port_id % 2 == 0) {
  6064. pr_err("%s: Failed : afe loopback gain only for TX ports. port_id %d\n",
  6065. __func__, port_id);
  6066. ret = -EINVAL;
  6067. goto fail_cmd;
  6068. }
  6069. pr_debug("%s: port 0x%x volume %d\n", __func__, port_id, volume);
  6070. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  6071. param_hdr.instance_id = INSTANCE_ID_0;
  6072. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  6073. param_hdr.param_size = sizeof(struct afe_loopback_gain_per_path_param);
  6074. set_param.rx_port_id = port_id;
  6075. set_param.gain = volume;
  6076. ret = q6afe_pack_and_set_param_in_band(port_id,
  6077. q6audio_get_port_index(port_id),
  6078. param_hdr, (u8 *) &set_param);
  6079. if (ret)
  6080. pr_err("%s: AFE param set failed for port 0x%x ret %d\n",
  6081. __func__, port_id, ret);
  6082. fail_cmd:
  6083. return ret;
  6084. }
  6085. EXPORT_SYMBOL(afe_loopback_gain);
  6086. int afe_pseudo_port_start_nowait(u16 port_id)
  6087. {
  6088. struct afe_pseudoport_start_command start;
  6089. int ret = 0;
  6090. pr_debug("%s: port_id=0x%x\n", __func__, port_id);
  6091. if (this_afe.apr == NULL) {
  6092. pr_err("%s: AFE APR is not registered\n", __func__);
  6093. return -ENODEV;
  6094. }
  6095. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6096. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6097. start.hdr.pkt_size = sizeof(start);
  6098. start.hdr.src_port = 0;
  6099. start.hdr.dest_port = 0;
  6100. start.hdr.token = 0;
  6101. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  6102. start.port_id = port_id;
  6103. start.timing = 1;
  6104. ret = afe_apr_send_pkt(&start, NULL);
  6105. if (ret) {
  6106. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  6107. __func__, port_id, ret);
  6108. return ret;
  6109. }
  6110. return 0;
  6111. }
  6112. int afe_start_pseudo_port(u16 port_id)
  6113. {
  6114. int ret = 0;
  6115. struct afe_pseudoport_start_command start;
  6116. int index = 0;
  6117. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6118. ret = afe_q6_interface_prepare();
  6119. if (ret != 0) {
  6120. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6121. return ret;
  6122. }
  6123. index = q6audio_get_port_index(port_id);
  6124. if (index < 0 || index >= AFE_MAX_PORTS) {
  6125. pr_err("%s: AFE port index[%d] invalid!\n",
  6126. __func__, index);
  6127. return -EINVAL;
  6128. }
  6129. ret = q6audio_validate_port(port_id);
  6130. if (ret < 0) {
  6131. pr_err("%s: Invalid port 0x%x ret %d",
  6132. __func__, port_id, ret);
  6133. return -EINVAL;
  6134. }
  6135. start.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6136. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6137. start.hdr.pkt_size = sizeof(start);
  6138. start.hdr.src_port = 0;
  6139. start.hdr.dest_port = 0;
  6140. start.hdr.token = 0;
  6141. start.hdr.opcode = AFE_PSEUDOPORT_CMD_START;
  6142. start.port_id = port_id;
  6143. start.timing = 1;
  6144. start.hdr.token = index;
  6145. ret = afe_apr_send_pkt(&start, &this_afe.wait[index]);
  6146. if (ret)
  6147. pr_err("%s: AFE enable for port 0x%x failed %d\n",
  6148. __func__, port_id, ret);
  6149. return ret;
  6150. }
  6151. int afe_pseudo_port_stop_nowait(u16 port_id)
  6152. {
  6153. int ret = 0;
  6154. struct afe_pseudoport_stop_command stop;
  6155. int index = 0;
  6156. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6157. if (this_afe.apr == NULL) {
  6158. pr_err("%s: AFE is already closed\n", __func__);
  6159. return -EINVAL;
  6160. }
  6161. index = q6audio_get_port_index(port_id);
  6162. if (index < 0 || index >= AFE_MAX_PORTS) {
  6163. pr_err("%s: AFE port index[%d] invalid!\n",
  6164. __func__, index);
  6165. return -EINVAL;
  6166. }
  6167. ret = q6audio_validate_port(port_id);
  6168. if (ret < 0) {
  6169. pr_err("%s: Invalid port 0x%x ret %d",
  6170. __func__, port_id, ret);
  6171. return -EINVAL;
  6172. }
  6173. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6174. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6175. stop.hdr.pkt_size = sizeof(stop);
  6176. stop.hdr.src_port = 0;
  6177. stop.hdr.dest_port = 0;
  6178. stop.hdr.token = 0;
  6179. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  6180. stop.port_id = port_id;
  6181. stop.reserved = 0;
  6182. stop.hdr.token = index;
  6183. ret = afe_apr_send_pkt(&stop, NULL);
  6184. if (ret)
  6185. pr_err("%s: AFE close failed %d\n", __func__, ret);
  6186. return ret;
  6187. }
  6188. int afe_port_group_set_param(u16 group_id,
  6189. union afe_port_group_config *afe_group_config)
  6190. {
  6191. struct param_hdr_v3 param_hdr;
  6192. int cfg_type;
  6193. int ret;
  6194. if (!afe_group_config) {
  6195. pr_err("%s: Error, no configuration data\n", __func__);
  6196. return -EINVAL;
  6197. }
  6198. pr_debug("%s: group id: 0x%x\n", __func__, group_id);
  6199. memset(&param_hdr, 0, sizeof(param_hdr));
  6200. ret = afe_q6_interface_prepare();
  6201. if (ret != 0) {
  6202. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6203. return ret;
  6204. }
  6205. switch (group_id) {
  6206. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_RX:
  6207. case AFE_GROUP_DEVICE_ID_PRIMARY_TDM_TX:
  6208. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_RX:
  6209. case AFE_GROUP_DEVICE_ID_SECONDARY_TDM_TX:
  6210. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_RX:
  6211. case AFE_GROUP_DEVICE_ID_TERTIARY_TDM_TX:
  6212. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_RX:
  6213. case AFE_GROUP_DEVICE_ID_QUATERNARY_TDM_TX:
  6214. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_RX:
  6215. case AFE_GROUP_DEVICE_ID_QUINARY_TDM_TX:
  6216. case AFE_GROUP_DEVICE_ID_SENARY_TDM_RX:
  6217. case AFE_GROUP_DEVICE_ID_SENARY_TDM_TX:
  6218. cfg_type = AFE_PARAM_ID_GROUP_DEVICE_TDM_CONFIG;
  6219. break;
  6220. default:
  6221. pr_err("%s: Invalid group id 0x%x\n", __func__, group_id);
  6222. return -EINVAL;
  6223. }
  6224. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  6225. param_hdr.instance_id = INSTANCE_ID_0;
  6226. param_hdr.param_id = cfg_type;
  6227. param_hdr.param_size = sizeof(union afe_port_group_config);
  6228. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  6229. (u8 *) afe_group_config);
  6230. if (ret)
  6231. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_CFG failed %d\n",
  6232. __func__, ret);
  6233. return ret;
  6234. }
  6235. /**
  6236. * afe_port_tdm_lane_config -
  6237. * to configure group TDM lane mask with specified configuration
  6238. *
  6239. * @group_id: AFE group id number
  6240. * @lane_cfg: TDM lane mask configutation
  6241. *
  6242. * Returns 0 on success or error value on failure.
  6243. */
  6244. static int afe_port_tdm_lane_config(u16 group_id,
  6245. struct afe_param_id_tdm_lane_cfg *lane_cfg)
  6246. {
  6247. struct param_hdr_v3 param_hdr;
  6248. int ret = 0;
  6249. if (lane_cfg == NULL ||
  6250. lane_cfg->lane_mask == AFE_LANE_MASK_INVALID) {
  6251. pr_debug("%s: lane cfg not supported for group id: 0x%x\n",
  6252. __func__, group_id);
  6253. return ret;
  6254. }
  6255. pr_debug("%s: group id: 0x%x lane mask 0x%x\n", __func__,
  6256. group_id, lane_cfg->lane_mask);
  6257. memset(&param_hdr, 0, sizeof(param_hdr));
  6258. ret = afe_q6_interface_prepare();
  6259. if (ret != 0) {
  6260. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6261. return ret;
  6262. }
  6263. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  6264. param_hdr.instance_id = INSTANCE_ID_0;
  6265. param_hdr.param_id = AFE_PARAM_ID_TDM_LANE_CONFIG;
  6266. param_hdr.param_size = sizeof(struct afe_param_id_tdm_lane_cfg);
  6267. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  6268. (u8 *)lane_cfg);
  6269. if (ret)
  6270. pr_err("%s: AFE_PARAM_ID_TDM_LANE_CONFIG failed %d\n",
  6271. __func__, ret);
  6272. return ret;
  6273. }
  6274. /**
  6275. * afe_port_group_enable -
  6276. * command to enable AFE port group
  6277. *
  6278. * @group_id: group ID for AFE port group
  6279. * @afe_group_config: config for AFE group
  6280. * @enable: flag to indicate enable or disable
  6281. * @lane_cfg: TDM lane mask configutation
  6282. *
  6283. * Returns 0 on success or error on failure
  6284. */
  6285. int afe_port_group_enable(u16 group_id,
  6286. union afe_port_group_config *afe_group_config,
  6287. u16 enable,
  6288. struct afe_param_id_tdm_lane_cfg *lane_cfg)
  6289. {
  6290. struct afe_group_device_enable group_enable;
  6291. struct param_hdr_v3 param_hdr;
  6292. int ret;
  6293. pr_debug("%s: group id: 0x%x enable: %d\n", __func__,
  6294. group_id, enable);
  6295. memset(&group_enable, 0, sizeof(group_enable));
  6296. memset(&param_hdr, 0, sizeof(param_hdr));
  6297. ret = afe_q6_interface_prepare();
  6298. if (ret != 0) {
  6299. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  6300. return ret;
  6301. }
  6302. if (enable) {
  6303. ret = afe_port_group_set_param(group_id, afe_group_config);
  6304. if (ret < 0) {
  6305. pr_err("%s: afe send failed %d\n", __func__, ret);
  6306. return ret;
  6307. }
  6308. ret = afe_port_tdm_lane_config(group_id, lane_cfg);
  6309. if (ret < 0) {
  6310. pr_err("%s: afe send lane config failed %d\n",
  6311. __func__, ret);
  6312. return ret;
  6313. }
  6314. }
  6315. param_hdr.module_id = AFE_MODULE_GROUP_DEVICE;
  6316. param_hdr.instance_id = INSTANCE_ID_0;
  6317. param_hdr.param_id = AFE_PARAM_ID_GROUP_DEVICE_ENABLE;
  6318. param_hdr.param_size = sizeof(struct afe_group_device_enable);
  6319. group_enable.group_id = group_id;
  6320. group_enable.enable = enable;
  6321. ret = q6afe_svc_pack_and_set_param_in_band(IDX_GLOBAL_CFG, param_hdr,
  6322. (u8 *) &group_enable);
  6323. if (ret)
  6324. pr_err("%s: AFE_PARAM_ID_GROUP_DEVICE_ENABLE failed %d\n",
  6325. __func__, ret);
  6326. return ret;
  6327. }
  6328. EXPORT_SYMBOL(afe_port_group_enable);
  6329. int afe_stop_pseudo_port(u16 port_id)
  6330. {
  6331. int ret = 0;
  6332. struct afe_pseudoport_stop_command stop;
  6333. int index = 0;
  6334. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  6335. if (this_afe.apr == NULL) {
  6336. pr_err("%s: AFE is already closed\n", __func__);
  6337. return -EINVAL;
  6338. }
  6339. index = q6audio_get_port_index(port_id);
  6340. if (index < 0 || index >= AFE_MAX_PORTS) {
  6341. pr_err("%s: AFE port index[%d] invalid!\n",
  6342. __func__, index);
  6343. return -EINVAL;
  6344. }
  6345. ret = q6audio_validate_port(port_id);
  6346. if (ret < 0) {
  6347. pr_err("%s: Invalid port 0x%x ret %d\n",
  6348. __func__, port_id, ret);
  6349. return -EINVAL;
  6350. }
  6351. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6352. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6353. stop.hdr.pkt_size = sizeof(stop);
  6354. stop.hdr.src_port = 0;
  6355. stop.hdr.dest_port = 0;
  6356. stop.hdr.token = 0;
  6357. stop.hdr.opcode = AFE_PSEUDOPORT_CMD_STOP;
  6358. stop.port_id = port_id;
  6359. stop.reserved = 0;
  6360. stop.hdr.token = index;
  6361. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  6362. if (ret)
  6363. pr_err("%s: AFE close failed %d\n", __func__, ret);
  6364. return ret;
  6365. }
  6366. /**
  6367. * afe_req_mmap_handle -
  6368. * Retrieve AFE memory map handle
  6369. *
  6370. * @ac: AFE audio client
  6371. *
  6372. * Returns memory map handle
  6373. */
  6374. uint32_t afe_req_mmap_handle(struct afe_audio_client *ac)
  6375. {
  6376. return ac->mem_map_handle;
  6377. }
  6378. EXPORT_SYMBOL(afe_req_mmap_handle);
  6379. /**
  6380. * q6afe_audio_client_alloc -
  6381. * Assign new AFE audio client
  6382. *
  6383. * @priv: privata data to hold for audio client
  6384. *
  6385. * Returns ac pointer on success or NULL on failure
  6386. */
  6387. struct afe_audio_client *q6afe_audio_client_alloc(void *priv)
  6388. {
  6389. struct afe_audio_client *ac;
  6390. int lcnt = 0;
  6391. ac = kzalloc(sizeof(struct afe_audio_client), GFP_KERNEL);
  6392. if (!ac)
  6393. return NULL;
  6394. ac->priv = priv;
  6395. init_waitqueue_head(&ac->cmd_wait);
  6396. INIT_LIST_HEAD(&ac->port[0].mem_map_handle);
  6397. INIT_LIST_HEAD(&ac->port[1].mem_map_handle);
  6398. pr_debug("%s: mem_map_handle list init'ed\n", __func__);
  6399. mutex_init(&ac->cmd_lock);
  6400. for (lcnt = 0; lcnt <= OUT; lcnt++) {
  6401. mutex_init(&ac->port[lcnt].lock);
  6402. spin_lock_init(&ac->port[lcnt].dsp_lock);
  6403. }
  6404. atomic_set(&ac->cmd_state, 0);
  6405. return ac;
  6406. }
  6407. EXPORT_SYMBOL(q6afe_audio_client_alloc);
  6408. /**
  6409. * q6afe_audio_client_buf_alloc_contiguous -
  6410. * Allocate contiguous shared buffers
  6411. *
  6412. * @dir: RX or TX direction of AFE port
  6413. * @ac: AFE audio client handle
  6414. * @bufsz: size of each shared buffer
  6415. * @bufcnt: number of buffers
  6416. *
  6417. * Returns 0 on success or error on failure
  6418. */
  6419. int q6afe_audio_client_buf_alloc_contiguous(unsigned int dir,
  6420. struct afe_audio_client *ac,
  6421. unsigned int bufsz,
  6422. unsigned int bufcnt)
  6423. {
  6424. int cnt = 0;
  6425. int rc = 0;
  6426. struct afe_audio_buffer *buf;
  6427. size_t len;
  6428. if (!(ac) || ((dir != IN) && (dir != OUT))) {
  6429. pr_err("%s: ac %pK dir %d\n", __func__, ac, dir);
  6430. return -EINVAL;
  6431. }
  6432. pr_debug("%s: bufsz[%d]bufcnt[%d]\n",
  6433. __func__,
  6434. bufsz, bufcnt);
  6435. if (ac->port[dir].buf) {
  6436. pr_debug("%s: buffer already allocated\n", __func__);
  6437. return 0;
  6438. }
  6439. mutex_lock(&ac->cmd_lock);
  6440. buf = kzalloc(((sizeof(struct afe_audio_buffer))*bufcnt),
  6441. GFP_KERNEL);
  6442. if (!buf) {
  6443. pr_err("%s: null buf\n", __func__);
  6444. mutex_unlock(&ac->cmd_lock);
  6445. goto fail;
  6446. }
  6447. ac->port[dir].buf = buf;
  6448. rc = msm_audio_ion_alloc(&buf[0].dma_buf,
  6449. bufsz * bufcnt,
  6450. &buf[0].phys, &len,
  6451. &buf[0].data);
  6452. if (rc) {
  6453. pr_err("%s: audio ION alloc failed, rc = %d\n",
  6454. __func__, rc);
  6455. mutex_unlock(&ac->cmd_lock);
  6456. goto fail;
  6457. }
  6458. buf[0].used = dir ^ 1;
  6459. buf[0].size = bufsz;
  6460. buf[0].actual_size = bufsz;
  6461. cnt = 1;
  6462. while (cnt < bufcnt) {
  6463. if (bufsz > 0) {
  6464. buf[cnt].data = buf[0].data + (cnt * bufsz);
  6465. buf[cnt].phys = buf[0].phys + (cnt * bufsz);
  6466. if (!buf[cnt].data) {
  6467. pr_err("%s: Buf alloc failed\n",
  6468. __func__);
  6469. mutex_unlock(&ac->cmd_lock);
  6470. goto fail;
  6471. }
  6472. buf[cnt].used = dir ^ 1;
  6473. buf[cnt].size = bufsz;
  6474. buf[cnt].actual_size = bufsz;
  6475. pr_debug("%s: data[%pK]phys[%pK][%pK]\n", __func__,
  6476. buf[cnt].data,
  6477. &buf[cnt].phys,
  6478. &buf[cnt].phys);
  6479. }
  6480. cnt++;
  6481. }
  6482. ac->port[dir].max_buf_cnt = cnt;
  6483. mutex_unlock(&ac->cmd_lock);
  6484. return 0;
  6485. fail:
  6486. pr_err("%s: jump fail\n", __func__);
  6487. q6afe_audio_client_buf_free_contiguous(dir, ac);
  6488. return -EINVAL;
  6489. }
  6490. EXPORT_SYMBOL(q6afe_audio_client_buf_alloc_contiguous);
  6491. /**
  6492. * afe_memory_map -
  6493. * command to map shared buffers to AFE
  6494. *
  6495. * @dma_addr_p: DMA physical address
  6496. * @dma_buf_sz: shared DMA buffer size
  6497. * @ac: AFE audio client handle
  6498. *
  6499. * Returns 0 on success or error on failure
  6500. */
  6501. int afe_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz,
  6502. struct afe_audio_client *ac)
  6503. {
  6504. int ret = 0;
  6505. mutex_lock(&this_afe.afe_cmd_lock);
  6506. ac->mem_map_handle = 0;
  6507. ret = afe_cmd_memory_map(dma_addr_p, dma_buf_sz);
  6508. if (ret < 0) {
  6509. pr_err("%s: afe_cmd_memory_map failed %d\n",
  6510. __func__, ret);
  6511. mutex_unlock(&this_afe.afe_cmd_lock);
  6512. return ret;
  6513. }
  6514. ac->mem_map_handle = this_afe.mmap_handle;
  6515. mutex_unlock(&this_afe.afe_cmd_lock);
  6516. return ret;
  6517. }
  6518. EXPORT_SYMBOL(afe_memory_map);
  6519. int afe_cmd_memory_map(phys_addr_t dma_addr_p, u32 dma_buf_sz)
  6520. {
  6521. int ret = 0;
  6522. int cmd_size = 0;
  6523. void *payload = NULL;
  6524. void *mmap_region_cmd = NULL;
  6525. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  6526. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  6527. int index = 0;
  6528. pr_debug("%s:\n", __func__);
  6529. if (this_afe.apr == NULL) {
  6530. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6531. 0xFFFFFFFF, &this_afe);
  6532. pr_debug("%s: Register AFE\n", __func__);
  6533. if (this_afe.apr == NULL) {
  6534. pr_err("%s: Unable to register AFE\n", __func__);
  6535. ret = -ENODEV;
  6536. return ret;
  6537. }
  6538. rtac_set_afe_handle(this_afe.apr);
  6539. }
  6540. if (dma_buf_sz % SZ_4K != 0) {
  6541. /*
  6542. * The memory allocated by msm_audio_ion_alloc is always 4kB
  6543. * aligned, ADSP expects the size to be 4kB aligned as well
  6544. * so re-adjusts the buffer size before passing to ADSP.
  6545. */
  6546. dma_buf_sz = PAGE_ALIGN(dma_buf_sz);
  6547. }
  6548. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  6549. + sizeof(struct afe_service_shared_map_region_payload);
  6550. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  6551. if (!mmap_region_cmd)
  6552. return -ENOMEM;
  6553. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  6554. mmap_region_cmd;
  6555. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6556. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6557. mregion->hdr.pkt_size = cmd_size;
  6558. mregion->hdr.src_port = 0;
  6559. mregion->hdr.dest_port = 0;
  6560. mregion->hdr.token = 0;
  6561. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  6562. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  6563. mregion->num_regions = 1;
  6564. mregion->property_flag = 0x00;
  6565. /* Todo */
  6566. index = mregion->hdr.token = IDX_RSVD_2;
  6567. payload = ((u8 *) mmap_region_cmd +
  6568. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  6569. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  6570. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  6571. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  6572. mregion_pl->mem_size_bytes = dma_buf_sz;
  6573. pr_debug("%s: dma_addr_p 0x%pK , size %d\n", __func__,
  6574. &dma_addr_p, dma_buf_sz);
  6575. this_afe.mmap_handle = 0;
  6576. ret = afe_apr_send_pkt((uint32_t *) mmap_region_cmd,
  6577. &this_afe.wait[index]);
  6578. kfree(mmap_region_cmd);
  6579. return ret;
  6580. }
  6581. int afe_cmd_memory_map_nowait(int port_id, phys_addr_t dma_addr_p,
  6582. u32 dma_buf_sz)
  6583. {
  6584. int ret = 0;
  6585. int cmd_size = 0;
  6586. void *payload = NULL;
  6587. void *mmap_region_cmd = NULL;
  6588. struct afe_service_cmd_shared_mem_map_regions *mregion = NULL;
  6589. struct afe_service_shared_map_region_payload *mregion_pl = NULL;
  6590. int index = 0;
  6591. pr_debug("%s:\n", __func__);
  6592. if (this_afe.apr == NULL) {
  6593. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6594. 0xFFFFFFFF, &this_afe);
  6595. pr_debug("%s: Register AFE\n", __func__);
  6596. if (this_afe.apr == NULL) {
  6597. pr_err("%s: Unable to register AFE\n", __func__);
  6598. ret = -ENODEV;
  6599. return ret;
  6600. }
  6601. rtac_set_afe_handle(this_afe.apr);
  6602. }
  6603. index = q6audio_get_port_index(port_id);
  6604. if (index < 0 || index >= AFE_MAX_PORTS) {
  6605. pr_err("%s: AFE port index[%d] invalid!\n",
  6606. __func__, index);
  6607. return -EINVAL;
  6608. }
  6609. ret = q6audio_validate_port(port_id);
  6610. if (ret < 0) {
  6611. pr_err("%s: Invalid port 0x%x ret %d",
  6612. __func__, port_id, ret);
  6613. return -EINVAL;
  6614. }
  6615. cmd_size = sizeof(struct afe_service_cmd_shared_mem_map_regions)
  6616. + sizeof(struct afe_service_shared_map_region_payload);
  6617. mmap_region_cmd = kzalloc(cmd_size, GFP_KERNEL);
  6618. if (!mmap_region_cmd)
  6619. return -ENOMEM;
  6620. mregion = (struct afe_service_cmd_shared_mem_map_regions *)
  6621. mmap_region_cmd;
  6622. mregion->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6623. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6624. mregion->hdr.pkt_size = sizeof(mregion);
  6625. mregion->hdr.src_port = 0;
  6626. mregion->hdr.dest_port = 0;
  6627. mregion->hdr.token = 0;
  6628. mregion->hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_MAP_REGIONS;
  6629. mregion->mem_pool_id = ADSP_MEMORY_MAP_SHMEM8_4K_POOL;
  6630. mregion->num_regions = 1;
  6631. mregion->property_flag = 0x00;
  6632. payload = ((u8 *) mmap_region_cmd +
  6633. sizeof(struct afe_service_cmd_shared_mem_map_regions));
  6634. mregion_pl = (struct afe_service_shared_map_region_payload *)payload;
  6635. mregion_pl->shm_addr_lsw = lower_32_bits(dma_addr_p);
  6636. mregion_pl->shm_addr_msw = msm_audio_populate_upper_32_bits(dma_addr_p);
  6637. mregion_pl->mem_size_bytes = dma_buf_sz;
  6638. ret = afe_apr_send_pkt(mmap_region_cmd, NULL);
  6639. if (ret)
  6640. pr_err("%s: AFE memory map cmd failed %d\n",
  6641. __func__, ret);
  6642. kfree(mmap_region_cmd);
  6643. return ret;
  6644. }
  6645. /**
  6646. * q6afe_audio_client_buf_free_contiguous -
  6647. * frees the shared contiguous memory
  6648. *
  6649. * @dir: RX or TX direction of port
  6650. * @ac: AFE audio client handle
  6651. *
  6652. */
  6653. int q6afe_audio_client_buf_free_contiguous(unsigned int dir,
  6654. struct afe_audio_client *ac)
  6655. {
  6656. struct afe_audio_port_data *port;
  6657. int cnt = 0;
  6658. mutex_lock(&ac->cmd_lock);
  6659. port = &ac->port[dir];
  6660. if (!port->buf) {
  6661. pr_err("%s: buf is null\n", __func__);
  6662. mutex_unlock(&ac->cmd_lock);
  6663. return 0;
  6664. }
  6665. cnt = port->max_buf_cnt - 1;
  6666. if (port->buf[0].data) {
  6667. pr_debug("%s: data[%pK], phys[%pK], dma_buf[%pK]\n",
  6668. __func__,
  6669. port->buf[0].data,
  6670. &port->buf[0].phys,
  6671. port->buf[0].dma_buf);
  6672. msm_audio_ion_free(port->buf[0].dma_buf);
  6673. port->buf[0].dma_buf = NULL;
  6674. }
  6675. while (cnt >= 0) {
  6676. port->buf[cnt].data = NULL;
  6677. port->buf[cnt].phys = 0;
  6678. cnt--;
  6679. }
  6680. port->max_buf_cnt = 0;
  6681. kfree(port->buf);
  6682. port->buf = NULL;
  6683. mutex_unlock(&ac->cmd_lock);
  6684. return 0;
  6685. }
  6686. EXPORT_SYMBOL(q6afe_audio_client_buf_free_contiguous);
  6687. /**
  6688. * q6afe_audio_client_free -
  6689. * frees the audio client from AFE
  6690. *
  6691. * @ac: AFE audio client handle
  6692. *
  6693. */
  6694. void q6afe_audio_client_free(struct afe_audio_client *ac)
  6695. {
  6696. int loopcnt;
  6697. struct afe_audio_port_data *port;
  6698. if (!ac) {
  6699. pr_err("%s: audio client is NULL\n", __func__);
  6700. return;
  6701. }
  6702. for (loopcnt = 0; loopcnt <= OUT; loopcnt++) {
  6703. port = &ac->port[loopcnt];
  6704. if (!port->buf)
  6705. continue;
  6706. pr_debug("%s: loopcnt = %d\n", __func__, loopcnt);
  6707. q6afe_audio_client_buf_free_contiguous(loopcnt, ac);
  6708. }
  6709. kfree(ac);
  6710. }
  6711. EXPORT_SYMBOL(q6afe_audio_client_free);
  6712. /**
  6713. * afe_cmd_memory_unmap -
  6714. * command to unmap memory for AFE shared buffer
  6715. *
  6716. * @mem_map_handle: memory map handle to be unmapped
  6717. *
  6718. * Returns 0 on success or error on failure
  6719. */
  6720. int afe_cmd_memory_unmap(u32 mem_map_handle)
  6721. {
  6722. int ret = 0;
  6723. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  6724. int index = 0;
  6725. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  6726. if (this_afe.apr == NULL) {
  6727. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6728. 0xFFFFFFFF, &this_afe);
  6729. pr_debug("%s: Register AFE\n", __func__);
  6730. if (this_afe.apr == NULL) {
  6731. pr_err("%s: Unable to register AFE\n", __func__);
  6732. ret = -ENODEV;
  6733. return ret;
  6734. }
  6735. rtac_set_afe_handle(this_afe.apr);
  6736. }
  6737. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6738. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6739. mregion.hdr.pkt_size = sizeof(mregion);
  6740. mregion.hdr.src_port = 0;
  6741. mregion.hdr.dest_port = 0;
  6742. mregion.hdr.token = 0;
  6743. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  6744. mregion.mem_map_handle = mem_map_handle;
  6745. /* Todo */
  6746. index = mregion.hdr.token = IDX_RSVD_2;
  6747. atomic_set(&this_afe.status, 0);
  6748. ret = afe_apr_send_pkt(&mregion, &this_afe.wait[index]);
  6749. if (ret)
  6750. pr_err("%s: AFE memory unmap cmd failed %d\n",
  6751. __func__, ret);
  6752. return ret;
  6753. }
  6754. EXPORT_SYMBOL(afe_cmd_memory_unmap);
  6755. int afe_cmd_memory_unmap_nowait(u32 mem_map_handle)
  6756. {
  6757. int ret = 0;
  6758. struct afe_service_cmd_shared_mem_unmap_regions mregion;
  6759. pr_debug("%s: handle 0x%x\n", __func__, mem_map_handle);
  6760. if (this_afe.apr == NULL) {
  6761. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6762. 0xFFFFFFFF, &this_afe);
  6763. pr_debug("%s: Register AFE\n", __func__);
  6764. if (this_afe.apr == NULL) {
  6765. pr_err("%s: Unable to register AFE\n", __func__);
  6766. ret = -ENODEV;
  6767. return ret;
  6768. }
  6769. rtac_set_afe_handle(this_afe.apr);
  6770. }
  6771. mregion.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6772. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6773. mregion.hdr.pkt_size = sizeof(mregion);
  6774. mregion.hdr.src_port = 0;
  6775. mregion.hdr.dest_port = 0;
  6776. mregion.hdr.token = 0;
  6777. mregion.hdr.opcode = AFE_SERVICE_CMD_SHARED_MEM_UNMAP_REGIONS;
  6778. mregion.mem_map_handle = mem_map_handle;
  6779. ret = afe_apr_send_pkt(&mregion, NULL);
  6780. if (ret)
  6781. pr_err("%s: AFE memory unmap cmd failed %d\n",
  6782. __func__, ret);
  6783. return ret;
  6784. }
  6785. /**
  6786. * afe_register_get_events -
  6787. * register for events from proxy port
  6788. *
  6789. * @port_id: Port ID to register events
  6790. * @cb: callback function to invoke for events from proxy port
  6791. * @private_data: private data to sent back in callback fn
  6792. *
  6793. * Returns 0 on success or error on failure
  6794. */
  6795. int afe_register_get_events(u16 port_id,
  6796. void (*cb)(uint32_t opcode,
  6797. uint32_t token, uint32_t *payload, void *priv),
  6798. void *private_data)
  6799. {
  6800. int ret = 0;
  6801. struct afe_service_cmd_register_rt_port_driver rtproxy;
  6802. pr_debug("%s: port_id: 0x%x\n", __func__, port_id);
  6803. if (this_afe.apr == NULL) {
  6804. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6805. 0xFFFFFFFF, &this_afe);
  6806. pr_debug("%s: Register AFE\n", __func__);
  6807. if (this_afe.apr == NULL) {
  6808. pr_err("%s: Unable to register AFE\n", __func__);
  6809. ret = -ENODEV;
  6810. return ret;
  6811. }
  6812. rtac_set_afe_handle(this_afe.apr);
  6813. }
  6814. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6815. (port_id == RT_PROXY_DAI_001_TX) ||
  6816. (port_id == RT_PROXY_DAI_003_TX)) {
  6817. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6818. } else {
  6819. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  6820. return -EINVAL;
  6821. }
  6822. if (port_id == RT_PROXY_PORT_001_TX) {
  6823. this_afe.tx_cb = cb;
  6824. this_afe.tx_private_data = private_data;
  6825. } else if (port_id == RT_PROXY_PORT_001_RX ||
  6826. port_id == RT_PROXY_PORT_002_RX) {
  6827. this_afe.rx_cb = cb;
  6828. this_afe.rx_private_data[PORTID_TO_IDX(port_id)] = private_data;
  6829. }
  6830. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6831. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6832. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  6833. rtproxy.hdr.src_port = 1;
  6834. rtproxy.hdr.dest_port = 1;
  6835. rtproxy.hdr.opcode = AFE_SERVICE_CMD_REGISTER_RT_PORT_DRIVER;
  6836. rtproxy.port_id = port_id;
  6837. rtproxy.reserved = 0;
  6838. ret = afe_apr_send_pkt(&rtproxy, NULL);
  6839. if (ret)
  6840. pr_err("%s: AFE reg. rtproxy_event failed %d\n",
  6841. __func__, ret);
  6842. return ret;
  6843. }
  6844. EXPORT_SYMBOL(afe_register_get_events);
  6845. /**
  6846. * afe_unregister_get_events -
  6847. * unregister for events from proxy port
  6848. *
  6849. * @port_id: Port ID to unregister events
  6850. *
  6851. * Returns 0 on success or error on failure
  6852. */
  6853. int afe_unregister_get_events(u16 port_id)
  6854. {
  6855. int ret = 0;
  6856. struct afe_service_cmd_unregister_rt_port_driver rtproxy;
  6857. int index = 0;
  6858. uint16_t i = 0;
  6859. pr_debug("%s:\n", __func__);
  6860. if (this_afe.apr == NULL) {
  6861. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  6862. 0xFFFFFFFF, &this_afe);
  6863. pr_debug("%s: Register AFE\n", __func__);
  6864. if (this_afe.apr == NULL) {
  6865. pr_err("%s: Unable to register AFE\n", __func__);
  6866. ret = -ENODEV;
  6867. return ret;
  6868. }
  6869. rtac_set_afe_handle(this_afe.apr);
  6870. }
  6871. if ((port_id == RT_PROXY_DAI_002_RX) ||
  6872. (port_id == RT_PROXY_DAI_001_TX) ||
  6873. (port_id == RT_PROXY_DAI_003_TX)) {
  6874. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  6875. } else {
  6876. pr_err("%s: wrong port id 0x%x\n", __func__, port_id);
  6877. return -EINVAL;
  6878. }
  6879. index = q6audio_get_port_index(port_id);
  6880. if (index < 0 || index >= AFE_MAX_PORTS) {
  6881. pr_err("%s: AFE port index[%d] invalid!\n",
  6882. __func__, index);
  6883. return -EINVAL;
  6884. }
  6885. ret = q6audio_validate_port(port_id);
  6886. if (ret < 0) {
  6887. pr_err("%s: Invalid port 0x%x ret %d", __func__, port_id, ret);
  6888. return -EINVAL;
  6889. }
  6890. rtproxy.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6891. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6892. rtproxy.hdr.pkt_size = sizeof(rtproxy);
  6893. rtproxy.hdr.src_port = 0;
  6894. rtproxy.hdr.dest_port = 0;
  6895. rtproxy.hdr.token = 0;
  6896. rtproxy.hdr.opcode = AFE_SERVICE_CMD_UNREGISTER_RT_PORT_DRIVER;
  6897. rtproxy.port_id = port_id;
  6898. rtproxy.reserved = 0;
  6899. rtproxy.hdr.token = index;
  6900. if (port_id == RT_PROXY_PORT_001_TX) {
  6901. this_afe.tx_cb = NULL;
  6902. this_afe.tx_private_data = NULL;
  6903. } else if (port_id == RT_PROXY_PORT_001_RX ||
  6904. port_id == RT_PROXY_PORT_002_RX) {
  6905. this_afe.rx_private_data[PORTID_TO_IDX(port_id)] = NULL;
  6906. for (i = 0; i < NUM_RX_PROXY_PORTS; i++) {
  6907. if (this_afe.rx_private_data[i] != NULL)
  6908. break;
  6909. }
  6910. if (i == NUM_RX_PROXY_PORTS)
  6911. this_afe.rx_cb = NULL;
  6912. }
  6913. ret = afe_apr_send_pkt(&rtproxy, &this_afe.wait[index]);
  6914. if (ret)
  6915. pr_err("%s: AFE enable Unreg. rtproxy_event failed %d\n",
  6916. __func__, ret);
  6917. return ret;
  6918. }
  6919. EXPORT_SYMBOL(afe_unregister_get_events);
  6920. /**
  6921. * afe_rt_proxy_port_write -
  6922. * command for AFE RT proxy port write
  6923. *
  6924. * @buf_addr_p: Physical buffer address with
  6925. * playback data to proxy port
  6926. * @mem_map_handle: memory map handle of write buffer
  6927. * @bytes: number of bytes to write
  6928. *
  6929. * Returns 0 on success or error on failure
  6930. */
  6931. int afe_rt_proxy_port_write(phys_addr_t buf_addr_p,
  6932. u32 mem_map_handle, int bytes)
  6933. {
  6934. int ret = 0;
  6935. struct afe_port_data_cmd_rt_proxy_port_write_v2 afecmd_wr;
  6936. if (this_afe.apr == NULL) {
  6937. pr_err("%s: register to AFE is not done\n", __func__);
  6938. ret = -ENODEV;
  6939. return ret;
  6940. }
  6941. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  6942. &buf_addr_p, bytes);
  6943. afecmd_wr.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6944. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6945. afecmd_wr.hdr.pkt_size = sizeof(afecmd_wr);
  6946. afecmd_wr.hdr.src_port = 0;
  6947. afecmd_wr.hdr.dest_port = 0;
  6948. afecmd_wr.hdr.token = 0;
  6949. afecmd_wr.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_WRITE_V2;
  6950. afecmd_wr.port_id = RT_PROXY_PORT_001_TX;
  6951. afecmd_wr.buffer_address_lsw = lower_32_bits(buf_addr_p);
  6952. afecmd_wr.buffer_address_msw =
  6953. msm_audio_populate_upper_32_bits(buf_addr_p);
  6954. afecmd_wr.mem_map_handle = mem_map_handle;
  6955. afecmd_wr.available_bytes = bytes;
  6956. afecmd_wr.reserved = 0;
  6957. /*
  6958. * Do not call afe_apr_send_pkt() here as it acquires
  6959. * a mutex lock inside and this function gets called in
  6960. * interrupt context leading to scheduler crash
  6961. */
  6962. atomic_set(&this_afe.status, 0);
  6963. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &afecmd_wr);
  6964. if (ret < 0) {
  6965. pr_err("%s: AFE rtproxy write to port 0x%x failed %d\n",
  6966. __func__, afecmd_wr.port_id, ret);
  6967. ret = -EINVAL;
  6968. }
  6969. return ret;
  6970. }
  6971. EXPORT_SYMBOL(afe_rt_proxy_port_write);
  6972. /**
  6973. * afe_rt_proxy_port_read -
  6974. * command for AFE RT proxy port read
  6975. *
  6976. * @buf_addr_p: Physical buffer address to fill read data
  6977. * @mem_map_handle: memory map handle for buffer read
  6978. * @bytes: number of bytes to read
  6979. * @id: afe virtual port id
  6980. *
  6981. * Returns 0 on success or error on failure
  6982. */
  6983. int afe_rt_proxy_port_read(phys_addr_t buf_addr_p,
  6984. u32 mem_map_handle, int bytes, int id)
  6985. {
  6986. int ret = 0;
  6987. struct afe_port_data_cmd_rt_proxy_port_read_v2 afecmd_rd;
  6988. int port_id = VIRTUAL_ID_TO_PORTID(id);
  6989. if (this_afe.apr == NULL) {
  6990. pr_err("%s: register to AFE is not done\n", __func__);
  6991. ret = -ENODEV;
  6992. return ret;
  6993. }
  6994. pr_debug("%s: buf_addr_p = 0x%pK bytes = %d\n", __func__,
  6995. &buf_addr_p, bytes);
  6996. afecmd_rd.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  6997. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  6998. afecmd_rd.hdr.pkt_size = sizeof(afecmd_rd);
  6999. afecmd_rd.hdr.src_port = 0;
  7000. afecmd_rd.hdr.dest_port = port_id;
  7001. afecmd_rd.hdr.token = 0;
  7002. afecmd_rd.hdr.opcode = AFE_PORT_DATA_CMD_RT_PROXY_PORT_READ_V2;
  7003. afecmd_rd.port_id = port_id;
  7004. afecmd_rd.buffer_address_lsw = lower_32_bits(buf_addr_p);
  7005. afecmd_rd.buffer_address_msw =
  7006. msm_audio_populate_upper_32_bits(buf_addr_p);
  7007. afecmd_rd.available_bytes = bytes;
  7008. afecmd_rd.mem_map_handle = mem_map_handle;
  7009. /*
  7010. * Do not call afe_apr_send_pkt() here as it acquires
  7011. * a mutex lock inside and this function gets called in
  7012. * interrupt context leading to scheduler crash
  7013. */
  7014. atomic_set(&this_afe.status, 0);
  7015. ret = apr_send_pkt(this_afe.apr, (uint32_t *) &afecmd_rd);
  7016. if (ret < 0) {
  7017. pr_err("%s: AFE rtproxy read cmd to port 0x%x failed %d\n",
  7018. __func__, afecmd_rd.port_id, ret);
  7019. ret = -EINVAL;
  7020. }
  7021. return ret;
  7022. }
  7023. EXPORT_SYMBOL(afe_rt_proxy_port_read);
  7024. #ifdef CONFIG_DEBUG_FS
  7025. static struct dentry *debugfs_afelb;
  7026. static struct dentry *debugfs_afelb_gain;
  7027. static int afe_debug_open(struct inode *inode, struct file *file)
  7028. {
  7029. file->private_data = inode->i_private;
  7030. pr_info("%s: debug intf %s\n", __func__, (char *) file->private_data);
  7031. return 0;
  7032. }
  7033. static int afe_get_parameters(char *buf, long int *param1, int num_of_par)
  7034. {
  7035. char *token;
  7036. int base, cnt;
  7037. token = strsep(&buf, " ");
  7038. for (cnt = 0; cnt < num_of_par; cnt++) {
  7039. if (token != NULL) {
  7040. if ((token[1] == 'x') || (token[1] == 'X'))
  7041. base = 16;
  7042. else
  7043. base = 10;
  7044. if (kstrtoul(token, base, &param1[cnt]) != 0) {
  7045. pr_err("%s: kstrtoul failed\n",
  7046. __func__);
  7047. return -EINVAL;
  7048. }
  7049. token = strsep(&buf, " ");
  7050. } else {
  7051. pr_err("%s: token NULL\n", __func__);
  7052. return -EINVAL;
  7053. }
  7054. }
  7055. return 0;
  7056. }
  7057. #define AFE_LOOPBACK_ON (1)
  7058. #define AFE_LOOPBACK_OFF (0)
  7059. static ssize_t afe_debug_write(struct file *filp,
  7060. const char __user *ubuf, size_t cnt, loff_t *ppos)
  7061. {
  7062. char *lb_str = filp->private_data;
  7063. char lbuf[32];
  7064. int rc;
  7065. unsigned long param[5];
  7066. if (cnt > sizeof(lbuf) - 1) {
  7067. pr_err("%s: cnt %zd size %zd\n", __func__, cnt, sizeof(lbuf)-1);
  7068. return -EINVAL;
  7069. }
  7070. rc = copy_from_user(lbuf, ubuf, cnt);
  7071. if (rc) {
  7072. pr_err("%s: copy from user failed %d\n", __func__, rc);
  7073. return -EFAULT;
  7074. }
  7075. lbuf[cnt] = '\0';
  7076. if (!strcmp(lb_str, "afe_loopback")) {
  7077. rc = afe_get_parameters(lbuf, param, 3);
  7078. if (!rc) {
  7079. pr_info("%s: %lu %lu %lu\n", lb_str, param[0], param[1],
  7080. param[2]);
  7081. if ((param[0] != AFE_LOOPBACK_ON) && (param[0] !=
  7082. AFE_LOOPBACK_OFF)) {
  7083. pr_err("%s: Error, parameter 0 incorrect\n",
  7084. __func__);
  7085. rc = -EINVAL;
  7086. goto afe_error;
  7087. }
  7088. if ((q6audio_validate_port(param[1]) < 0) ||
  7089. (q6audio_validate_port(param[2])) < 0) {
  7090. pr_err("%s: Error, invalid afe port\n",
  7091. __func__);
  7092. }
  7093. if (this_afe.apr == NULL) {
  7094. pr_err("%s: Error, AFE not opened\n", __func__);
  7095. rc = -EINVAL;
  7096. } else {
  7097. rc = afe_loopback(param[0], param[1], param[2]);
  7098. }
  7099. } else {
  7100. pr_err("%s: Error, invalid parameters\n", __func__);
  7101. rc = -EINVAL;
  7102. }
  7103. } else if (!strcmp(lb_str, "afe_loopback_gain")) {
  7104. rc = afe_get_parameters(lbuf, param, 2);
  7105. if (!rc) {
  7106. pr_info("%s: %s %lu %lu\n",
  7107. __func__, lb_str, param[0], param[1]);
  7108. rc = q6audio_validate_port(param[0]);
  7109. if (rc < 0) {
  7110. pr_err("%s: Error, invalid afe port %d %lu\n",
  7111. __func__, rc, param[0]);
  7112. rc = -EINVAL;
  7113. goto afe_error;
  7114. }
  7115. if (param[1] > 100) {
  7116. pr_err("%s: Error, volume should be 0 to 100 percentage param = %lu\n",
  7117. __func__, param[1]);
  7118. rc = -EINVAL;
  7119. goto afe_error;
  7120. }
  7121. param[1] = (Q6AFE_MAX_VOLUME * param[1]) / 100;
  7122. if (this_afe.apr == NULL) {
  7123. pr_err("%s: Error, AFE not opened\n", __func__);
  7124. rc = -EINVAL;
  7125. } else {
  7126. rc = afe_loopback_gain(param[0], param[1]);
  7127. }
  7128. } else {
  7129. pr_err("%s: Error, invalid parameters\n", __func__);
  7130. rc = -EINVAL;
  7131. }
  7132. }
  7133. afe_error:
  7134. if (rc == 0)
  7135. rc = cnt;
  7136. else
  7137. pr_err("%s: rc = %d\n", __func__, rc);
  7138. return rc;
  7139. }
  7140. static const struct file_operations afe_debug_fops = {
  7141. .open = afe_debug_open,
  7142. .write = afe_debug_write
  7143. };
  7144. static void config_debug_fs_init(void)
  7145. {
  7146. debugfs_afelb = debugfs_create_file("afe_loopback",
  7147. 0664, NULL, (void *) "afe_loopback",
  7148. &afe_debug_fops);
  7149. debugfs_afelb_gain = debugfs_create_file("afe_loopback_gain",
  7150. 0664, NULL, (void *) "afe_loopback_gain",
  7151. &afe_debug_fops);
  7152. }
  7153. static void config_debug_fs_exit(void)
  7154. {
  7155. debugfs_remove(debugfs_afelb);
  7156. debugfs_remove(debugfs_afelb_gain);
  7157. }
  7158. #else
  7159. static void config_debug_fs_init(void)
  7160. {
  7161. }
  7162. static void config_debug_fs_exit(void)
  7163. {
  7164. }
  7165. #endif
  7166. /**
  7167. * afe_set_dtmf_gen_rx_portid -
  7168. * Set port_id for DTMF tone generation
  7169. *
  7170. * @port_id: AFE port id
  7171. * @set: set or reset port id value for dtmf gen
  7172. *
  7173. */
  7174. void afe_set_dtmf_gen_rx_portid(u16 port_id, int set)
  7175. {
  7176. if (set)
  7177. this_afe.dtmf_gen_rx_portid = port_id;
  7178. else if (this_afe.dtmf_gen_rx_portid == port_id)
  7179. this_afe.dtmf_gen_rx_portid = -1;
  7180. }
  7181. EXPORT_SYMBOL(afe_set_dtmf_gen_rx_portid);
  7182. /**
  7183. * afe_dtmf_generate_rx - command to generate AFE DTMF RX
  7184. *
  7185. * @duration_in_ms: Duration in ms for dtmf tone
  7186. * @high_freq: Higher frequency for dtmf
  7187. * @low_freq: lower frequency for dtmf
  7188. * @gain: Gain value for DTMF tone
  7189. *
  7190. * Returns 0 on success, appropriate error code otherwise
  7191. */
  7192. int afe_dtmf_generate_rx(int64_t duration_in_ms,
  7193. uint16_t high_freq,
  7194. uint16_t low_freq, uint16_t gain)
  7195. {
  7196. int ret = 0;
  7197. int index = 0;
  7198. struct afe_dtmf_generation_command cmd_dtmf;
  7199. pr_debug("%s: DTMF AFE Gen\n", __func__);
  7200. if (afe_validate_port(this_afe.dtmf_gen_rx_portid) < 0) {
  7201. pr_err("%s: Failed : Invalid Port id = 0x%x\n",
  7202. __func__, this_afe.dtmf_gen_rx_portid);
  7203. ret = -EINVAL;
  7204. goto fail_cmd;
  7205. }
  7206. if (this_afe.apr == NULL) {
  7207. this_afe.apr = apr_register("ADSP", "AFE", afe_callback,
  7208. 0xFFFFFFFF, &this_afe);
  7209. pr_debug("%s: Register AFE\n", __func__);
  7210. if (this_afe.apr == NULL) {
  7211. pr_err("%s: Unable to register AFE\n", __func__);
  7212. ret = -ENODEV;
  7213. return ret;
  7214. }
  7215. rtac_set_afe_handle(this_afe.apr);
  7216. }
  7217. pr_debug("%s: dur=%lld: hfreq=%d lfreq=%d gain=%d portid=0x%x\n",
  7218. __func__,
  7219. duration_in_ms, high_freq, low_freq, gain,
  7220. this_afe.dtmf_gen_rx_portid);
  7221. cmd_dtmf.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  7222. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  7223. cmd_dtmf.hdr.pkt_size = sizeof(cmd_dtmf);
  7224. cmd_dtmf.hdr.src_port = 0;
  7225. cmd_dtmf.hdr.dest_port = 0;
  7226. cmd_dtmf.hdr.token = 0;
  7227. cmd_dtmf.hdr.opcode = AFE_PORTS_CMD_DTMF_CTL;
  7228. cmd_dtmf.duration_in_ms = duration_in_ms;
  7229. cmd_dtmf.high_freq = high_freq;
  7230. cmd_dtmf.low_freq = low_freq;
  7231. cmd_dtmf.gain = gain;
  7232. cmd_dtmf.num_ports = 1;
  7233. cmd_dtmf.port_ids = q6audio_get_port_id(this_afe.dtmf_gen_rx_portid);
  7234. index = q6audio_get_port_index(this_afe.dtmf_gen_rx_portid);
  7235. if (index < 0 || index >= AFE_MAX_PORTS) {
  7236. pr_err("%s: AFE port index[%d] invalid!\n",
  7237. __func__, index);
  7238. ret = -EINVAL;
  7239. goto fail_cmd;
  7240. }
  7241. ret = afe_apr_send_pkt((uint32_t *) &cmd_dtmf,
  7242. &this_afe.wait[index]);
  7243. return ret;
  7244. fail_cmd:
  7245. pr_err("%s: failed %d\n", __func__, ret);
  7246. return ret;
  7247. }
  7248. EXPORT_SYMBOL(afe_dtmf_generate_rx);
  7249. static int afe_sidetone_iir(u16 tx_port_id)
  7250. {
  7251. int ret;
  7252. uint16_t size = 0;
  7253. int cal_index = AFE_SIDETONE_IIR_CAL;
  7254. int iir_pregain = 0;
  7255. int iir_num_biquad_stages = 0;
  7256. int iir_enable;
  7257. struct cal_block_data *cal_block;
  7258. int mid;
  7259. struct afe_mod_enable_param enable;
  7260. struct afe_sidetone_iir_filter_config_params filter_data;
  7261. struct param_hdr_v3 param_hdr;
  7262. u8 *packed_param_data = NULL;
  7263. u32 packed_param_size = 0;
  7264. u32 single_param_size = 0;
  7265. struct audio_cal_info_sidetone_iir *st_iir_cal_info = NULL;
  7266. memset(&enable, 0, sizeof(enable));
  7267. memset(&filter_data, 0, sizeof(filter_data));
  7268. memset(&param_hdr, 0, sizeof(param_hdr));
  7269. if (this_afe.cal_data[cal_index] == NULL) {
  7270. pr_err("%s: cal data is NULL\n", __func__);
  7271. ret = -EINVAL;
  7272. goto done;
  7273. }
  7274. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  7275. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  7276. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  7277. pr_err("%s: cal_block not found\n ", __func__);
  7278. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  7279. ret = -EINVAL;
  7280. goto done;
  7281. }
  7282. /* Cache data from cal block while inside lock to reduce locked time */
  7283. st_iir_cal_info =
  7284. (struct audio_cal_info_sidetone_iir *) cal_block->cal_info;
  7285. iir_pregain = st_iir_cal_info->pregain;
  7286. iir_enable = st_iir_cal_info->iir_enable;
  7287. iir_num_biquad_stages = st_iir_cal_info->num_biquad_stages;
  7288. mid = st_iir_cal_info->mid;
  7289. /*
  7290. * calculate the actual size of payload based on no of stages
  7291. * enabled in calibration
  7292. */
  7293. size = (MAX_SIDETONE_IIR_DATA_SIZE / MAX_NO_IIR_FILTER_STAGE) *
  7294. iir_num_biquad_stages;
  7295. /*
  7296. * For an odd number of stages, 2 bytes of padding are
  7297. * required at the end of the payload.
  7298. */
  7299. if (iir_num_biquad_stages % 2) {
  7300. pr_debug("%s: adding 2 to size:%d\n", __func__, size);
  7301. size = size + 2;
  7302. }
  7303. memcpy(&filter_data.iir_config, &st_iir_cal_info->iir_config, size);
  7304. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  7305. packed_param_size =
  7306. sizeof(param_hdr) * 2 + sizeof(enable) + sizeof(filter_data);
  7307. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  7308. if (!packed_param_data)
  7309. return -ENOMEM;
  7310. packed_param_size = 0;
  7311. /*
  7312. * Set IIR enable params
  7313. */
  7314. param_hdr.module_id = mid;
  7315. param_hdr.instance_id = INSTANCE_ID_0;
  7316. param_hdr.param_id = AFE_PARAM_ID_ENABLE;
  7317. param_hdr.param_size = sizeof(enable);
  7318. enable.enable = iir_enable;
  7319. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  7320. (u8 *) &enable, &single_param_size);
  7321. if (ret) {
  7322. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7323. ret);
  7324. goto done;
  7325. }
  7326. packed_param_size += single_param_size;
  7327. /*
  7328. * Set IIR filter config params
  7329. */
  7330. param_hdr.module_id = mid;
  7331. param_hdr.instance_id = INSTANCE_ID_0;
  7332. param_hdr.param_id = AFE_PARAM_ID_SIDETONE_IIR_FILTER_CONFIG;
  7333. param_hdr.param_size = sizeof(filter_data.num_biquad_stages) +
  7334. sizeof(filter_data.pregain) + size;
  7335. filter_data.num_biquad_stages = iir_num_biquad_stages;
  7336. filter_data.pregain = iir_pregain;
  7337. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  7338. &param_hdr, (u8 *) &filter_data,
  7339. &single_param_size);
  7340. if (ret) {
  7341. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7342. ret);
  7343. goto done;
  7344. }
  7345. packed_param_size += single_param_size;
  7346. pr_debug("%s: tx(0x%x)mid(0x%x)iir_en(%d)stg(%d)gain(0x%x)size(%d)\n",
  7347. __func__, tx_port_id, mid, enable.enable,
  7348. filter_data.num_biquad_stages, filter_data.pregain,
  7349. param_hdr.param_size);
  7350. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  7351. NULL, packed_param_data, packed_param_size);
  7352. if (ret)
  7353. pr_err("%s: AFE sidetone failed for tx_port(0x%x)\n",
  7354. __func__, tx_port_id);
  7355. done:
  7356. kfree(packed_param_data);
  7357. return ret;
  7358. }
  7359. static int afe_sidetone(u16 tx_port_id, u16 rx_port_id, bool enable)
  7360. {
  7361. int ret;
  7362. int cal_index = AFE_SIDETONE_CAL;
  7363. int sidetone_gain;
  7364. int sidetone_enable;
  7365. struct cal_block_data *cal_block;
  7366. int mid = 0;
  7367. struct afe_loopback_sidetone_gain gain_data;
  7368. struct loopback_cfg_data cfg_data;
  7369. struct param_hdr_v3 param_hdr;
  7370. u8 *packed_param_data = NULL;
  7371. u32 packed_param_size = 0;
  7372. u32 single_param_size = 0;
  7373. struct audio_cal_info_sidetone *st_cal_info = NULL;
  7374. if (this_afe.cal_data[cal_index] == NULL) {
  7375. pr_err("%s: cal data is NULL\n", __func__);
  7376. ret = -EINVAL;
  7377. goto done;
  7378. }
  7379. memset(&gain_data, 0, sizeof(gain_data));
  7380. memset(&cfg_data, 0, sizeof(cfg_data));
  7381. memset(&param_hdr, 0, sizeof(param_hdr));
  7382. packed_param_size =
  7383. sizeof(param_hdr) * 2 + sizeof(gain_data) + sizeof(cfg_data);
  7384. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  7385. if (!packed_param_data)
  7386. return -ENOMEM;
  7387. packed_param_size = 0;
  7388. mutex_lock(&this_afe.cal_data[cal_index]->lock);
  7389. cal_block = cal_utils_get_only_cal_block(this_afe.cal_data[cal_index]);
  7390. if (cal_block == NULL || cal_utils_is_cal_stale(cal_block)) {
  7391. pr_err("%s: cal_block not found\n", __func__);
  7392. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  7393. ret = -EINVAL;
  7394. goto done;
  7395. }
  7396. /* Cache data from cal block while inside lock to reduce locked time */
  7397. st_cal_info = (struct audio_cal_info_sidetone *) cal_block->cal_info;
  7398. sidetone_gain = st_cal_info->gain;
  7399. sidetone_enable = st_cal_info->enable;
  7400. mid = st_cal_info->mid;
  7401. mutex_unlock(&this_afe.cal_data[cal_index]->lock);
  7402. /* Set gain data. */
  7403. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  7404. param_hdr.instance_id = INSTANCE_ID_0;
  7405. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_GAIN_PER_PATH;
  7406. param_hdr.param_size = sizeof(struct afe_loopback_sidetone_gain);
  7407. gain_data.rx_port_id = rx_port_id;
  7408. gain_data.gain = sidetone_gain;
  7409. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  7410. (u8 *) &gain_data, &single_param_size);
  7411. if (ret) {
  7412. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7413. ret);
  7414. goto done;
  7415. }
  7416. packed_param_size += single_param_size;
  7417. /* Set configuration data. */
  7418. param_hdr.module_id = AFE_MODULE_LOOPBACK;
  7419. param_hdr.instance_id = INSTANCE_ID_0;
  7420. param_hdr.param_id = AFE_PARAM_ID_LOOPBACK_CONFIG;
  7421. param_hdr.param_size = sizeof(struct loopback_cfg_data);
  7422. cfg_data.loopback_cfg_minor_version = AFE_API_VERSION_LOOPBACK_CONFIG;
  7423. cfg_data.dst_port_id = rx_port_id;
  7424. cfg_data.routing_mode = LB_MODE_SIDETONE;
  7425. cfg_data.enable = enable;
  7426. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  7427. &param_hdr, (u8 *) &cfg_data,
  7428. &single_param_size);
  7429. if (ret) {
  7430. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7431. ret);
  7432. goto done;
  7433. }
  7434. packed_param_size += single_param_size;
  7435. pr_debug("%s rx(0x%x) tx(0x%x) enable(%d) mid(0x%x) gain(%d) sidetone_enable(%d)\n",
  7436. __func__, rx_port_id, tx_port_id,
  7437. enable, mid, sidetone_gain, sidetone_enable);
  7438. ret = q6afe_set_params(tx_port_id, q6audio_get_port_index(tx_port_id),
  7439. NULL, packed_param_data, packed_param_size);
  7440. if (ret)
  7441. pr_err("%s: AFE sidetone send failed for tx_port:%d rx_port:%d ret:%d\n",
  7442. __func__, tx_port_id, rx_port_id, ret);
  7443. done:
  7444. kfree(packed_param_data);
  7445. return ret;
  7446. }
  7447. int afe_sidetone_enable(u16 tx_port_id, u16 rx_port_id, bool enable)
  7448. {
  7449. int ret;
  7450. int index;
  7451. index = q6audio_get_port_index(rx_port_id);
  7452. if (index < 0 || index >= AFE_MAX_PORTS) {
  7453. pr_err("%s: AFE port index[%d] invalid!\n",
  7454. __func__, index);
  7455. ret = -EINVAL;
  7456. goto done;
  7457. }
  7458. if (q6audio_validate_port(rx_port_id) < 0) {
  7459. pr_err("%s: Invalid port 0x%x\n",
  7460. __func__, rx_port_id);
  7461. ret = -EINVAL;
  7462. goto done;
  7463. }
  7464. index = q6audio_get_port_index(tx_port_id);
  7465. if (index < 0 || index >= AFE_MAX_PORTS) {
  7466. pr_err("%s: AFE port index[%d] invalid!\n",
  7467. __func__, index);
  7468. ret = -EINVAL;
  7469. goto done;
  7470. }
  7471. if (q6audio_validate_port(tx_port_id) < 0) {
  7472. pr_err("%s: Invalid port 0x%x\n",
  7473. __func__, tx_port_id);
  7474. ret = -EINVAL;
  7475. goto done;
  7476. }
  7477. if (enable) {
  7478. ret = afe_sidetone_iir(tx_port_id);
  7479. if (ret)
  7480. goto done;
  7481. }
  7482. ret = afe_sidetone(tx_port_id, rx_port_id, enable);
  7483. done:
  7484. return ret;
  7485. }
  7486. /**
  7487. * afe_set_display_stream - command to update AFE dp port params
  7488. *
  7489. * @rx_port_id: AFE port id
  7490. * @stream_idx: dp controller stream index
  7491. * @ctl_idx: dp controller index
  7492. *
  7493. * Returns 0 on success, appropriate error code otherwise
  7494. */
  7495. int afe_set_display_stream(u16 rx_port_id, u32 stream_idx, u32 ctl_idx)
  7496. {
  7497. int ret;
  7498. struct param_hdr_v3 param_hdr;
  7499. u32 packed_param_size = 0;
  7500. u8 *packed_param_data = NULL;
  7501. struct afe_display_stream_idx stream_data;
  7502. struct afe_display_ctl_idx ctl_data;
  7503. u32 single_param_size = 0;
  7504. memset(&param_hdr, 0, sizeof(param_hdr));
  7505. memset(&stream_data, 0, sizeof(stream_data));
  7506. memset(&ctl_data, 0, sizeof(ctl_data));
  7507. packed_param_size =
  7508. sizeof(param_hdr) * 2 + sizeof(stream_data) + sizeof(ctl_data);
  7509. packed_param_data = kzalloc(packed_param_size, GFP_KERNEL);
  7510. if (!packed_param_data)
  7511. return -ENOMEM;
  7512. packed_param_size = 0;
  7513. /* Set stream index */
  7514. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7515. param_hdr.instance_id = INSTANCE_ID_0;
  7516. param_hdr.param_id = AFE_PARAM_ID_HDMI_DP_MST_VID_IDX_CFG;
  7517. param_hdr.param_size = sizeof(struct afe_display_stream_idx);
  7518. stream_data.minor_version = 1;
  7519. stream_data.stream_idx = stream_idx;
  7520. ret = q6common_pack_pp_params(packed_param_data, &param_hdr,
  7521. (u8 *) &stream_data, &single_param_size);
  7522. if (ret) {
  7523. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7524. ret);
  7525. goto done;
  7526. }
  7527. packed_param_size += single_param_size;
  7528. /* Set controller dptx index */
  7529. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7530. param_hdr.instance_id = INSTANCE_ID_0;
  7531. param_hdr.param_id = AFE_PARAM_ID_HDMI_DPTX_IDX_CFG;
  7532. param_hdr.param_size = sizeof(struct afe_display_ctl_idx);
  7533. ctl_data.minor_version = 1;
  7534. ctl_data.ctl_idx = ctl_idx;
  7535. ret = q6common_pack_pp_params(packed_param_data + packed_param_size,
  7536. &param_hdr, (u8 *) &ctl_data,
  7537. &single_param_size);
  7538. if (ret) {
  7539. pr_err("%s: Failed to pack param data, error %d\n", __func__,
  7540. ret);
  7541. goto done;
  7542. }
  7543. packed_param_size += single_param_size;
  7544. pr_debug("%s: rx(0x%x) stream(%d) controller(%d)\n",
  7545. __func__, rx_port_id, stream_idx, ctl_idx);
  7546. ret = q6afe_set_params(rx_port_id, q6audio_get_port_index(rx_port_id),
  7547. NULL, packed_param_data, packed_param_size);
  7548. if (ret)
  7549. pr_err("%s: AFE display stream send failed for rx_port:%d ret:%d\n",
  7550. __func__, rx_port_id, ret);
  7551. done:
  7552. kfree(packed_param_data);
  7553. return ret;
  7554. }
  7555. EXPORT_SYMBOL(afe_set_display_stream);
  7556. int afe_validate_port(u16 port_id)
  7557. {
  7558. int ret;
  7559. switch (port_id) {
  7560. case PRIMARY_I2S_RX:
  7561. case PRIMARY_I2S_TX:
  7562. case AFE_PORT_ID_PRIMARY_PCM_RX:
  7563. case AFE_PORT_ID_PRIMARY_PCM_TX:
  7564. case AFE_PORT_ID_SECONDARY_PCM_RX:
  7565. case AFE_PORT_ID_SECONDARY_PCM_TX:
  7566. case AFE_PORT_ID_TERTIARY_PCM_RX:
  7567. case AFE_PORT_ID_TERTIARY_PCM_TX:
  7568. case AFE_PORT_ID_QUATERNARY_PCM_RX:
  7569. case AFE_PORT_ID_QUATERNARY_PCM_TX:
  7570. case AFE_PORT_ID_QUINARY_PCM_RX:
  7571. case AFE_PORT_ID_QUINARY_PCM_TX:
  7572. case AFE_PORT_ID_SENARY_PCM_RX:
  7573. case AFE_PORT_ID_SENARY_PCM_TX:
  7574. case SECONDARY_I2S_RX:
  7575. case SECONDARY_I2S_TX:
  7576. case MI2S_RX:
  7577. case MI2S_TX:
  7578. case HDMI_RX:
  7579. case HDMI_RX_MS:
  7580. case DISPLAY_PORT_RX:
  7581. case AFE_PORT_ID_PRIMARY_SPDIF_RX:
  7582. case AFE_PORT_ID_PRIMARY_SPDIF_TX:
  7583. case AFE_PORT_ID_SECONDARY_SPDIF_RX:
  7584. case AFE_PORT_ID_SECONDARY_SPDIF_TX:
  7585. case RSVD_2:
  7586. case RSVD_3:
  7587. case DIGI_MIC_TX:
  7588. case VOICE_RECORD_RX:
  7589. case VOICE_RECORD_TX:
  7590. case VOICE_PLAYBACK_TX:
  7591. case VOICE2_PLAYBACK_TX:
  7592. case SLIMBUS_0_RX:
  7593. case SLIMBUS_0_TX:
  7594. case SLIMBUS_1_RX:
  7595. case SLIMBUS_1_TX:
  7596. case SLIMBUS_2_RX:
  7597. case SLIMBUS_2_TX:
  7598. case SLIMBUS_3_RX:
  7599. case INT_BT_SCO_RX:
  7600. case INT_BT_SCO_TX:
  7601. case INT_BT_A2DP_RX:
  7602. case INT_FM_RX:
  7603. case INT_FM_TX:
  7604. case RT_PROXY_PORT_001_RX:
  7605. case RT_PROXY_PORT_001_TX:
  7606. case SLIMBUS_4_RX:
  7607. case SLIMBUS_4_TX:
  7608. case SLIMBUS_5_RX:
  7609. case SLIMBUS_6_RX:
  7610. case SLIMBUS_6_TX:
  7611. case SLIMBUS_7_RX:
  7612. case SLIMBUS_7_TX:
  7613. case SLIMBUS_8_RX:
  7614. case SLIMBUS_8_TX:
  7615. case SLIMBUS_9_RX:
  7616. case SLIMBUS_9_TX:
  7617. case AFE_PORT_ID_USB_RX:
  7618. case AFE_PORT_ID_USB_TX:
  7619. case AFE_PORT_ID_PRIMARY_MI2S_RX:
  7620. case AFE_PORT_ID_PRIMARY_MI2S_TX:
  7621. case AFE_PORT_ID_SECONDARY_MI2S_RX:
  7622. case AFE_PORT_ID_SECONDARY_MI2S_TX:
  7623. case AFE_PORT_ID_QUATERNARY_MI2S_RX:
  7624. case AFE_PORT_ID_QUATERNARY_MI2S_TX:
  7625. case AFE_PORT_ID_TERTIARY_MI2S_RX:
  7626. case AFE_PORT_ID_TERTIARY_MI2S_TX:
  7627. case AFE_PORT_ID_QUINARY_MI2S_RX:
  7628. case AFE_PORT_ID_QUINARY_MI2S_TX:
  7629. case AFE_PORT_ID_SENARY_MI2S_RX:
  7630. case AFE_PORT_ID_SENARY_MI2S_TX:
  7631. case AFE_PORT_ID_PRIMARY_META_MI2S_RX:
  7632. case AFE_PORT_ID_SECONDARY_META_MI2S_RX:
  7633. case AFE_PORT_ID_PRIMARY_TDM_RX:
  7634. case AFE_PORT_ID_PRIMARY_TDM_TX:
  7635. case AFE_PORT_ID_PRIMARY_TDM_RX_1:
  7636. case AFE_PORT_ID_PRIMARY_TDM_TX_1:
  7637. case AFE_PORT_ID_PRIMARY_TDM_RX_2:
  7638. case AFE_PORT_ID_PRIMARY_TDM_TX_2:
  7639. case AFE_PORT_ID_PRIMARY_TDM_RX_3:
  7640. case AFE_PORT_ID_PRIMARY_TDM_TX_3:
  7641. case AFE_PORT_ID_PRIMARY_TDM_RX_4:
  7642. case AFE_PORT_ID_PRIMARY_TDM_TX_4:
  7643. case AFE_PORT_ID_PRIMARY_TDM_RX_5:
  7644. case AFE_PORT_ID_PRIMARY_TDM_TX_5:
  7645. case AFE_PORT_ID_PRIMARY_TDM_RX_6:
  7646. case AFE_PORT_ID_PRIMARY_TDM_TX_6:
  7647. case AFE_PORT_ID_PRIMARY_TDM_RX_7:
  7648. case AFE_PORT_ID_PRIMARY_TDM_TX_7:
  7649. case AFE_PORT_ID_SECONDARY_TDM_RX:
  7650. case AFE_PORT_ID_SECONDARY_TDM_TX:
  7651. case AFE_PORT_ID_SECONDARY_TDM_RX_1:
  7652. case AFE_PORT_ID_SECONDARY_TDM_TX_1:
  7653. case AFE_PORT_ID_SECONDARY_TDM_RX_2:
  7654. case AFE_PORT_ID_SECONDARY_TDM_TX_2:
  7655. case AFE_PORT_ID_SECONDARY_TDM_RX_3:
  7656. case AFE_PORT_ID_SECONDARY_TDM_TX_3:
  7657. case AFE_PORT_ID_SECONDARY_TDM_RX_4:
  7658. case AFE_PORT_ID_SECONDARY_TDM_TX_4:
  7659. case AFE_PORT_ID_SECONDARY_TDM_RX_5:
  7660. case AFE_PORT_ID_SECONDARY_TDM_TX_5:
  7661. case AFE_PORT_ID_SECONDARY_TDM_RX_6:
  7662. case AFE_PORT_ID_SECONDARY_TDM_TX_6:
  7663. case AFE_PORT_ID_SECONDARY_TDM_RX_7:
  7664. case AFE_PORT_ID_SECONDARY_TDM_TX_7:
  7665. case AFE_PORT_ID_TERTIARY_TDM_RX:
  7666. case AFE_PORT_ID_TERTIARY_TDM_TX:
  7667. case AFE_PORT_ID_TERTIARY_TDM_RX_1:
  7668. case AFE_PORT_ID_TERTIARY_TDM_TX_1:
  7669. case AFE_PORT_ID_TERTIARY_TDM_RX_2:
  7670. case AFE_PORT_ID_TERTIARY_TDM_TX_2:
  7671. case AFE_PORT_ID_TERTIARY_TDM_RX_3:
  7672. case AFE_PORT_ID_TERTIARY_TDM_TX_3:
  7673. case AFE_PORT_ID_TERTIARY_TDM_RX_4:
  7674. case AFE_PORT_ID_TERTIARY_TDM_TX_4:
  7675. case AFE_PORT_ID_TERTIARY_TDM_RX_5:
  7676. case AFE_PORT_ID_TERTIARY_TDM_TX_5:
  7677. case AFE_PORT_ID_TERTIARY_TDM_RX_6:
  7678. case AFE_PORT_ID_TERTIARY_TDM_TX_6:
  7679. case AFE_PORT_ID_TERTIARY_TDM_RX_7:
  7680. case AFE_PORT_ID_TERTIARY_TDM_TX_7:
  7681. case AFE_PORT_ID_QUATERNARY_TDM_RX:
  7682. case AFE_PORT_ID_QUATERNARY_TDM_TX:
  7683. case AFE_PORT_ID_QUATERNARY_TDM_RX_1:
  7684. case AFE_PORT_ID_QUATERNARY_TDM_TX_1:
  7685. case AFE_PORT_ID_QUATERNARY_TDM_RX_2:
  7686. case AFE_PORT_ID_QUATERNARY_TDM_TX_2:
  7687. case AFE_PORT_ID_QUATERNARY_TDM_RX_3:
  7688. case AFE_PORT_ID_QUATERNARY_TDM_TX_3:
  7689. case AFE_PORT_ID_QUATERNARY_TDM_RX_4:
  7690. case AFE_PORT_ID_QUATERNARY_TDM_TX_4:
  7691. case AFE_PORT_ID_QUATERNARY_TDM_RX_5:
  7692. case AFE_PORT_ID_QUATERNARY_TDM_TX_5:
  7693. case AFE_PORT_ID_QUATERNARY_TDM_RX_6:
  7694. case AFE_PORT_ID_QUATERNARY_TDM_TX_6:
  7695. case AFE_PORT_ID_QUATERNARY_TDM_RX_7:
  7696. case AFE_PORT_ID_QUATERNARY_TDM_TX_7:
  7697. case AFE_PORT_ID_QUINARY_TDM_RX:
  7698. case AFE_PORT_ID_QUINARY_TDM_TX:
  7699. case AFE_PORT_ID_QUINARY_TDM_RX_1:
  7700. case AFE_PORT_ID_QUINARY_TDM_TX_1:
  7701. case AFE_PORT_ID_QUINARY_TDM_RX_2:
  7702. case AFE_PORT_ID_QUINARY_TDM_TX_2:
  7703. case AFE_PORT_ID_QUINARY_TDM_RX_3:
  7704. case AFE_PORT_ID_QUINARY_TDM_TX_3:
  7705. case AFE_PORT_ID_QUINARY_TDM_RX_4:
  7706. case AFE_PORT_ID_QUINARY_TDM_TX_4:
  7707. case AFE_PORT_ID_QUINARY_TDM_RX_5:
  7708. case AFE_PORT_ID_QUINARY_TDM_TX_5:
  7709. case AFE_PORT_ID_QUINARY_TDM_RX_6:
  7710. case AFE_PORT_ID_QUINARY_TDM_TX_6:
  7711. case AFE_PORT_ID_QUINARY_TDM_RX_7:
  7712. case AFE_PORT_ID_QUINARY_TDM_TX_7:
  7713. case AFE_PORT_ID_SENARY_TDM_RX:
  7714. case AFE_PORT_ID_SENARY_TDM_TX:
  7715. case AFE_PORT_ID_SENARY_TDM_RX_1:
  7716. case AFE_PORT_ID_SENARY_TDM_TX_1:
  7717. case AFE_PORT_ID_SENARY_TDM_RX_2:
  7718. case AFE_PORT_ID_SENARY_TDM_TX_2:
  7719. case AFE_PORT_ID_SENARY_TDM_RX_3:
  7720. case AFE_PORT_ID_SENARY_TDM_TX_3:
  7721. case AFE_PORT_ID_SENARY_TDM_RX_4:
  7722. case AFE_PORT_ID_SENARY_TDM_TX_4:
  7723. case AFE_PORT_ID_SENARY_TDM_RX_5:
  7724. case AFE_PORT_ID_SENARY_TDM_TX_5:
  7725. case AFE_PORT_ID_SENARY_TDM_RX_6:
  7726. case AFE_PORT_ID_SENARY_TDM_TX_6:
  7727. case AFE_PORT_ID_SENARY_TDM_RX_7:
  7728. case AFE_PORT_ID_SENARY_TDM_TX_7:
  7729. case AFE_PORT_ID_INT0_MI2S_RX:
  7730. case AFE_PORT_ID_INT1_MI2S_RX:
  7731. case AFE_PORT_ID_INT2_MI2S_RX:
  7732. case AFE_PORT_ID_INT3_MI2S_RX:
  7733. case AFE_PORT_ID_INT4_MI2S_RX:
  7734. case AFE_PORT_ID_INT5_MI2S_RX:
  7735. case AFE_PORT_ID_INT6_MI2S_RX:
  7736. case AFE_PORT_ID_INT0_MI2S_TX:
  7737. case AFE_PORT_ID_INT1_MI2S_TX:
  7738. case AFE_PORT_ID_INT2_MI2S_TX:
  7739. case AFE_PORT_ID_INT3_MI2S_TX:
  7740. case AFE_PORT_ID_INT4_MI2S_TX:
  7741. case AFE_PORT_ID_INT5_MI2S_TX:
  7742. case AFE_PORT_ID_INT6_MI2S_TX:
  7743. case AFE_PORT_ID_WSA_CODEC_DMA_RX_0:
  7744. case AFE_PORT_ID_WSA_CODEC_DMA_TX_0:
  7745. case AFE_PORT_ID_WSA_CODEC_DMA_RX_1:
  7746. case AFE_PORT_ID_WSA_CODEC_DMA_TX_1:
  7747. case AFE_PORT_ID_WSA_CODEC_DMA_TX_2:
  7748. case AFE_PORT_ID_VA_CODEC_DMA_TX_0:
  7749. case AFE_PORT_ID_VA_CODEC_DMA_TX_1:
  7750. case AFE_PORT_ID_VA_CODEC_DMA_TX_2:
  7751. case AFE_PORT_ID_RX_CODEC_DMA_RX_0:
  7752. case AFE_PORT_ID_TX_CODEC_DMA_TX_0:
  7753. case AFE_PORT_ID_RX_CODEC_DMA_RX_1:
  7754. case AFE_PORT_ID_TX_CODEC_DMA_TX_1:
  7755. case AFE_PORT_ID_RX_CODEC_DMA_RX_2:
  7756. case AFE_PORT_ID_TX_CODEC_DMA_TX_2:
  7757. case AFE_PORT_ID_RX_CODEC_DMA_RX_3:
  7758. case AFE_PORT_ID_TX_CODEC_DMA_TX_3:
  7759. case AFE_PORT_ID_RX_CODEC_DMA_RX_4:
  7760. case AFE_PORT_ID_TX_CODEC_DMA_TX_4:
  7761. case AFE_PORT_ID_RX_CODEC_DMA_RX_5:
  7762. case AFE_PORT_ID_TX_CODEC_DMA_TX_5:
  7763. case AFE_PORT_ID_RX_CODEC_DMA_RX_6:
  7764. case AFE_PORT_ID_RX_CODEC_DMA_RX_7:
  7765. case RT_PROXY_PORT_002_RX:
  7766. case RT_PROXY_PORT_002_TX:
  7767. {
  7768. ret = 0;
  7769. break;
  7770. }
  7771. default:
  7772. pr_err("%s: default ret 0x%x\n", __func__, port_id);
  7773. ret = -EINVAL;
  7774. }
  7775. return ret;
  7776. }
  7777. int afe_convert_virtual_to_portid(u16 port_id)
  7778. {
  7779. int ret;
  7780. /*
  7781. * if port_id is virtual, convert to physical..
  7782. * if port_id is already physical, return physical
  7783. */
  7784. if (afe_validate_port(port_id) < 0) {
  7785. if (port_id == RT_PROXY_DAI_001_RX ||
  7786. port_id == RT_PROXY_DAI_001_TX ||
  7787. port_id == RT_PROXY_DAI_002_RX ||
  7788. port_id == RT_PROXY_DAI_002_TX ||
  7789. port_id == RT_PROXY_DAI_003_TX) {
  7790. ret = VIRTUAL_ID_TO_PORTID(port_id);
  7791. } else {
  7792. pr_err("%s: wrong port 0x%x\n",
  7793. __func__, port_id);
  7794. ret = -EINVAL;
  7795. }
  7796. } else
  7797. ret = port_id;
  7798. return ret;
  7799. }
  7800. int afe_port_stop_nowait(int port_id)
  7801. {
  7802. struct afe_port_cmd_device_stop stop;
  7803. int ret = 0;
  7804. if (this_afe.apr == NULL) {
  7805. pr_err("%s: AFE is already closed\n", __func__);
  7806. ret = -EINVAL;
  7807. goto fail_cmd;
  7808. }
  7809. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  7810. port_id = q6audio_convert_virtual_to_portid(port_id);
  7811. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  7812. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  7813. stop.hdr.pkt_size = sizeof(stop);
  7814. stop.hdr.src_port = 0;
  7815. stop.hdr.dest_port = 0;
  7816. stop.hdr.token = 0;
  7817. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  7818. stop.port_id = port_id;
  7819. stop.reserved = 0;
  7820. ret = afe_apr_send_pkt(&stop, NULL);
  7821. if (ret)
  7822. pr_err("%s: AFE close failed %d\n", __func__, ret);
  7823. fail_cmd:
  7824. return ret;
  7825. }
  7826. /**
  7827. * afe_close - command to close AFE port
  7828. *
  7829. * @port_id: AFE port id
  7830. *
  7831. * Returns 0 on success, appropriate error code otherwise
  7832. */
  7833. int afe_close(int port_id)
  7834. {
  7835. struct afe_port_cmd_device_stop stop;
  7836. enum afe_mad_type mad_type;
  7837. int ret = 0;
  7838. u16 i;
  7839. int index = 0;
  7840. uint16_t port_index;
  7841. if (this_afe.apr == NULL) {
  7842. pr_err("%s: AFE is already closed\n", __func__);
  7843. if ((port_id == RT_PROXY_DAI_001_RX) ||
  7844. (port_id == RT_PROXY_DAI_002_TX))
  7845. pcm_afe_instance[port_id & 0x1] = 0;
  7846. if ((port_id == RT_PROXY_DAI_002_RX) ||
  7847. (port_id == RT_PROXY_DAI_001_TX))
  7848. proxy_afe_instance[port_id & 0x1] = 0;
  7849. afe_close_done[port_id & 0x1] = true;
  7850. ret = -EINVAL;
  7851. goto fail_cmd;
  7852. }
  7853. pr_debug("%s: port_id = 0x%x\n", __func__, port_id);
  7854. if ((port_id == RT_PROXY_DAI_001_RX) ||
  7855. (port_id == RT_PROXY_DAI_002_TX)) {
  7856. pr_debug("%s: before decrementing pcm_afe_instance %d\n",
  7857. __func__, pcm_afe_instance[port_id & 0x1]);
  7858. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  7859. pcm_afe_instance[port_id & 0x1]--;
  7860. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  7861. proxy_afe_instance[port_id & 0x1] == 0)) ||
  7862. afe_close_done[port_id & 0x1] == true)
  7863. return 0;
  7864. afe_close_done[port_id & 0x1] = true;
  7865. }
  7866. if ((port_id == RT_PROXY_DAI_002_RX) ||
  7867. (port_id == RT_PROXY_DAI_001_TX)) {
  7868. pr_debug("%s: before decrementing proxy_afe_instance %d\n",
  7869. __func__, proxy_afe_instance[port_id & 0x1]);
  7870. port_id = VIRTUAL_ID_TO_PORTID(port_id);
  7871. proxy_afe_instance[port_id & 0x1]--;
  7872. if ((!(pcm_afe_instance[port_id & 0x1] == 0 &&
  7873. proxy_afe_instance[port_id & 0x1] == 0)) ||
  7874. afe_close_done[port_id & 0x1] == true)
  7875. return 0;
  7876. afe_close_done[port_id & 0x1] = true;
  7877. }
  7878. if (port_id == RT_PROXY_PORT_002_RX && proxy_afe_started)
  7879. proxy_afe_started = false;
  7880. port_id = q6audio_convert_virtual_to_portid(port_id);
  7881. index = q6audio_get_port_index(port_id);
  7882. if (index < 0 || index >= AFE_MAX_PORTS) {
  7883. pr_err("%s: AFE port index[%d] invalid!\n",
  7884. __func__, index);
  7885. return -EINVAL;
  7886. }
  7887. ret = q6audio_validate_port(port_id);
  7888. if (ret < 0) {
  7889. pr_warn("%s: Not a valid port id 0x%x ret %d\n",
  7890. __func__, port_id, ret);
  7891. return -EINVAL;
  7892. }
  7893. mad_type = afe_port_get_mad_type(port_id);
  7894. pr_debug("%s: port_id 0x%x, mad_type %d\n", __func__, port_id,
  7895. mad_type);
  7896. if (mad_type != MAD_HW_NONE && mad_type != MAD_SW_AUDIO) {
  7897. pr_debug("%s: Turn off MAD\n", __func__);
  7898. ret = afe_turn_onoff_hw_mad(mad_type, false);
  7899. if (ret) {
  7900. pr_err("%s: afe_turn_onoff_hw_mad failed %d\n",
  7901. __func__, ret);
  7902. return ret;
  7903. }
  7904. } else {
  7905. pr_debug("%s: Not a MAD port\n", __func__);
  7906. }
  7907. mutex_lock(&this_afe.afe_cmd_lock);
  7908. port_index = afe_get_port_index(port_id);
  7909. if ((port_index >= 0) && (port_index < AFE_MAX_PORTS)) {
  7910. this_afe.afe_sample_rates[port_index] = 0;
  7911. this_afe.topology[port_index] = 0;
  7912. this_afe.dev_acdb_id[port_index] = 0;
  7913. } else {
  7914. pr_err("%s: port %d\n", __func__, port_index);
  7915. ret = -EINVAL;
  7916. goto fail_cmd;
  7917. }
  7918. if ((port_id == this_afe.aanc_info.aanc_tx_port) &&
  7919. (this_afe.aanc_info.aanc_active)) {
  7920. memset(&this_afe.aanc_info, 0x00, sizeof(this_afe.aanc_info));
  7921. ret = afe_aanc_mod_enable(this_afe.apr, port_id, 0);
  7922. if (ret)
  7923. pr_err("%s: AFE mod disable failed %d\n",
  7924. __func__, ret);
  7925. }
  7926. /*
  7927. * even if ramp down configuration failed it is not serious enough to
  7928. * warrant bailaing out.
  7929. */
  7930. if (q6core_get_avcs_api_version_per_service(
  7931. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) < AFE_API_VERSION_V9) {
  7932. if (afe_spk_ramp_dn_cfg(port_id) < 0)
  7933. pr_err("%s: ramp down config failed\n", __func__);
  7934. }
  7935. stop.hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  7936. APR_HDR_LEN(APR_HDR_SIZE), APR_PKT_VER);
  7937. stop.hdr.pkt_size = sizeof(stop);
  7938. stop.hdr.src_port = 0;
  7939. stop.hdr.dest_port = 0;
  7940. stop.hdr.token = index;
  7941. stop.hdr.opcode = AFE_PORT_CMD_DEVICE_STOP;
  7942. stop.port_id = q6audio_get_port_id(port_id);
  7943. stop.reserved = 0;
  7944. ret = afe_apr_send_pkt(&stop, &this_afe.wait[index]);
  7945. if (ret)
  7946. pr_err("%s: AFE close failed %d\n", __func__, ret);
  7947. fail_cmd:
  7948. if ((q6core_get_avcs_api_version_per_service(
  7949. APRV2_IDS_SERVICE_ID_ADSP_CORE_V) >= AVCS_API_VERSION_V5)) {
  7950. for (i = 0; i < MAX_ALLOWED_USE_CASES; i++) {
  7951. if (pm[i] && pm[i]->port_id == port_id) {
  7952. q6afe_unload_avcs_modules(port_id, i);
  7953. break;
  7954. }
  7955. }
  7956. }
  7957. mutex_unlock(&this_afe.afe_cmd_lock);
  7958. return ret;
  7959. }
  7960. EXPORT_SYMBOL(afe_close);
  7961. int afe_set_digital_codec_core_clock(u16 port_id,
  7962. struct afe_digital_clk_cfg *cfg)
  7963. {
  7964. struct afe_digital_clk_cfg clk_cfg;
  7965. struct param_hdr_v3 param_hdr;
  7966. int ret = 0;
  7967. if (!cfg) {
  7968. pr_err("%s: clock cfg is NULL\n", __func__);
  7969. return -EINVAL;
  7970. }
  7971. memset(&clk_cfg, 0, sizeof(clk_cfg));
  7972. memset(&param_hdr, 0, sizeof(param_hdr));
  7973. /*default rx port is taken to enable the codec digital clock*/
  7974. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  7975. param_hdr.instance_id = INSTANCE_ID_0;
  7976. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  7977. param_hdr.param_size = sizeof(struct afe_digital_clk_cfg);
  7978. clk_cfg = *cfg;
  7979. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  7980. "clk root = 0x%x resrv = 0x%x\n",
  7981. __func__, cfg->i2s_cfg_minor_version, cfg->clk_val,
  7982. cfg->clk_root, cfg->reserved);
  7983. ret = q6afe_pack_and_set_param_in_band(port_id,
  7984. q6audio_get_port_index(port_id),
  7985. param_hdr, (u8 *) &clk_cfg);
  7986. if (ret < 0)
  7987. pr_err("%s: AFE enable for port 0x%x ret %d\n", __func__,
  7988. port_id, ret);
  7989. return ret;
  7990. }
  7991. /**
  7992. * afe_set_lpass_clock - Enable AFE lpass clock
  7993. *
  7994. * @port_id: AFE port id
  7995. * @cfg: pointer to clk set struct
  7996. *
  7997. * Returns 0 on success, appropriate error code otherwise
  7998. */
  7999. int afe_set_lpass_clock(u16 port_id, struct afe_clk_cfg *cfg)
  8000. {
  8001. struct afe_clk_cfg clk_cfg;
  8002. struct param_hdr_v3 param_hdr;
  8003. int ret = 0;
  8004. if (!cfg) {
  8005. pr_err("%s: clock cfg is NULL\n", __func__);
  8006. return -EINVAL;
  8007. }
  8008. memset(&clk_cfg, 0, sizeof(clk_cfg));
  8009. memset(&param_hdr, 0, sizeof(param_hdr));
  8010. ret = q6audio_is_digital_pcm_interface(port_id);
  8011. if (ret < 0) {
  8012. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  8013. __func__, ret);
  8014. return -EINVAL;
  8015. }
  8016. mutex_lock(&this_afe.afe_cmd_lock);
  8017. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  8018. param_hdr.instance_id = INSTANCE_ID_0;
  8019. param_hdr.param_id = AFE_PARAM_ID_LPAIF_CLK_CONFIG;
  8020. param_hdr.param_size = sizeof(clk_cfg);
  8021. clk_cfg = *cfg;
  8022. pr_debug("%s: Minor version =0x%x clk val1 = %d\n"
  8023. "clk val2 = %d, clk src = 0x%x\n"
  8024. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  8025. "port id = 0x%x\n",
  8026. __func__, cfg->i2s_cfg_minor_version,
  8027. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  8028. cfg->clk_root, cfg->clk_set_mode,
  8029. cfg->reserved, q6audio_get_port_id(port_id));
  8030. trace_printk("%s: Minor version =0x%x clk val1 = %d\n"
  8031. "clk val2 = %d, clk src = 0x%x\n"
  8032. "clk root = 0x%x clk mode = 0x%x resrv = 0x%x\n"
  8033. "port id = 0x%x\n",
  8034. __func__, cfg->i2s_cfg_minor_version,
  8035. cfg->clk_val1, cfg->clk_val2, cfg->clk_src,
  8036. cfg->clk_root, cfg->clk_set_mode,
  8037. cfg->reserved, q6audio_get_port_id(port_id));
  8038. ret = q6afe_pack_and_set_param_in_band(port_id,
  8039. q6audio_get_port_index(port_id),
  8040. param_hdr, (u8 *) &clk_cfg);
  8041. if (ret < 0)
  8042. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  8043. __func__, port_id, ret);
  8044. mutex_unlock(&this_afe.afe_cmd_lock);
  8045. return ret;
  8046. }
  8047. EXPORT_SYMBOL(afe_set_lpass_clock);
  8048. static int afe_get_port_idx(u16 port_id)
  8049. {
  8050. u16 afe_port = 0;
  8051. int i = -EINVAL;
  8052. pr_debug("%s: port id 0x%x\n", __func__, port_id);
  8053. if ((port_id >= AFE_PORT_ID_TDM_PORT_RANGE_START) &&
  8054. (port_id <= AFE_PORT_ID_TDM_PORT_RANGE_END))
  8055. afe_port = port_id & 0xFFF0;
  8056. else if ((port_id == AFE_PORT_ID_PRIMARY_SPDIF_RX) ||
  8057. (port_id == AFE_PORT_ID_PRIMARY_SPDIF_TX) ||
  8058. (port_id == AFE_PORT_ID_SECONDARY_SPDIF_RX) ||
  8059. (port_id == AFE_PORT_ID_SECONDARY_SPDIF_TX))
  8060. afe_port = port_id;
  8061. else
  8062. afe_port = port_id & 0xFFFE;
  8063. for (i = 0; i < ARRAY_SIZE(clkinfo_per_port); i++) {
  8064. if (afe_port == clkinfo_per_port[i].port_id) {
  8065. pr_debug("%s: idx 0x%x port id 0x%x\n", __func__,
  8066. i, afe_port);
  8067. return i;
  8068. }
  8069. }
  8070. pr_debug("%s: cannot get idx for port id 0x%x\n", __func__,
  8071. afe_port);
  8072. return -EINVAL;
  8073. }
  8074. static int afe_get_clk_id(u16 port_id)
  8075. {
  8076. u16 afe_port = 0;
  8077. uint32_t clk_id = -EINVAL;
  8078. int idx = 0;
  8079. idx = afe_get_port_idx(port_id);
  8080. if (idx < 0) {
  8081. pr_err("%s: cannot get clock id for port id 0x%x\n", __func__,
  8082. afe_port);
  8083. return -EINVAL;
  8084. }
  8085. clk_id = clkinfo_per_port[idx].clk_id;
  8086. pr_debug("%s: clk id 0x%x port id 0x%x\n", __func__, clk_id,
  8087. afe_port);
  8088. return clk_id;
  8089. }
  8090. /**
  8091. * afe_set_clk_id - Update clock id for AFE port
  8092. *
  8093. * @port_id: AFE port id
  8094. * @clk_id: CLock ID
  8095. *
  8096. * Returns 0 on success, appropriate error code otherwise
  8097. */
  8098. int afe_set_clk_id(u16 port_id, uint32_t clk_id)
  8099. {
  8100. u16 afe_port = 0;
  8101. int idx = 0;
  8102. idx = afe_get_port_idx(port_id);
  8103. if (idx < 0) {
  8104. pr_debug("%s: cannot set clock id for port id 0x%x\n", __func__,
  8105. afe_port);
  8106. return -EINVAL;
  8107. }
  8108. clkinfo_per_port[idx].clk_id = clk_id;
  8109. pr_debug("%s: updated clk id 0x%x port id 0x%x\n", __func__,
  8110. clkinfo_per_port[idx].clk_id, afe_port);
  8111. return 0;
  8112. }
  8113. EXPORT_SYMBOL(afe_set_clk_id);
  8114. /**
  8115. * afe_set_pll_clk_drift - Set audio interface PLL clock drift
  8116. *
  8117. * @port_id: AFE port id
  8118. * @set_clk_drift: clk drift to adjust PLL
  8119. * @clk_reset: reset Interface clock to original value
  8120. *
  8121. * Returns 0 on success, appropriate error code otherwise
  8122. */
  8123. int afe_set_pll_clk_drift(u16 port_id, int32_t set_clk_drift,
  8124. uint32_t clk_reset)
  8125. {
  8126. struct afe_set_clk_drift clk_drift;
  8127. struct param_hdr_v3 param_hdr;
  8128. uint32_t clk_id;
  8129. int index = 0, ret = 0;
  8130. memset(&param_hdr, 0, sizeof(param_hdr));
  8131. memset(&clk_drift, 0, sizeof(clk_drift));
  8132. index = q6audio_get_port_index(port_id);
  8133. if (index < 0 || index >= AFE_MAX_PORTS) {
  8134. pr_err("%s: index[%d] invalid!\n", __func__, index);
  8135. return -EINVAL;
  8136. }
  8137. ret = afe_q6_interface_prepare();
  8138. if (ret != 0) {
  8139. pr_err_ratelimited("%s: Q6 interface prepare failed %d\n",
  8140. __func__, ret);
  8141. return ret;
  8142. }
  8143. clk_id = afe_get_clk_id(port_id);
  8144. if (clk_id < 0) {
  8145. pr_err("%s: cannot get clk id for port id 0x%x\n",
  8146. __func__, port_id);
  8147. return -EINVAL;
  8148. }
  8149. if (clk_id & 0x01) {
  8150. pr_err("%s: cannot adjust clock drift for external clock id 0x%x\n",
  8151. __func__, clk_id);
  8152. return -EINVAL;
  8153. }
  8154. clk_drift.clk_drift = set_clk_drift;
  8155. clk_drift.clk_reset = clk_reset;
  8156. clk_drift.clk_id = clk_id;
  8157. pr_debug("%s: clk id = 0x%x clk drift = %d clk reset = %d port id 0x%x\n",
  8158. __func__, clk_drift.clk_id, clk_drift.clk_drift,
  8159. clk_drift.clk_reset, port_id);
  8160. mutex_lock(&this_afe.afe_clk_lock);
  8161. param_hdr.module_id = AFE_MODULE_CLOCK_SET;
  8162. param_hdr.instance_id = INSTANCE_ID_0;
  8163. param_hdr.param_id = AFE_PARAM_ID_CLOCK_ADJUST;
  8164. param_hdr.param_size = sizeof(struct afe_set_clk_drift);
  8165. ret = q6afe_svc_pack_and_set_param_in_band(index, param_hdr,
  8166. (u8 *) &clk_drift);
  8167. if (ret < 0)
  8168. pr_err_ratelimited("%s: AFE PLL clk drift failed with ret %d\n",
  8169. __func__, ret);
  8170. mutex_unlock(&this_afe.afe_clk_lock);
  8171. return ret;
  8172. }
  8173. EXPORT_SYMBOL(afe_set_pll_clk_drift);
  8174. static int afe_set_lpass_clk_cfg_ext_mclk(int index, struct afe_clk_set *cfg,
  8175. uint32_t mclk_freq)
  8176. {
  8177. struct param_hdr_v3 param_hdr;
  8178. struct afe_param_id_clock_set_v2_t dyn_mclk_cfg;
  8179. int ret = 0;
  8180. if (!cfg) {
  8181. pr_err("%s: clock cfg is NULL\n", __func__);
  8182. ret = -EINVAL;
  8183. return ret;
  8184. }
  8185. if (index < 0 || index >= AFE_MAX_PORTS) {
  8186. pr_err("%s: index[%d] invalid!\n", __func__, index);
  8187. return -EINVAL;
  8188. }
  8189. memset(&param_hdr, 0, sizeof(param_hdr));
  8190. param_hdr.module_id = AFE_MODULE_CLOCK_SET;
  8191. param_hdr.instance_id = INSTANCE_ID_0;
  8192. param_hdr.param_id = AFE_PARAM_ID_CLOCK_SET_V2;
  8193. param_hdr.param_size = sizeof(struct afe_param_id_clock_set_v2_t);
  8194. memset(&dyn_mclk_cfg, 0, sizeof(dyn_mclk_cfg));
  8195. dyn_mclk_cfg.clk_freq_in_hz = cfg->clk_freq_in_hz;
  8196. if (afe_ext_mclk.ext_mclk_cb) {
  8197. ret = afe_ext_mclk.ext_mclk_cb(afe_ext_mclk.private_data,
  8198. cfg->enable, mclk_freq, &dyn_mclk_cfg);
  8199. if (ret) {
  8200. pr_err_ratelimited("%s: get mclk cfg failed %d\n",
  8201. __func__, ret);
  8202. return ret;
  8203. }
  8204. } else {
  8205. pr_err_ratelimited("%s: mclk callback not registered\n",
  8206. __func__);
  8207. return -EINVAL;
  8208. }
  8209. dyn_mclk_cfg.clk_set_minor_version = 1;
  8210. dyn_mclk_cfg.clk_id = cfg->clk_id;
  8211. dyn_mclk_cfg.clk_attri = cfg->clk_attri;
  8212. dyn_mclk_cfg.enable = cfg->enable;
  8213. pr_debug("%s: Minor version =0x%x clk id = %d\n", __func__,
  8214. dyn_mclk_cfg.clk_set_minor_version, dyn_mclk_cfg.clk_id);
  8215. pr_debug("%s: clk freq (Hz) = %d, clk attri = 0x%x\n", __func__,
  8216. dyn_mclk_cfg.clk_freq_in_hz, dyn_mclk_cfg.clk_attri);
  8217. pr_debug("%s: clk root = 0x%x clk enable = 0x%x\n", __func__,
  8218. dyn_mclk_cfg.clk_root, dyn_mclk_cfg.enable);
  8219. pr_debug("%s: divider_2x =%d m = %d n = %d, d =%d\n", __func__,
  8220. dyn_mclk_cfg.divider_2x, dyn_mclk_cfg.m, dyn_mclk_cfg.n,
  8221. dyn_mclk_cfg.d);
  8222. ret = afe_q6_interface_prepare();
  8223. if (ret != 0) {
  8224. pr_err_ratelimited("%s: Q6 interface prepare failed %d\n",
  8225. __func__, ret);
  8226. goto stop_mclk;
  8227. }
  8228. mutex_lock(&this_afe.afe_cmd_lock);
  8229. ret = q6afe_svc_pack_and_set_param_in_band(index, param_hdr,
  8230. (u8 *) &dyn_mclk_cfg);
  8231. if (ret < 0)
  8232. pr_err_ratelimited("%s: ext MCLK clk cfg failed with ret %d\n",
  8233. __func__, ret);
  8234. mutex_unlock(&this_afe.afe_cmd_lock);
  8235. if (ret >= 0)
  8236. return ret;
  8237. stop_mclk:
  8238. if (afe_ext_mclk.ext_mclk_cb && cfg->enable) {
  8239. afe_ext_mclk.ext_mclk_cb(afe_ext_mclk.private_data,
  8240. cfg->enable, mclk_freq, &dyn_mclk_cfg);
  8241. }
  8242. return ret;
  8243. }
  8244. /**
  8245. * afe_set_lpass_clk_cfg - Set AFE clk config
  8246. *
  8247. * @index: port index
  8248. * @cfg: pointer to clk set struct
  8249. *
  8250. * Returns 0 on success, appropriate error code otherwise
  8251. */
  8252. int afe_set_lpass_clk_cfg(int index, struct afe_clk_set *cfg)
  8253. {
  8254. struct param_hdr_v3 param_hdr;
  8255. int ret = 0;
  8256. if (!cfg) {
  8257. pr_err("%s: clock cfg is NULL\n", __func__);
  8258. ret = -EINVAL;
  8259. return ret;
  8260. }
  8261. if (index < 0 || index >= AFE_MAX_PORTS) {
  8262. pr_err("%s: index[%d] invalid!\n", __func__, index);
  8263. return -EINVAL;
  8264. }
  8265. memset(&param_hdr, 0, sizeof(param_hdr));
  8266. mutex_lock(&this_afe.afe_clk_lock);
  8267. param_hdr.module_id = AFE_MODULE_CLOCK_SET;
  8268. param_hdr.instance_id = INSTANCE_ID_0;
  8269. param_hdr.param_id = AFE_PARAM_ID_CLOCK_SET;
  8270. param_hdr.param_size = sizeof(struct afe_clk_set);
  8271. pr_debug("%s: Minor version =0x%x clk id = %d\n"
  8272. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  8273. "clk root = 0x%x clk enable = 0x%x\n",
  8274. __func__, cfg->clk_set_minor_version,
  8275. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  8276. cfg->clk_root, cfg->enable);
  8277. trace_printk("%s: Minor version =0x%x clk id = %d\n"
  8278. "clk freq (Hz) = %d, clk attri = 0x%x\n"
  8279. "clk root = 0x%x clk enable = 0x%x\n",
  8280. __func__, cfg->clk_set_minor_version,
  8281. cfg->clk_id, cfg->clk_freq_in_hz, cfg->clk_attri,
  8282. cfg->clk_root, cfg->enable);
  8283. ret = q6afe_svc_pack_and_set_param_in_band(index, param_hdr,
  8284. (u8 *) cfg);
  8285. if (ret < 0) {
  8286. pr_err_ratelimited("%s: AFE clk cfg failed with ret %d\n",
  8287. __func__, ret);
  8288. trace_printk("%s: AFE clk cfg failed with ret %d\n",
  8289. __func__, ret);
  8290. }
  8291. mutex_unlock(&this_afe.afe_clk_lock);
  8292. return ret;
  8293. }
  8294. EXPORT_SYMBOL(afe_set_lpass_clk_cfg);
  8295. /**
  8296. * afe_set_lpass_clock_v2 - Enable AFE lpass clock
  8297. *
  8298. * @port_id: AFE port id
  8299. * @cfg: pointer to clk set struct
  8300. *
  8301. * Returns 0 on success, appropriate error code otherwise
  8302. */
  8303. int afe_set_lpass_clock_v2(u16 port_id, struct afe_clk_set *cfg)
  8304. {
  8305. int index = 0;
  8306. int ret = 0;
  8307. u16 idx = 0;
  8308. uint32_t build_major_version = 0;
  8309. uint32_t build_minor_version = 0;
  8310. uint32_t build_branch_version = 0;
  8311. int afe_api_version = 0;
  8312. index = q6audio_get_port_index(port_id);
  8313. if (index < 0 || index >= AFE_MAX_PORTS) {
  8314. pr_err("%s: AFE port index[%d] invalid!\n",
  8315. __func__, index);
  8316. return -EINVAL;
  8317. }
  8318. ret = q6audio_is_digital_pcm_interface(port_id);
  8319. if (ret < 0) {
  8320. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  8321. __func__, ret);
  8322. return -EINVAL;
  8323. }
  8324. ret = afe_set_clk_id(port_id, cfg->clk_id);
  8325. if (ret < 0)
  8326. pr_err("%s: afe_set_clk_id fail %d\n", __func__, ret);
  8327. idx = afe_get_port_idx(port_id);
  8328. if (idx < 0) {
  8329. pr_err("%s: cannot get clock id for port id 0x%x\n", __func__,
  8330. port_id);
  8331. return -EINVAL;
  8332. }
  8333. if (clkinfo_per_port[idx].mclk_src_id != MCLK_SRC_INT) {
  8334. pr_debug("%s: ext MCLK src %d\n",
  8335. __func__, clkinfo_per_port[idx].mclk_src_id);
  8336. ret = q6core_get_avcs_avs_build_version_info(
  8337. &build_major_version, &build_minor_version,
  8338. &build_branch_version);
  8339. if (ret < 0)
  8340. return ret;
  8341. ret = q6core_get_avcs_api_version_per_service(
  8342. APRV2_IDS_SERVICE_ID_ADSP_AFE_V);
  8343. if (ret < 0)
  8344. return ret;
  8345. afe_api_version = ret;
  8346. pr_debug("%s: mjor: %u, mnor: %u, brnch: %u, afe_api: %u\n",
  8347. __func__, build_major_version, build_minor_version,
  8348. build_branch_version, afe_api_version);
  8349. if ((build_major_version != AVS_BUILD_MAJOR_VERSION_V2) ||
  8350. (build_minor_version != AVS_BUILD_MINOR_VERSION_V9) ||
  8351. (build_branch_version != AVS_BUILD_BRANCH_VERSION_V3) ||
  8352. (afe_api_version < AFE_API_VERSION_V8)) {
  8353. pr_err("%s: ext mclk not supported by AVS\n", __func__);
  8354. return -EINVAL;
  8355. }
  8356. ret = afe_set_lpass_clk_cfg_ext_mclk(index, cfg,
  8357. clkinfo_per_port[idx].mclk_freq);
  8358. } else {
  8359. ret = afe_set_lpass_clk_cfg(index, cfg);
  8360. }
  8361. if (ret)
  8362. pr_err("%s: afe_set_lpass_clk_cfg_v2 failed %d\n",
  8363. __func__, ret);
  8364. return ret;
  8365. }
  8366. EXPORT_SYMBOL(afe_set_lpass_clock_v2);
  8367. /**
  8368. * afe_set_mclk_src_cfg - Set audio interface MCLK source configuration
  8369. *
  8370. * @port_id: AFE port id
  8371. * @mclk_src_id: mclk id to represent internal or one of external MCLK
  8372. * @mclk_freq: frequency of the MCLK
  8373. *
  8374. * Returns 0 on success, appropriate error code otherwise
  8375. */
  8376. int afe_set_mclk_src_cfg(u16 port_id, uint32_t mclk_src_id, uint32_t mclk_freq)
  8377. {
  8378. int idx = 0;
  8379. idx = afe_get_port_idx(port_id);
  8380. if (idx < 0) {
  8381. pr_err("%s: cannot get clock id for port id 0x%x\n",
  8382. __func__, port_id);
  8383. return -EINVAL;
  8384. }
  8385. clkinfo_per_port[idx].mclk_src_id = mclk_src_id;
  8386. clkinfo_per_port[idx].mclk_freq = mclk_freq;
  8387. pr_debug("%s: mclk src id 0x%x mclk_freq %d port id 0x%x\n",
  8388. __func__, mclk_src_id, mclk_freq, port_id);
  8389. return 0;
  8390. }
  8391. EXPORT_SYMBOL(afe_set_mclk_src_cfg);
  8392. int afe_set_lpass_internal_digital_codec_clock(u16 port_id,
  8393. struct afe_digital_clk_cfg *cfg)
  8394. {
  8395. struct afe_digital_clk_cfg clk_cfg;
  8396. struct param_hdr_v3 param_hdr;
  8397. int ret = 0;
  8398. if (!cfg) {
  8399. pr_err("%s: clock cfg is NULL\n", __func__);
  8400. return -EINVAL;
  8401. }
  8402. memset(&clk_cfg, 0, sizeof(clk_cfg));
  8403. memset(&param_hdr, 0, sizeof(param_hdr));
  8404. ret = q6audio_is_digital_pcm_interface(port_id);
  8405. if (ret < 0) {
  8406. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  8407. __func__, ret);
  8408. return -EINVAL;
  8409. }
  8410. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  8411. param_hdr.instance_id = INSTANCE_ID_0;
  8412. param_hdr.param_id = AFE_PARAM_ID_INTERNAL_DIGIATL_CDC_CLK_CONFIG;
  8413. param_hdr.param_size = sizeof(clk_cfg);
  8414. clk_cfg = *cfg;
  8415. pr_debug("%s: Minor version =0x%x clk val = %d\n"
  8416. "clk root = 0x%x resrv = 0x%x port id = 0x%x\n",
  8417. __func__, cfg->i2s_cfg_minor_version,
  8418. cfg->clk_val, cfg->clk_root, cfg->reserved,
  8419. q6audio_get_port_id(port_id));
  8420. ret = q6afe_pack_and_set_param_in_band(port_id,
  8421. q6audio_get_port_index(port_id),
  8422. param_hdr, (u8 *) &clk_cfg);
  8423. if (ret < 0)
  8424. pr_err("%s: AFE enable for port 0x0x%x ret %d\n",
  8425. __func__, port_id, ret);
  8426. return ret;
  8427. }
  8428. /**
  8429. * afe_enable_lpass_core_shared_clock -
  8430. * Configures the core clk on LPASS.
  8431. * Need on targets where lpass provides
  8432. * clocks
  8433. * @port_id: afe port id
  8434. * @enable: enable or disable clk
  8435. *
  8436. * Returns success or failure of call.
  8437. */
  8438. int afe_enable_lpass_core_shared_clock(u16 port_id, u32 enable)
  8439. {
  8440. struct afe_param_id_lpass_core_shared_clk_cfg clk_cfg;
  8441. struct param_hdr_v3 param_hdr;
  8442. int ret = 0;
  8443. memset(&clk_cfg, 0, sizeof(clk_cfg));
  8444. memset(&param_hdr, 0, sizeof(param_hdr));
  8445. ret = q6audio_is_digital_pcm_interface(port_id);
  8446. if (ret < 0) {
  8447. pr_err("%s: q6audio_is_digital_pcm_interface fail %d\n",
  8448. __func__, ret);
  8449. return -EINVAL;
  8450. }
  8451. mutex_lock(&this_afe.afe_cmd_lock);
  8452. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  8453. param_hdr.instance_id = INSTANCE_ID_0;
  8454. param_hdr.param_id = AFE_PARAM_ID_LPASS_CORE_SHARED_CLOCK_CONFIG;
  8455. param_hdr.param_size = sizeof(clk_cfg);
  8456. clk_cfg.lpass_core_shared_clk_cfg_minor_version =
  8457. AFE_API_VERSION_LPASS_CORE_SHARED_CLK_CONFIG;
  8458. clk_cfg.enable = enable;
  8459. pr_debug("%s: port id = %d, enable = %d\n",
  8460. __func__, q6audio_get_port_id(port_id), enable);
  8461. ret = q6afe_pack_and_set_param_in_band(port_id,
  8462. q6audio_get_port_index(port_id),
  8463. param_hdr, (u8 *) &clk_cfg);
  8464. if (ret < 0)
  8465. pr_err("%s: AFE enable for port 0x%x ret %d\n",
  8466. __func__, port_id, ret);
  8467. mutex_unlock(&this_afe.afe_cmd_lock);
  8468. return ret;
  8469. }
  8470. EXPORT_SYMBOL(afe_enable_lpass_core_shared_clock);
  8471. /**
  8472. * q6afe_check_osr_clk_freq -
  8473. * Gets supported OSR CLK frequencies
  8474. *
  8475. * @freq: frequency to check
  8476. *
  8477. * Returns success if freq is supported.
  8478. */
  8479. int q6afe_check_osr_clk_freq(u32 freq)
  8480. {
  8481. int ret = 0;
  8482. switch (freq) {
  8483. case Q6AFE_LPASS_OSR_CLK_12_P288_MHZ:
  8484. case Q6AFE_LPASS_OSR_CLK_9_P600_MHZ:
  8485. case Q6AFE_LPASS_OSR_CLK_8_P192_MHZ:
  8486. case Q6AFE_LPASS_OSR_CLK_6_P144_MHZ:
  8487. case Q6AFE_LPASS_OSR_CLK_4_P096_MHZ:
  8488. case Q6AFE_LPASS_OSR_CLK_3_P072_MHZ:
  8489. case Q6AFE_LPASS_OSR_CLK_2_P048_MHZ:
  8490. case Q6AFE_LPASS_OSR_CLK_1_P536_MHZ:
  8491. case Q6AFE_LPASS_OSR_CLK_1_P024_MHZ:
  8492. case Q6AFE_LPASS_OSR_CLK_768_kHZ:
  8493. case Q6AFE_LPASS_OSR_CLK_512_kHZ:
  8494. break;
  8495. default:
  8496. pr_err("%s: default freq 0x%x\n",
  8497. __func__, freq);
  8498. ret = -EINVAL;
  8499. }
  8500. return ret;
  8501. }
  8502. EXPORT_SYMBOL(q6afe_check_osr_clk_freq);
  8503. static int afe_get_spv4_th_vi_v_vali_data(void *params, uint32_t size)
  8504. {
  8505. struct param_hdr_v3 param_hdr;
  8506. int port = AFE_PORT_ID_WSA_CODEC_DMA_TX_0;
  8507. int ret = -EINVAL;
  8508. uint32_t min_size = 0;
  8509. struct afe_sp_v4_channel_v_vali_params *v_vali_params = NULL;
  8510. if (!params) {
  8511. pr_err("%s: Invalid params\n", __func__);
  8512. goto done;
  8513. }
  8514. if (this_afe.vi_tx_port != -1)
  8515. port = this_afe.vi_tx_port;
  8516. mutex_lock(&this_afe.afe_cmd_lock);
  8517. memset(&param_hdr, 0, sizeof(param_hdr));
  8518. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8519. param_hdr.instance_id = INSTANCE_ID_0;
  8520. param_hdr.param_id = AFE_PARAM_ID_SP_V4_TH_VI_V_VALI_PARAMS;
  8521. param_hdr.param_size = size;
  8522. ret = q6afe_get_params(port, NULL, &param_hdr);
  8523. if (ret) {
  8524. pr_err("%s: Failed to get TH VI V-Vali data\n", __func__);
  8525. goto get_params_fail;
  8526. }
  8527. min_size = (size < this_afe.spv4_v_vali_rcvd_param_size) ?
  8528. size : this_afe.spv4_v_vali_rcvd_param_size;
  8529. memcpy(params, (void*)&this_afe.spv4_v_vali_resp.num_ch, min_size);
  8530. v_vali_params = &this_afe.spv4_v_vali_resp.ch_v_vali_params[0];
  8531. pr_debug("%s: num_ch %d Vrms %d %d status %d %d\n", __func__,
  8532. this_afe.spv4_v_vali_resp.num_ch,
  8533. v_vali_params[SP_V2_SPKR_1].vrms_q24,
  8534. v_vali_params[SP_V2_SPKR_2].vrms_q24,
  8535. v_vali_params[SP_V2_SPKR_1].status,
  8536. v_vali_params[SP_V2_SPKR_2].status);
  8537. /*using the non-spv4 status varaible to support v_vali debug app. */
  8538. this_afe.th_vi_v_vali_resp.param.status[SP_V2_SPKR_1] =
  8539. v_vali_params[SP_V2_SPKR_1].status;
  8540. this_afe.th_vi_v_vali_resp.param.status[SP_V2_SPKR_2] =
  8541. v_vali_params[SP_V2_SPKR_2].status;
  8542. ret = 0;
  8543. get_params_fail:
  8544. mutex_unlock(&this_afe.afe_cmd_lock);
  8545. done:
  8546. return ret;
  8547. }
  8548. static int afe_get_sp_th_vi_v_vali_data(
  8549. struct afe_sp_th_vi_v_vali_get_param *th_vi_v_vali)
  8550. {
  8551. struct param_hdr_v3 param_hdr;
  8552. int port = SLIMBUS_4_TX;
  8553. int ret = -EINVAL;
  8554. if (!th_vi_v_vali) {
  8555. pr_err("%s: Invalid params\n", __func__);
  8556. goto done;
  8557. }
  8558. if (this_afe.vi_tx_port != -1)
  8559. port = this_afe.vi_tx_port;
  8560. mutex_lock(&this_afe.afe_cmd_lock);
  8561. memset(&param_hdr, 0, sizeof(param_hdr));
  8562. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  8563. param_hdr.instance_id = INSTANCE_ID_0;
  8564. param_hdr.param_id = AFE_PARAM_ID_SP_V2_TH_VI_V_VALI_PARAMS;
  8565. param_hdr.param_size = sizeof(struct afe_sp_th_vi_v_vali_params);
  8566. ret = q6afe_get_params(port, NULL, &param_hdr);
  8567. if (ret) {
  8568. pr_err("%s: Failed to get TH VI V-Vali data\n", __func__);
  8569. goto get_params_fail;
  8570. }
  8571. th_vi_v_vali->pdata = param_hdr;
  8572. memcpy(&th_vi_v_vali->param, &this_afe.th_vi_v_vali_resp.param,
  8573. sizeof(this_afe.th_vi_v_vali_resp.param));
  8574. pr_debug("%s: Vrms %d %d status %d %d\n", __func__,
  8575. th_vi_v_vali->param.vrms_q24[SP_V2_SPKR_1],
  8576. th_vi_v_vali->param.vrms_q24[SP_V2_SPKR_2],
  8577. th_vi_v_vali->param.status[SP_V2_SPKR_1],
  8578. th_vi_v_vali->param.status[SP_V2_SPKR_2]);
  8579. ret = 0;
  8580. get_params_fail:
  8581. mutex_unlock(&this_afe.afe_cmd_lock);
  8582. done:
  8583. return ret;
  8584. }
  8585. static int afe_get_spv4_th_vi_ftm_data(void *params, uint32_t size)
  8586. {
  8587. struct param_hdr_v3 param_hdr;
  8588. int port = SLIMBUS_4_TX;
  8589. int ret = -EINVAL;
  8590. uint32_t min_size = 0;
  8591. struct afe_sp_v4_channel_ftm_params *th_vi_params;
  8592. if (!params) {
  8593. pr_err("%s: Invalid params\n", __func__);
  8594. goto done;
  8595. }
  8596. if (this_afe.vi_tx_port != -1)
  8597. port = this_afe.vi_tx_port;
  8598. mutex_lock(&this_afe.afe_cmd_lock);
  8599. memset(&param_hdr, 0, sizeof(param_hdr));
  8600. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8601. param_hdr.instance_id = INSTANCE_ID_0;
  8602. param_hdr.param_id = AFE_PARAM_ID_SP_V4_TH_VI_FTM_PARAMS;
  8603. param_hdr.param_size = size;
  8604. ret = q6afe_get_params(port, NULL, &param_hdr);
  8605. if (ret) {
  8606. pr_err("%s: Failed to get TH VI FTM data\n", __func__);
  8607. goto get_params_fail;
  8608. }
  8609. min_size = (size < this_afe.spv4_th_vi_ftm_rcvd_param_size) ?
  8610. size : this_afe.spv4_th_vi_ftm_rcvd_param_size;
  8611. memcpy(params, (void*)&this_afe.spv4_th_vi_ftm_resp.num_ch, min_size);
  8612. th_vi_params = &this_afe.spv4_th_vi_ftm_resp.ch_ftm_params[0];
  8613. pr_debug("%s:num_ch %d, DC resistance %d %d temp %d %d status %d %d\n",
  8614. __func__, this_afe.spv4_th_vi_ftm_resp.num_ch,
  8615. th_vi_params[SP_V2_SPKR_1].dc_res_q24,
  8616. th_vi_params[SP_V2_SPKR_2].dc_res_q24,
  8617. th_vi_params[SP_V2_SPKR_1].temp_q22,
  8618. th_vi_params[SP_V2_SPKR_2].temp_q22,
  8619. th_vi_params[SP_V2_SPKR_1].status,
  8620. th_vi_params[SP_V2_SPKR_2].status);
  8621. ret = 0;
  8622. get_params_fail:
  8623. mutex_unlock(&this_afe.afe_cmd_lock);
  8624. done:
  8625. return ret;
  8626. }
  8627. static int afe_get_sp_th_vi_ftm_data(struct afe_sp_th_vi_get_param *th_vi)
  8628. {
  8629. struct param_hdr_v3 param_hdr;
  8630. int port = SLIMBUS_4_TX;
  8631. int ret = -EINVAL;
  8632. if (!th_vi) {
  8633. pr_err("%s: Invalid params\n", __func__);
  8634. goto done;
  8635. }
  8636. if (this_afe.vi_tx_port != -1)
  8637. port = this_afe.vi_tx_port;
  8638. mutex_lock(&this_afe.afe_cmd_lock);
  8639. memset(&param_hdr, 0, sizeof(param_hdr));
  8640. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_TH_VI;
  8641. param_hdr.instance_id = INSTANCE_ID_0;
  8642. param_hdr.param_id = AFE_PARAM_ID_SP_V2_TH_VI_FTM_PARAMS;
  8643. param_hdr.param_size = sizeof(struct afe_sp_th_vi_ftm_params);
  8644. ret = q6afe_get_params(port, NULL, &param_hdr);
  8645. if (ret) {
  8646. pr_err("%s: Failed to get TH VI FTM data\n", __func__);
  8647. goto get_params_fail;
  8648. }
  8649. th_vi->pdata = param_hdr;
  8650. memcpy(&th_vi->param, &this_afe.th_vi_resp.param,
  8651. sizeof(this_afe.th_vi_resp.param));
  8652. pr_debug("%s: DC resistance %d %d temp %d %d status %d %d\n",
  8653. __func__, th_vi->param.dc_res_q24[SP_V2_SPKR_1],
  8654. th_vi->param.dc_res_q24[SP_V2_SPKR_2],
  8655. th_vi->param.temp_q22[SP_V2_SPKR_1],
  8656. th_vi->param.temp_q22[SP_V2_SPKR_2],
  8657. th_vi->param.status[SP_V2_SPKR_1],
  8658. th_vi->param.status[SP_V2_SPKR_2]);
  8659. ret = 0;
  8660. get_params_fail:
  8661. mutex_unlock(&this_afe.afe_cmd_lock);
  8662. done:
  8663. return ret;
  8664. }
  8665. static int afe_get_spv4_ex_vi_ftm_data(void *params, uint32_t size)
  8666. {
  8667. struct param_hdr_v3 param_hdr;
  8668. int port = SLIMBUS_4_TX;
  8669. int ret = -EINVAL;
  8670. uint32_t min_size = 0;
  8671. struct afe_sp_v4_channel_ex_vi_ftm_params *ex_vi_ftm_param;
  8672. if (!params) {
  8673. pr_err("%s: Invalid params\n", __func__);
  8674. goto done;
  8675. }
  8676. if (this_afe.vi_tx_port != -1)
  8677. port = this_afe.vi_tx_port;
  8678. mutex_lock(&this_afe.afe_cmd_lock);
  8679. memset(&param_hdr, 0, sizeof(param_hdr));
  8680. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8681. param_hdr.instance_id = INSTANCE_ID_0;
  8682. param_hdr.param_id = AFE_PARAM_ID_SP_V4_EX_VI_FTM_PARAMS;
  8683. param_hdr.param_size = size;
  8684. ret = q6afe_get_params(port, NULL, &param_hdr);
  8685. if (ret < 0) {
  8686. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8687. __func__, port, param_hdr.param_id, ret);
  8688. goto get_params_fail;
  8689. }
  8690. min_size = (size < this_afe.spv4_ex_vi_ftm_rcvd_param_size) ?
  8691. size : this_afe.spv4_ex_vi_ftm_rcvd_param_size;
  8692. memcpy(params, (void*)&this_afe.spv4_ex_vi_ftm_resp.num_ch, min_size);
  8693. ex_vi_ftm_param = &this_afe.spv4_ex_vi_ftm_resp.ch_ex_vi_ftm_params[0];
  8694. pr_debug("%s:num_ch %d, res %d %d forcefactor %d %d Dmping kg/s %d %d\n"
  8695. "stiffness N/mm %d %d freq %d %d Qfactor %d %d status %d %d",
  8696. __func__, this_afe.spv4_ex_vi_ftm_resp.num_ch,
  8697. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_re_q24,
  8698. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_re_q24,
  8699. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Bl_q24,
  8700. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Bl_q24,
  8701. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Rms_q24,
  8702. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Rms_q24,
  8703. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Kms_q24,
  8704. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Kms_q24,
  8705. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Fres_q20,
  8706. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Fres_q20,
  8707. ex_vi_ftm_param[SP_V2_SPKR_1].ftm_Qms_q24,
  8708. ex_vi_ftm_param[SP_V2_SPKR_2].ftm_Qms_q24,
  8709. ex_vi_ftm_param[SP_V2_SPKR_1].status,
  8710. ex_vi_ftm_param[SP_V2_SPKR_2].status);
  8711. ret = 0;
  8712. get_params_fail:
  8713. mutex_unlock(&this_afe.afe_cmd_lock);
  8714. done:
  8715. return ret;
  8716. }
  8717. static int afe_get_sp_ex_vi_ftm_data(struct afe_sp_ex_vi_get_param *ex_vi)
  8718. {
  8719. struct param_hdr_v3 param_hdr;
  8720. int port = SLIMBUS_4_TX;
  8721. int ret = -EINVAL;
  8722. if (!ex_vi) {
  8723. pr_err("%s: Invalid params\n", __func__);
  8724. goto done;
  8725. }
  8726. if (this_afe.vi_tx_port != -1)
  8727. port = this_afe.vi_tx_port;
  8728. mutex_lock(&this_afe.afe_cmd_lock);
  8729. memset(&param_hdr, 0, sizeof(param_hdr));
  8730. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V2_EX_VI;
  8731. param_hdr.instance_id = INSTANCE_ID_0;
  8732. param_hdr.param_id = AFE_PARAM_ID_SP_V2_EX_VI_FTM_PARAMS;
  8733. param_hdr.param_size = sizeof(struct afe_sp_ex_vi_ftm_params);
  8734. ret = q6afe_get_params(port, NULL, &param_hdr);
  8735. if (ret < 0) {
  8736. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8737. __func__, port, param_hdr.param_id, ret);
  8738. goto get_params_fail;
  8739. }
  8740. ex_vi->pdata = param_hdr;
  8741. memcpy(&ex_vi->param, &this_afe.ex_vi_resp.param,
  8742. sizeof(this_afe.ex_vi_resp.param));
  8743. pr_debug("%s: freq %d %d resistance %d %d qfactor %d %d state %d %d\n",
  8744. __func__, ex_vi->param.freq_q20[SP_V2_SPKR_1],
  8745. ex_vi->param.freq_q20[SP_V2_SPKR_2],
  8746. ex_vi->param.resis_q24[SP_V2_SPKR_1],
  8747. ex_vi->param.resis_q24[SP_V2_SPKR_2],
  8748. ex_vi->param.qmct_q24[SP_V2_SPKR_1],
  8749. ex_vi->param.qmct_q24[SP_V2_SPKR_2],
  8750. ex_vi->param.status[SP_V2_SPKR_1],
  8751. ex_vi->param.status[SP_V2_SPKR_2]);
  8752. ret = 0;
  8753. get_params_fail:
  8754. mutex_unlock(&this_afe.afe_cmd_lock);
  8755. done:
  8756. return ret;
  8757. }
  8758. static int afe_get_sp_v4_rx_tmax_xmax_logging_data(
  8759. struct afe_sp_rx_tmax_xmax_logging_param *xt_logging,
  8760. u16 port_id)
  8761. {
  8762. struct param_hdr_v3 param_hdr;
  8763. int ret = -EINVAL;
  8764. struct afe_sp_v4_channel_tmax_xmax_params *tx_channel_params;
  8765. uint32_t i, size = 0;
  8766. if (!xt_logging) {
  8767. pr_err("%s: Invalid params\n", __func__);
  8768. goto done;
  8769. }
  8770. size = sizeof(struct afe_sp_v4_param_tmax_xmax_logging) +
  8771. (SP_V2_NUM_MAX_SPKRS *
  8772. sizeof(struct afe_sp_v4_channel_tmax_xmax_params));
  8773. memset(&param_hdr, 0, sizeof(param_hdr));
  8774. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_RX;
  8775. param_hdr.instance_id = INSTANCE_ID_0;
  8776. param_hdr.param_id = AFE_PARAM_ID_SP_V4_RX_TMAX_XMAX_LOGGING;
  8777. param_hdr.param_size = size;
  8778. ret = q6afe_get_params(port_id, NULL, &param_hdr);
  8779. if (ret) {
  8780. pr_err("%s: Failed to get Tmax Xmax logging data\n", __func__);
  8781. goto get_params_fail;
  8782. }
  8783. tx_channel_params = &this_afe.spv4_max_log_resp.ch_max_params[0];
  8784. for (i = 0; i < this_afe.spv4_max_log_resp.num_ch; i++) {
  8785. xt_logging->max_excursion[i] =
  8786. tx_channel_params[i].max_excursion;
  8787. xt_logging->count_exceeded_excursion[i] =
  8788. tx_channel_params[i].count_exceeded_excursion;
  8789. xt_logging->max_temperature[i] =
  8790. tx_channel_params[i].max_temperature;
  8791. xt_logging->count_exceeded_temperature[i] =
  8792. tx_channel_params[i].count_exceeded_temperature;
  8793. }
  8794. ret = 0;
  8795. get_params_fail:
  8796. done:
  8797. return ret;
  8798. }
  8799. /**
  8800. * afe_get_sp_rx_tmax_xmax_logging_data -
  8801. * command to get excursion logging data from DSP
  8802. *
  8803. * @xt_logging: excursion logging params
  8804. * @port: AFE port ID
  8805. *
  8806. * Returns 0 on success or error on failure
  8807. */
  8808. int afe_get_sp_rx_tmax_xmax_logging_data(
  8809. struct afe_sp_rx_tmax_xmax_logging_param *xt_logging,
  8810. u16 port_id)
  8811. {
  8812. struct param_hdr_v3 param_hdr;
  8813. int ret = -EINVAL;
  8814. if (!xt_logging) {
  8815. pr_err("%s: Invalid params\n", __func__);
  8816. goto done;
  8817. }
  8818. mutex_lock(&this_afe.afe_cmd_lock);
  8819. if (q6core_get_avcs_api_version_per_service(
  8820. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  8821. ret = afe_get_sp_v4_rx_tmax_xmax_logging_data(xt_logging,
  8822. port_id);
  8823. } else {
  8824. memset(&param_hdr, 0, sizeof(param_hdr));
  8825. param_hdr.module_id = AFE_MODULE_FB_SPKR_PROT_V2_RX;
  8826. param_hdr.instance_id = INSTANCE_ID_0;
  8827. param_hdr.param_id = AFE_PARAM_ID_SP_RX_TMAX_XMAX_LOGGING;
  8828. param_hdr.param_size =
  8829. sizeof(struct afe_sp_rx_tmax_xmax_logging_param);
  8830. ret = q6afe_get_params(port_id, NULL, &param_hdr);
  8831. if (ret < 0) {
  8832. pr_err(
  8833. "%s: get param port 0x%x param id[0x%x]failed %d\n",
  8834. __func__, port_id, param_hdr.param_id, ret);
  8835. goto get_params_fail;
  8836. }
  8837. memcpy(xt_logging, &this_afe.xt_logging_resp.param,
  8838. sizeof(this_afe.xt_logging_resp.param));
  8839. }
  8840. pr_debug("%s: max_excursion %d %d count_exceeded_excursion %d %d"
  8841. " max_temperature %d %d count_exceeded_temperature %d %d\n",
  8842. __func__, xt_logging->max_excursion[SP_V2_SPKR_1],
  8843. xt_logging->max_excursion[SP_V2_SPKR_2],
  8844. xt_logging->count_exceeded_excursion[SP_V2_SPKR_1],
  8845. xt_logging->count_exceeded_excursion[SP_V2_SPKR_2],
  8846. xt_logging->max_temperature[SP_V2_SPKR_1],
  8847. xt_logging->max_temperature[SP_V2_SPKR_2],
  8848. xt_logging->count_exceeded_temperature[SP_V2_SPKR_1],
  8849. xt_logging->count_exceeded_temperature[SP_V2_SPKR_2]);
  8850. get_params_fail:
  8851. mutex_unlock(&this_afe.afe_cmd_lock);
  8852. done:
  8853. return ret;
  8854. }
  8855. EXPORT_SYMBOL(afe_get_sp_rx_tmax_xmax_logging_data);
  8856. /**
  8857. * afe_get_av_dev_drift -
  8858. * command to retrieve AV drift
  8859. *
  8860. * @timing_stats: timing stats to be updated with AV drift values
  8861. * @port: AFE port ID
  8862. *
  8863. * Returns 0 on success or error on failure
  8864. */
  8865. int afe_get_av_dev_drift(struct afe_param_id_dev_timing_stats *timing_stats,
  8866. u16 port)
  8867. {
  8868. struct param_hdr_v3 param_hdr;
  8869. int ret = -EINVAL;
  8870. if (!timing_stats) {
  8871. pr_err("%s: Invalid params\n", __func__);
  8872. goto exit;
  8873. }
  8874. mutex_lock(&this_afe.afe_cmd_lock);
  8875. memset(&param_hdr, 0, sizeof(param_hdr));
  8876. param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;
  8877. param_hdr.instance_id = INSTANCE_ID_0;
  8878. param_hdr.param_id = AFE_PARAM_ID_DEV_TIMING_STATS;
  8879. param_hdr.param_size = sizeof(struct afe_param_id_dev_timing_stats);
  8880. ret = q6afe_get_params(port, NULL, &param_hdr);
  8881. if (ret < 0) {
  8882. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  8883. __func__, port, param_hdr.param_id, ret);
  8884. goto get_params_fail;
  8885. }
  8886. memcpy(timing_stats, &this_afe.av_dev_drift_resp.timing_stats,
  8887. param_hdr.param_size);
  8888. ret = 0;
  8889. get_params_fail:
  8890. mutex_unlock(&this_afe.afe_cmd_lock);
  8891. exit:
  8892. return ret;
  8893. }
  8894. EXPORT_SYMBOL(afe_get_av_dev_drift);
  8895. /**
  8896. * afe_get_doa_tracking_mon -
  8897. * command to retrieve doa tracking monitor data
  8898. *
  8899. * @port: AFE port ID
  8900. * @doa_tracking_data: param to be updated with doa tracking data
  8901. *
  8902. * Returns 0 on success or error on failure
  8903. */
  8904. int afe_get_doa_tracking_mon(u16 port,
  8905. struct doa_tracking_mon_param *doa_tracking_data)
  8906. {
  8907. struct param_hdr_v3 param_hdr;
  8908. int ret = -EINVAL, i = 0;
  8909. if (!doa_tracking_data) {
  8910. pr_err("%s: Invalid params\n", __func__);
  8911. goto exit;
  8912. }
  8913. mutex_lock(&this_afe.afe_cmd_lock);
  8914. memset(&param_hdr, 0, sizeof(param_hdr));
  8915. param_hdr.module_id = AUDPROC_MODULE_ID_FFNS;
  8916. param_hdr.instance_id = INSTANCE_ID_0;
  8917. param_hdr.param_id = AUDPROC_PARAM_ID_FFV_DOA_TRACKING_MONITOR;
  8918. param_hdr.param_size = sizeof(struct doa_tracking_mon_param);
  8919. ret = q6afe_get_params(port, NULL, &param_hdr);
  8920. if (ret < 0) {
  8921. pr_err("%s: get param port 0x%x param id[0x%x] failed %d\n",
  8922. __func__, port, param_hdr.param_id, ret);
  8923. goto get_params_fail;
  8924. }
  8925. memcpy(doa_tracking_data, &this_afe.doa_tracking_mon_resp.doa,
  8926. param_hdr.param_size);
  8927. for (i = 0; i < MAX_DOA_TRACKING_ANGLES; i++) {
  8928. pr_debug("%s: target angle[%d] = %d\n",
  8929. __func__, i, doa_tracking_data->target_angle_L16[i]);
  8930. pr_debug("%s: interference angle[%d] = %d\n",
  8931. __func__, i, doa_tracking_data->interf_angle_L16[i]);
  8932. }
  8933. get_params_fail:
  8934. mutex_unlock(&this_afe.afe_cmd_lock);
  8935. exit:
  8936. return ret;
  8937. }
  8938. EXPORT_SYMBOL(afe_get_doa_tracking_mon);
  8939. static int afe_spv4_get_calib_data(
  8940. struct afe_sp_v4_th_vi_calib_resp *calib_resp)
  8941. {
  8942. struct param_hdr_v3 param_hdr;
  8943. int port = SLIMBUS_4_TX;
  8944. int ret = -EINVAL;
  8945. if (!calib_resp) {
  8946. pr_err("%s: Invalid params\n", __func__);
  8947. goto fail_cmd;
  8948. }
  8949. if (this_afe.vi_tx_port != -1)
  8950. port = this_afe.vi_tx_port;
  8951. mutex_lock(&this_afe.afe_cmd_lock);
  8952. memset(&param_hdr, 0, sizeof(param_hdr));
  8953. param_hdr.module_id = AFE_MODULE_SPEAKER_PROTECTION_V4_VI;
  8954. param_hdr.instance_id = INSTANCE_ID_0;
  8955. param_hdr.param_id = AFE_PARAM_ID_SP_V4_CALIB_RES_CFG;
  8956. param_hdr.param_size = sizeof(struct afe_sp_v4_th_vi_calib_resp);
  8957. ret = q6afe_get_params(port, NULL, &param_hdr);
  8958. if (ret < 0) {
  8959. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8960. __func__, port, param_hdr.param_id, ret);
  8961. goto get_params_fail;
  8962. }
  8963. memcpy(&calib_resp->res_cfg, &this_afe.spv4_calib_data.res_cfg,
  8964. sizeof(this_afe.calib_data.res_cfg));
  8965. pr_info("%s: state %s resistance %d %d\n", __func__,
  8966. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  8967. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  8968. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  8969. ret = 0;
  8970. get_params_fail:
  8971. mutex_unlock(&this_afe.afe_cmd_lock);
  8972. fail_cmd:
  8973. return ret;
  8974. }
  8975. int afe_spk_prot_get_calib_data(struct afe_spkr_prot_get_vi_calib *calib_resp)
  8976. {
  8977. struct param_hdr_v3 param_hdr;
  8978. int port = SLIMBUS_4_TX;
  8979. int ret = -EINVAL;
  8980. if (!calib_resp) {
  8981. pr_err("%s: Invalid params\n", __func__);
  8982. goto fail_cmd;
  8983. }
  8984. if (this_afe.vi_tx_port != -1)
  8985. port = this_afe.vi_tx_port;
  8986. mutex_lock(&this_afe.afe_cmd_lock);
  8987. memset(&param_hdr, 0, sizeof(param_hdr));
  8988. param_hdr.module_id = AFE_MODULE_FB_SPKR_PROT_VI_PROC_V2;
  8989. param_hdr.instance_id = INSTANCE_ID_0;
  8990. param_hdr.param_id = AFE_PARAM_ID_CALIB_RES_CFG_V2;
  8991. param_hdr.param_size = sizeof(struct afe_spkr_prot_get_vi_calib);
  8992. ret = q6afe_get_params(port, NULL, &param_hdr);
  8993. if (ret < 0) {
  8994. pr_err("%s: get param port 0x%x param id[0x%x]failed %d\n",
  8995. __func__, port, param_hdr.param_id, ret);
  8996. goto get_params_fail;
  8997. }
  8998. memcpy(&calib_resp->res_cfg, &this_afe.calib_data.res_cfg,
  8999. sizeof(this_afe.calib_data.res_cfg));
  9000. pr_info("%s: state %s resistance %d %d\n", __func__,
  9001. fbsp_state[calib_resp->res_cfg.th_vi_ca_state],
  9002. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_1],
  9003. calib_resp->res_cfg.r0_cali_q24[SP_V2_SPKR_2]);
  9004. ret = 0;
  9005. get_params_fail:
  9006. mutex_unlock(&this_afe.afe_cmd_lock);
  9007. fail_cmd:
  9008. return ret;
  9009. }
  9010. /**
  9011. * afe_spk_prot_feed_back_cfg -
  9012. * command to setup spk protection feedback config
  9013. *
  9014. * @src_port: source port id
  9015. * @dst_port: destination port id
  9016. * @l_ch: left speaker active or not
  9017. * @r_ch: right speaker active or not
  9018. * @enable: flag to enable or disable
  9019. *
  9020. * Returns 0 on success or error on failure
  9021. */
  9022. int afe_spk_prot_feed_back_cfg(int src_port, int dst_port,
  9023. int l_ch, int r_ch, u32 enable)
  9024. {
  9025. int ret = -EINVAL;
  9026. union afe_spkr_prot_config prot_config;
  9027. int index = 0;
  9028. if (!enable) {
  9029. pr_debug("%s: Disable Feedback tx path", __func__);
  9030. this_afe.vi_tx_port = -1;
  9031. this_afe.vi_rx_port = -1;
  9032. return 0;
  9033. }
  9034. if ((q6audio_validate_port(src_port) < 0) ||
  9035. (q6audio_validate_port(dst_port) < 0)) {
  9036. pr_err("%s: invalid ports src 0x%x dst 0x%x",
  9037. __func__, src_port, dst_port);
  9038. goto fail_cmd;
  9039. }
  9040. if (!l_ch && !r_ch) {
  9041. pr_err("%s: error ch values zero\n", __func__);
  9042. goto fail_cmd;
  9043. }
  9044. pr_debug("%s: src_port 0x%x dst_port 0x%x l_ch %d r_ch %d\n",
  9045. __func__, src_port, dst_port, l_ch, r_ch);
  9046. if (q6core_get_avcs_api_version_per_service(
  9047. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  9048. if (l_ch) {
  9049. this_afe.v4_ch_map_cfg.chan_info[index++] = 1;
  9050. this_afe.v4_ch_map_cfg.chan_info[index++] = 2;
  9051. }
  9052. if (r_ch) {
  9053. this_afe.v4_ch_map_cfg.chan_info[index++] = 3;
  9054. this_afe.v4_ch_map_cfg.chan_info[index++] = 4;
  9055. }
  9056. this_afe.v4_ch_map_cfg.num_channels = index;
  9057. this_afe.num_spkrs = index / 2;
  9058. }
  9059. index = 0;
  9060. memset(&prot_config, 0, sizeof(prot_config));
  9061. prot_config.feedback_path_cfg.dst_portid =
  9062. q6audio_get_port_id(dst_port);
  9063. if (l_ch) {
  9064. prot_config.feedback_path_cfg.chan_info[index++] = 1;
  9065. prot_config.feedback_path_cfg.chan_info[index++] = 2;
  9066. }
  9067. if (r_ch) {
  9068. prot_config.feedback_path_cfg.chan_info[index++] = 3;
  9069. prot_config.feedback_path_cfg.chan_info[index++] = 4;
  9070. }
  9071. prot_config.feedback_path_cfg.num_channels = index;
  9072. pr_debug("%s no of channels: %d\n", __func__, index);
  9073. prot_config.feedback_path_cfg.minor_version = 1;
  9074. ret = afe_spk_prot_prepare(src_port, dst_port,
  9075. AFE_PARAM_ID_FEEDBACK_PATH_CFG, &prot_config,
  9076. sizeof(union afe_spkr_prot_config));
  9077. fail_cmd:
  9078. return ret;
  9079. }
  9080. EXPORT_SYMBOL(afe_spk_prot_feed_back_cfg);
  9081. static int get_cal_type_index(int32_t cal_type)
  9082. {
  9083. int ret = -EINVAL;
  9084. switch (cal_type) {
  9085. case AFE_COMMON_RX_CAL_TYPE:
  9086. ret = AFE_COMMON_RX_CAL;
  9087. break;
  9088. case AFE_COMMON_TX_CAL_TYPE:
  9089. ret = AFE_COMMON_TX_CAL;
  9090. break;
  9091. case AFE_LSM_TX_CAL_TYPE:
  9092. ret = AFE_LSM_TX_CAL;
  9093. break;
  9094. case AFE_AANC_CAL_TYPE:
  9095. ret = AFE_AANC_CAL;
  9096. break;
  9097. case AFE_HW_DELAY_CAL_TYPE:
  9098. ret = AFE_HW_DELAY_CAL;
  9099. break;
  9100. case AFE_FB_SPKR_PROT_CAL_TYPE:
  9101. ret = AFE_FB_SPKR_PROT_CAL;
  9102. break;
  9103. case AFE_SIDETONE_CAL_TYPE:
  9104. ret = AFE_SIDETONE_CAL;
  9105. break;
  9106. case AFE_SIDETONE_IIR_CAL_TYPE:
  9107. ret = AFE_SIDETONE_IIR_CAL;
  9108. break;
  9109. case AFE_TOPOLOGY_CAL_TYPE:
  9110. ret = AFE_TOPOLOGY_CAL;
  9111. break;
  9112. case AFE_LSM_TOPOLOGY_CAL_TYPE:
  9113. ret = AFE_LSM_TOPOLOGY_CAL;
  9114. break;
  9115. case AFE_CUST_TOPOLOGY_CAL_TYPE:
  9116. ret = AFE_CUST_TOPOLOGY_CAL;
  9117. break;
  9118. default:
  9119. pr_err("%s: invalid cal type %d!\n", __func__, cal_type);
  9120. }
  9121. return ret;
  9122. }
  9123. int afe_alloc_cal(int32_t cal_type, size_t data_size,
  9124. void *data)
  9125. {
  9126. int ret = 0;
  9127. int cal_index;
  9128. cal_index = get_cal_type_index(cal_type);
  9129. pr_debug("%s: cal_type = %d cal_index = %d\n",
  9130. __func__, cal_type, cal_index);
  9131. if (cal_index < 0) {
  9132. pr_err("%s: could not get cal index %d!\n",
  9133. __func__, cal_index);
  9134. ret = -EINVAL;
  9135. goto done;
  9136. }
  9137. mutex_lock(&this_afe.afe_cmd_lock);
  9138. ret = cal_utils_alloc_cal(data_size, data,
  9139. this_afe.cal_data[cal_index], 0, NULL);
  9140. if (ret < 0) {
  9141. pr_err("%s: cal_utils_alloc_block failed, ret = %d, cal type = %d!\n",
  9142. __func__, ret, cal_type);
  9143. ret = -EINVAL;
  9144. mutex_unlock(&this_afe.afe_cmd_lock);
  9145. goto done;
  9146. }
  9147. mutex_unlock(&this_afe.afe_cmd_lock);
  9148. done:
  9149. return ret;
  9150. }
  9151. static int afe_dealloc_cal(int32_t cal_type, size_t data_size,
  9152. void *data)
  9153. {
  9154. int ret = 0;
  9155. int cal_index;
  9156. pr_debug("%s:\n", __func__);
  9157. cal_index = get_cal_type_index(cal_type);
  9158. if (cal_index < 0) {
  9159. pr_err("%s: could not get cal index %d!\n",
  9160. __func__, cal_index);
  9161. ret = -EINVAL;
  9162. goto done;
  9163. }
  9164. ret = cal_utils_dealloc_cal(data_size, data,
  9165. this_afe.cal_data[cal_index]);
  9166. if (ret < 0) {
  9167. pr_err("%s: cal_utils_dealloc_block failed, ret = %d, cal type = %d!\n",
  9168. __func__, ret, cal_type);
  9169. ret = -EINVAL;
  9170. goto done;
  9171. }
  9172. done:
  9173. return ret;
  9174. }
  9175. static int afe_set_cal(int32_t cal_type, size_t data_size,
  9176. void *data)
  9177. {
  9178. int ret = 0;
  9179. int cal_index;
  9180. pr_debug("%s:\n", __func__);
  9181. cal_index = get_cal_type_index(cal_type);
  9182. if (cal_index < 0) {
  9183. pr_err("%s: could not get cal index %d!\n",
  9184. __func__, cal_index);
  9185. ret = -EINVAL;
  9186. goto done;
  9187. }
  9188. ret = cal_utils_set_cal(data_size, data,
  9189. this_afe.cal_data[cal_index], 0, NULL);
  9190. if (ret < 0) {
  9191. pr_err("%s: cal_utils_set_cal failed, ret = %d, cal type = %d!\n",
  9192. __func__, ret, cal_type);
  9193. ret = -EINVAL;
  9194. goto done;
  9195. }
  9196. if (cal_index == AFE_CUST_TOPOLOGY_CAL) {
  9197. mutex_lock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  9198. this_afe.set_custom_topology = 1;
  9199. pr_debug("%s:[AFE_CUSTOM_TOPOLOGY] ret = %d, cal type = %d!\n",
  9200. __func__, ret, cal_type);
  9201. mutex_unlock(&this_afe.cal_data[AFE_CUST_TOPOLOGY_CAL]->lock);
  9202. }
  9203. done:
  9204. return ret;
  9205. }
  9206. static struct cal_block_data *afe_find_hw_delay_by_path(
  9207. struct cal_type_data *cal_type, int path)
  9208. {
  9209. struct list_head *ptr, *next;
  9210. struct cal_block_data *cal_block = NULL;
  9211. pr_debug("%s:\n", __func__);
  9212. list_for_each_safe(ptr, next,
  9213. &cal_type->cal_blocks) {
  9214. cal_block = list_entry(ptr,
  9215. struct cal_block_data, list);
  9216. if (cal_utils_is_cal_stale(cal_block))
  9217. continue;
  9218. if (((struct audio_cal_info_hw_delay *)cal_block->cal_info)
  9219. ->path == path) {
  9220. return cal_block;
  9221. }
  9222. }
  9223. return NULL;
  9224. }
  9225. static int afe_get_cal_hw_delay(int32_t path,
  9226. struct audio_cal_hw_delay_entry *entry)
  9227. {
  9228. int ret = 0;
  9229. int i;
  9230. struct cal_block_data *cal_block = NULL;
  9231. struct audio_cal_hw_delay_data *hw_delay_info = NULL;
  9232. pr_debug("%s:\n", __func__);
  9233. if (this_afe.cal_data[AFE_HW_DELAY_CAL] == NULL) {
  9234. pr_err("%s: AFE_HW_DELAY_CAL not initialized\n", __func__);
  9235. ret = -EINVAL;
  9236. goto done;
  9237. }
  9238. if (entry == NULL) {
  9239. pr_err("%s: entry is NULL\n", __func__);
  9240. ret = -EINVAL;
  9241. goto done;
  9242. }
  9243. if ((path >= MAX_PATH_TYPE) || (path < 0)) {
  9244. pr_err("%s: bad path: %d\n",
  9245. __func__, path);
  9246. ret = -EINVAL;
  9247. goto done;
  9248. }
  9249. mutex_lock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  9250. cal_block = afe_find_hw_delay_by_path(
  9251. this_afe.cal_data[AFE_HW_DELAY_CAL], path);
  9252. if (cal_block == NULL)
  9253. goto unlock;
  9254. hw_delay_info = &((struct audio_cal_info_hw_delay *)
  9255. cal_block->cal_info)->data;
  9256. if (hw_delay_info->num_entries > MAX_HW_DELAY_ENTRIES) {
  9257. pr_err("%s: invalid num entries: %d\n",
  9258. __func__, hw_delay_info->num_entries);
  9259. ret = -EINVAL;
  9260. goto unlock;
  9261. }
  9262. for (i = 0; i < hw_delay_info->num_entries; i++) {
  9263. if (hw_delay_info->entry[i].sample_rate ==
  9264. entry->sample_rate) {
  9265. entry->delay_usec = hw_delay_info->entry[i].delay_usec;
  9266. break;
  9267. }
  9268. }
  9269. if (i == hw_delay_info->num_entries) {
  9270. pr_err("%s: Unable to find delay for sample rate %d\n",
  9271. __func__, entry->sample_rate);
  9272. ret = -EFAULT;
  9273. goto unlock;
  9274. }
  9275. cal_utils_mark_cal_used(cal_block);
  9276. pr_debug("%s: Path = %d samplerate = %u usec = %u status %d\n",
  9277. __func__, path, entry->sample_rate, entry->delay_usec, ret);
  9278. unlock:
  9279. mutex_unlock(&this_afe.cal_data[AFE_HW_DELAY_CAL]->lock);
  9280. done:
  9281. return ret;
  9282. }
  9283. static int afe_set_cal_sp_th_vi_v_vali_cfg(int32_t cal_type, size_t data_size,
  9284. void *data)
  9285. {
  9286. int ret = 0;
  9287. struct audio_cal_type_sp_th_vi_v_vali_cfg *cal_data = data;
  9288. if (cal_data == NULL || data_size != sizeof(*cal_data))
  9289. goto done;
  9290. memcpy(&this_afe.v_vali_cfg, &cal_data->cal_info,
  9291. sizeof(this_afe.v_vali_cfg));
  9292. done:
  9293. return ret;
  9294. }
  9295. static int afe_set_cal_sp_th_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  9296. void *data)
  9297. {
  9298. int ret = 0;
  9299. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  9300. if (cal_data == NULL || data_size != sizeof(*cal_data))
  9301. goto done;
  9302. memcpy(&this_afe.th_ftm_cfg, &cal_data->cal_info,
  9303. sizeof(this_afe.th_ftm_cfg));
  9304. done:
  9305. return ret;
  9306. }
  9307. static int afe_set_cal_sp_th_vi_cfg(int32_t cal_type, size_t data_size,
  9308. void *data)
  9309. {
  9310. int ret = 0;
  9311. struct audio_cal_type_sp_th_vi_ftm_cfg *cal_data = data;
  9312. uint32_t mode;
  9313. if (cal_data == NULL ||
  9314. data_size > sizeof(*cal_data) ||
  9315. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL)
  9316. goto done;
  9317. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  9318. mode = cal_data->cal_info.mode;
  9319. pr_debug("%s: cal_type = %d, mode = %d\n", __func__, cal_type, mode);
  9320. if (mode == MSM_SPKR_PROT_IN_FTM_MODE) {
  9321. ret = afe_set_cal_sp_th_vi_ftm_cfg(cal_type,
  9322. data_size, data);
  9323. } else if (mode == MSM_SPKR_PROT_IN_V_VALI_MODE) {
  9324. ret = afe_set_cal_sp_th_vi_v_vali_cfg(cal_type,
  9325. data_size, data);
  9326. }
  9327. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  9328. done:
  9329. return ret;
  9330. }
  9331. static int afe_set_cal_sp_ex_vi_ftm_cfg(int32_t cal_type, size_t data_size,
  9332. void *data)
  9333. {
  9334. int ret = 0;
  9335. struct audio_cal_type_sp_ex_vi_ftm_cfg *cal_data = data;
  9336. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  9337. cal_data == NULL ||
  9338. data_size != sizeof(*cal_data))
  9339. goto done;
  9340. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  9341. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  9342. memcpy(&this_afe.ex_ftm_cfg, &cal_data->cal_info,
  9343. sizeof(this_afe.ex_ftm_cfg));
  9344. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  9345. done:
  9346. return ret;
  9347. }
  9348. static int afe_set_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  9349. void *data)
  9350. {
  9351. int ret = 0;
  9352. struct audio_cal_type_fb_spk_prot_cfg *cal_data = data;
  9353. pr_debug("%s:\n", __func__);
  9354. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  9355. goto done;
  9356. if (cal_data == NULL)
  9357. goto done;
  9358. if (data_size != sizeof(*cal_data))
  9359. goto done;
  9360. if (cal_data->cal_info.mode == MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS)
  9361. __pm_wakeup_event(wl.ws, jiffies_to_msecs(WAKELOCK_TIMEOUT));
  9362. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  9363. memcpy(&this_afe.prot_cfg, &cal_data->cal_info,
  9364. sizeof(this_afe.prot_cfg));
  9365. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  9366. done:
  9367. return ret;
  9368. }
  9369. static int afe_get_cal_sp_th_vi_v_vali_param(int32_t cal_type, size_t data_size,
  9370. void *data)
  9371. {
  9372. int i, ret = 0;
  9373. struct audio_cal_type_sp_th_vi_v_vali_param *cal_data = data;
  9374. struct afe_sp_th_vi_v_vali_get_param th_vi_v_vali;
  9375. uint32_t size;
  9376. void *params = NULL;
  9377. struct afe_sp_v4_channel_v_vali_params *v_vali_params;
  9378. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  9379. cal_data == NULL ||
  9380. data_size != sizeof(*cal_data))
  9381. goto done;
  9382. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9383. cal_data->cal_info.status[i] = -EINVAL;
  9384. cal_data->cal_info.vrms_q24[i] = -1;
  9385. }
  9386. if (q6core_get_avcs_api_version_per_service(
  9387. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  9388. size = sizeof(struct afe_sp_v4_param_th_vi_v_vali_params) +
  9389. (SP_V2_NUM_MAX_SPKRS *
  9390. sizeof(struct afe_sp_v4_channel_v_vali_params));
  9391. params = kzalloc(size, GFP_KERNEL);
  9392. if (!params)
  9393. return -ENOMEM;
  9394. v_vali_params =
  9395. (struct afe_sp_v4_channel_v_vali_params *)((u8 *)params +
  9396. sizeof(struct afe_sp_v4_param_th_vi_v_vali_params));
  9397. if (!afe_get_spv4_th_vi_v_vali_data(params, size)) {
  9398. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9399. pr_debug("%s: ftm param status = %d\n",
  9400. __func__, v_vali_params[i].status);
  9401. if (v_vali_params[i].status ==
  9402. V_VALI_IN_PROGRESS) {
  9403. cal_data->cal_info.status[i] = -EAGAIN;
  9404. } else if (v_vali_params[i].status ==
  9405. V_VALI_SUCCESS) {
  9406. cal_data->cal_info.status[i] =
  9407. V_VALI_SUCCESS;
  9408. cal_data->cal_info.vrms_q24[i] =
  9409. v_vali_params[i].vrms_q24;
  9410. }
  9411. }
  9412. }
  9413. kfree(params);
  9414. } else {
  9415. if (!afe_get_sp_th_vi_v_vali_data(&th_vi_v_vali)) {
  9416. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9417. pr_debug(
  9418. "%s: v-vali param status = %d\n",
  9419. __func__, th_vi_v_vali.param.status[i]);
  9420. if (th_vi_v_vali.param.status[i] ==
  9421. V_VALI_IN_PROGRESS) {
  9422. cal_data->cal_info.status[i] = -EAGAIN;
  9423. } else if (th_vi_v_vali.param.status[i] ==
  9424. V_VALI_SUCCESS) {
  9425. cal_data->cal_info.status[i] =
  9426. V_VALI_SUCCESS;
  9427. cal_data->cal_info.vrms_q24[i] =
  9428. th_vi_v_vali.param.vrms_q24[i];
  9429. }
  9430. }
  9431. }
  9432. }
  9433. this_afe.v_vali_flag = 0;
  9434. done:
  9435. return ret;
  9436. }
  9437. static int afe_get_cal_sp_th_vi_ftm_param(int32_t cal_type, size_t data_size,
  9438. void *data)
  9439. {
  9440. int i, ret = 0;
  9441. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  9442. struct afe_sp_th_vi_get_param th_vi;
  9443. uint32_t size;
  9444. void *params = NULL;
  9445. struct afe_sp_v4_channel_ftm_params *th_vi_ftm_params = NULL;
  9446. if (this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL ||
  9447. cal_data == NULL ||
  9448. data_size != sizeof(*cal_data))
  9449. goto done;
  9450. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9451. cal_data->cal_info.status[i] = -EINVAL;
  9452. cal_data->cal_info.r_dc_q24[i] = -1;
  9453. cal_data->cal_info.temp_q22[i] = -1;
  9454. }
  9455. if (q6core_get_avcs_api_version_per_service(
  9456. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >= AFE_API_VERSION_V9) {
  9457. size = sizeof(struct afe_sp_v4_param_th_vi_ftm_params) +
  9458. (SP_V2_NUM_MAX_SPKRS *
  9459. sizeof(struct afe_sp_v4_channel_ftm_params));
  9460. params = kzalloc(size, GFP_KERNEL);
  9461. if (!params)
  9462. return -ENOMEM;
  9463. th_vi_ftm_params = (struct afe_sp_v4_channel_ftm_params *)
  9464. ((u8 *)params +
  9465. sizeof(struct afe_sp_v4_param_th_vi_ftm_params));
  9466. if (!afe_get_spv4_th_vi_ftm_data(params, size)) {
  9467. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9468. pr_debug("%s: SP V4 ftm param status = %d\n",
  9469. __func__, th_vi_ftm_params[i].status);
  9470. if (th_vi_ftm_params[i].status ==
  9471. FBSP_IN_PROGRESS) {
  9472. cal_data->cal_info.status[i] = -EAGAIN;
  9473. } else if (th_vi_ftm_params[i].status ==
  9474. FBSP_SUCCESS) {
  9475. cal_data->cal_info.status[i] = 0;
  9476. cal_data->cal_info.r_dc_q24[i] =
  9477. th_vi_ftm_params[i].dc_res_q24;
  9478. cal_data->cal_info.temp_q22[i] =
  9479. th_vi_ftm_params[i].temp_q22;
  9480. }
  9481. }
  9482. }
  9483. kfree(params);
  9484. } else {
  9485. if (!afe_get_sp_th_vi_ftm_data(&th_vi)) {
  9486. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9487. pr_debug("%s: ftm param status = %d\n",
  9488. __func__, th_vi.param.status[i]);
  9489. if (th_vi.param.status[i] == FBSP_IN_PROGRESS) {
  9490. cal_data->cal_info.status[i] = -EAGAIN;
  9491. } else if (th_vi.param.status[i] ==
  9492. FBSP_SUCCESS) {
  9493. cal_data->cal_info.status[i] = 0;
  9494. cal_data->cal_info.r_dc_q24[i] =
  9495. th_vi.param.dc_res_q24[i];
  9496. cal_data->cal_info.temp_q22[i] =
  9497. th_vi.param.temp_q22[i];
  9498. }
  9499. }
  9500. }
  9501. }
  9502. done:
  9503. return ret;
  9504. }
  9505. static int afe_get_cal_sp_th_vi_param(int32_t cal_type, size_t data_size,
  9506. void *data)
  9507. {
  9508. struct audio_cal_type_sp_th_vi_param *cal_data = data;
  9509. uint32_t mode;
  9510. int ret = 0;
  9511. if (cal_data == NULL ||
  9512. data_size > sizeof(*cal_data) ||
  9513. this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL] == NULL)
  9514. return 0;
  9515. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  9516. mode = cal_data->cal_info.mode;
  9517. pr_debug("%s: cal_type = %d,mode = %d\n", __func__, cal_type, mode);
  9518. if (mode == MSM_SPKR_PROT_IN_V_VALI_MODE)
  9519. ret = afe_get_cal_sp_th_vi_v_vali_param(cal_type,
  9520. data_size, data);
  9521. else
  9522. ret = afe_get_cal_sp_th_vi_ftm_param(cal_type,
  9523. data_size, data);
  9524. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_TH_VI_CAL]->lock);
  9525. return ret;
  9526. }
  9527. static int afe_get_cal_spv4_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  9528. void *data)
  9529. {
  9530. int i, ret = 0;
  9531. struct audio_cal_type_sp_v4_ex_vi_param *cal_data = data;
  9532. uint32_t size;
  9533. void *params = NULL;
  9534. struct afe_sp_v4_channel_ex_vi_ftm_params *ex_vi_ftm_param;
  9535. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  9536. if (this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL] == NULL ||
  9537. cal_data == NULL ||
  9538. data_size != sizeof(*cal_data))
  9539. goto done;
  9540. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  9541. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9542. cal_data->cal_info.status[i] = -EINVAL;
  9543. cal_data->cal_info.ftm_re_q24[i] = -1;
  9544. cal_data->cal_info.ftm_re_q24[i] = -1;
  9545. cal_data->cal_info.ftm_Rms_q24[i] = -1;
  9546. cal_data->cal_info.ftm_Kms_q24[i] = -1;
  9547. cal_data->cal_info.ftm_freq_q20[i] = -1;
  9548. cal_data->cal_info.ftm_Qms_q24[i] = -1;
  9549. }
  9550. size = sizeof(struct afe_sp_v4_param_ex_vi_ftm_params) +
  9551. (SP_V2_NUM_MAX_SPKRS *
  9552. sizeof(struct afe_sp_v4_channel_ex_vi_ftm_params));
  9553. params = kzalloc(size, GFP_KERNEL);
  9554. if (!params) {
  9555. mutex_unlock(
  9556. &this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  9557. return -ENOMEM;
  9558. }
  9559. ex_vi_ftm_param = (struct afe_sp_v4_channel_ex_vi_ftm_params *)
  9560. ((u8 *)params +
  9561. sizeof(struct afe_sp_v4_param_ex_vi_ftm_params));
  9562. if (!afe_get_spv4_ex_vi_ftm_data(params, size)) {
  9563. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9564. pr_debug("%s: ftm param status = %d\n",
  9565. __func__, ex_vi_ftm_param[i].status);
  9566. if (ex_vi_ftm_param[i].status == FBSP_IN_PROGRESS) {
  9567. cal_data->cal_info.status[i] = -EAGAIN;
  9568. } else if (ex_vi_ftm_param[i].status == FBSP_SUCCESS) {
  9569. cal_data->cal_info.status[i] = 0;
  9570. cal_data->cal_info.ftm_re_q24[i] =
  9571. ex_vi_ftm_param[i].ftm_re_q24;
  9572. cal_data->cal_info.ftm_Bl_q24[i] =
  9573. ex_vi_ftm_param[i].ftm_Bl_q24;
  9574. cal_data->cal_info.ftm_Rms_q24[i] =
  9575. ex_vi_ftm_param[i].ftm_Rms_q24;
  9576. cal_data->cal_info.ftm_Kms_q24[i] =
  9577. ex_vi_ftm_param[i].ftm_Kms_q24;
  9578. cal_data->cal_info.ftm_freq_q20[i] =
  9579. ex_vi_ftm_param[i].ftm_Fres_q20;
  9580. cal_data->cal_info.ftm_Qms_q24[i] =
  9581. ex_vi_ftm_param[i].ftm_Qms_q24;
  9582. }
  9583. }
  9584. }
  9585. kfree(params);
  9586. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_V4_EX_VI_CAL]->lock);
  9587. done:
  9588. return ret;
  9589. }
  9590. static int afe_get_cal_sp_ex_vi_ftm_param(int32_t cal_type, size_t data_size,
  9591. void *data)
  9592. {
  9593. int i, ret = 0;
  9594. struct audio_cal_type_sp_ex_vi_param *cal_data = data;
  9595. struct afe_sp_ex_vi_get_param ex_vi;
  9596. pr_debug("%s: cal_type = %d\n", __func__, cal_type);
  9597. if (this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL] == NULL ||
  9598. cal_data == NULL ||
  9599. data_size != sizeof(*cal_data))
  9600. goto done;
  9601. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  9602. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9603. cal_data->cal_info.status[i] = -EINVAL;
  9604. cal_data->cal_info.freq_q20[i] = -1;
  9605. cal_data->cal_info.resis_q24[i] = -1;
  9606. cal_data->cal_info.qmct_q24[i] = -1;
  9607. }
  9608. if (!afe_get_sp_ex_vi_ftm_data(&ex_vi)) {
  9609. for (i = 0; i < SP_V2_NUM_MAX_SPKRS; i++) {
  9610. pr_debug("%s: ftm param status = %d\n",
  9611. __func__, ex_vi.param.status[i]);
  9612. if (ex_vi.param.status[i] == FBSP_IN_PROGRESS) {
  9613. cal_data->cal_info.status[i] = -EAGAIN;
  9614. } else if (ex_vi.param.status[i] == FBSP_SUCCESS) {
  9615. cal_data->cal_info.status[i] = 0;
  9616. cal_data->cal_info.freq_q20[i] =
  9617. ex_vi.param.freq_q20[i];
  9618. cal_data->cal_info.resis_q24[i] =
  9619. ex_vi.param.resis_q24[i];
  9620. cal_data->cal_info.qmct_q24[i] =
  9621. ex_vi.param.qmct_q24[i];
  9622. }
  9623. }
  9624. }
  9625. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_EX_VI_CAL]->lock);
  9626. done:
  9627. return ret;
  9628. }
  9629. static int afe_get_cal_fb_spkr_prot(int32_t cal_type, size_t data_size,
  9630. void *data)
  9631. {
  9632. int ret = 0;
  9633. struct audio_cal_type_fb_spk_prot_status *cal_data = data;
  9634. struct afe_spkr_prot_get_vi_calib calib_resp;
  9635. struct afe_sp_v4_th_vi_calib_resp spv4_calib_resp;
  9636. pr_debug("%s:\n", __func__);
  9637. if (this_afe.cal_data[AFE_FB_SPKR_PROT_CAL] == NULL)
  9638. goto done;
  9639. if (cal_data == NULL)
  9640. goto done;
  9641. if (data_size != sizeof(*cal_data))
  9642. goto done;
  9643. mutex_lock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  9644. if (this_afe.prot_cfg.mode == MSM_SPKR_PROT_CALIBRATED) {
  9645. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  9646. this_afe.prot_cfg.r0[SP_V2_SPKR_1];
  9647. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  9648. this_afe.prot_cfg.r0[SP_V2_SPKR_2];
  9649. cal_data->cal_info.status = 0;
  9650. } else if (this_afe.prot_cfg.mode ==
  9651. MSM_SPKR_PROT_CALIBRATION_IN_PROGRESS) {
  9652. /*Call AFE to query the status*/
  9653. cal_data->cal_info.status = -EINVAL;
  9654. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  9655. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  9656. if (this_afe.prot_cfg.sp_version >= AFE_API_VERSION_V9) {
  9657. if (!(q6core_get_avcs_api_version_per_service(
  9658. APRV2_IDS_SERVICE_ID_ADSP_AFE_V) >=
  9659. AFE_API_VERSION_V9)) {
  9660. pr_debug(
  9661. "%s: AFE API version is not supported!\n",
  9662. __func__);
  9663. goto done;
  9664. }
  9665. if (!afe_spv4_get_calib_data(&spv4_calib_resp)) {
  9666. if (spv4_calib_resp.res_cfg.th_vi_ca_state ==
  9667. FBSP_IN_PROGRESS)
  9668. cal_data->cal_info.status = -EAGAIN;
  9669. else if (
  9670. spv4_calib_resp.res_cfg.th_vi_ca_state ==
  9671. FBSP_SUCCESS) {
  9672. cal_data->cal_info.status = 0;
  9673. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  9674. spv4_calib_resp.res_cfg.r0_cali_q24[
  9675. SP_V2_SPKR_1];
  9676. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  9677. spv4_calib_resp.res_cfg.r0_cali_q24[
  9678. SP_V2_SPKR_2];
  9679. }
  9680. }
  9681. } else {
  9682. if (!afe_spk_prot_get_calib_data(&calib_resp)) {
  9683. if (calib_resp.res_cfg.th_vi_ca_state ==
  9684. FBSP_IN_PROGRESS)
  9685. cal_data->cal_info.status = -EAGAIN;
  9686. else if (calib_resp.res_cfg.th_vi_ca_state ==
  9687. FBSP_SUCCESS) {
  9688. cal_data->cal_info.status = 0;
  9689. cal_data->cal_info.r0[SP_V2_SPKR_1] =
  9690. calib_resp.res_cfg.r0_cali_q24[
  9691. SP_V2_SPKR_1];
  9692. cal_data->cal_info.r0[SP_V2_SPKR_2] =
  9693. calib_resp.res_cfg.r0_cali_q24[
  9694. SP_V2_SPKR_2];
  9695. }
  9696. }
  9697. }
  9698. if (!cal_data->cal_info.status) {
  9699. this_afe.prot_cfg.mode =
  9700. MSM_SPKR_PROT_CALIBRATED;
  9701. this_afe.prot_cfg.r0[SP_V2_SPKR_1] =
  9702. cal_data->cal_info.r0[SP_V2_SPKR_1];
  9703. this_afe.prot_cfg.r0[SP_V2_SPKR_2] =
  9704. cal_data->cal_info.r0[SP_V2_SPKR_2];
  9705. }
  9706. } else {
  9707. /*Indicates calibration data is invalid*/
  9708. cal_data->cal_info.status = -EINVAL;
  9709. cal_data->cal_info.r0[SP_V2_SPKR_1] = -1;
  9710. cal_data->cal_info.r0[SP_V2_SPKR_2] = -1;
  9711. }
  9712. this_afe.initial_cal = 0;
  9713. mutex_unlock(&this_afe.cal_data[AFE_FB_SPKR_PROT_CAL]->lock);
  9714. __pm_relax(wl.ws);
  9715. done:
  9716. return ret;
  9717. }
  9718. static int afe_map_cal_data(int32_t cal_type,
  9719. struct cal_block_data *cal_block)
  9720. {
  9721. int ret = 0;
  9722. int cal_index;
  9723. pr_debug("%s:\n", __func__);
  9724. cal_index = get_cal_type_index(cal_type);
  9725. if (cal_index < 0) {
  9726. pr_err("%s: could not get cal index %d!\n",
  9727. __func__, cal_index);
  9728. ret = -EINVAL;
  9729. goto done;
  9730. }
  9731. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  9732. ret = afe_cmd_memory_map(cal_block->cal_data.paddr,
  9733. cal_block->map_data.map_size);
  9734. atomic_set(&this_afe.mem_map_cal_index, -1);
  9735. if (ret < 0) {
  9736. pr_err("%s: mmap did not work! size = %zd ret %d\n",
  9737. __func__,
  9738. cal_block->map_data.map_size, ret);
  9739. pr_debug("%s: mmap did not work! addr = 0x%pK, size = %zd\n",
  9740. __func__,
  9741. &cal_block->cal_data.paddr,
  9742. cal_block->map_data.map_size);
  9743. goto done;
  9744. }
  9745. cal_block->map_data.q6map_handle = atomic_read(&this_afe.
  9746. mem_map_cal_handles[cal_index]);
  9747. done:
  9748. return ret;
  9749. }
  9750. static int afe_unmap_cal_data(int32_t cal_type,
  9751. struct cal_block_data *cal_block)
  9752. {
  9753. int ret = 0;
  9754. int cal_index;
  9755. pr_debug("%s:\n", __func__);
  9756. cal_index = get_cal_type_index(cal_type);
  9757. if (cal_index < 0) {
  9758. pr_err("%s: could not get cal index %d!\n",
  9759. __func__, cal_index);
  9760. ret = -EINVAL;
  9761. goto done;
  9762. }
  9763. if (cal_block == NULL) {
  9764. pr_err("%s: Cal block is NULL!\n",
  9765. __func__);
  9766. goto done;
  9767. }
  9768. if (cal_block->map_data.q6map_handle == 0) {
  9769. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  9770. __func__);
  9771. goto done;
  9772. }
  9773. atomic_set(&this_afe.mem_map_cal_handles[cal_index],
  9774. cal_block->map_data.q6map_handle);
  9775. atomic_set(&this_afe.mem_map_cal_index, cal_index);
  9776. ret = afe_cmd_memory_unmap_nowait(
  9777. cal_block->map_data.q6map_handle);
  9778. atomic_set(&this_afe.mem_map_cal_index, -1);
  9779. if (ret < 0) {
  9780. pr_err("%s: unmap did not work! cal_type %i ret %d\n",
  9781. __func__, cal_index, ret);
  9782. }
  9783. cal_block->map_data.q6map_handle = 0;
  9784. done:
  9785. return ret;
  9786. }
  9787. static void afe_delete_cal_data(void)
  9788. {
  9789. pr_debug("%s:\n", __func__);
  9790. cal_utils_destroy_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data);
  9791. }
  9792. static int afe_init_cal_data(void)
  9793. {
  9794. int ret = 0;
  9795. struct cal_type_info cal_type_info[] = {
  9796. {{AFE_COMMON_RX_CAL_TYPE,
  9797. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9798. afe_set_cal, NULL, NULL} },
  9799. {afe_map_cal_data, afe_unmap_cal_data,
  9800. cal_utils_match_buf_num} },
  9801. {{AFE_COMMON_TX_CAL_TYPE,
  9802. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9803. afe_set_cal, NULL, NULL} },
  9804. {afe_map_cal_data, afe_unmap_cal_data,
  9805. cal_utils_match_buf_num} },
  9806. {{AFE_LSM_TX_CAL_TYPE,
  9807. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9808. afe_set_cal, NULL, NULL} },
  9809. {afe_map_cal_data, afe_unmap_cal_data,
  9810. cal_utils_match_buf_num} },
  9811. {{AFE_AANC_CAL_TYPE,
  9812. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9813. afe_set_cal, NULL, NULL} },
  9814. {afe_map_cal_data, afe_unmap_cal_data,
  9815. cal_utils_match_buf_num} },
  9816. {{AFE_FB_SPKR_PROT_CAL_TYPE,
  9817. {NULL, NULL, NULL, afe_set_cal_fb_spkr_prot,
  9818. afe_get_cal_fb_spkr_prot, NULL} },
  9819. {NULL, NULL, cal_utils_match_buf_num} },
  9820. {{AFE_HW_DELAY_CAL_TYPE,
  9821. {NULL, NULL, NULL,
  9822. afe_set_cal, NULL, NULL} },
  9823. {NULL, NULL, cal_utils_match_buf_num} },
  9824. {{AFE_SIDETONE_CAL_TYPE,
  9825. {NULL, NULL, NULL,
  9826. afe_set_cal, NULL, NULL} },
  9827. {NULL, NULL, cal_utils_match_buf_num} },
  9828. {{AFE_SIDETONE_IIR_CAL_TYPE,
  9829. {NULL, NULL, NULL,
  9830. afe_set_cal, NULL, NULL} },
  9831. {NULL, NULL, cal_utils_match_buf_num} },
  9832. {{AFE_TOPOLOGY_CAL_TYPE,
  9833. {NULL, NULL, NULL,
  9834. afe_set_cal, NULL, NULL} },
  9835. {NULL, NULL,
  9836. cal_utils_match_buf_num} },
  9837. {{AFE_LSM_TOPOLOGY_CAL_TYPE,
  9838. {NULL, NULL, NULL,
  9839. afe_set_cal, NULL, NULL} },
  9840. {NULL, NULL,
  9841. cal_utils_match_buf_num} },
  9842. {{AFE_CUST_TOPOLOGY_CAL_TYPE,
  9843. {afe_alloc_cal, afe_dealloc_cal, NULL,
  9844. afe_set_cal, NULL, NULL} },
  9845. {afe_map_cal_data, afe_unmap_cal_data,
  9846. cal_utils_match_buf_num} },
  9847. {{AFE_FB_SPKR_PROT_TH_VI_CAL_TYPE,
  9848. {NULL, NULL, NULL, afe_set_cal_sp_th_vi_cfg,
  9849. afe_get_cal_sp_th_vi_param, NULL} },
  9850. {NULL, NULL, cal_utils_match_buf_num} },
  9851. {{AFE_FB_SPKR_PROT_EX_VI_CAL_TYPE,
  9852. {NULL, NULL, NULL, afe_set_cal_sp_ex_vi_ftm_cfg,
  9853. afe_get_cal_sp_ex_vi_ftm_param, NULL} },
  9854. {NULL, NULL, cal_utils_match_buf_num} },
  9855. {{AFE_FB_SPKR_PROT_V4_EX_VI_CAL_TYPE,
  9856. {NULL, NULL, NULL, NULL,
  9857. afe_get_cal_spv4_ex_vi_ftm_param, NULL} },
  9858. {NULL, NULL, cal_utils_match_buf_num} },
  9859. };
  9860. pr_debug("%s:\n", __func__);
  9861. ret = cal_utils_create_cal_types(MAX_AFE_CAL_TYPES, this_afe.cal_data,
  9862. cal_type_info);
  9863. if (ret < 0) {
  9864. pr_err("%s: could not create cal type! %d\n",
  9865. __func__, ret);
  9866. ret = -EINVAL;
  9867. goto err;
  9868. }
  9869. return ret;
  9870. err:
  9871. afe_delete_cal_data();
  9872. return ret;
  9873. }
  9874. int afe_map_rtac_block(struct rtac_cal_block_data *cal_block)
  9875. {
  9876. int result = 0;
  9877. pr_debug("%s:\n", __func__);
  9878. if (cal_block == NULL) {
  9879. pr_err("%s: cal_block is NULL!\n",
  9880. __func__);
  9881. result = -EINVAL;
  9882. goto done;
  9883. }
  9884. if (cal_block->cal_data.paddr == 0) {
  9885. pr_debug("%s: No address to map!\n",
  9886. __func__);
  9887. result = -EINVAL;
  9888. goto done;
  9889. }
  9890. if (cal_block->map_data.map_size == 0) {
  9891. pr_debug("%s: map size is 0!\n",
  9892. __func__);
  9893. result = -EINVAL;
  9894. goto done;
  9895. }
  9896. result = afe_cmd_memory_map(cal_block->cal_data.paddr,
  9897. cal_block->map_data.map_size);
  9898. if (result < 0) {
  9899. pr_err("%s: afe_cmd_memory_map failed for addr = 0x%pK, size = %d, err %d\n",
  9900. __func__, &cal_block->cal_data.paddr,
  9901. cal_block->map_data.map_size, result);
  9902. return result;
  9903. }
  9904. cal_block->map_data.map_handle = this_afe.mmap_handle;
  9905. done:
  9906. return result;
  9907. }
  9908. int afe_unmap_rtac_block(uint32_t *mem_map_handle)
  9909. {
  9910. int result = 0;
  9911. pr_debug("%s:\n", __func__);
  9912. if (mem_map_handle == NULL) {
  9913. pr_err("%s: Map handle is NULL, nothing to unmap\n",
  9914. __func__);
  9915. goto done;
  9916. }
  9917. if (*mem_map_handle == 0) {
  9918. pr_debug("%s: Map handle is 0, nothing to unmap\n",
  9919. __func__);
  9920. goto done;
  9921. }
  9922. result = afe_cmd_memory_unmap(*mem_map_handle);
  9923. if (result) {
  9924. pr_err("%s: AFE memory unmap failed %d, handle 0x%x\n",
  9925. __func__, result, *mem_map_handle);
  9926. goto done;
  9927. } else {
  9928. *mem_map_handle = 0;
  9929. }
  9930. done:
  9931. return result;
  9932. }
  9933. static void afe_release_uevent_data(struct kobject *kobj)
  9934. {
  9935. struct audio_uevent_data *data = container_of(kobj,
  9936. struct audio_uevent_data, kobj);
  9937. kfree(data);
  9938. }
  9939. int __init afe_init(void)
  9940. {
  9941. int i = 0, ret;
  9942. atomic_set(&this_afe.state, 0);
  9943. atomic_set(&this_afe.status, 0);
  9944. atomic_set(&this_afe.clk_state, 0);
  9945. atomic_set(&this_afe.clk_status, 0);
  9946. atomic_set(&this_afe.mem_map_cal_index, -1);
  9947. this_afe.apr = NULL;
  9948. this_afe.dtmf_gen_rx_portid = -1;
  9949. this_afe.mmap_handle = 0;
  9950. this_afe.vi_tx_port = -1;
  9951. this_afe.vi_rx_port = -1;
  9952. for (i = 0; i < AFE_LPASS_CORE_HW_VOTE_MAX; i++)
  9953. this_afe.lpass_hw_core_client_hdl[i] = 0;
  9954. this_afe.prot_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9955. this_afe.th_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9956. this_afe.ex_ftm_cfg.mode = MSM_SPKR_PROT_DISABLED;
  9957. mutex_init(&this_afe.afe_cmd_lock);
  9958. mutex_init(&this_afe.afe_apr_lock);
  9959. mutex_init(&this_afe.afe_clk_lock);
  9960. for (i = 0; i < AFE_MAX_PORTS; i++) {
  9961. this_afe.afe_cal_mode[i] = AFE_CAL_MODE_DEFAULT;
  9962. this_afe.afe_sample_rates[i] = 0;
  9963. this_afe.dev_acdb_id[i] = 0;
  9964. this_afe.island_mode[i] = 0;
  9965. this_afe.power_mode[i] = 0;
  9966. this_afe.vad_cfg[i].is_enable = 0;
  9967. this_afe.vad_cfg[i].pre_roll = 0;
  9968. init_waitqueue_head(&this_afe.wait[i]);
  9969. }
  9970. init_waitqueue_head(&this_afe.wait_wakeup);
  9971. init_waitqueue_head(&this_afe.lpass_core_hw_wait);
  9972. init_waitqueue_head(&this_afe.clk_wait);
  9973. wl.ws = wakeup_source_register(NULL, "spkr-prot");
  9974. if (!wl.ws)
  9975. return -ENOMEM;
  9976. ret = afe_init_cal_data();
  9977. if (ret)
  9978. pr_err("%s: could not init cal data! %d\n", __func__, ret);
  9979. config_debug_fs_init();
  9980. this_afe.uevent_data = kzalloc(sizeof(*(this_afe.uevent_data)), GFP_KERNEL);
  9981. if (!this_afe.uevent_data) {
  9982. wakeup_source_unregister(wl.ws);
  9983. return -ENOMEM;
  9984. }
  9985. /*
  9986. * Set release function to cleanup memory related to kobject
  9987. * before initializing the kobject.
  9988. */
  9989. this_afe.uevent_data->ktype.release = afe_release_uevent_data;
  9990. q6core_init_uevent_data(this_afe.uevent_data, "q6afe_uevent");
  9991. INIT_WORK(&this_afe.afe_dc_work, afe_notify_dc_presence_work_fn);
  9992. INIT_WORK(&this_afe.afe_spdif_work,
  9993. afe_notify_spdif_fmt_update_work_fn);
  9994. this_afe.event_notifier.notifier_call = afe_aud_event_notify;
  9995. msm_aud_evt_blocking_register_client(&this_afe.event_notifier);
  9996. return 0;
  9997. }
  9998. void afe_exit(void)
  9999. {
  10000. if (this_afe.apr) {
  10001. apr_reset(this_afe.apr);
  10002. atomic_set(&this_afe.state, 0);
  10003. this_afe.apr = NULL;
  10004. rtac_set_afe_handle(this_afe.apr);
  10005. }
  10006. q6core_destroy_uevent_data(this_afe.uevent_data);
  10007. afe_delete_cal_data();
  10008. config_debug_fs_exit();
  10009. mutex_destroy(&this_afe.afe_cmd_lock);
  10010. mutex_destroy(&this_afe.afe_apr_lock);
  10011. mutex_destroy(&this_afe.afe_clk_lock);
  10012. wakeup_source_unregister(wl.ws);
  10013. }
  10014. /*
  10015. * afe_cal_init_hwdep -
  10016. * Initiliaze AFE HW dependent Node
  10017. *
  10018. * @card: pointer to sound card
  10019. *
  10020. */
  10021. int afe_cal_init_hwdep(void *card)
  10022. {
  10023. int ret = 0;
  10024. this_afe.fw_data = kzalloc(sizeof(*(this_afe.fw_data)),
  10025. GFP_KERNEL);
  10026. if (!this_afe.fw_data)
  10027. return -ENOMEM;
  10028. set_bit(Q6AFE_VAD_CORE_CAL, this_afe.fw_data->cal_bit);
  10029. ret = q6afe_cal_create_hwdep(this_afe.fw_data, Q6AFE_HWDEP_NODE, card);
  10030. if (ret < 0) {
  10031. pr_err("%s: couldn't create hwdep for AFE %d\n", __func__, ret);
  10032. return ret;
  10033. }
  10034. return ret;
  10035. }
  10036. EXPORT_SYMBOL(afe_cal_init_hwdep);
  10037. /*
  10038. * afe_vote_lpass_core_hw -
  10039. * Voting for lpass core hardware
  10040. *
  10041. * @hw_block_id: id of the hardware block
  10042. * @client_name: client name
  10043. * @client_handle: client handle
  10044. *
  10045. */
  10046. int afe_vote_lpass_core_hw(uint32_t hw_block_id, char *client_name,
  10047. uint32_t *client_handle)
  10048. {
  10049. struct afe_cmd_remote_lpass_core_hw_vote_request hw_vote_cfg;
  10050. struct afe_cmd_remote_lpass_core_hw_vote_request *cmd_ptr =
  10051. &hw_vote_cfg;
  10052. int ret = 0;
  10053. if (!client_handle) {
  10054. pr_err("%s: Invalid client_handle\n", __func__);
  10055. return -EINVAL;
  10056. }
  10057. if (!client_name) {
  10058. pr_err("%s: Invalid client_name\n", __func__);
  10059. *client_handle = 0;
  10060. return -EINVAL;
  10061. }
  10062. ret = afe_q6_interface_prepare();
  10063. if(ret) {
  10064. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  10065. return ret;
  10066. }
  10067. mutex_lock(&this_afe.afe_clk_lock);
  10068. memset(cmd_ptr, 0, sizeof(hw_vote_cfg));
  10069. cmd_ptr->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  10070. APR_HDR_LEN(APR_HDR_SIZE),
  10071. APR_PKT_VER);
  10072. cmd_ptr->hdr.pkt_size = sizeof(hw_vote_cfg);
  10073. cmd_ptr->hdr.src_port = 0;
  10074. cmd_ptr->hdr.dest_port = 0;
  10075. cmd_ptr->hdr.token = hw_block_id;
  10076. cmd_ptr->hdr.opcode = AFE_CMD_REMOTE_LPASS_CORE_HW_VOTE_REQUEST;
  10077. cmd_ptr->hw_block_id = hw_block_id;
  10078. strlcpy(cmd_ptr->client_name, client_name,
  10079. sizeof(cmd_ptr->client_name));
  10080. pr_debug("%s: lpass core hw vote opcode[0x%x] hw id[0x%x]\n",
  10081. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  10082. trace_printk("%s: lpass core hw vote opcode[0x%x] hw id[0x%x]\n",
  10083. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  10084. *client_handle = 0;
  10085. ret = afe_apr_send_clk_pkt((uint32_t *)cmd_ptr,
  10086. &this_afe.lpass_core_hw_wait);
  10087. if (ret == 0) {
  10088. *client_handle = this_afe.lpass_hw_core_client_hdl[hw_block_id];
  10089. pr_debug("%s: lpass_hw_core_client_hdl %d\n", __func__,
  10090. this_afe.lpass_hw_core_client_hdl[hw_block_id]);
  10091. }
  10092. mutex_unlock(&this_afe.afe_clk_lock);
  10093. return ret;
  10094. }
  10095. EXPORT_SYMBOL(afe_vote_lpass_core_hw);
  10096. /*
  10097. * afe_unvote_lpass_core_hw -
  10098. * unvoting for lpass core hardware
  10099. *
  10100. * @hw_block_id: id of the hardware block
  10101. * @client_handle: client handle
  10102. *
  10103. */
  10104. int afe_unvote_lpass_core_hw(uint32_t hw_block_id, uint32_t client_handle)
  10105. {
  10106. struct afe_cmd_remote_lpass_core_hw_devote_request hw_vote_cfg;
  10107. struct afe_cmd_remote_lpass_core_hw_devote_request *cmd_ptr =
  10108. &hw_vote_cfg;
  10109. int ret = 0;
  10110. ret = afe_q6_interface_prepare();
  10111. if(ret) {
  10112. pr_err("%s: Q6 interface prepare failed %d\n", __func__, ret);
  10113. return ret;
  10114. }
  10115. mutex_lock(&this_afe.afe_clk_lock);
  10116. if (!this_afe.lpass_hw_core_client_hdl[hw_block_id]) {
  10117. pr_debug("%s: SSR in progress, return\n", __func__);
  10118. trace_printk("%s: SSR in progress, return\n", __func__);
  10119. goto done;
  10120. }
  10121. memset(cmd_ptr, 0, sizeof(hw_vote_cfg));
  10122. cmd_ptr->hdr.hdr_field = APR_HDR_FIELD(APR_MSG_TYPE_SEQ_CMD,
  10123. APR_HDR_LEN(APR_HDR_SIZE),
  10124. APR_PKT_VER);
  10125. cmd_ptr->hdr.pkt_size = sizeof(hw_vote_cfg);
  10126. cmd_ptr->hdr.src_port = 0;
  10127. cmd_ptr->hdr.dest_port = 0;
  10128. cmd_ptr->hdr.token = 0;
  10129. cmd_ptr->hdr.opcode = AFE_CMD_REMOTE_LPASS_CORE_HW_DEVOTE_REQUEST;
  10130. cmd_ptr->hw_block_id = hw_block_id;
  10131. cmd_ptr->client_handle = client_handle;
  10132. pr_debug("%s: lpass core hw unvote opcode[0x%x] hw id[0x%x]\n",
  10133. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  10134. trace_printk("%s: lpass core hw unvote opcode[0x%x] hw id[0x%x]\n",
  10135. __func__, cmd_ptr->hdr.opcode, cmd_ptr->hw_block_id);
  10136. if (cmd_ptr->client_handle <= 0) {
  10137. pr_err("%s: invalid client handle\n", __func__);
  10138. ret = -EINVAL;
  10139. goto done;
  10140. }
  10141. ret = afe_apr_send_clk_pkt((uint32_t *)cmd_ptr,
  10142. &this_afe.lpass_core_hw_wait);
  10143. done:
  10144. mutex_unlock(&this_afe.afe_clk_lock);
  10145. return ret;
  10146. }
  10147. EXPORT_SYMBOL(afe_unvote_lpass_core_hw);