q6afe.c 223 KB

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