q6afe.c 205 KB

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