q6afe.c 215 KB

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