q6afe.c 214 KB

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