q6afe.c 235 KB

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