q6afe.c 257 KB

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