q6afe.c 225 KB

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