q6afe.c 215 KB

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