q6afe.c 268 KB

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