q6afe.c 225 KB

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