q6afe.c 254 KB

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