q6afe.c 269 KB

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