q6afe.c 231 KB

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